
    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_f33d669cdd63fcfc0d04daa2.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.178000;font-style:normal;font-weight:normal;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_ae56bd329c451e833458a4d5.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.067000;font-style:normal;font-weight:normal;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_5c84052867b3186776ff4e84.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00000;src:url('chunks/assets/font_3f8b5ebf1116e3051c2540cd.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00000;src:url('chunks/assets/font_45c228a0b93a6e9f60e25f9d.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00000;src:url('chunks/assets/font_4bf897c8ec9b3580b5a42e97.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.000000,0.253045,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.253045,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.253045,-0.250000,0.000000,0,0);}
.m1_c00000{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls1_c00000{letter-spacing:0.000000px;}
.ls2_c00000{letter-spacing:0.688458px;}
.ls3_c00000{letter-spacing:0.737634px;}
.ls0_c00000{letter-spacing:2.261856px;}
.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:-28.160107px;}
.ws1_c00000{word-spacing:0.000000px;}
._5_c00000{margin-left:-7.031822px;}
._3_c00000{margin-left:-4.609774px;}
._2_c00000{margin-left:-3.072000px;}
._1_c00000{margin-left:-1.152000px;}
._0_c00000{width:1.152000px;}
._4_c00000{width:3.191045px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs7_c00000{font-size:68.845800px;}
.fs5_c00000{font-size:71.427000px;}
.fs9_c00000{font-size:73.763400px;}
.fs4_c00000{font-size:77.379000px;}
.fs8_c00000{font-size:83.598600px;}
.fs0_c00000{font-size:96.000000px;}
.fs3_c00000{font-size:106.283400px;}
.fs6_c00000{font-size:113.092800px;}
.fs2_c00000{font-size:119.044800px;}
.fs1_c00000{font-size:130.949400px;}
.y0_c00000{bottom:0.000000px;}
.yb_c00000{bottom:286.875300px;}
.ya_c00000{bottom:318.267750px;}
.y9_c00000{bottom:349.660350px;}
.y8_c00000{bottom:517.218000px;}
.y7_c00000{bottom:557.908650px;}
.y6_c00000{bottom:582.507300px;}
.y5_c00000{bottom:643.238235px;}
.y4_c00000{bottom:667.152000px;}
.y3_c00000{bottom:706.722900px;}
.y2_c00000{bottom:737.972100px;}
.y1_c00000{bottom:814.054500px;}
.h9_c00000{height:48.192060px;}
.hb_c00000{height:52.372014px;}
.h7_c00000{height:58.427286px;}
.ha_c00000{height:59.355006px;}
.h6_c00000{height:64.456707px;}
.h2_c00000{height:78.528000px;}
.h5_c00000{height:86.939821px;}
.h8_c00000{height:91.605168px;}
.h4_c00000{height:96.426288px;}
.h3_c00000{height:107.116609px;}
.h1_c00000{height:1126.500000px;}
.h0_c00000{height:1126.770000px;}
.w0_c00000{width:892.920000px;}
.w1_c00000{width:893.250000px;}
.x9_c00000{left:-689.485350px;}
.xa_c00000{left:-681.560100px;}
.xb_c00000{left:-647.512950px;}
.x1_c00000{left:-65.886600px;}
.x0_c00000{left:0.000000px;}
.x3_c00000{left:252.520050px;}
.x5_c00000{left:305.048620px;}
.x4_c00000{left:314.551500px;}
.x2_c00000{left:335.569500px;}
.x7_c00000{left:374.860800px;}
.x6_c00000{left:393.290700px;}
.x8_c00000{left:425.872950px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ls2_c00000{letter-spacing:0.611963pt;}
.ls3_c00000{letter-spacing:0.655675pt;}
.ls0_c00000{letter-spacing:2.010539pt;}
.ws0_c00000{word-spacing:-25.031206pt;}
.ws1_c00000{word-spacing:0.000000pt;}
._5_c00000{margin-left:-6.250508pt;}
._3_c00000{margin-left:-4.097577pt;}
._2_c00000{margin-left:-2.730667pt;}
._1_c00000{margin-left:-1.024000pt;}
._0_c00000{width:1.024000pt;}
._4_c00000{width:2.836484pt;}
.fs7_c00000{font-size:61.196267pt;}
.fs5_c00000{font-size:63.490667pt;}
.fs9_c00000{font-size:65.567467pt;}
.fs4_c00000{font-size:68.781333pt;}
.fs8_c00000{font-size:74.309867pt;}
.fs0_c00000{font-size:85.333333pt;}
.fs3_c00000{font-size:94.474133pt;}
.fs6_c00000{font-size:100.526933pt;}
.fs2_c00000{font-size:105.817600pt;}
.fs1_c00000{font-size:116.399467pt;}
.y0_c00000{bottom:0.000000pt;}
.yb_c00000{bottom:255.000267pt;}
.ya_c00000{bottom:282.904667pt;}
.y9_c00000{bottom:310.809200pt;}
.y8_c00000{bottom:459.749333pt;}
.y7_c00000{bottom:495.918800pt;}
.y6_c00000{bottom:517.784267pt;}
.y5_c00000{bottom:571.767320pt;}
.y4_c00000{bottom:593.024000pt;}
.y3_c00000{bottom:628.198133pt;}
.y2_c00000{bottom:655.975200pt;}
.y1_c00000{bottom:723.604000pt;}
.h9_c00000{height:42.837387pt;}
.hb_c00000{height:46.552901pt;}
.h7_c00000{height:51.935365pt;}
.ha_c00000{height:52.760005pt;}
.h6_c00000{height:57.294851pt;}
.h2_c00000{height:69.802667pt;}
.h5_c00000{height:77.279841pt;}
.h8_c00000{height:81.426816pt;}
.h4_c00000{height:85.712256pt;}
.h3_c00000{height:95.214764pt;}
.h1_c00000{height:1001.333333pt;}
.h0_c00000{height:1001.573333pt;}
.w0_c00000{width:793.706667pt;}
.w1_c00000{width:794.000000pt;}
.x9_c00000{left:-612.875867pt;}
.xa_c00000{left:-605.831200pt;}
.xb_c00000{left:-575.567067pt;}
.x1_c00000{left:-58.565867pt;}
.x0_c00000{left:0.000000pt;}
.x3_c00000{left:224.462267pt;}
.x5_c00000{left:271.154329pt;}
.x4_c00000{left:279.601333pt;}
.x2_c00000{left:298.284000pt;}
.x7_c00000{left:333.209600pt;}
.x6_c00000{left:349.591733pt;}
.x8_c00000{left:378.553733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b163b905a6d5b0bc8850f5f9.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_6ce1abf34213f5a598df5c8c.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:30.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:-15.000000px;}
.ws1_c00001{word-spacing:0.000000px;}
._2_c00001{margin-left:-4.800000px;}
._1_c00001{margin-left:-3.300000px;}
._0_c00001{margin-left:-1.080000px;}
.fc0_c00001{color:rgb(35,31,32);}
.fs0_c00001{font-size:60.000000px;}
.y0_c00001{bottom:0.000000px;}
.yc_c00001{bottom:108.966750px;}
.yb_c00001{bottom:126.966750px;}
.ya_c00001{bottom:162.966750px;}
.y9_c00001{bottom:180.966750px;}
.y8_c00001{bottom:198.966750px;}
.y7_c00001{bottom:216.966750px;}
.y6_c00001{bottom:234.966750px;}
.y5_c00001{bottom:252.966750px;}
.y4_c00001{bottom:270.966750px;}
.y3_c00001{bottom:455.871750px;}
.y2_c00001{bottom:489.426750px;}
.y1_c00001{bottom:525.847200px;}
.h4_c00001{height:41.689453px;}
.h2_c00001{height:58.886719px;}
.h3_c00001{height:88.886719px;}
.h1_c00001{height:1126.500000px;}
.h0_c00001{height:1126.771500px;}
.w0_c00001{width:892.914000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:137.858250px;}
.x2_c00001{left:163.778700px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:26.666667pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:-13.333333pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._2_c00001{margin-left:-4.266667pt;}
._1_c00001{margin-left:-2.933333pt;}
._0_c00001{margin-left:-0.960000pt;}
.fs0_c00001{font-size:53.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.yc_c00001{bottom:96.859333pt;}
.yb_c00001{bottom:112.859333pt;}
.ya_c00001{bottom:144.859333pt;}
.y9_c00001{bottom:160.859333pt;}
.y8_c00001{bottom:176.859333pt;}
.y7_c00001{bottom:192.859333pt;}
.y6_c00001{bottom:208.859333pt;}
.y5_c00001{bottom:224.859333pt;}
.y4_c00001{bottom:240.859333pt;}
.y3_c00001{bottom:405.219333pt;}
.y2_c00001{bottom:435.046000pt;}
.y1_c00001{bottom:467.419733pt;}
.h4_c00001{height:37.057292pt;}
.h2_c00001{height:52.343750pt;}
.h3_c00001{height:79.010417pt;}
.h1_c00001{height:1001.333333pt;}
.h0_c00001{height:1001.574667pt;}
.w0_c00001{width:793.701333pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:122.540667pt;}
.x2_c00001{left:145.581067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79c50e8021320e01d05c6b13.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_bde4e435ae32d376e7a8dcc1.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_9a87971d3f65b4adb4a63689.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_bdc4c4d9876fe5d9aa410d38.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls2_c00002{letter-spacing:0.480000px;}
.ls0_c00002{letter-spacing:0.720000px;}
.ls3_c00002{letter-spacing:1.200000px;}
.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;}
}
.ws2_c00002{word-spacing:-17.064000px;}
.ws0_c00002{word-spacing:-10.896000px;}
.ws5_c00002{word-spacing:-1.584000px;}
.ws1_c00002{word-spacing:-0.528000px;}
.ws6_c00002{word-spacing:-0.360000px;}
.ws3_c00002{word-spacing:-0.300000px;}
.ws4_c00002{word-spacing:0.000000px;}
.ws7_c00002{word-spacing:1.800000px;}
.ws8_c00002{word-spacing:2.880000px;}
.ws9_c00002{word-spacing:2.952000px;}
.wsa_c00002{word-spacing:7.200000px;}
._0_c00002{margin-left:-2755.275600px;}
._6_c00002{margin-left:-5.412000px;}
._4_c00002{margin-left:-4.272000px;}
._3_c00002{margin-left:-2.904000px;}
._1_c00002{margin-left:-1.056000px;}
._2_c00002{width:1.056000px;}
._5_c00002{width:2.760000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(210,32,39);}
.fc0_c00002{color:rgb(35,31,32);}
.fs0_c00002{font-size:48.000000px;}
.fs1_c00002{font-size:60.000000px;}
.fs4_c00002{font-size:72.000000px;}
.fs3_c00002{font-size:84.000000px;}
.fs2_c00002{font-size:90.000000px;}
.y0_c00002{bottom:0.000000px;}
.y11_c00002{bottom:174.831600px;}
.y10_c00002{bottom:294.837600px;}
.yf_c00002{bottom:342.843600px;}
.ye_c00002{bottom:366.837600px;}
.yd_c00002{bottom:390.831600px;}
.yc_c00002{bottom:414.825600px;}
.yb_c00002{bottom:447.333600px;}
.ya_c00002{bottom:479.841600px;}
.y9_c00002{bottom:503.835600px;}
.y8_c00002{bottom:599.829600px;}
.y7_c00002{bottom:623.823600px;}
.y6_c00002{bottom:656.331600px;}
.y5_c00002{bottom:680.325600px;}
.y4_c00002{bottom:725.585400px;}
.y3_c00002{bottom:749.585400px;}
.y2_c00002{bottom:786.341400px;}
.y1_c00002{bottom:1093.601100px;}
.h2_c00002{height:39.984000px;}
.h3_c00002{height:49.980000px;}
.h8_c00002{height:58.320000px;}
.h6_c00002{height:58.896000px;}
.h7_c00002{height:59.976000px;}
.h5_c00002{height:68.712000px;}
.h4_c00002{height:73.620000px;}
.h1_c00002{height:1135.500000px;}
.h0_c00002{height:1135.506150px;}
.w0_c00002{width:893.950200px;}
.w1_c00002{width:894.000000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:207.079350px;}
.x1_c00002{left:813.365700px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls2_c00002{letter-spacing:0.426667pt;}
.ls0_c00002{letter-spacing:0.640000pt;}
.ls3_c00002{letter-spacing:1.066667pt;}
.ws2_c00002{word-spacing:-15.168000pt;}
.ws0_c00002{word-spacing:-9.685333pt;}
.ws5_c00002{word-spacing:-1.408000pt;}
.ws1_c00002{word-spacing:-0.469333pt;}
.ws6_c00002{word-spacing:-0.320000pt;}
.ws3_c00002{word-spacing:-0.266667pt;}
.ws4_c00002{word-spacing:0.000000pt;}
.ws7_c00002{word-spacing:1.600000pt;}
.ws8_c00002{word-spacing:2.560000pt;}
.ws9_c00002{word-spacing:2.624000pt;}
.wsa_c00002{word-spacing:6.400000pt;}
._0_c00002{margin-left:-2449.133867pt;}
._6_c00002{margin-left:-4.810667pt;}
._4_c00002{margin-left:-3.797333pt;}
._3_c00002{margin-left:-2.581333pt;}
._1_c00002{margin-left:-0.938667pt;}
._2_c00002{width:0.938667pt;}
._5_c00002{width:2.453333pt;}
.fs0_c00002{font-size:42.666667pt;}
.fs1_c00002{font-size:53.333333pt;}
.fs4_c00002{font-size:64.000000pt;}
.fs3_c00002{font-size:74.666667pt;}
.fs2_c00002{font-size:80.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y11_c00002{bottom:155.405867pt;}
.y10_c00002{bottom:262.077867pt;}
.yf_c00002{bottom:304.749867pt;}
.ye_c00002{bottom:326.077867pt;}
.yd_c00002{bottom:347.405867pt;}
.yc_c00002{bottom:368.733867pt;}
.yb_c00002{bottom:397.629867pt;}
.ya_c00002{bottom:426.525867pt;}
.y9_c00002{bottom:447.853867pt;}
.y8_c00002{bottom:533.181867pt;}
.y7_c00002{bottom:554.509867pt;}
.y6_c00002{bottom:583.405867pt;}
.y5_c00002{bottom:604.733867pt;}
.y4_c00002{bottom:644.964800pt;}
.y3_c00002{bottom:666.298133pt;}
.y2_c00002{bottom:698.970133pt;}
.y1_c00002{bottom:972.089867pt;}
.h2_c00002{height:35.541333pt;}
.h3_c00002{height:44.426667pt;}
.h8_c00002{height:51.840000pt;}
.h6_c00002{height:52.352000pt;}
.h7_c00002{height:53.312000pt;}
.h5_c00002{height:61.077333pt;}
.h4_c00002{height:65.440000pt;}
.h1_c00002{height:1009.333333pt;}
.h0_c00002{height:1009.338800pt;}
.w0_c00002{width:794.622400pt;}
.w1_c00002{width:794.666667pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:184.070533pt;}
.x1_c00002{left:722.991733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50bd74a743580f40bf7a64d2.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_5c84052867b3186776ff4e84.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00003;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls1_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:1633.195200px;}
.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;}
._5_c00003{margin-left:-7.272000px;}
._4_c00003{margin-left:-5.623200px;}
._3_c00003{margin-left:-3.801600px;}
._0_c00003{margin-left:-2.112000px;}
._1_c00003{margin-left:-1.104000px;}
._2_c00003{width:1.267200px;}
.fc1_c00003{color:transparent;}
.fc0_c00003{color:rgb(35,31,32);}
.fs0_c00003{font-size:48.000000px;}
.fs3_c00003{font-size:72.000000px;}
.fs2_c00003{font-size:84.000000px;}
.fs1_c00003{font-size:105.600000px;}
.y0_c00003{bottom:0.000000px;}
.y5_c00003{bottom:688.502550px;}
.y4_c00003{bottom:751.006500px;}
.y3_c00003{bottom:789.510450px;}
.y2_c00003{bottom:819.510450px;}
.y1_c00003{bottom:1093.601100px;}
.h2_c00003{height:39.264000px;}
.h6_c00003{height:59.976000px;}
.h5_c00003{height:68.712000px;}
.h4_c00003{height:85.536000px;}
.h3_c00003{height:86.380800px;}
.h1_c00003{height:1135.500000px;}
.h0_c00003{height:1135.506150px;}
.w0_c00003{width:893.950200px;}
.w1_c00003{width:894.000000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:77.603100px;}
.x4_c00003{left:1114.470000px;}
.x3_c00003{left:1163.534400px;}
.x2_c00003{left:1247.405250px;}
.x5_c00003{left:1287.455550px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:1451.729067pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._5_c00003{margin-left:-6.464000pt;}
._4_c00003{margin-left:-4.998400pt;}
._3_c00003{margin-left:-3.379200pt;}
._0_c00003{margin-left:-1.877333pt;}
._1_c00003{margin-left:-0.981333pt;}
._2_c00003{width:1.126400pt;}
.fs0_c00003{font-size:42.666667pt;}
.fs3_c00003{font-size:64.000000pt;}
.fs2_c00003{font-size:74.666667pt;}
.fs1_c00003{font-size:93.866667pt;}
.y0_c00003{bottom:0.000000pt;}
.y5_c00003{bottom:612.002267pt;}
.y4_c00003{bottom:667.561333pt;}
.y3_c00003{bottom:701.787067pt;}
.y2_c00003{bottom:728.453733pt;}
.y1_c00003{bottom:972.089867pt;}
.h2_c00003{height:34.901333pt;}
.h6_c00003{height:53.312000pt;}
.h5_c00003{height:61.077333pt;}
.h4_c00003{height:76.032000pt;}
.h3_c00003{height:76.782933pt;}
.h1_c00003{height:1009.333333pt;}
.h0_c00003{height:1009.338800pt;}
.w0_c00003{width:794.622400pt;}
.w1_c00003{width:794.666667pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:68.980533pt;}
.x4_c00003{left:990.640000pt;}
.x3_c00003{left:1034.252800pt;}
.x2_c00003{left:1108.804667pt;}
.x5_c00003{left:1144.404933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cc5a7a18d5686540eb61a9b.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.178000;font-style:normal;font-weight:normal;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_bde4e435ae32d376e7a8dcc1.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_5c84052867b3186776ff4e84.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.ls1_c00004{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00004{word-spacing:-0.528000px;}
.ws2_c00004{word-spacing:0.000000px;}
._0_c00004{margin-left:-2755.275600px;}
._5_c00004{margin-left:-7.272000px;}
._4_c00004{margin-left:-5.412000px;}
._3_c00004{margin-left:-3.801600px;}
._1_c00004{margin-left:-1.056000px;}
._2_c00004{width:1.267200px;}
.fc1_c00004{color:transparent;}
.fc0_c00004{color:rgb(35,31,32);}
.fs0_c00004{font-size:48.000000px;}
.fs3_c00004{font-size:72.000000px;}
.fs2_c00004{font-size:84.000000px;}
.fs1_c00004{font-size:105.600000px;}
.y0_c00004{bottom:0.000000px;}
.y5_c00004{bottom:688.502550px;}
.y4_c00004{bottom:751.006500px;}
.y3_c00004{bottom:789.520050px;}
.y2_c00004{bottom:819.510450px;}
.y1_c00004{bottom:1093.601100px;}
.h2_c00004{height:39.984000px;}
.h6_c00004{height:59.976000px;}
.h5_c00004{height:68.712000px;}
.h4_c00004{height:85.536000px;}
.h3_c00004{height:86.380800px;}
.h1_c00004{height:1135.500000px;}
.h0_c00004{height:1135.506150px;}
.w0_c00004{width:893.950200px;}
.w1_c00004{width:894.000000px;}
.x0_c00004{left:0.000000px;}
.x4_c00004{left:221.556600px;}
.x3_c00004{left:270.619200px;}
.x2_c00004{left:354.492000px;}
.x5_c00004{left:394.542300px;}
.x1_c00004{left:812.573700px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ls1_c00004{letter-spacing:0.426667pt;}
.ws0_c00004{word-spacing:-9.685333pt;}
.ws1_c00004{word-spacing:-0.469333pt;}
.ws2_c00004{word-spacing:0.000000pt;}
._0_c00004{margin-left:-2449.133867pt;}
._5_c00004{margin-left:-6.464000pt;}
._4_c00004{margin-left:-4.810667pt;}
._3_c00004{margin-left:-3.379200pt;}
._1_c00004{margin-left:-0.938667pt;}
._2_c00004{width:1.126400pt;}
.fs0_c00004{font-size:42.666667pt;}
.fs3_c00004{font-size:64.000000pt;}
.fs2_c00004{font-size:74.666667pt;}
.fs1_c00004{font-size:93.866667pt;}
.y0_c00004{bottom:0.000000pt;}
.y5_c00004{bottom:612.002267pt;}
.y4_c00004{bottom:667.561333pt;}
.y3_c00004{bottom:701.795600pt;}
.y2_c00004{bottom:728.453733pt;}
.y1_c00004{bottom:972.089867pt;}
.h2_c00004{height:35.541333pt;}
.h6_c00004{height:53.312000pt;}
.h5_c00004{height:61.077333pt;}
.h4_c00004{height:76.032000pt;}
.h3_c00004{height:76.782933pt;}
.h1_c00004{height:1009.333333pt;}
.h0_c00004{height:1009.338800pt;}
.w0_c00004{width:794.622400pt;}
.w1_c00004{width:794.666667pt;}
.x0_c00004{left:0.000000pt;}
.x4_c00004{left:196.939200pt;}
.x3_c00004{left:240.550400pt;}
.x2_c00004{left:315.104000pt;}
.x5_c00004{left:350.704267pt;}
.x1_c00004{left:722.287733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0de17f1f009938eb21af5a74.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls1_c00005{letter-spacing:0.000000px;}
.ls2_c00005{letter-spacing:0.720000px;}
.ls0_c00005{letter-spacing:1631.275200px;}
.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:-17.064000px;}
.ws1_c00005{word-spacing:0.000000px;}
._3_c00005{margin-left:-3.192000px;}
._0_c00005{margin-left:-2.112000px;}
._1_c00005{margin-left:-1.104000px;}
._2_c00005{width:1.368000px;}
.fc1_c00005{color:transparent;}
.fc0_c00005{color:rgb(35,31,32);}
.fs0_c00005{font-size:48.000000px;}
.fs1_c00005{font-size:72.000000px;}
.y0_c00005{bottom:0.000000px;}
.y3_c00005{bottom:290.126850px;}
.y2_c00005{bottom:315.380850px;}
.y1_c00005{bottom:1093.601100px;}
.h2_c00005{height:39.264000px;}
.h3_c00005{height:58.896000px;}
.h1_c00005{height:1135.500000px;}
.h0_c00005{height:1135.506150px;}
.w0_c00005{width:893.950200px;}
.w1_c00005{width:894.000000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:77.603100px;}
.x3_c00005{left:211.487400px;}
.x2_c00005{left:218.453400px;}
.x5_c00005{left:520.151400px;}
.x4_c00005{left:544.415400px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls1_c00005{letter-spacing:0.000000pt;}
.ls2_c00005{letter-spacing:0.640000pt;}
.ls0_c00005{letter-spacing:1450.022400pt;}
.ws0_c00005{word-spacing:-15.168000pt;}
.ws1_c00005{word-spacing:0.000000pt;}
._3_c00005{margin-left:-2.837333pt;}
._0_c00005{margin-left:-1.877333pt;}
._1_c00005{margin-left:-0.981333pt;}
._2_c00005{width:1.216000pt;}
.fs0_c00005{font-size:42.666667pt;}
.fs1_c00005{font-size:64.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y3_c00005{bottom:257.890533pt;}
.y2_c00005{bottom:280.338533pt;}
.y1_c00005{bottom:972.089867pt;}
.h2_c00005{height:34.901333pt;}
.h3_c00005{height:52.352000pt;}
.h1_c00005{height:1009.333333pt;}
.h0_c00005{height:1009.338800pt;}
.w0_c00005{width:794.622400pt;}
.w1_c00005{width:794.666667pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:68.980533pt;}
.x3_c00005{left:187.988800pt;}
.x2_c00005{left:194.180800pt;}
.x5_c00005{left:462.356800pt;}
.x4_c00005{left:483.924800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3df257e4d3cba98f6d3748bc.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.178000;font-style:normal;font-weight:normal;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_bde4e435ae32d376e7a8dcc1.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.ls1_c00006{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00006{word-spacing:-14.982000px;}
.ws0_c00006{word-spacing:-10.896000px;}
.ws1_c00006{word-spacing:-0.528000px;}
.ws3_c00006{word-spacing:0.000000px;}
._0_c00006{margin-left:-2755.275600px;}
._2_c00006{margin-left:-4.224000px;}
._3_c00006{margin-left:-2.178000px;}
._1_c00006{margin-left:-1.056000px;}
._4_c00006{width:1.188000px;}
._5_c00006{width:2.310000px;}
.fc1_c00006{color:transparent;}
.fc0_c00006{color:rgb(35,31,32);}
.fs0_c00006{font-size:48.000000px;}
.fs1_c00006{font-size:66.000000px;}
.y0_c00006{bottom:0.000000px;}
.y5_c00006{bottom:686.672850px;}
.y4_c00006{bottom:724.177350px;}
.y3_c00006{bottom:746.683350px;}
.y2_c00006{bottom:784.187850px;}
.y1_c00006{bottom:1093.601100px;}
.h2_c00006{height:39.984000px;}
.h3_c00006{height:53.988000px;}
.h1_c00006{height:1135.500000px;}
.h0_c00006{height:1135.506150px;}
.w0_c00006{width:893.950200px;}
.w1_c00006{width:894.000000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:468.784200px;}
.x1_c00006{left:812.609700px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ls1_c00006{letter-spacing:0.426667pt;}
.ws2_c00006{word-spacing:-13.317333pt;}
.ws0_c00006{word-spacing:-9.685333pt;}
.ws1_c00006{word-spacing:-0.469333pt;}
.ws3_c00006{word-spacing:0.000000pt;}
._0_c00006{margin-left:-2449.133867pt;}
._2_c00006{margin-left:-3.754667pt;}
._3_c00006{margin-left:-1.936000pt;}
._1_c00006{margin-left:-0.938667pt;}
._4_c00006{width:1.056000pt;}
._5_c00006{width:2.053333pt;}
.fs0_c00006{font-size:42.666667pt;}
.fs1_c00006{font-size:58.666667pt;}
.y0_c00006{bottom:0.000000pt;}
.y5_c00006{bottom:610.375867pt;}
.y4_c00006{bottom:643.713200pt;}
.y3_c00006{bottom:663.718533pt;}
.y2_c00006{bottom:697.055867pt;}
.y1_c00006{bottom:972.089867pt;}
.h2_c00006{height:35.541333pt;}
.h3_c00006{height:47.989333pt;}
.h1_c00006{height:1009.333333pt;}
.h0_c00006{height:1009.338800pt;}
.w0_c00006{width:794.622400pt;}
.w1_c00006{width:794.666667pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:416.697067pt;}
.x1_c00006{left:722.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_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_ace80dfc6667489e634be9c0.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:1630.651200px;}
.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;}
._0_c00007{margin-left:-2.112000px;}
._1_c00007{margin-left:-1.104000px;}
.fc1_c00007{color:transparent;}
.fc0_c00007{color:rgb(35,31,32);}
.fs0_c00007{font-size:48.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:1093.601100px;}
.h2_c00007{height:39.264000px;}
.h1_c00007{height:1135.500000px;}
.h0_c00007{height:1135.506150px;}
.w0_c00007{width:893.950200px;}
.w1_c00007{width:894.000000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:77.603100px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:1449.467733pt;}
.ws0_c00007{word-spacing:0.000000pt;}
._0_c00007{margin-left:-1.877333pt;}
._1_c00007{margin-left:-0.981333pt;}
.fs0_c00007{font-size:42.666667pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:972.089867pt;}
.h2_c00007{height:34.901333pt;}
.h1_c00007{height:1009.333333pt;}
.h0_c00007{height:1009.338800pt;}
.w0_c00007{width:794.622400pt;}
.w1_c00007{width:794.666667pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c263e4ffc56d72e85b824c5.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.178000;font-style:normal;font-weight:normal;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_bde4e435ae32d376e7a8dcc1.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_9ec66face9cd9a4ba912ecfe.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls5_c00008{letter-spacing:-0.360000px;}
.ls3_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:0.360000px;}
.ls4_c00008{letter-spacing:0.480000px;}
.ls2_c00008{letter-spacing:0.648000px;}
.ls1_c00008{letter-spacing:0.720000px;}
.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;}
}
.ws2_c00008{word-spacing:-16.344000px;}
.ws3_c00008{word-spacing:-16.128000px;}
.ws0_c00008{word-spacing:-10.896000px;}
.wse_c00008{word-spacing:-2.376000px;}
.ws14_c00008{word-spacing:-2.016000px;}
.wsd_c00008{word-spacing:-1.728000px;}
.ws18_c00008{word-spacing:-1.584000px;}
.ws1_c00008{word-spacing:-0.528000px;}
.ws16_c00008{word-spacing:-0.288000px;}
.ws5_c00008{word-spacing:0.000000px;}
.ws19_c00008{word-spacing:0.144000px;}
.wsa_c00008{word-spacing:0.360000px;}
.ws6_c00008{word-spacing:1.152000px;}
.ws13_c00008{word-spacing:1.296000px;}
.wsc_c00008{word-spacing:1.368000px;}
.ws11_c00008{word-spacing:1.440000px;}
.ws17_c00008{word-spacing:1.944000px;}
.ws4_c00008{word-spacing:2.304000px;}
.ws12_c00008{word-spacing:2.664000px;}
.ws9_c00008{word-spacing:4.104000px;}
.ws15_c00008{word-spacing:4.320000px;}
.ws10_c00008{word-spacing:4.392000px;}
.ws7_c00008{word-spacing:5.040000px;}
.wsb_c00008{word-spacing:5.616000px;}
.ws8_c00008{word-spacing:9.072000px;}
.wsf_c00008{word-spacing:10.440000px;}
._0_c00008{margin-left:-2755.275600px;}
._4_c00008{margin-left:-6.456000px;}
._2_c00008{margin-left:-2.256000px;}
._1_c00008{margin-left:-1.056000px;}
._3_c00008{width:1.032000px;}
.fc1_c00008{color:transparent;}
.fc0_c00008{color:rgb(35,31,32);}
.fs0_c00008{font-size:48.000000px;}
.fs1_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y1b_c00008{bottom:246.924450px;}
.y1a_c00008{bottom:271.674450px;}
.y19_c00008{bottom:296.424450px;}
.y18_c00008{bottom:321.174450px;}
.y17_c00008{bottom:345.924450px;}
.y16_c00008{bottom:370.674450px;}
.y15_c00008{bottom:395.424450px;}
.y14_c00008{bottom:420.174450px;}
.y13_c00008{bottom:459.918450px;}
.y12_c00008{bottom:484.668450px;}
.y11_c00008{bottom:509.418450px;}
.y10_c00008{bottom:534.168450px;}
.yf_c00008{bottom:558.918450px;}
.ye_c00008{bottom:583.668450px;}
.yd_c00008{bottom:623.412450px;}
.yc_c00008{bottom:648.162450px;}
.yb_c00008{bottom:672.912450px;}
.ya_c00008{bottom:697.662450px;}
.y9_c00008{bottom:722.412450px;}
.y8_c00008{bottom:747.162450px;}
.y7_c00008{bottom:771.912450px;}
.y6_c00008{bottom:796.662450px;}
.y5_c00008{bottom:821.412450px;}
.y4_c00008{bottom:846.162450px;}
.y3_c00008{bottom:870.912450px;}
.y2_c00008{bottom:910.656450px;}
.y1_c00008{bottom:1093.600950px;}
.h2_c00008{height:39.984000px;}
.h3_c00008{height:58.896000px;}
.h1_c00008{height:1135.500000px;}
.h0_c00008{height:1135.506150px;}
.w0_c00008{width:893.950200px;}
.w1_c00008{width:894.000000px;}
.x0_c00008{left:0.000000px;}
.x2_c00008{left:256.185750px;}
.x1_c00008{left:812.201700px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls5_c00008{letter-spacing:-0.320000pt;}
.ls3_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:0.320000pt;}
.ls4_c00008{letter-spacing:0.426667pt;}
.ls2_c00008{letter-spacing:0.576000pt;}
.ls1_c00008{letter-spacing:0.640000pt;}
.ws2_c00008{word-spacing:-14.528000pt;}
.ws3_c00008{word-spacing:-14.336000pt;}
.ws0_c00008{word-spacing:-9.685333pt;}
.wse_c00008{word-spacing:-2.112000pt;}
.ws14_c00008{word-spacing:-1.792000pt;}
.wsd_c00008{word-spacing:-1.536000pt;}
.ws18_c00008{word-spacing:-1.408000pt;}
.ws1_c00008{word-spacing:-0.469333pt;}
.ws16_c00008{word-spacing:-0.256000pt;}
.ws5_c00008{word-spacing:0.000000pt;}
.ws19_c00008{word-spacing:0.128000pt;}
.wsa_c00008{word-spacing:0.320000pt;}
.ws6_c00008{word-spacing:1.024000pt;}
.ws13_c00008{word-spacing:1.152000pt;}
.wsc_c00008{word-spacing:1.216000pt;}
.ws11_c00008{word-spacing:1.280000pt;}
.ws17_c00008{word-spacing:1.728000pt;}
.ws4_c00008{word-spacing:2.048000pt;}
.ws12_c00008{word-spacing:2.368000pt;}
.ws9_c00008{word-spacing:3.648000pt;}
.ws15_c00008{word-spacing:3.840000pt;}
.ws10_c00008{word-spacing:3.904000pt;}
.ws7_c00008{word-spacing:4.480000pt;}
.wsb_c00008{word-spacing:4.992000pt;}
.ws8_c00008{word-spacing:8.064000pt;}
.wsf_c00008{word-spacing:9.280000pt;}
._0_c00008{margin-left:-2449.133867pt;}
._4_c00008{margin-left:-5.738667pt;}
._2_c00008{margin-left:-2.005333pt;}
._1_c00008{margin-left:-0.938667pt;}
._3_c00008{width:0.917333pt;}
.fs0_c00008{font-size:42.666667pt;}
.fs1_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1b_c00008{bottom:219.488400pt;}
.y1a_c00008{bottom:241.488400pt;}
.y19_c00008{bottom:263.488400pt;}
.y18_c00008{bottom:285.488400pt;}
.y17_c00008{bottom:307.488400pt;}
.y16_c00008{bottom:329.488400pt;}
.y15_c00008{bottom:351.488400pt;}
.y14_c00008{bottom:373.488400pt;}
.y13_c00008{bottom:408.816400pt;}
.y12_c00008{bottom:430.816400pt;}
.y11_c00008{bottom:452.816400pt;}
.y10_c00008{bottom:474.816400pt;}
.yf_c00008{bottom:496.816400pt;}
.ye_c00008{bottom:518.816400pt;}
.yd_c00008{bottom:554.144400pt;}
.yc_c00008{bottom:576.144400pt;}
.yb_c00008{bottom:598.144400pt;}
.ya_c00008{bottom:620.144400pt;}
.y9_c00008{bottom:642.144400pt;}
.y8_c00008{bottom:664.144400pt;}
.y7_c00008{bottom:686.144400pt;}
.y6_c00008{bottom:708.144400pt;}
.y5_c00008{bottom:730.144400pt;}
.y4_c00008{bottom:752.144400pt;}
.y3_c00008{bottom:774.144400pt;}
.y2_c00008{bottom:809.472400pt;}
.y1_c00008{bottom:972.089733pt;}
.h2_c00008{height:35.541333pt;}
.h3_c00008{height:52.352000pt;}
.h1_c00008{height:1009.333333pt;}
.h0_c00008{height:1009.338800pt;}
.w0_c00008{width:794.622400pt;}
.w1_c00008{width:794.666667pt;}
.x0_c00008{left:0.000000pt;}
.x2_c00008{left:227.720667pt;}
.x1_c00008{left:721.957067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16d0f3d55675f1c5ac353bea.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls1_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:1632.235200px;}
.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;}
._0_c00009{margin-left:-2.112000px;}
._1_c00009{margin-left:-1.104000px;}
.fc1_c00009{color:transparent;}
.fc0_c00009{color:rgb(35,31,32);}
.fs0_c00009{font-size:48.000000px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:1093.600950px;}
.h2_c00009{height:39.264000px;}
.h1_c00009{height:1135.500000px;}
.h0_c00009{height:1135.506150px;}
.w0_c00009{width:893.950200px;}
.w1_c00009{width:894.000000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:77.603100px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls1_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:1450.875733pt;}
.ws0_c00009{word-spacing:0.000000pt;}
._0_c00009{margin-left:-1.877333pt;}
._1_c00009{margin-left:-0.981333pt;}
.fs0_c00009{font-size:42.666667pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:972.089733pt;}
.h2_c00009{height:34.901333pt;}
.h1_c00009{height:1009.333333pt;}
.h0_c00009{height:1009.338800pt;}
.w0_c00009{width:794.622400pt;}
.w1_c00009{width:794.666667pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38d98b39b0d239702866c230.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.178000;font-style:normal;font-weight:normal;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_bde4e435ae32d376e7a8dcc1.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls4_c00010{letter-spacing:-1.188000px;}
.ls3_c00010{letter-spacing:-0.396000px;}
.ls1_c00010{letter-spacing:0.000000px;}
.ls2_c00010{letter-spacing:0.480000px;}
.ls0_c00010{letter-spacing:0.720000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00010{word-spacing:-17.064000px;}
.ws6_c00010{word-spacing:-11.880000px;}
.ws0_c00010{word-spacing:-10.896000px;}
.ws1_c00010{word-spacing:-0.528000px;}
.ws3_c00010{word-spacing:0.000000px;}
.ws4_c00010{word-spacing:0.396000px;}
.ws7_c00010{word-spacing:1.188000px;}
.ws5_c00010{word-spacing:70.092000px;}
._0_c00010{margin-left:-2755.275600px;}
._b_c00010{margin-left:-43.465800px;}
._a_c00010{margin-left:-41.023800px;}
._8_c00010{margin-left:-34.027800px;}
._c_c00010{margin-left:-9.306000px;}
._6_c00010{margin-left:-7.590000px;}
._16_c00010{margin-left:-6.072000px;}
._7_c00010{margin-left:-4.950000px;}
._3_c00010{margin-left:-2.112000px;}
._1_c00010{margin-left:-1.056000px;}
._4_c00010{width:1.386000px;}
._12_c00010{width:12.279600px;}
._11_c00010{width:25.542000px;}
._5_c00010{width:26.928000px;}
._e_c00010{width:29.304000px;}
._d_c00010{width:31.746000px;}
._10_c00010{width:32.802000px;}
._f_c00010{width:35.772000px;}
._15_c00010{width:63.492000px;}
._13_c00010{width:66.132000px;}
._14_c00010{width:68.772000px;}
._2_c00010{width:70.026000px;}
._9_c00010{width:81.902400px;}
.fc1_c00010{color:transparent;}
.fc0_c00010{color:rgb(35,31,32);}
.fs0_c00010{font-size:48.000000px;}
.fs1_c00010{font-size:66.000000px;}
.fs2_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y19_c00010{bottom:134.876850px;}
.y18_c00010{bottom:161.628750px;}
.y17_c00010{bottom:188.380800px;}
.y16_c00010{bottom:215.132700px;}
.y15_c00010{bottom:241.884750px;}
.y14_c00010{bottom:281.392650px;}
.y13_c00010{bottom:303.892650px;}
.y12_c00010{bottom:326.392650px;}
.y11_c00010{bottom:348.892650px;}
.y10_c00010{bottom:371.392500px;}
.yf_c00010{bottom:398.144550px;}
.ye_c00010{bottom:420.644550px;}
.yd_c00010{bottom:443.144550px;}
.yc_c00010{bottom:469.896600px;}
.yb_c00010{bottom:492.396600px;}
.ya_c00010{bottom:519.148500px;}
.y9_c00010{bottom:558.656400px;}
.y8_c00010{bottom:581.156400px;}
.y7_c00010{bottom:603.656400px;}
.y6_c00010{bottom:626.156400px;}
.y5_c00010{bottom:648.656400px;}
.y4_c00010{bottom:671.156400px;}
.y3_c00010{bottom:693.656400px;}
.y2_c00010{bottom:720.408300px;}
.y1a_c00010{bottom:953.176200px;}
.y1_c00010{bottom:1093.600950px;}
.h2_c00010{height:39.984000px;}
.h3_c00010{height:53.988000px;}
.h4_c00010{height:58.896000px;}
.h1_c00010{height:1135.500000px;}
.h0_c00010{height:1135.506150px;}
.w0_c00010{width:893.950200px;}
.w1_c00010{width:894.000000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:128.626800px;}
.x1_c00010{left:811.613700px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls4_c00010{letter-spacing:-1.056000pt;}
.ls3_c00010{letter-spacing:-0.352000pt;}
.ls1_c00010{letter-spacing:0.000000pt;}
.ls2_c00010{letter-spacing:0.426667pt;}
.ls0_c00010{letter-spacing:0.640000pt;}
.ws2_c00010{word-spacing:-15.168000pt;}
.ws6_c00010{word-spacing:-10.560000pt;}
.ws0_c00010{word-spacing:-9.685333pt;}
.ws1_c00010{word-spacing:-0.469333pt;}
.ws3_c00010{word-spacing:0.000000pt;}
.ws4_c00010{word-spacing:0.352000pt;}
.ws7_c00010{word-spacing:1.056000pt;}
.ws5_c00010{word-spacing:62.304000pt;}
._0_c00010{margin-left:-2449.133867pt;}
._b_c00010{margin-left:-38.636267pt;}
._a_c00010{margin-left:-36.465600pt;}
._8_c00010{margin-left:-30.246933pt;}
._c_c00010{margin-left:-8.272000pt;}
._6_c00010{margin-left:-6.746667pt;}
._16_c00010{margin-left:-5.397333pt;}
._7_c00010{margin-left:-4.400000pt;}
._3_c00010{margin-left:-1.877333pt;}
._1_c00010{margin-left:-0.938667pt;}
._4_c00010{width:1.232000pt;}
._12_c00010{width:10.915200pt;}
._11_c00010{width:22.704000pt;}
._5_c00010{width:23.936000pt;}
._e_c00010{width:26.048000pt;}
._d_c00010{width:28.218667pt;}
._10_c00010{width:29.157333pt;}
._f_c00010{width:31.797333pt;}
._15_c00010{width:56.437333pt;}
._13_c00010{width:58.784000pt;}
._14_c00010{width:61.130667pt;}
._2_c00010{width:62.245333pt;}
._9_c00010{width:72.802133pt;}
.fs0_c00010{font-size:42.666667pt;}
.fs1_c00010{font-size:58.666667pt;}
.fs2_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y19_c00010{bottom:119.890533pt;}
.y18_c00010{bottom:143.670000pt;}
.y17_c00010{bottom:167.449600pt;}
.y16_c00010{bottom:191.229067pt;}
.y15_c00010{bottom:215.008667pt;}
.y14_c00010{bottom:250.126800pt;}
.y13_c00010{bottom:270.126800pt;}
.y12_c00010{bottom:290.126800pt;}
.y11_c00010{bottom:310.126800pt;}
.y10_c00010{bottom:330.126667pt;}
.yf_c00010{bottom:353.906267pt;}
.ye_c00010{bottom:373.906267pt;}
.yd_c00010{bottom:393.906267pt;}
.yc_c00010{bottom:417.685867pt;}
.yb_c00010{bottom:437.685867pt;}
.ya_c00010{bottom:461.465333pt;}
.y9_c00010{bottom:496.583467pt;}
.y8_c00010{bottom:516.583467pt;}
.y7_c00010{bottom:536.583467pt;}
.y6_c00010{bottom:556.583467pt;}
.y5_c00010{bottom:576.583467pt;}
.y4_c00010{bottom:596.583467pt;}
.y3_c00010{bottom:616.583467pt;}
.y2_c00010{bottom:640.362933pt;}
.y1a_c00010{bottom:847.267733pt;}
.y1_c00010{bottom:972.089733pt;}
.h2_c00010{height:35.541333pt;}
.h3_c00010{height:47.989333pt;}
.h4_c00010{height:52.352000pt;}
.h1_c00010{height:1009.333333pt;}
.h0_c00010{height:1009.338800pt;}
.w0_c00010{width:794.622400pt;}
.w1_c00010{width:794.666667pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:114.334933pt;}
.x1_c00010{left:721.434400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fc34ae488bf94427de30009.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.067000;font-style:normal;font-weight:normal;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_92922c419ba598eada21722c.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.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;}
}
.ws1_c00011{word-spacing:0.000000px;}
.ws2_c00011{word-spacing:70.092000px;}
.ws0_c00011{word-spacing:1601.947200px;}
._12_c00011{margin-left:-60.657000px;}
._14_c00011{margin-left:-57.687000px;}
._11_c00011{margin-left:-40.461000px;}
._10_c00011{margin-left:-20.265000px;}
._b_c00011{margin-left:-13.662000px;}
._5_c00011{margin-left:-9.306000px;}
._3_c00011{margin-left:-3.762000px;}
._0_c00011{margin-left:-2.112000px;}
._1_c00011{margin-left:-1.104000px;}
._4_c00011{width:1.386000px;}
._13_c00011{width:3.036000px;}
._f_c00011{width:16.962000px;}
._d_c00011{width:19.602000px;}
._9_c00011{width:22.242000px;}
._8_c00011{width:24.684000px;}
._a_c00011{width:25.740000px;}
._2_c00011{width:28.182000px;}
._e_c00011{width:63.492000px;}
._c_c00011{width:66.132000px;}
._7_c00011{width:68.772000px;}
._6_c00011{width:70.092000px;}
.fc0_c00011{color:rgb(35,31,32);}
.fs0_c00011{font-size:48.000000px;}
.fs1_c00011{font-size:66.000000px;}
.y0_c00011{bottom:0.000000px;}
.y1b_c00011{bottom:174.916350px;}
.y1a_c00011{bottom:197.416350px;}
.y19_c00011{bottom:219.916350px;}
.y18_c00011{bottom:242.416350px;}
.y17_c00011{bottom:264.930000px;}
.y16_c00011{bottom:304.431000px;}
.y15_c00011{bottom:343.932000px;}
.y14_c00011{bottom:383.439900px;}
.y13_c00011{bottom:410.191950px;}
.y12_c00011{bottom:432.691950px;}
.y11_c00011{bottom:455.191950px;}
.y10_c00011{bottom:477.691950px;}
.yf_c00011{bottom:504.443850px;}
.ye_c00011{bottom:531.195900px;}
.yd_c00011{bottom:570.703650px;}
.yc_c00011{bottom:597.455700px;}
.yb_c00011{bottom:624.207600px;}
.ya_c00011{bottom:646.707600px;}
.y9_c00011{bottom:669.207600px;}
.y8_c00011{bottom:695.959650px;}
.y7_c00011{bottom:722.711550px;}
.y6_c00011{bottom:745.211550px;}
.y5_c00011{bottom:767.711550px;}
.y4_c00011{bottom:790.211550px;}
.y3_c00011{bottom:816.963600px;}
.y2_c00011{bottom:843.715500px;}
.y1_c00011{bottom:1093.601100px;}
.h2_c00011{height:39.264000px;}
.h3_c00011{height:53.988000px;}
.h1_c00011{height:1135.500000px;}
.h0_c00011{height:1135.506150px;}
.w0_c00011{width:893.950200px;}
.w1_c00011{width:894.000000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:77.603100px;}
.x2_c00011{left:162.642450px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws1_c00011{word-spacing:0.000000pt;}
.ws2_c00011{word-spacing:62.304000pt;}
.ws0_c00011{word-spacing:1423.953067pt;}
._12_c00011{margin-left:-53.917333pt;}
._14_c00011{margin-left:-51.277333pt;}
._11_c00011{margin-left:-35.965333pt;}
._10_c00011{margin-left:-18.013333pt;}
._b_c00011{margin-left:-12.144000pt;}
._5_c00011{margin-left:-8.272000pt;}
._3_c00011{margin-left:-3.344000pt;}
._0_c00011{margin-left:-1.877333pt;}
._1_c00011{margin-left:-0.981333pt;}
._4_c00011{width:1.232000pt;}
._13_c00011{width:2.698667pt;}
._f_c00011{width:15.077333pt;}
._d_c00011{width:17.424000pt;}
._9_c00011{width:19.770667pt;}
._8_c00011{width:21.941333pt;}
._a_c00011{width:22.880000pt;}
._2_c00011{width:25.050667pt;}
._e_c00011{width:56.437333pt;}
._c_c00011{width:58.784000pt;}
._7_c00011{width:61.130667pt;}
._6_c00011{width:62.304000pt;}
.fs0_c00011{font-size:42.666667pt;}
.fs1_c00011{font-size:58.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y1b_c00011{bottom:155.481200pt;}
.y1a_c00011{bottom:175.481200pt;}
.y19_c00011{bottom:195.481200pt;}
.y18_c00011{bottom:215.481200pt;}
.y17_c00011{bottom:235.493333pt;}
.y16_c00011{bottom:270.605333pt;}
.y15_c00011{bottom:305.717333pt;}
.y14_c00011{bottom:340.835467pt;}
.y13_c00011{bottom:364.615067pt;}
.y12_c00011{bottom:384.615067pt;}
.y11_c00011{bottom:404.615067pt;}
.y10_c00011{bottom:424.615067pt;}
.yf_c00011{bottom:448.394533pt;}
.ye_c00011{bottom:472.174133pt;}
.yd_c00011{bottom:507.292133pt;}
.yc_c00011{bottom:531.071733pt;}
.yb_c00011{bottom:554.851200pt;}
.ya_c00011{bottom:574.851200pt;}
.y9_c00011{bottom:594.851200pt;}
.y8_c00011{bottom:618.630800pt;}
.y7_c00011{bottom:642.410267pt;}
.y6_c00011{bottom:662.410267pt;}
.y5_c00011{bottom:682.410267pt;}
.y4_c00011{bottom:702.410267pt;}
.y3_c00011{bottom:726.189867pt;}
.y2_c00011{bottom:749.969333pt;}
.y1_c00011{bottom:972.089867pt;}
.h2_c00011{height:34.901333pt;}
.h3_c00011{height:47.989333pt;}
.h1_c00011{height:1009.333333pt;}
.h0_c00011{height:1009.338800pt;}
.w0_c00011{width:794.622400pt;}
.w1_c00011{width:794.666667pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:68.980533pt;}
.x2_c00011{left:144.571067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f05fd59c0aa42dd50b8e96a.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.178000;font-style:normal;font-weight:normal;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_bde4e435ae32d376e7a8dcc1.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls2_c00012{letter-spacing:-0.540000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.ls1_c00012{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00012{word-spacing:-0.528000px;}
.ws3_c00012{word-spacing:0.000000px;}
.ws2_c00012{word-spacing:0.540000px;}
._0_c00012{margin-left:-2755.275600px;}
._4_c00012{margin-left:-2.844000px;}
._1_c00012{margin-left:-1.056000px;}
._2_c00012{width:1.056000px;}
._3_c00012{width:2.316000px;}
.fc1_c00012{color:transparent;}
.fc0_c00012{color:rgb(35,31,32);}
.fs0_c00012{font-size:48.000000px;}
.fs1_c00012{font-size:54.000000px;}
.y0_c00012{bottom:0.000000px;}
.y3_c00012{bottom:394.945650px;}
.y2_c00012{bottom:412.195650px;}
.y1_c00012{bottom:1093.601100px;}
.h2_c00012{height:39.984000px;}
.h3_c00012{height:43.740000px;}
.h1_c00012{height:1135.500000px;}
.h0_c00012{height:1135.506150px;}
.w0_c00012{width:893.950200px;}
.w1_c00012{width:894.000000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:335.253000px;}
.x3_c00012{left:354.611700px;}
.x1_c00012{left:809.285700px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls2_c00012{letter-spacing:-0.480000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ls1_c00012{letter-spacing:0.426667pt;}
.ws0_c00012{word-spacing:-9.685333pt;}
.ws1_c00012{word-spacing:-0.469333pt;}
.ws3_c00012{word-spacing:0.000000pt;}
.ws2_c00012{word-spacing:0.480000pt;}
._0_c00012{margin-left:-2449.133867pt;}
._4_c00012{margin-left:-2.528000pt;}
._1_c00012{margin-left:-0.938667pt;}
._2_c00012{width:0.938667pt;}
._3_c00012{width:2.058667pt;}
.fs0_c00012{font-size:42.666667pt;}
.fs1_c00012{font-size:48.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y3_c00012{bottom:351.062800pt;}
.y2_c00012{bottom:366.396133pt;}
.y1_c00012{bottom:972.089867pt;}
.h2_c00012{height:35.541333pt;}
.h3_c00012{height:38.880000pt;}
.h1_c00012{height:1009.333333pt;}
.h0_c00012{height:1009.338800pt;}
.w0_c00012{width:794.622400pt;}
.w1_c00012{width:794.666667pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:298.002667pt;}
.x3_c00012{left:315.210400pt;}
.x1_c00012{left:719.365067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f29a8a5d8c6b3b6a3d113799.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00013{word-spacing:0.000000px;}
.ws0_c00013{word-spacing:1605.979200px;}
._0_c00013{margin-left:-2.112000px;}
._1_c00013{margin-left:-1.104000px;}
.fc1_c00013{color:transparent;}
.fc0_c00013{color:rgb(35,31,32);}
.fs0_c00013{font-size:48.000000px;}
.y0_c00013{bottom:0.000000px;}
.y1_c00013{bottom:1093.601100px;}
.h2_c00013{height:39.264000px;}
.h1_c00013{height:1135.500000px;}
.h0_c00013{height:1135.506150px;}
.w0_c00013{width:893.950200px;}
.w1_c00013{width:894.000000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:77.603100px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws1_c00013{word-spacing:0.000000pt;}
.ws0_c00013{word-spacing:1427.537067pt;}
._0_c00013{margin-left:-1.877333pt;}
._1_c00013{margin-left:-0.981333pt;}
.fs0_c00013{font-size:42.666667pt;}
.y0_c00013{bottom:0.000000pt;}
.y1_c00013{bottom:972.089867pt;}
.h2_c00013{height:34.901333pt;}
.h1_c00013{height:1009.333333pt;}
.h0_c00013{height:1009.338800pt;}
.w0_c00013{width:794.622400pt;}
.w1_c00013{width:794.666667pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d43acf21fbe1a20e5326bd90.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.178000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.v1_c00014{vertical-align:23.952000px;}
.ls3_c00014{letter-spacing:-0.240000px;}
.ls4_c00014{letter-spacing:0.000000px;}
.ls1_c00014{letter-spacing:0.576000px;}
.ls2_c00014{letter-spacing:0.720000px;}
.ls5_c00014{letter-spacing:1.080000px;}
.ls0_c00014{letter-spacing:6.408000px;}
.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;}
}
.ws4_c00014{word-spacing:-17.424000px;}
.ws5_c00014{word-spacing:-17.064000px;}
.ws2_c00014{word-spacing:-16.344000px;}
.ws0_c00014{word-spacing:-10.656000px;}
.ws3_c00014{word-spacing:-9.528552px;}
.wsc_c00014{word-spacing:-2.016000px;}
.ws7_c00014{word-spacing:-1.944000px;}
.wsa_c00014{word-spacing:-0.504000px;}
.ws1_c00014{word-spacing:-0.048000px;}
.ws6_c00014{word-spacing:0.000000px;}
.wsd_c00014{word-spacing:0.216000px;}
.wsb_c00014{word-spacing:0.648000px;}
.ws8_c00014{word-spacing:1.368000px;}
.ws11_c00014{word-spacing:1.728000px;}
.ws16_c00014{word-spacing:2.352000px;}
.wse_c00014{word-spacing:2.376000px;}
.ws12_c00014{word-spacing:2.448000px;}
.wsf_c00014{word-spacing:2.880000px;}
.ws10_c00014{word-spacing:3.312000px;}
.ws13_c00014{word-spacing:3.816000px;}
.ws15_c00014{word-spacing:3.888000px;}
.ws14_c00014{word-spacing:4.968000px;}
.ws9_c00014{word-spacing:6.408000px;}
._0_c00014{margin-left:-2755.035600px;}
._2_c00014{margin-left:-7.200000px;}
._4_c00014{margin-left:-2.520000px;}
._1_c00014{margin-left:-1.008000px;}
._3_c00014{width:1.296000px;}
._5_c00014{width:29.871600px;}
.fc1_c00014{color:transparent;}
.fc0_c00014{color:rgb(35,31,32);}
.fs2_c00014{font-size:41.976000px;}
.fs0_c00014{font-size:48.000000px;}
.fs1_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y2_c00014{bottom:51.868800px;}
.y16_c00014{bottom:111.616350px;}
.y15_c00014{bottom:126.616350px;}
.y14_c00014{bottom:141.616350px;}
.y13_c00014{bottom:206.158500px;}
.y12_c00014{bottom:230.908500px;}
.y11_c00014{bottom:255.658500px;}
.y10_c00014{bottom:280.408500px;}
.yf_c00014{bottom:305.158500px;}
.ye_c00014{bottom:329.908500px;}
.yd_c00014{bottom:369.652500px;}
.yc_c00014{bottom:394.402500px;}
.yb_c00014{bottom:419.152500px;}
.ya_c00014{bottom:443.902500px;}
.y9_c00014{bottom:468.652500px;}
.y8_c00014{bottom:493.408500px;}
.y7_c00014{bottom:533.152500px;}
.y6_c00014{bottom:557.902500px;}
.y5_c00014{bottom:582.652500px;}
.y4_c00014{bottom:607.402500px;}
.y3_c00014{bottom:632.152500px;}
.y18_c00014{bottom:955.465500px;}
.y17_c00014{bottom:984.463500px;}
.y1_c00014{bottom:1093.600950px;}
.h2_c00014{height:39.264000px;}
.h3_c00014{height:58.896000px;}
.h1_c00014{height:1135.500000px;}
.h0_c00014{height:1135.506150px;}
.w0_c00014{width:893.950200px;}
.w1_c00014{width:894.000000px;}
.x0_c00014{left:0.000000px;}
.x3_c00014{left:128.626800px;}
.x4_c00014{left:145.634700px;}
.x2_c00014{left:805.925700px;}
.x1_c00014{left:808.553700px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.v1_c00014{vertical-align:21.290667pt;}
.ls3_c00014{letter-spacing:-0.213333pt;}
.ls4_c00014{letter-spacing:0.000000pt;}
.ls1_c00014{letter-spacing:0.512000pt;}
.ls2_c00014{letter-spacing:0.640000pt;}
.ls5_c00014{letter-spacing:0.960000pt;}
.ls0_c00014{letter-spacing:5.696000pt;}
.ws4_c00014{word-spacing:-15.488000pt;}
.ws5_c00014{word-spacing:-15.168000pt;}
.ws2_c00014{word-spacing:-14.528000pt;}
.ws0_c00014{word-spacing:-9.472000pt;}
.ws3_c00014{word-spacing:-8.469824pt;}
.wsc_c00014{word-spacing:-1.792000pt;}
.ws7_c00014{word-spacing:-1.728000pt;}
.wsa_c00014{word-spacing:-0.448000pt;}
.ws1_c00014{word-spacing:-0.042667pt;}
.ws6_c00014{word-spacing:0.000000pt;}
.wsd_c00014{word-spacing:0.192000pt;}
.wsb_c00014{word-spacing:0.576000pt;}
.ws8_c00014{word-spacing:1.216000pt;}
.ws11_c00014{word-spacing:1.536000pt;}
.ws16_c00014{word-spacing:2.090667pt;}
.wse_c00014{word-spacing:2.112000pt;}
.ws12_c00014{word-spacing:2.176000pt;}
.wsf_c00014{word-spacing:2.560000pt;}
.ws10_c00014{word-spacing:2.944000pt;}
.ws13_c00014{word-spacing:3.392000pt;}
.ws15_c00014{word-spacing:3.456000pt;}
.ws14_c00014{word-spacing:4.416000pt;}
.ws9_c00014{word-spacing:5.696000pt;}
._0_c00014{margin-left:-2448.920533pt;}
._2_c00014{margin-left:-6.400000pt;}
._4_c00014{margin-left:-2.240000pt;}
._1_c00014{margin-left:-0.896000pt;}
._3_c00014{width:1.152000pt;}
._5_c00014{width:26.552533pt;}
.fs2_c00014{font-size:37.312000pt;}
.fs0_c00014{font-size:42.666667pt;}
.fs1_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y2_c00014{bottom:46.105600pt;}
.y16_c00014{bottom:99.214533pt;}
.y15_c00014{bottom:112.547867pt;}
.y14_c00014{bottom:125.881200pt;}
.y13_c00014{bottom:183.252000pt;}
.y12_c00014{bottom:205.252000pt;}
.y11_c00014{bottom:227.252000pt;}
.y10_c00014{bottom:249.252000pt;}
.yf_c00014{bottom:271.252000pt;}
.ye_c00014{bottom:293.252000pt;}
.yd_c00014{bottom:328.580000pt;}
.yc_c00014{bottom:350.580000pt;}
.yb_c00014{bottom:372.580000pt;}
.ya_c00014{bottom:394.580000pt;}
.y9_c00014{bottom:416.580000pt;}
.y8_c00014{bottom:438.585333pt;}
.y7_c00014{bottom:473.913333pt;}
.y6_c00014{bottom:495.913333pt;}
.y5_c00014{bottom:517.913333pt;}
.y4_c00014{bottom:539.913333pt;}
.y3_c00014{bottom:561.913333pt;}
.y18_c00014{bottom:849.302667pt;}
.y17_c00014{bottom:875.078667pt;}
.y1_c00014{bottom:972.089733pt;}
.h2_c00014{height:34.901333pt;}
.h3_c00014{height:52.352000pt;}
.h1_c00014{height:1009.333333pt;}
.h0_c00014{height:1009.338800pt;}
.w0_c00014{width:794.622400pt;}
.w1_c00014{width:794.666667pt;}
.x0_c00014{left:0.000000pt;}
.x3_c00014{left:114.334933pt;}
.x4_c00014{left:129.453067pt;}
.x2_c00014{left:716.378400pt;}
.x1_c00014{left:718.714400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91441816eea5be37c79abc8b.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.v1_c00015{vertical-align:23.904000px;}
.ls2_c00015{letter-spacing:0.000000px;}
.ls0_c00015{letter-spacing:0.000504px;}
.ls1_c00015{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00015{word-spacing:-16.344000px;}
.ws3_c00015{word-spacing:-10.896000px;}
.ws2_c00015{word-spacing:-9.528552px;}
.ws1d_c00015{word-spacing:-2.952000px;}
.ws1e_c00015{word-spacing:-2.304000px;}
.ws11_c00015{word-spacing:-1.944000px;}
.wsd_c00015{word-spacing:-1.872000px;}
.ws13_c00015{word-spacing:-1.512000px;}
.ws5_c00015{word-spacing:-1.440000px;}
.wsb_c00015{word-spacing:-1.224000px;}
.ws1b_c00015{word-spacing:-1.008000px;}
.ws14_c00015{word-spacing:-0.936000px;}
.ws19_c00015{word-spacing:-0.648000px;}
.wse_c00015{word-spacing:-0.216000px;}
.ws4_c00015{word-spacing:0.000000px;}
.ws12_c00015{word-spacing:0.072000px;}
.ws15_c00015{word-spacing:0.216000px;}
.ws6_c00015{word-spacing:0.432000px;}
.ws18_c00015{word-spacing:1.008000px;}
.ws9_c00015{word-spacing:1.296000px;}
.ws7_c00015{word-spacing:1.800000px;}
.wsf_c00015{word-spacing:1.872000px;}
.ws10_c00015{word-spacing:2.736000px;}
.ws1a_c00015{word-spacing:2.880000px;}
.ws1c_c00015{word-spacing:3.240000px;}
.ws16_c00015{word-spacing:4.536000px;}
.ws8_c00015{word-spacing:4.608000px;}
.wsc_c00015{word-spacing:6.336000px;}
.ws17_c00015{word-spacing:6.408000px;}
.wsa_c00015{word-spacing:6.768000px;}
.ws1f_c00015{word-spacing:24.768000px;}
.ws0_c00015{word-spacing:1602.619200px;}
._2_c00015{margin-left:-6.984000px;}
._5_c00015{margin-left:-5.096400px;}
._0_c00015{margin-left:-2.112000px;}
._1_c00015{margin-left:-1.104000px;}
._3_c00015{width:1.032000px;}
._4_c00015{width:2.448000px;}
._7_c00015{width:22.848000px;}
._6_c00015{width:26.688000px;}
.fc0_c00015{color:rgb(35,31,32);}
.fs2_c00015{font-size:41.976000px;}
.fs0_c00015{font-size:48.000000px;}
.fs1_c00015{font-size:72.000000px;}
.y0_c00015{bottom:0.000000px;}
.y24_c00015{bottom:114.805200px;}
.y23_c00015{bottom:138.309150px;}
.y22_c00015{bottom:161.813100px;}
.y21_c00015{bottom:203.412450px;}
.y20_c00015{bottom:228.162450px;}
.y1f_c00015{bottom:252.912450px;}
.y1e_c00015{bottom:292.656450px;}
.y1d_c00015{bottom:317.406450px;}
.y1c_c00015{bottom:342.156450px;}
.y1b_c00015{bottom:366.906450px;}
.y1a_c00015{bottom:391.656450px;}
.y19_c00015{bottom:416.406450px;}
.y18_c00015{bottom:441.156450px;}
.y17_c00015{bottom:480.906450px;}
.y16_c00015{bottom:505.656450px;}
.y15_c00015{bottom:530.406450px;}
.y14_c00015{bottom:555.156450px;}
.y13_c00015{bottom:579.906450px;}
.y12_c00015{bottom:604.674450px;}
.y11_c00015{bottom:629.424450px;}
.y10_c00015{bottom:654.174450px;}
.yf_c00015{bottom:678.924450px;}
.ye_c00015{bottom:718.668450px;}
.yd_c00015{bottom:743.418450px;}
.yc_c00015{bottom:768.168450px;}
.yb_c00015{bottom:807.912450px;}
.ya_c00015{bottom:832.662450px;}
.y9_c00015{bottom:857.412450px;}
.y8_c00015{bottom:882.162450px;}
.y7_c00015{bottom:906.912450px;}
.y6_c00015{bottom:946.656450px;}
.y5_c00015{bottom:971.406450px;}
.y4_c00015{bottom:996.156450px;}
.y3_c00015{bottom:1020.906450px;}
.y2_c00015{bottom:1045.656450px;}
.y1_c00015{bottom:1093.600950px;}
.h2_c00015{height:39.264000px;}
.h3_c00015{height:58.896000px;}
.h1_c00015{height:1135.500000px;}
.h0_c00015{height:1135.506150px;}
.w0_c00015{width:893.950200px;}
.w1_c00015{width:894.000000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:77.603100px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.v1_c00015{vertical-align:21.248000pt;}
.ls2_c00015{letter-spacing:0.000000pt;}
.ls0_c00015{letter-spacing:0.000448pt;}
.ls1_c00015{letter-spacing:0.426667pt;}
.ws1_c00015{word-spacing:-14.528000pt;}
.ws3_c00015{word-spacing:-9.685333pt;}
.ws2_c00015{word-spacing:-8.469824pt;}
.ws1d_c00015{word-spacing:-2.624000pt;}
.ws1e_c00015{word-spacing:-2.048000pt;}
.ws11_c00015{word-spacing:-1.728000pt;}
.wsd_c00015{word-spacing:-1.664000pt;}
.ws13_c00015{word-spacing:-1.344000pt;}
.ws5_c00015{word-spacing:-1.280000pt;}
.wsb_c00015{word-spacing:-1.088000pt;}
.ws1b_c00015{word-spacing:-0.896000pt;}
.ws14_c00015{word-spacing:-0.832000pt;}
.ws19_c00015{word-spacing:-0.576000pt;}
.wse_c00015{word-spacing:-0.192000pt;}
.ws4_c00015{word-spacing:0.000000pt;}
.ws12_c00015{word-spacing:0.064000pt;}
.ws15_c00015{word-spacing:0.192000pt;}
.ws6_c00015{word-spacing:0.384000pt;}
.ws18_c00015{word-spacing:0.896000pt;}
.ws9_c00015{word-spacing:1.152000pt;}
.ws7_c00015{word-spacing:1.600000pt;}
.wsf_c00015{word-spacing:1.664000pt;}
.ws10_c00015{word-spacing:2.432000pt;}
.ws1a_c00015{word-spacing:2.560000pt;}
.ws1c_c00015{word-spacing:2.880000pt;}
.ws16_c00015{word-spacing:4.032000pt;}
.ws8_c00015{word-spacing:4.096000pt;}
.wsc_c00015{word-spacing:5.632000pt;}
.ws17_c00015{word-spacing:5.696000pt;}
.wsa_c00015{word-spacing:6.016000pt;}
.ws1f_c00015{word-spacing:22.016000pt;}
.ws0_c00015{word-spacing:1424.550400pt;}
._2_c00015{margin-left:-6.208000pt;}
._5_c00015{margin-left:-4.530133pt;}
._0_c00015{margin-left:-1.877333pt;}
._1_c00015{margin-left:-0.981333pt;}
._3_c00015{width:0.917333pt;}
._4_c00015{width:2.176000pt;}
._7_c00015{width:20.309333pt;}
._6_c00015{width:23.722667pt;}
.fs2_c00015{font-size:37.312000pt;}
.fs0_c00015{font-size:42.666667pt;}
.fs1_c00015{font-size:64.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y24_c00015{bottom:102.049067pt;}
.y23_c00015{bottom:122.941467pt;}
.y22_c00015{bottom:143.833867pt;}
.y21_c00015{bottom:180.811067pt;}
.y20_c00015{bottom:202.811067pt;}
.y1f_c00015{bottom:224.811067pt;}
.y1e_c00015{bottom:260.139067pt;}
.y1d_c00015{bottom:282.139067pt;}
.y1c_c00015{bottom:304.139067pt;}
.y1b_c00015{bottom:326.139067pt;}
.y1a_c00015{bottom:348.139067pt;}
.y19_c00015{bottom:370.139067pt;}
.y18_c00015{bottom:392.139067pt;}
.y17_c00015{bottom:427.472400pt;}
.y16_c00015{bottom:449.472400pt;}
.y15_c00015{bottom:471.472400pt;}
.y14_c00015{bottom:493.472400pt;}
.y13_c00015{bottom:515.472400pt;}
.y12_c00015{bottom:537.488400pt;}
.y11_c00015{bottom:559.488400pt;}
.y10_c00015{bottom:581.488400pt;}
.yf_c00015{bottom:603.488400pt;}
.ye_c00015{bottom:638.816400pt;}
.yd_c00015{bottom:660.816400pt;}
.yc_c00015{bottom:682.816400pt;}
.yb_c00015{bottom:718.144400pt;}
.ya_c00015{bottom:740.144400pt;}
.y9_c00015{bottom:762.144400pt;}
.y8_c00015{bottom:784.144400pt;}
.y7_c00015{bottom:806.144400pt;}
.y6_c00015{bottom:841.472400pt;}
.y5_c00015{bottom:863.472400pt;}
.y4_c00015{bottom:885.472400pt;}
.y3_c00015{bottom:907.472400pt;}
.y2_c00015{bottom:929.472400pt;}
.y1_c00015{bottom:972.089733pt;}
.h2_c00015{height:34.901333pt;}
.h3_c00015{height:52.352000pt;}
.h1_c00015{height:1009.333333pt;}
.h0_c00015{height:1009.338800pt;}
.w0_c00015{width:794.622400pt;}
.w1_c00015{width:794.666667pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ff42d40506b57b078db5b85.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.178000;font-style:normal;font-weight:normal;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_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.v1_c00016{vertical-align:23.904000px;}
.ls9_c00016{letter-spacing:-1.368000px;}
.lsa_c00016{letter-spacing:-0.816000px;}
.ls7_c00016{letter-spacing:-0.720000px;}
.ls5_c00016{letter-spacing:-0.648000px;}
.ls2_c00016{letter-spacing:-0.576000px;}
.ls4_c00016{letter-spacing:-0.360000px;}
.ls3_c00016{letter-spacing:0.000000px;}
.ls6_c00016{letter-spacing:0.072000px;}
.ls1_c00016{letter-spacing:0.210072px;}
.ls0_c00016{letter-spacing:0.360000px;}
.ls8_c00016{letter-spacing:0.504000px;}
.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;}
}
.ws4_c00016{word-spacing:-16.848000px;}
.ws3_c00016{word-spacing:-16.704000px;}
.ws2_c00016{word-spacing:-16.128000px;}
.ws0_c00016{word-spacing:-10.320000px;}
.ws1a_c00016{word-spacing:-2.232000px;}
.wsa_c00016{word-spacing:-2.160000px;}
.wsf_c00016{word-spacing:-1.584000px;}
.ws1e_c00016{word-spacing:-1.080000px;}
.ws11_c00016{word-spacing:-0.936000px;}
.wsc_c00016{word-spacing:-0.864000px;}
.wsd_c00016{word-spacing:-0.576000px;}
.ws18_c00016{word-spacing:-0.360000px;}
.ws1_c00016{word-spacing:-0.048000px;}
.ws6_c00016{word-spacing:0.000000px;}
.ws22_c00016{word-spacing:0.240000px;}
.wse_c00016{word-spacing:0.360000px;}
.ws1d_c00016{word-spacing:0.432000px;}
.ws10_c00016{word-spacing:0.504000px;}
.ws12_c00016{word-spacing:0.792000px;}
.ws1b_c00016{word-spacing:0.864000px;}
.ws13_c00016{word-spacing:1.008000px;}
.ws23_c00016{word-spacing:1.056000px;}
.ws7_c00016{word-spacing:1.440000px;}
.ws8_c00016{word-spacing:1.512000px;}
.ws1c_c00016{word-spacing:1.728000px;}
.ws1f_c00016{word-spacing:1.800000px;}
.ws5_c00016{word-spacing:1.872000px;}
.ws9_c00016{word-spacing:2.088000px;}
.ws15_c00016{word-spacing:2.448000px;}
.ws14_c00016{word-spacing:2.736000px;}
.ws20_c00016{word-spacing:3.816000px;}
.ws16_c00016{word-spacing:4.392000px;}
.wsb_c00016{word-spacing:4.752000px;}
.ws17_c00016{word-spacing:5.112000px;}
.ws21_c00016{word-spacing:5.832000px;}
.ws19_c00016{word-spacing:6.552000px;}
._0_c00016{margin-left:-2754.699000px;}
._3_c00016{margin-left:-7.632000px;}
._6_c00016{margin-left:-5.112000px;}
._5_c00016{margin-left:-3.168000px;}
._4_c00016{margin-left:-2.088000px;}
._1_c00016{margin-left:-1.008000px;}
._2_c00016{width:1.080000px;}
._9_c00016{width:2.160000px;}
._8_c00016{width:3.240000px;}
._7_c00016{width:5.976000px;}
._a_c00016{width:26.592000px;}
.fc0_c00016{color:rgb(35,31,32);}
.fs2_c00016{font-size:41.976000px;}
.fs0_c00016{font-size:48.000000px;}
.fs1_c00016{font-size:72.000000px;}
.y0_c00016{bottom:0.000000px;}
.y23_c00016{bottom:114.805200px;}
.y22_c00016{bottom:129.805200px;}
.y21_c00016{bottom:188.424450px;}
.y20_c00016{bottom:213.174450px;}
.y1f_c00016{bottom:252.918450px;}
.y1e_c00016{bottom:277.668450px;}
.y1d_c00016{bottom:302.418450px;}
.y1c_c00016{bottom:327.168450px;}
.y1b_c00016{bottom:351.918450px;}
.y1a_c00016{bottom:376.668450px;}
.y19_c00016{bottom:416.412450px;}
.y18_c00016{bottom:441.162450px;}
.y17_c00016{bottom:465.912450px;}
.y16_c00016{bottom:490.662450px;}
.y15_c00016{bottom:515.412450px;}
.y14_c00016{bottom:555.156450px;}
.y13_c00016{bottom:579.924450px;}
.y12_c00016{bottom:604.674450px;}
.y11_c00016{bottom:629.424450px;}
.y10_c00016{bottom:654.174450px;}
.yf_c00016{bottom:678.924450px;}
.ye_c00016{bottom:718.668450px;}
.yd_c00016{bottom:743.418450px;}
.yc_c00016{bottom:768.168450px;}
.yb_c00016{bottom:792.918450px;}
.ya_c00016{bottom:817.668450px;}
.y9_c00016{bottom:842.418450px;}
.y8_c00016{bottom:867.168450px;}
.y7_c00016{bottom:906.912450px;}
.y6_c00016{bottom:931.662450px;}
.y5_c00016{bottom:956.412450px;}
.y4_c00016{bottom:981.162450px;}
.y3_c00016{bottom:1020.906450px;}
.y2_c00016{bottom:1045.656450px;}
.y1_c00016{bottom:1093.600950px;}
.h2_c00016{height:39.264000px;}
.h4_c00016{height:58.320000px;}
.h3_c00016{height:58.896000px;}
.h1_c00016{height:1135.500000px;}
.h0_c00016{height:1135.506150px;}
.w0_c00016{width:893.950200px;}
.w1_c00016{width:894.000000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:128.626800px;}
.x3_c00016{left:145.632900px;}
.x1_c00016{left:808.673550px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.v1_c00016{vertical-align:21.248000pt;}
.ls9_c00016{letter-spacing:-1.216000pt;}
.lsa_c00016{letter-spacing:-0.725333pt;}
.ls7_c00016{letter-spacing:-0.640000pt;}
.ls5_c00016{letter-spacing:-0.576000pt;}
.ls2_c00016{letter-spacing:-0.512000pt;}
.ls4_c00016{letter-spacing:-0.320000pt;}
.ls3_c00016{letter-spacing:0.000000pt;}
.ls6_c00016{letter-spacing:0.064000pt;}
.ls1_c00016{letter-spacing:0.186731pt;}
.ls0_c00016{letter-spacing:0.320000pt;}
.ls8_c00016{letter-spacing:0.448000pt;}
.ws4_c00016{word-spacing:-14.976000pt;}
.ws3_c00016{word-spacing:-14.848000pt;}
.ws2_c00016{word-spacing:-14.336000pt;}
.ws0_c00016{word-spacing:-9.173333pt;}
.ws1a_c00016{word-spacing:-1.984000pt;}
.wsa_c00016{word-spacing:-1.920000pt;}
.wsf_c00016{word-spacing:-1.408000pt;}
.ws1e_c00016{word-spacing:-0.960000pt;}
.ws11_c00016{word-spacing:-0.832000pt;}
.wsc_c00016{word-spacing:-0.768000pt;}
.wsd_c00016{word-spacing:-0.512000pt;}
.ws18_c00016{word-spacing:-0.320000pt;}
.ws1_c00016{word-spacing:-0.042667pt;}
.ws6_c00016{word-spacing:0.000000pt;}
.ws22_c00016{word-spacing:0.213333pt;}
.wse_c00016{word-spacing:0.320000pt;}
.ws1d_c00016{word-spacing:0.384000pt;}
.ws10_c00016{word-spacing:0.448000pt;}
.ws12_c00016{word-spacing:0.704000pt;}
.ws1b_c00016{word-spacing:0.768000pt;}
.ws13_c00016{word-spacing:0.896000pt;}
.ws23_c00016{word-spacing:0.938667pt;}
.ws7_c00016{word-spacing:1.280000pt;}
.ws8_c00016{word-spacing:1.344000pt;}
.ws1c_c00016{word-spacing:1.536000pt;}
.ws1f_c00016{word-spacing:1.600000pt;}
.ws5_c00016{word-spacing:1.664000pt;}
.ws9_c00016{word-spacing:1.856000pt;}
.ws15_c00016{word-spacing:2.176000pt;}
.ws14_c00016{word-spacing:2.432000pt;}
.ws20_c00016{word-spacing:3.392000pt;}
.ws16_c00016{word-spacing:3.904000pt;}
.wsb_c00016{word-spacing:4.224000pt;}
.ws17_c00016{word-spacing:4.544000pt;}
.ws21_c00016{word-spacing:5.184000pt;}
.ws19_c00016{word-spacing:5.824000pt;}
._0_c00016{margin-left:-2448.621333pt;}
._3_c00016{margin-left:-6.784000pt;}
._6_c00016{margin-left:-4.544000pt;}
._5_c00016{margin-left:-2.816000pt;}
._4_c00016{margin-left:-1.856000pt;}
._1_c00016{margin-left:-0.896000pt;}
._2_c00016{width:0.960000pt;}
._9_c00016{width:1.920000pt;}
._8_c00016{width:2.880000pt;}
._7_c00016{width:5.312000pt;}
._a_c00016{width:23.637333pt;}
.fs2_c00016{font-size:37.312000pt;}
.fs0_c00016{font-size:42.666667pt;}
.fs1_c00016{font-size:64.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y23_c00016{bottom:102.049067pt;}
.y22_c00016{bottom:115.382400pt;}
.y21_c00016{bottom:167.488400pt;}
.y20_c00016{bottom:189.488400pt;}
.y1f_c00016{bottom:224.816400pt;}
.y1e_c00016{bottom:246.816400pt;}
.y1d_c00016{bottom:268.816400pt;}
.y1c_c00016{bottom:290.816400pt;}
.y1b_c00016{bottom:312.816400pt;}
.y1a_c00016{bottom:334.816400pt;}
.y19_c00016{bottom:370.144400pt;}
.y18_c00016{bottom:392.144400pt;}
.y17_c00016{bottom:414.144400pt;}
.y16_c00016{bottom:436.144400pt;}
.y15_c00016{bottom:458.144400pt;}
.y14_c00016{bottom:493.472400pt;}
.y13_c00016{bottom:515.488400pt;}
.y12_c00016{bottom:537.488400pt;}
.y11_c00016{bottom:559.488400pt;}
.y10_c00016{bottom:581.488400pt;}
.yf_c00016{bottom:603.488400pt;}
.ye_c00016{bottom:638.816400pt;}
.yd_c00016{bottom:660.816400pt;}
.yc_c00016{bottom:682.816400pt;}
.yb_c00016{bottom:704.816400pt;}
.ya_c00016{bottom:726.816400pt;}
.y9_c00016{bottom:748.816400pt;}
.y8_c00016{bottom:770.816400pt;}
.y7_c00016{bottom:806.144400pt;}
.y6_c00016{bottom:828.144400pt;}
.y5_c00016{bottom:850.144400pt;}
.y4_c00016{bottom:872.144400pt;}
.y3_c00016{bottom:907.472400pt;}
.y2_c00016{bottom:929.472400pt;}
.y1_c00016{bottom:972.089733pt;}
.h2_c00016{height:34.901333pt;}
.h4_c00016{height:51.840000pt;}
.h3_c00016{height:52.352000pt;}
.h1_c00016{height:1009.333333pt;}
.h0_c00016{height:1009.338800pt;}
.w0_c00016{width:794.622400pt;}
.w1_c00016{width:794.666667pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:114.334933pt;}
.x3_c00016{left:129.451467pt;}
.x1_c00016{left:718.820933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8d29e2da070de844458c939.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_ddba39fd8707c1f0c75a297e.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00017{vertical-align:-23.976000px;}
.v0_c00017{vertical-align:0.000000px;}
.v1_c00017{vertical-align:23.976000px;}
.ls5_c00017{letter-spacing:-4.800000px;}
.ls2_c00017{letter-spacing:-1.368000px;}
.ls7_c00017{letter-spacing:-0.240000px;}
.ls6_c00017{letter-spacing:-0.192000px;}
.ls4_c00017{letter-spacing:-0.144000px;}
.ls1_c00017{letter-spacing:0.000000px;}
.ls3_c00017{letter-spacing:0.504000px;}
.ls0_c00017{letter-spacing:1.224000px;}
.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;}
}
.ws3_c00017{word-spacing:-16.848000px;}
.ws4_c00017{word-spacing:-16.344000px;}
.ws2_c00017{word-spacing:-15.120000px;}
.ws5_c00017{word-spacing:-10.896000px;}
.ws6_c00017{word-spacing:-10.704000px;}
.ws7_c00017{word-spacing:-10.656000px;}
.ws1_c00017{word-spacing:-9.528552px;}
.ws1f_c00017{word-spacing:-3.168000px;}
.wsc_c00017{word-spacing:-2.952000px;}
.ws1e_c00017{word-spacing:-2.808000px;}
.ws9_c00017{word-spacing:-1.800000px;}
.ws1c_c00017{word-spacing:-1.512000px;}
.ws15_c00017{word-spacing:-1.008000px;}
.wse_c00017{word-spacing:-0.864000px;}
.wsd_c00017{word-spacing:-0.792000px;}
.ws1a_c00017{word-spacing:-0.504000px;}
.wsb_c00017{word-spacing:-0.288000px;}
.ws8_c00017{word-spacing:0.000000px;}
.ws17_c00017{word-spacing:0.360000px;}
.ws22_c00017{word-spacing:0.720000px;}
.ws10_c00017{word-spacing:0.864000px;}
.ws1b_c00017{word-spacing:1.224000px;}
.ws13_c00017{word-spacing:1.440000px;}
.ws12_c00017{word-spacing:1.584000px;}
.ws14_c00017{word-spacing:1.656000px;}
.ws18_c00017{word-spacing:1.800000px;}
.ws1d_c00017{word-spacing:1.872000px;}
.ws19_c00017{word-spacing:2.160000px;}
.ws16_c00017{word-spacing:2.376000px;}
.ws20_c00017{word-spacing:3.792000px;}
.wsf_c00017{word-spacing:3.888000px;}
.ws21_c00017{word-spacing:4.800000px;}
.ws11_c00017{word-spacing:5.112000px;}
.wsa_c00017{word-spacing:5.400000px;}
.ws0_c00017{word-spacing:1603.435200px;}
._4_c00017{margin-left:-5.400000px;}
._8_c00017{margin-left:-3.648000px;}
._0_c00017{margin-left:-2.112000px;}
._1_c00017{margin-left:-1.104000px;}
._2_c00017{width:1.104000px;}
._3_c00017{width:2.136000px;}
._6_c00017{width:4.800000px;}
._5_c00017{width:18.432000px;}
._9_c00017{width:23.823600px;}
._7_c00017{width:30.015600px;}
.fc0_c00017{color:rgb(35,31,32);}
.fs2_c00017{font-size:41.976000px;}
.fs0_c00017{font-size:48.000000px;}
.fs1_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y24_c00017{bottom:111.616350px;}
.y23_c00017{bottom:135.120300px;}
.y22_c00017{bottom:150.120300px;}
.y21_c00017{bottom:173.624250px;}
.y20_c00017{bottom:197.128200px;}
.y1f_c00017{bottom:212.128200px;}
.y1e_c00017{bottom:259.472550px;}
.y1d_c00017{bottom:284.222550px;}
.y1c_c00017{bottom:323.966550px;}
.y1b_c00017{bottom:348.716550px;}
.y1a_c00017{bottom:373.466550px;}
.y19_c00017{bottom:398.216550px;}
.y18_c00017{bottom:422.966550px;}
.y17_c00017{bottom:447.716550px;}
.y16_c00017{bottom:472.466550px;}
.y15_c00017{bottom:512.210550px;}
.y14_c00017{bottom:566.966550px;}
.y13_c00017{bottom:591.716550px;}
.y12_c00017{bottom:616.466550px;}
.y11_c00017{bottom:641.216550px;}
.y10_c00017{bottom:665.966550px;}
.yf_c00017{bottom:690.716550px;}
.ye_c00017{bottom:730.467450px;}
.yd_c00017{bottom:755.217450px;}
.yc_c00017{bottom:779.967450px;}
.yb_c00017{bottom:804.717450px;}
.ya_c00017{bottom:829.467450px;}
.y9_c00017{bottom:854.217450px;}
.y8_c00017{bottom:878.967450px;}
.y7_c00017{bottom:903.717450px;}
.y6_c00017{bottom:928.473450px;}
.y5_c00017{bottom:968.217450px;}
.y4_c00017{bottom:992.967450px;}
.y3_c00017{bottom:1017.717450px;}
.y2_c00017{bottom:1042.467450px;}
.y1_c00017{bottom:1093.601100px;}
.h2_c00017{height:39.264000px;}
.h3_c00017{height:58.896000px;}
.h4_c00017{height:59.976000px;}
.h1_c00017{height:1135.500000px;}
.h0_c00017{height:1135.506150px;}
.w0_c00017{width:893.950200px;}
.w1_c00017{width:894.000000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:77.603100px;}
.x2_c00017{left:94.608300px;}
@media print{
.v2_c00017{vertical-align:-21.312000pt;}
.v0_c00017{vertical-align:0.000000pt;}
.v1_c00017{vertical-align:21.312000pt;}
.ls5_c00017{letter-spacing:-4.266667pt;}
.ls2_c00017{letter-spacing:-1.216000pt;}
.ls7_c00017{letter-spacing:-0.213333pt;}
.ls6_c00017{letter-spacing:-0.170667pt;}
.ls4_c00017{letter-spacing:-0.128000pt;}
.ls1_c00017{letter-spacing:0.000000pt;}
.ls3_c00017{letter-spacing:0.448000pt;}
.ls0_c00017{letter-spacing:1.088000pt;}
.ws3_c00017{word-spacing:-14.976000pt;}
.ws4_c00017{word-spacing:-14.528000pt;}
.ws2_c00017{word-spacing:-13.440000pt;}
.ws5_c00017{word-spacing:-9.685333pt;}
.ws6_c00017{word-spacing:-9.514667pt;}
.ws7_c00017{word-spacing:-9.472000pt;}
.ws1_c00017{word-spacing:-8.469824pt;}
.ws1f_c00017{word-spacing:-2.816000pt;}
.wsc_c00017{word-spacing:-2.624000pt;}
.ws1e_c00017{word-spacing:-2.496000pt;}
.ws9_c00017{word-spacing:-1.600000pt;}
.ws1c_c00017{word-spacing:-1.344000pt;}
.ws15_c00017{word-spacing:-0.896000pt;}
.wse_c00017{word-spacing:-0.768000pt;}
.wsd_c00017{word-spacing:-0.704000pt;}
.ws1a_c00017{word-spacing:-0.448000pt;}
.wsb_c00017{word-spacing:-0.256000pt;}
.ws8_c00017{word-spacing:0.000000pt;}
.ws17_c00017{word-spacing:0.320000pt;}
.ws22_c00017{word-spacing:0.640000pt;}
.ws10_c00017{word-spacing:0.768000pt;}
.ws1b_c00017{word-spacing:1.088000pt;}
.ws13_c00017{word-spacing:1.280000pt;}
.ws12_c00017{word-spacing:1.408000pt;}
.ws14_c00017{word-spacing:1.472000pt;}
.ws18_c00017{word-spacing:1.600000pt;}
.ws1d_c00017{word-spacing:1.664000pt;}
.ws19_c00017{word-spacing:1.920000pt;}
.ws16_c00017{word-spacing:2.112000pt;}
.ws20_c00017{word-spacing:3.370667pt;}
.wsf_c00017{word-spacing:3.456000pt;}
.ws21_c00017{word-spacing:4.266667pt;}
.ws11_c00017{word-spacing:4.544000pt;}
.wsa_c00017{word-spacing:4.800000pt;}
.ws0_c00017{word-spacing:1425.275733pt;}
._4_c00017{margin-left:-4.800000pt;}
._8_c00017{margin-left:-3.242667pt;}
._0_c00017{margin-left:-1.877333pt;}
._1_c00017{margin-left:-0.981333pt;}
._2_c00017{width:0.981333pt;}
._3_c00017{width:1.898667pt;}
._6_c00017{width:4.266667pt;}
._5_c00017{width:16.384000pt;}
._9_c00017{width:21.176533pt;}
._7_c00017{width:26.680533pt;}
.fs2_c00017{font-size:37.312000pt;}
.fs0_c00017{font-size:42.666667pt;}
.fs1_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y24_c00017{bottom:99.214533pt;}
.y23_c00017{bottom:120.106933pt;}
.y22_c00017{bottom:133.440267pt;}
.y21_c00017{bottom:154.332667pt;}
.y20_c00017{bottom:175.225067pt;}
.y1f_c00017{bottom:188.558400pt;}
.y1e_c00017{bottom:230.642267pt;}
.y1d_c00017{bottom:252.642267pt;}
.y1c_c00017{bottom:287.970267pt;}
.y1b_c00017{bottom:309.970267pt;}
.y1a_c00017{bottom:331.970267pt;}
.y19_c00017{bottom:353.970267pt;}
.y18_c00017{bottom:375.970267pt;}
.y17_c00017{bottom:397.970267pt;}
.y16_c00017{bottom:419.970267pt;}
.y15_c00017{bottom:455.298267pt;}
.y14_c00017{bottom:503.970267pt;}
.y13_c00017{bottom:525.970267pt;}
.y12_c00017{bottom:547.970267pt;}
.y11_c00017{bottom:569.970267pt;}
.y10_c00017{bottom:591.970267pt;}
.yf_c00017{bottom:613.970267pt;}
.ye_c00017{bottom:649.304400pt;}
.yd_c00017{bottom:671.304400pt;}
.yc_c00017{bottom:693.304400pt;}
.yb_c00017{bottom:715.304400pt;}
.ya_c00017{bottom:737.304400pt;}
.y9_c00017{bottom:759.304400pt;}
.y8_c00017{bottom:781.304400pt;}
.y7_c00017{bottom:803.304400pt;}
.y6_c00017{bottom:825.309733pt;}
.y5_c00017{bottom:860.637733pt;}
.y4_c00017{bottom:882.637733pt;}
.y3_c00017{bottom:904.637733pt;}
.y2_c00017{bottom:926.637733pt;}
.y1_c00017{bottom:972.089867pt;}
.h2_c00017{height:34.901333pt;}
.h3_c00017{height:52.352000pt;}
.h4_c00017{height:53.312000pt;}
.h1_c00017{height:1009.333333pt;}
.h0_c00017{height:1009.338800pt;}
.w0_c00017{width:794.622400pt;}
.w1_c00017{width:794.666667pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:68.980533pt;}
.x2_c00017{left:84.096267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6b7b8483ee98078135222ca.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.178000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.067000;font-style:normal;font-weight:normal;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_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.082000;font-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_c00018{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls5_c00018{letter-spacing:-0.864000px;}
.ls6_c00018{letter-spacing:-0.720000px;}
.ls4_c00018{letter-spacing:-0.360000px;}
.ls7_c00018{letter-spacing:-0.288000px;}
.ls3_c00018{letter-spacing:0.000000px;}
.ls2_c00018{letter-spacing:0.192000px;}
.ls1_c00018{letter-spacing:0.360000px;}
.ls0_c00018{letter-spacing:1.224000px;}
.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;}
}
.ws2_c00018{word-spacing:-16.488000px;}
.ws4_c00018{word-spacing:-16.128000px;}
.ws3_c00018{word-spacing:-15.768000px;}
.ws0_c00018{word-spacing:-11.088000px;}
.ws6_c00018{word-spacing:-3.456000px;}
.ws12_c00018{word-spacing:-3.384000px;}
.ws16_c00018{word-spacing:-2.592000px;}
.ws10_c00018{word-spacing:-2.232000px;}
.ws5_c00018{word-spacing:-1.008000px;}
.ws1d_c00018{word-spacing:-0.936000px;}
.wsc_c00018{word-spacing:-0.864000px;}
.wsa_c00018{word-spacing:-0.720000px;}
.wsd_c00018{word-spacing:-0.432000px;}
.ws15_c00018{word-spacing:-0.360000px;}
.wsb_c00018{word-spacing:-0.288000px;}
.ws1_c00018{word-spacing:-0.048000px;}
.ws7_c00018{word-spacing:0.000000px;}
.ws17_c00018{word-spacing:0.072000px;}
.ws23_c00018{word-spacing:0.144000px;}
.ws1a_c00018{word-spacing:0.288000px;}
.ws14_c00018{word-spacing:0.360000px;}
.ws18_c00018{word-spacing:0.432000px;}
.ws13_c00018{word-spacing:0.576000px;}
.ws8_c00018{word-spacing:1.080000px;}
.ws24_c00018{word-spacing:2.016000px;}
.ws11_c00018{word-spacing:2.304000px;}
.ws19_c00018{word-spacing:2.880000px;}
.ws1f_c00018{word-spacing:3.240000px;}
.ws9_c00018{word-spacing:3.312000px;}
.ws21_c00018{word-spacing:3.456000px;}
.ws22_c00018{word-spacing:3.528000px;}
.wsf_c00018{word-spacing:3.672000px;}
.ws20_c00018{word-spacing:4.752000px;}
.wse_c00018{word-spacing:5.040000px;}
.ws1c_c00018{word-spacing:5.256000px;}
.ws1b_c00018{word-spacing:5.328000px;}
.ws1e_c00018{word-spacing:5.400000px;}
._0_c00018{margin-left:-2755.467600px;}
._6_c00018{margin-left:-7.272000px;}
._5_c00018{margin-left:-5.832000px;}
._4_c00018{margin-left:-3.600000px;}
._3_c00018{margin-left:-2.088000px;}
._1_c00018{margin-left:-1.008000px;}
._2_c00018{width:1.080000px;}
._7_c00018{width:2.448000px;}
.fc0_c00018{color:rgb(35,31,32);}
.fs0_c00018{font-size:48.000000px;}
.fs1_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y23_c00018{bottom:120.723450px;}
.y22_c00018{bottom:145.473450px;}
.y21_c00018{bottom:170.223450px;}
.y20_c00018{bottom:194.973450px;}
.y1f_c00018{bottom:234.717450px;}
.y1e_c00018{bottom:289.473450px;}
.y1d_c00018{bottom:314.223450px;}
.y1c_c00018{bottom:338.973450px;}
.y1b_c00018{bottom:363.723450px;}
.y1a_c00018{bottom:388.473450px;}
.y19_c00018{bottom:413.223450px;}
.y18_c00018{bottom:437.973450px;}
.y17_c00018{bottom:462.723450px;}
.y16_c00018{bottom:502.467450px;}
.y15_c00018{bottom:527.217450px;}
.y14_c00018{bottom:551.967450px;}
.y13_c00018{bottom:576.717450px;}
.y12_c00018{bottom:601.467450px;}
.y11_c00018{bottom:626.217450px;}
.y10_c00018{bottom:650.967450px;}
.yf_c00018{bottom:690.717450px;}
.ye_c00018{bottom:715.467450px;}
.yd_c00018{bottom:740.217450px;}
.yc_c00018{bottom:764.967450px;}
.yb_c00018{bottom:804.723450px;}
.ya_c00018{bottom:829.473450px;}
.y9_c00018{bottom:854.223450px;}
.y8_c00018{bottom:893.967450px;}
.y7_c00018{bottom:918.717450px;}
.y6_c00018{bottom:943.467450px;}
.y5_c00018{bottom:968.217450px;}
.y4_c00018{bottom:992.967450px;}
.y3_c00018{bottom:1017.717450px;}
.y2_c00018{bottom:1042.467450px;}
.y1_c00018{bottom:1093.601100px;}
.h2_c00018{height:39.264000px;}
.h3_c00018{height:58.896000px;}
.h4_c00018{height:59.976000px;}
.h1_c00018{height:1135.500000px;}
.h0_c00018{height:1135.506150px;}
.w0_c00018{width:893.950200px;}
.w1_c00018{width:894.000000px;}
.x0_c00018{left:0.000000px;}
.x2_c00018{left:128.626800px;}
.x1_c00018{left:808.073700px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls5_c00018{letter-spacing:-0.768000pt;}
.ls6_c00018{letter-spacing:-0.640000pt;}
.ls4_c00018{letter-spacing:-0.320000pt;}
.ls7_c00018{letter-spacing:-0.256000pt;}
.ls3_c00018{letter-spacing:0.000000pt;}
.ls2_c00018{letter-spacing:0.170667pt;}
.ls1_c00018{letter-spacing:0.320000pt;}
.ls0_c00018{letter-spacing:1.088000pt;}
.ws2_c00018{word-spacing:-14.656000pt;}
.ws4_c00018{word-spacing:-14.336000pt;}
.ws3_c00018{word-spacing:-14.016000pt;}
.ws0_c00018{word-spacing:-9.856000pt;}
.ws6_c00018{word-spacing:-3.072000pt;}
.ws12_c00018{word-spacing:-3.008000pt;}
.ws16_c00018{word-spacing:-2.304000pt;}
.ws10_c00018{word-spacing:-1.984000pt;}
.ws5_c00018{word-spacing:-0.896000pt;}
.ws1d_c00018{word-spacing:-0.832000pt;}
.wsc_c00018{word-spacing:-0.768000pt;}
.wsa_c00018{word-spacing:-0.640000pt;}
.wsd_c00018{word-spacing:-0.384000pt;}
.ws15_c00018{word-spacing:-0.320000pt;}
.wsb_c00018{word-spacing:-0.256000pt;}
.ws1_c00018{word-spacing:-0.042667pt;}
.ws7_c00018{word-spacing:0.000000pt;}
.ws17_c00018{word-spacing:0.064000pt;}
.ws23_c00018{word-spacing:0.128000pt;}
.ws1a_c00018{word-spacing:0.256000pt;}
.ws14_c00018{word-spacing:0.320000pt;}
.ws18_c00018{word-spacing:0.384000pt;}
.ws13_c00018{word-spacing:0.512000pt;}
.ws8_c00018{word-spacing:0.960000pt;}
.ws24_c00018{word-spacing:1.792000pt;}
.ws11_c00018{word-spacing:2.048000pt;}
.ws19_c00018{word-spacing:2.560000pt;}
.ws1f_c00018{word-spacing:2.880000pt;}
.ws9_c00018{word-spacing:2.944000pt;}
.ws21_c00018{word-spacing:3.072000pt;}
.ws22_c00018{word-spacing:3.136000pt;}
.wsf_c00018{word-spacing:3.264000pt;}
.ws20_c00018{word-spacing:4.224000pt;}
.wse_c00018{word-spacing:4.480000pt;}
.ws1c_c00018{word-spacing:4.672000pt;}
.ws1b_c00018{word-spacing:4.736000pt;}
.ws1e_c00018{word-spacing:4.800000pt;}
._0_c00018{margin-left:-2449.304533pt;}
._6_c00018{margin-left:-6.464000pt;}
._5_c00018{margin-left:-5.184000pt;}
._4_c00018{margin-left:-3.200000pt;}
._3_c00018{margin-left:-1.856000pt;}
._1_c00018{margin-left:-0.896000pt;}
._2_c00018{width:0.960000pt;}
._7_c00018{width:2.176000pt;}
.fs0_c00018{font-size:42.666667pt;}
.fs1_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y23_c00018{bottom:107.309733pt;}
.y22_c00018{bottom:129.309733pt;}
.y21_c00018{bottom:151.309733pt;}
.y20_c00018{bottom:173.309733pt;}
.y1f_c00018{bottom:208.637733pt;}
.y1e_c00018{bottom:257.309733pt;}
.y1d_c00018{bottom:279.309733pt;}
.y1c_c00018{bottom:301.309733pt;}
.y1b_c00018{bottom:323.309733pt;}
.y1a_c00018{bottom:345.309733pt;}
.y19_c00018{bottom:367.309733pt;}
.y18_c00018{bottom:389.309733pt;}
.y17_c00018{bottom:411.309733pt;}
.y16_c00018{bottom:446.637733pt;}
.y15_c00018{bottom:468.637733pt;}
.y14_c00018{bottom:490.637733pt;}
.y13_c00018{bottom:512.637733pt;}
.y12_c00018{bottom:534.637733pt;}
.y11_c00018{bottom:556.637733pt;}
.y10_c00018{bottom:578.637733pt;}
.yf_c00018{bottom:613.971067pt;}
.ye_c00018{bottom:635.971067pt;}
.yd_c00018{bottom:657.971067pt;}
.yc_c00018{bottom:679.971067pt;}
.yb_c00018{bottom:715.309733pt;}
.ya_c00018{bottom:737.309733pt;}
.y9_c00018{bottom:759.309733pt;}
.y8_c00018{bottom:794.637733pt;}
.y7_c00018{bottom:816.637733pt;}
.y6_c00018{bottom:838.637733pt;}
.y5_c00018{bottom:860.637733pt;}
.y4_c00018{bottom:882.637733pt;}
.y3_c00018{bottom:904.637733pt;}
.y2_c00018{bottom:926.637733pt;}
.y1_c00018{bottom:972.089867pt;}
.h2_c00018{height:34.901333pt;}
.h3_c00018{height:52.352000pt;}
.h4_c00018{height:53.312000pt;}
.h1_c00018{height:1009.333333pt;}
.h0_c00018{height:1009.338800pt;}
.w0_c00018{width:794.622400pt;}
.w1_c00018{width:794.666667pt;}
.x0_c00018{left:0.000000pt;}
.x2_c00018{left:114.334933pt;}
.x1_c00018{left:718.287733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9a3f7c57aa7a59a76783a81.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.067000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_3c4ce106ee3ccbfbb2d23267.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:0.833000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls4_c00019{letter-spacing:-0.792000px;}
.ls3_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.360000px;}
.ls2_c00019{letter-spacing:0.720000px;}
.ls1_c00019{letter-spacing:8.280000px;}
.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;}
}
.ws12_c00019{word-spacing:-2.880000px;}
.ws19_c00019{word-spacing:-2.592000px;}
.ws4_c00019{word-spacing:-2.304000px;}
.ws1d_c00019{word-spacing:-1.944000px;}
.ws2_c00019{word-spacing:-1.368000px;}
.ws1e_c00019{word-spacing:-1.224000px;}
.wsc_c00019{word-spacing:-1.152000px;}
.wsb_c00019{word-spacing:-1.080000px;}
.ws1b_c00019{word-spacing:-0.360000px;}
.ws17_c00019{word-spacing:-0.288000px;}
.ws1_c00019{word-spacing:0.000000px;}
.ws13_c00019{word-spacing:0.144000px;}
.ws1c_c00019{word-spacing:0.288000px;}
.ws1f_c00019{word-spacing:0.504000px;}
.wsa_c00019{word-spacing:0.720000px;}
.ws18_c00019{word-spacing:0.864000px;}
.ws9_c00019{word-spacing:1.080000px;}
.ws22_c00019{word-spacing:1.152000px;}
.ws8_c00019{word-spacing:2.232000px;}
.wsd_c00019{word-spacing:2.448000px;}
.ws16_c00019{word-spacing:2.664000px;}
.ws14_c00019{word-spacing:3.456000px;}
.wse_c00019{word-spacing:3.600000px;}
.ws1a_c00019{word-spacing:3.672000px;}
.ws10_c00019{word-spacing:3.744000px;}
.ws6_c00019{word-spacing:4.032000px;}
.ws7_c00019{word-spacing:4.104000px;}
.ws3_c00019{word-spacing:4.824000px;}
.ws11_c00019{word-spacing:5.760000px;}
.ws21_c00019{word-spacing:6.336000px;}
.ws20_c00019{word-spacing:6.696000px;}
.ws5_c00019{word-spacing:7.920000px;}
.ws15_c00019{word-spacing:9.216000px;}
.wsf_c00019{word-spacing:9.504000px;}
.ws0_c00019{word-spacing:1605.019200px;}
._3_c00019{margin-left:-7.272000px;}
._6_c00019{margin-left:-5.904000px;}
._5_c00019{margin-left:-3.840000px;}
._0_c00019{margin-left:-2.112000px;}
._1_c00019{margin-left:-1.104000px;}
._2_c00019{width:1.272000px;}
._4_c00019{width:2.784000px;}
.fc0_c00019{color:rgb(35,31,32);}
.fs0_c00019{font-size:48.000000px;}
.fs1_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y25_c00019{bottom:131.235450px;}
.y24_c00019{bottom:155.985450px;}
.y23_c00019{bottom:180.735450px;}
.y22_c00019{bottom:205.485450px;}
.y21_c00019{bottom:230.235450px;}
.y20_c00019{bottom:269.979450px;}
.y1f_c00019{bottom:294.729450px;}
.y1e_c00019{bottom:319.479450px;}
.y1d_c00019{bottom:344.229450px;}
.y1c_c00019{bottom:368.979450px;}
.y1b_c00019{bottom:393.729450px;}
.y1a_c00019{bottom:418.479450px;}
.y19_c00019{bottom:443.229450px;}
.y18_c00019{bottom:467.979450px;}
.y17_c00019{bottom:492.729450px;}
.y16_c00019{bottom:517.479450px;}
.y15_c00019{bottom:557.223450px;}
.y14_c00019{bottom:581.973450px;}
.y13_c00019{bottom:606.723450px;}
.y12_c00019{bottom:631.473450px;}
.y11_c00019{bottom:656.223450px;}
.y10_c00019{bottom:680.973450px;}
.yf_c00019{bottom:705.723450px;}
.ye_c00019{bottom:730.473450px;}
.yd_c00019{bottom:755.223450px;}
.yc_c00019{bottom:779.973450px;}
.yb_c00019{bottom:804.723450px;}
.ya_c00019{bottom:829.473450px;}
.y9_c00019{bottom:854.223450px;}
.y8_c00019{bottom:878.973450px;}
.y7_c00019{bottom:903.723450px;}
.y6_c00019{bottom:928.473450px;}
.y5_c00019{bottom:968.217450px;}
.y4_c00019{bottom:992.967450px;}
.y3_c00019{bottom:1017.717450px;}
.y2_c00019{bottom:1042.467450px;}
.y1_c00019{bottom:1093.601100px;}
.h2_c00019{height:39.264000px;}
.h3_c00019{height:58.896000px;}
.h1_c00019{height:1135.500000px;}
.h0_c00019{height:1135.506150px;}
.w0_c00019{width:893.950200px;}
.w1_c00019{width:894.000000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:77.603100px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls4_c00019{letter-spacing:-0.704000pt;}
.ls3_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.320000pt;}
.ls2_c00019{letter-spacing:0.640000pt;}
.ls1_c00019{letter-spacing:7.360000pt;}
.ws12_c00019{word-spacing:-2.560000pt;}
.ws19_c00019{word-spacing:-2.304000pt;}
.ws4_c00019{word-spacing:-2.048000pt;}
.ws1d_c00019{word-spacing:-1.728000pt;}
.ws2_c00019{word-spacing:-1.216000pt;}
.ws1e_c00019{word-spacing:-1.088000pt;}
.wsc_c00019{word-spacing:-1.024000pt;}
.wsb_c00019{word-spacing:-0.960000pt;}
.ws1b_c00019{word-spacing:-0.320000pt;}
.ws17_c00019{word-spacing:-0.256000pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws13_c00019{word-spacing:0.128000pt;}
.ws1c_c00019{word-spacing:0.256000pt;}
.ws1f_c00019{word-spacing:0.448000pt;}
.wsa_c00019{word-spacing:0.640000pt;}
.ws18_c00019{word-spacing:0.768000pt;}
.ws9_c00019{word-spacing:0.960000pt;}
.ws22_c00019{word-spacing:1.024000pt;}
.ws8_c00019{word-spacing:1.984000pt;}
.wsd_c00019{word-spacing:2.176000pt;}
.ws16_c00019{word-spacing:2.368000pt;}
.ws14_c00019{word-spacing:3.072000pt;}
.wse_c00019{word-spacing:3.200000pt;}
.ws1a_c00019{word-spacing:3.264000pt;}
.ws10_c00019{word-spacing:3.328000pt;}
.ws6_c00019{word-spacing:3.584000pt;}
.ws7_c00019{word-spacing:3.648000pt;}
.ws3_c00019{word-spacing:4.288000pt;}
.ws11_c00019{word-spacing:5.120000pt;}
.ws21_c00019{word-spacing:5.632000pt;}
.ws20_c00019{word-spacing:5.952000pt;}
.ws5_c00019{word-spacing:7.040000pt;}
.ws15_c00019{word-spacing:8.192000pt;}
.wsf_c00019{word-spacing:8.448000pt;}
.ws0_c00019{word-spacing:1426.683733pt;}
._3_c00019{margin-left:-6.464000pt;}
._6_c00019{margin-left:-5.248000pt;}
._5_c00019{margin-left:-3.413333pt;}
._0_c00019{margin-left:-1.877333pt;}
._1_c00019{margin-left:-0.981333pt;}
._2_c00019{width:1.130667pt;}
._4_c00019{width:2.474667pt;}
.fs0_c00019{font-size:42.666667pt;}
.fs1_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y25_c00019{bottom:116.653733pt;}
.y24_c00019{bottom:138.653733pt;}
.y23_c00019{bottom:160.653733pt;}
.y22_c00019{bottom:182.653733pt;}
.y21_c00019{bottom:204.653733pt;}
.y20_c00019{bottom:239.981733pt;}
.y1f_c00019{bottom:261.981733pt;}
.y1e_c00019{bottom:283.981733pt;}
.y1d_c00019{bottom:305.981733pt;}
.y1c_c00019{bottom:327.981733pt;}
.y1b_c00019{bottom:349.981733pt;}
.y1a_c00019{bottom:371.981733pt;}
.y19_c00019{bottom:393.981733pt;}
.y18_c00019{bottom:415.981733pt;}
.y17_c00019{bottom:437.981733pt;}
.y16_c00019{bottom:459.981733pt;}
.y15_c00019{bottom:495.309733pt;}
.y14_c00019{bottom:517.309733pt;}
.y13_c00019{bottom:539.309733pt;}
.y12_c00019{bottom:561.309733pt;}
.y11_c00019{bottom:583.309733pt;}
.y10_c00019{bottom:605.309733pt;}
.yf_c00019{bottom:627.309733pt;}
.ye_c00019{bottom:649.309733pt;}
.yd_c00019{bottom:671.309733pt;}
.yc_c00019{bottom:693.309733pt;}
.yb_c00019{bottom:715.309733pt;}
.ya_c00019{bottom:737.309733pt;}
.y9_c00019{bottom:759.309733pt;}
.y8_c00019{bottom:781.309733pt;}
.y7_c00019{bottom:803.309733pt;}
.y6_c00019{bottom:825.309733pt;}
.y5_c00019{bottom:860.637733pt;}
.y4_c00019{bottom:882.637733pt;}
.y3_c00019{bottom:904.637733pt;}
.y2_c00019{bottom:926.637733pt;}
.y1_c00019{bottom:972.089867pt;}
.h2_c00019{height:34.901333pt;}
.h3_c00019{height:52.352000pt;}
.h1_c00019{height:1009.333333pt;}
.h0_c00019{height:1009.338800pt;}
.w0_c00019{width:794.622400pt;}
.w1_c00019{width:794.666667pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e02c7d8b5e06c6bc991559f.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.178000;font-style:normal;font-weight:normal;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_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls2_c00020{letter-spacing:-0.288000px;}
.ls3_c00020{letter-spacing:0.000000px;}
.ls1_c00020{letter-spacing:0.360000px;}
.ls0_c00020{letter-spacing:0.720000px;}
.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:-10.608000px;}
.wsb_c00020{word-spacing:-3.096000px;}
.ws19_c00020{word-spacing:-2.592000px;}
.ws13_c00020{word-spacing:-2.304000px;}
.ws9_c00020{word-spacing:-1.440000px;}
.ws2_c00020{word-spacing:-1.008000px;}
.ws6_c00020{word-spacing:-0.936000px;}
.ws11_c00020{word-spacing:-0.864000px;}
.wsf_c00020{word-spacing:-0.288000px;}
.ws7_c00020{word-spacing:-0.144000px;}
.ws1_c00020{word-spacing:-0.048000px;}
.ws4_c00020{word-spacing:0.000000px;}
.ws3_c00020{word-spacing:0.216000px;}
.ws1c_c00020{word-spacing:0.288000px;}
.ws17_c00020{word-spacing:0.360000px;}
.ws5_c00020{word-spacing:1.296000px;}
.ws14_c00020{word-spacing:1.368000px;}
.wse_c00020{word-spacing:1.512000px;}
.ws1b_c00020{word-spacing:1.944000px;}
.ws1a_c00020{word-spacing:2.016000px;}
.ws15_c00020{word-spacing:2.520000px;}
.ws16_c00020{word-spacing:2.952000px;}
.ws10_c00020{word-spacing:3.960000px;}
.ws18_c00020{word-spacing:4.032000px;}
.wsa_c00020{word-spacing:4.680000px;}
.wsc_c00020{word-spacing:6.264000px;}
.wsd_c00020{word-spacing:6.336000px;}
.ws8_c00020{word-spacing:6.840000px;}
.ws12_c00020{word-spacing:7.128000px;}
._0_c00020{margin-left:-2754.987600px;}
._2_c00020{margin-left:-5.976000px;}
._5_c00020{margin-left:-4.032000px;}
._4_c00020{margin-left:-2.088000px;}
._1_c00020{margin-left:-1.008000px;}
._3_c00020{width:1.152000px;}
.fc0_c00020{color:rgb(35,31,32);}
.fs0_c00020{font-size:48.000000px;}
.fs1_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y23_c00020{bottom:135.735450px;}
.y22_c00020{bottom:160.485450px;}
.y21_c00020{bottom:185.235450px;}
.y20_c00020{bottom:209.985450px;}
.y1f_c00020{bottom:234.735450px;}
.y1e_c00020{bottom:274.479450px;}
.y1d_c00020{bottom:299.229450px;}
.y1c_c00020{bottom:323.979450px;}
.y1b_c00020{bottom:348.729450px;}
.y1a_c00020{bottom:373.479450px;}
.y19_c00020{bottom:398.229450px;}
.y18_c00020{bottom:422.979450px;}
.y17_c00020{bottom:447.729450px;}
.y16_c00020{bottom:487.473450px;}
.y15_c00020{bottom:542.229450px;}
.y14_c00020{bottom:566.979450px;}
.y13_c00020{bottom:591.729450px;}
.y12_c00020{bottom:616.479450px;}
.y11_c00020{bottom:641.229450px;}
.y10_c00020{bottom:665.979450px;}
.yf_c00020{bottom:690.729450px;}
.ye_c00020{bottom:715.479450px;}
.yd_c00020{bottom:755.223450px;}
.yc_c00020{bottom:779.973450px;}
.yb_c00020{bottom:804.723450px;}
.ya_c00020{bottom:829.473450px;}
.y9_c00020{bottom:854.223450px;}
.y8_c00020{bottom:878.973450px;}
.y7_c00020{bottom:903.723450px;}
.y6_c00020{bottom:928.473450px;}
.y5_c00020{bottom:953.223450px;}
.y4_c00020{bottom:992.967450px;}
.y3_c00020{bottom:1017.717450px;}
.y2_c00020{bottom:1042.467450px;}
.y1_c00020{bottom:1093.601100px;}
.h2_c00020{height:39.264000px;}
.h3_c00020{height:58.896000px;}
.h4_c00020{height:59.976000px;}
.h1_c00020{height:1135.500000px;}
.h0_c00020{height:1135.506150px;}
.w0_c00020{width:893.950200px;}
.w1_c00020{width:894.000000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:128.626800px;}
.x1_c00020{left:807.605700px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls2_c00020{letter-spacing:-0.256000pt;}
.ls3_c00020{letter-spacing:0.000000pt;}
.ls1_c00020{letter-spacing:0.320000pt;}
.ls0_c00020{letter-spacing:0.640000pt;}
.ws0_c00020{word-spacing:-9.429333pt;}
.wsb_c00020{word-spacing:-2.752000pt;}
.ws19_c00020{word-spacing:-2.304000pt;}
.ws13_c00020{word-spacing:-2.048000pt;}
.ws9_c00020{word-spacing:-1.280000pt;}
.ws2_c00020{word-spacing:-0.896000pt;}
.ws6_c00020{word-spacing:-0.832000pt;}
.ws11_c00020{word-spacing:-0.768000pt;}
.wsf_c00020{word-spacing:-0.256000pt;}
.ws7_c00020{word-spacing:-0.128000pt;}
.ws1_c00020{word-spacing:-0.042667pt;}
.ws4_c00020{word-spacing:0.000000pt;}
.ws3_c00020{word-spacing:0.192000pt;}
.ws1c_c00020{word-spacing:0.256000pt;}
.ws17_c00020{word-spacing:0.320000pt;}
.ws5_c00020{word-spacing:1.152000pt;}
.ws14_c00020{word-spacing:1.216000pt;}
.wse_c00020{word-spacing:1.344000pt;}
.ws1b_c00020{word-spacing:1.728000pt;}
.ws1a_c00020{word-spacing:1.792000pt;}
.ws15_c00020{word-spacing:2.240000pt;}
.ws16_c00020{word-spacing:2.624000pt;}
.ws10_c00020{word-spacing:3.520000pt;}
.ws18_c00020{word-spacing:3.584000pt;}
.wsa_c00020{word-spacing:4.160000pt;}
.wsc_c00020{word-spacing:5.568000pt;}
.wsd_c00020{word-spacing:5.632000pt;}
.ws8_c00020{word-spacing:6.080000pt;}
.ws12_c00020{word-spacing:6.336000pt;}
._0_c00020{margin-left:-2448.877867pt;}
._2_c00020{margin-left:-5.312000pt;}
._5_c00020{margin-left:-3.584000pt;}
._4_c00020{margin-left:-1.856000pt;}
._1_c00020{margin-left:-0.896000pt;}
._3_c00020{width:1.024000pt;}
.fs0_c00020{font-size:42.666667pt;}
.fs1_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y23_c00020{bottom:120.653733pt;}
.y22_c00020{bottom:142.653733pt;}
.y21_c00020{bottom:164.653733pt;}
.y20_c00020{bottom:186.653733pt;}
.y1f_c00020{bottom:208.653733pt;}
.y1e_c00020{bottom:243.981733pt;}
.y1d_c00020{bottom:265.981733pt;}
.y1c_c00020{bottom:287.981733pt;}
.y1b_c00020{bottom:309.981733pt;}
.y1a_c00020{bottom:331.981733pt;}
.y19_c00020{bottom:353.981733pt;}
.y18_c00020{bottom:375.981733pt;}
.y17_c00020{bottom:397.981733pt;}
.y16_c00020{bottom:433.309733pt;}
.y15_c00020{bottom:481.981733pt;}
.y14_c00020{bottom:503.981733pt;}
.y13_c00020{bottom:525.981733pt;}
.y12_c00020{bottom:547.981733pt;}
.y11_c00020{bottom:569.981733pt;}
.y10_c00020{bottom:591.981733pt;}
.yf_c00020{bottom:613.981733pt;}
.ye_c00020{bottom:635.981733pt;}
.yd_c00020{bottom:671.309733pt;}
.yc_c00020{bottom:693.309733pt;}
.yb_c00020{bottom:715.309733pt;}
.ya_c00020{bottom:737.309733pt;}
.y9_c00020{bottom:759.309733pt;}
.y8_c00020{bottom:781.309733pt;}
.y7_c00020{bottom:803.309733pt;}
.y6_c00020{bottom:825.309733pt;}
.y5_c00020{bottom:847.309733pt;}
.y4_c00020{bottom:882.637733pt;}
.y3_c00020{bottom:904.637733pt;}
.y2_c00020{bottom:926.637733pt;}
.y1_c00020{bottom:972.089867pt;}
.h2_c00020{height:34.901333pt;}
.h3_c00020{height:52.352000pt;}
.h4_c00020{height:53.312000pt;}
.h1_c00020{height:1009.333333pt;}
.h0_c00020{height:1009.338800pt;}
.w0_c00020{width:794.622400pt;}
.w1_c00020{width:794.666667pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:114.334933pt;}
.x1_c00020{left:717.871733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cfaa52724042ef723de8ef8.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls4_c00021{letter-spacing:-0.504000px;}
.ls3_c00021{letter-spacing:-0.360000px;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.360000px;}
.ls1_c00021{letter-spacing:0.720000px;}
.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;}
}
.ws1_c00021{word-spacing:-17.064000px;}
.wsc_c00021{word-spacing:-2.448000px;}
.ws14_c00021{word-spacing:-1.944000px;}
.ws5_c00021{word-spacing:-1.584000px;}
.ws10_c00021{word-spacing:-1.512000px;}
.ws7_c00021{word-spacing:-1.440000px;}
.ws9_c00021{word-spacing:-0.864000px;}
.ws12_c00021{word-spacing:-0.792000px;}
.ws1b_c00021{word-spacing:-0.648000px;}
.ws6_c00021{word-spacing:-0.432000px;}
.ws17_c00021{word-spacing:-0.360000px;}
.ws19_c00021{word-spacing:-0.144000px;}
.ws2_c00021{word-spacing:0.000000px;}
.ws18_c00021{word-spacing:0.072000px;}
.ws11_c00021{word-spacing:0.360000px;}
.ws1c_c00021{word-spacing:0.648000px;}
.wse_c00021{word-spacing:0.864000px;}
.ws13_c00021{word-spacing:1.080000px;}
.wsa_c00021{word-spacing:1.368000px;}
.ws8_c00021{word-spacing:2.088000px;}
.wsb_c00021{word-spacing:2.520000px;}
.ws15_c00021{word-spacing:2.736000px;}
.wsd_c00021{word-spacing:3.384000px;}
.ws3_c00021{word-spacing:3.456000px;}
.ws16_c00021{word-spacing:3.744000px;}
.ws1a_c00021{word-spacing:5.400000px;}
.ws4_c00021{word-spacing:6.048000px;}
.wsf_c00021{word-spacing:6.408000px;}
.ws0_c00021{word-spacing:1596.859200px;}
._4_c00021{margin-left:-6.864000px;}
._5_c00021{margin-left:-4.776000px;}
._3_c00021{margin-left:-3.168000px;}
._0_c00021{margin-left:-2.112000px;}
._1_c00021{margin-left:-1.104000px;}
._2_c00021{width:1.536000px;}
.fc0_c00021{color:rgb(35,31,32);}
.fs0_c00021{font-size:48.000000px;}
.fs1_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y22_c00021{bottom:115.485450px;}
.y21_c00021{bottom:140.235450px;}
.y20_c00021{bottom:164.985450px;}
.y1f_c00021{bottom:189.735450px;}
.y1e_c00021{bottom:214.485450px;}
.y1d_c00021{bottom:239.235450px;}
.y1c_c00021{bottom:278.979450px;}
.y1b_c00021{bottom:303.729450px;}
.y1a_c00021{bottom:328.479450px;}
.y19_c00021{bottom:353.229450px;}
.y18_c00021{bottom:377.979450px;}
.y17_c00021{bottom:417.723450px;}
.y16_c00021{bottom:472.479450px;}
.y15_c00021{bottom:497.229450px;}
.y14_c00021{bottom:521.979450px;}
.y13_c00021{bottom:546.729450px;}
.y12_c00021{bottom:571.479450px;}
.y11_c00021{bottom:596.229450px;}
.y10_c00021{bottom:635.973450px;}
.yf_c00021{bottom:660.723450px;}
.ye_c00021{bottom:685.473450px;}
.yd_c00021{bottom:710.223450px;}
.yc_c00021{bottom:734.973450px;}
.yb_c00021{bottom:774.717450px;}
.ya_c00021{bottom:829.473450px;}
.y9_c00021{bottom:854.223450px;}
.y8_c00021{bottom:878.973450px;}
.y7_c00021{bottom:903.723450px;}
.y6_c00021{bottom:928.473450px;}
.y5_c00021{bottom:953.223450px;}
.y4_c00021{bottom:977.973450px;}
.y3_c00021{bottom:1017.717450px;}
.y2_c00021{bottom:1042.467450px;}
.y1_c00021{bottom:1093.601100px;}
.h2_c00021{height:39.264000px;}
.h3_c00021{height:58.896000px;}
.h4_c00021{height:59.976000px;}
.h1_c00021{height:1135.500000px;}
.h0_c00021{height:1135.506150px;}
.w0_c00021{width:893.950200px;}
.w1_c00021{width:894.000000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:77.603100px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls4_c00021{letter-spacing:-0.448000pt;}
.ls3_c00021{letter-spacing:-0.320000pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.320000pt;}
.ls1_c00021{letter-spacing:0.640000pt;}
.ws1_c00021{word-spacing:-15.168000pt;}
.wsc_c00021{word-spacing:-2.176000pt;}
.ws14_c00021{word-spacing:-1.728000pt;}
.ws5_c00021{word-spacing:-1.408000pt;}
.ws10_c00021{word-spacing:-1.344000pt;}
.ws7_c00021{word-spacing:-1.280000pt;}
.ws9_c00021{word-spacing:-0.768000pt;}
.ws12_c00021{word-spacing:-0.704000pt;}
.ws1b_c00021{word-spacing:-0.576000pt;}
.ws6_c00021{word-spacing:-0.384000pt;}
.ws17_c00021{word-spacing:-0.320000pt;}
.ws19_c00021{word-spacing:-0.128000pt;}
.ws2_c00021{word-spacing:0.000000pt;}
.ws18_c00021{word-spacing:0.064000pt;}
.ws11_c00021{word-spacing:0.320000pt;}
.ws1c_c00021{word-spacing:0.576000pt;}
.wse_c00021{word-spacing:0.768000pt;}
.ws13_c00021{word-spacing:0.960000pt;}
.wsa_c00021{word-spacing:1.216000pt;}
.ws8_c00021{word-spacing:1.856000pt;}
.wsb_c00021{word-spacing:2.240000pt;}
.ws15_c00021{word-spacing:2.432000pt;}
.wsd_c00021{word-spacing:3.008000pt;}
.ws3_c00021{word-spacing:3.072000pt;}
.ws16_c00021{word-spacing:3.328000pt;}
.ws1a_c00021{word-spacing:4.800000pt;}
.ws4_c00021{word-spacing:5.376000pt;}
.wsf_c00021{word-spacing:5.696000pt;}
.ws0_c00021{word-spacing:1419.430400pt;}
._4_c00021{margin-left:-6.101333pt;}
._5_c00021{margin-left:-4.245333pt;}
._3_c00021{margin-left:-2.816000pt;}
._0_c00021{margin-left:-1.877333pt;}
._1_c00021{margin-left:-0.981333pt;}
._2_c00021{width:1.365333pt;}
.fs0_c00021{font-size:42.666667pt;}
.fs1_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y22_c00021{bottom:102.653733pt;}
.y21_c00021{bottom:124.653733pt;}
.y20_c00021{bottom:146.653733pt;}
.y1f_c00021{bottom:168.653733pt;}
.y1e_c00021{bottom:190.653733pt;}
.y1d_c00021{bottom:212.653733pt;}
.y1c_c00021{bottom:247.981733pt;}
.y1b_c00021{bottom:269.981733pt;}
.y1a_c00021{bottom:291.981733pt;}
.y19_c00021{bottom:313.981733pt;}
.y18_c00021{bottom:335.981733pt;}
.y17_c00021{bottom:371.309733pt;}
.y16_c00021{bottom:419.981733pt;}
.y15_c00021{bottom:441.981733pt;}
.y14_c00021{bottom:463.981733pt;}
.y13_c00021{bottom:485.981733pt;}
.y12_c00021{bottom:507.981733pt;}
.y11_c00021{bottom:529.981733pt;}
.y10_c00021{bottom:565.309733pt;}
.yf_c00021{bottom:587.309733pt;}
.ye_c00021{bottom:609.309733pt;}
.yd_c00021{bottom:631.309733pt;}
.yc_c00021{bottom:653.309733pt;}
.yb_c00021{bottom:688.637733pt;}
.ya_c00021{bottom:737.309733pt;}
.y9_c00021{bottom:759.309733pt;}
.y8_c00021{bottom:781.309733pt;}
.y7_c00021{bottom:803.309733pt;}
.y6_c00021{bottom:825.309733pt;}
.y5_c00021{bottom:847.309733pt;}
.y4_c00021{bottom:869.309733pt;}
.y3_c00021{bottom:904.637733pt;}
.y2_c00021{bottom:926.637733pt;}
.y1_c00021{bottom:972.089867pt;}
.h2_c00021{height:34.901333pt;}
.h3_c00021{height:52.352000pt;}
.h4_c00021{height:53.312000pt;}
.h1_c00021{height:1009.333333pt;}
.h0_c00021{height:1009.338800pt;}
.w0_c00021{width:794.622400pt;}
.w1_c00021{width:794.666667pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82c6f44f0e3f0c38f3d98799.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_3c4ce106ee3ccbfbb2d23267.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:0.833000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls3_c00022{letter-spacing:-2.160000px;}
.ls5_c00022{letter-spacing:-2.088000px;}
.ls2_c00022{letter-spacing:-0.360000px;}
.ls4_c00022{letter-spacing:-0.288000px;}
.ls1_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00022{word-spacing:-16.488000px;}
.ws4_c00022{word-spacing:-16.344000px;}
.ws3_c00022{word-spacing:-16.056000px;}
.ws0_c00022{word-spacing:-11.376000px;}
.wse_c00022{word-spacing:-3.096000px;}
.ws1a_c00022{word-spacing:-2.664000px;}
.ws8_c00022{word-spacing:-2.232000px;}
.ws1b_c00022{word-spacing:-2.160000px;}
.ws13_c00022{word-spacing:-0.936000px;}
.wsf_c00022{word-spacing:-0.432000px;}
.wsb_c00022{word-spacing:-0.144000px;}
.ws1_c00022{word-spacing:-0.048000px;}
.ws6_c00022{word-spacing:0.000000px;}
.ws5_c00022{word-spacing:0.216000px;}
.ws9_c00022{word-spacing:0.504000px;}
.ws19_c00022{word-spacing:0.648000px;}
.ws15_c00022{word-spacing:0.720000px;}
.wsa_c00022{word-spacing:1.512000px;}
.ws18_c00022{word-spacing:2.088000px;}
.wsd_c00022{word-spacing:2.160000px;}
.ws14_c00022{word-spacing:2.808000px;}
.ws10_c00022{word-spacing:3.312000px;}
.ws12_c00022{word-spacing:3.456000px;}
.wsc_c00022{word-spacing:3.888000px;}
.ws7_c00022{word-spacing:5.400000px;}
.ws11_c00022{word-spacing:7.056000px;}
.ws16_c00022{word-spacing:7.128000px;}
.ws17_c00022{word-spacing:8.424000px;}
._0_c00022{margin-left:-2755.755600px;}
._2_c00022{margin-left:-7.056000px;}
._7_c00022{margin-left:-3.672000px;}
._3_c00022{margin-left:-2.088000px;}
._1_c00022{margin-left:-1.008000px;}
._4_c00022{width:1.224000px;}
._6_c00022{width:2.376000px;}
._5_c00022{width:3.888000px;}
.fc0_c00022{color:rgb(35,31,32);}
.fs0_c00022{font-size:48.000000px;}
.fs1_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y23_c00022{bottom:110.265450px;}
.y22_c00022{bottom:135.015450px;}
.y21_c00022{bottom:174.759450px;}
.y20_c00022{bottom:199.509450px;}
.y1f_c00022{bottom:224.259450px;}
.y1e_c00022{bottom:253.257450px;}
.y1d_c00022{bottom:293.001450px;}
.y1c_c00022{bottom:317.751450px;}
.y1b_c00022{bottom:342.501450px;}
.y1a_c00022{bottom:371.499450px;}
.y19_c00022{bottom:396.249450px;}
.y18_c00022{bottom:420.999450px;}
.y17_c00022{bottom:445.749450px;}
.y16_c00022{bottom:474.747450px;}
.y15_c00022{bottom:514.491450px;}
.y14_c00022{bottom:539.241450px;}
.y13_c00022{bottom:563.991450px;}
.y12_c00022{bottom:588.741450px;}
.y11_c00022{bottom:617.739450px;}
.y10_c00022{bottom:657.483450px;}
.yf_c00022{bottom:682.233450px;}
.ye_c00022{bottom:706.983450px;}
.yd_c00022{bottom:731.733450px;}
.yc_c00022{bottom:756.483450px;}
.yb_c00022{bottom:781.233450px;}
.ya_c00022{bottom:810.231450px;}
.y9_c00022{bottom:834.981450px;}
.y8_c00022{bottom:859.731450px;}
.y7_c00022{bottom:884.481450px;}
.y6_c00022{bottom:913.479450px;}
.y5_c00022{bottom:953.223450px;}
.y4_c00022{bottom:977.973450px;}
.y3_c00022{bottom:1017.717450px;}
.y2_c00022{bottom:1042.467450px;}
.y1_c00022{bottom:1093.601100px;}
.h2_c00022{height:39.264000px;}
.h3_c00022{height:58.896000px;}
.h1_c00022{height:1135.500000px;}
.h0_c00022{height:1135.506150px;}
.w0_c00022{width:893.950200px;}
.w1_c00022{width:894.000000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:128.626800px;}
.x3_c00022{left:149.902800px;}
.x4_c00022{left:162.664800px;}
.x1_c00022{left:807.893700px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls3_c00022{letter-spacing:-1.920000pt;}
.ls5_c00022{letter-spacing:-1.856000pt;}
.ls2_c00022{letter-spacing:-0.320000pt;}
.ls4_c00022{letter-spacing:-0.256000pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.426667pt;}
.ws2_c00022{word-spacing:-14.656000pt;}
.ws4_c00022{word-spacing:-14.528000pt;}
.ws3_c00022{word-spacing:-14.272000pt;}
.ws0_c00022{word-spacing:-10.112000pt;}
.wse_c00022{word-spacing:-2.752000pt;}
.ws1a_c00022{word-spacing:-2.368000pt;}
.ws8_c00022{word-spacing:-1.984000pt;}
.ws1b_c00022{word-spacing:-1.920000pt;}
.ws13_c00022{word-spacing:-0.832000pt;}
.wsf_c00022{word-spacing:-0.384000pt;}
.wsb_c00022{word-spacing:-0.128000pt;}
.ws1_c00022{word-spacing:-0.042667pt;}
.ws6_c00022{word-spacing:0.000000pt;}
.ws5_c00022{word-spacing:0.192000pt;}
.ws9_c00022{word-spacing:0.448000pt;}
.ws19_c00022{word-spacing:0.576000pt;}
.ws15_c00022{word-spacing:0.640000pt;}
.wsa_c00022{word-spacing:1.344000pt;}
.ws18_c00022{word-spacing:1.856000pt;}
.wsd_c00022{word-spacing:1.920000pt;}
.ws14_c00022{word-spacing:2.496000pt;}
.ws10_c00022{word-spacing:2.944000pt;}
.ws12_c00022{word-spacing:3.072000pt;}
.wsc_c00022{word-spacing:3.456000pt;}
.ws7_c00022{word-spacing:4.800000pt;}
.ws11_c00022{word-spacing:6.272000pt;}
.ws16_c00022{word-spacing:6.336000pt;}
.ws17_c00022{word-spacing:7.488000pt;}
._0_c00022{margin-left:-2449.560533pt;}
._2_c00022{margin-left:-6.272000pt;}
._7_c00022{margin-left:-3.264000pt;}
._3_c00022{margin-left:-1.856000pt;}
._1_c00022{margin-left:-0.896000pt;}
._4_c00022{width:1.088000pt;}
._6_c00022{width:2.112000pt;}
._5_c00022{width:3.456000pt;}
.fs0_c00022{font-size:42.666667pt;}
.fs1_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y23_c00022{bottom:98.013733pt;}
.y22_c00022{bottom:120.013733pt;}
.y21_c00022{bottom:155.341733pt;}
.y20_c00022{bottom:177.341733pt;}
.y1f_c00022{bottom:199.341733pt;}
.y1e_c00022{bottom:225.117733pt;}
.y1d_c00022{bottom:260.445733pt;}
.y1c_c00022{bottom:282.445733pt;}
.y1b_c00022{bottom:304.445733pt;}
.y1a_c00022{bottom:330.221733pt;}
.y19_c00022{bottom:352.221733pt;}
.y18_c00022{bottom:374.221733pt;}
.y17_c00022{bottom:396.221733pt;}
.y16_c00022{bottom:421.997733pt;}
.y15_c00022{bottom:457.325733pt;}
.y14_c00022{bottom:479.325733pt;}
.y13_c00022{bottom:501.325733pt;}
.y12_c00022{bottom:523.325733pt;}
.y11_c00022{bottom:549.101733pt;}
.y10_c00022{bottom:584.429733pt;}
.yf_c00022{bottom:606.429733pt;}
.ye_c00022{bottom:628.429733pt;}
.yd_c00022{bottom:650.429733pt;}
.yc_c00022{bottom:672.429733pt;}
.yb_c00022{bottom:694.429733pt;}
.ya_c00022{bottom:720.205733pt;}
.y9_c00022{bottom:742.205733pt;}
.y8_c00022{bottom:764.205733pt;}
.y7_c00022{bottom:786.205733pt;}
.y6_c00022{bottom:811.981733pt;}
.y5_c00022{bottom:847.309733pt;}
.y4_c00022{bottom:869.309733pt;}
.y3_c00022{bottom:904.637733pt;}
.y2_c00022{bottom:926.637733pt;}
.y1_c00022{bottom:972.089867pt;}
.h2_c00022{height:34.901333pt;}
.h3_c00022{height:52.352000pt;}
.h1_c00022{height:1009.333333pt;}
.h0_c00022{height:1009.338800pt;}
.w0_c00022{width:794.622400pt;}
.w1_c00022{width:794.666667pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:114.334933pt;}
.x3_c00022{left:133.246933pt;}
.x4_c00022{left:144.590933pt;}
.x1_c00022{left:718.127733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8522a1aaeaa04baab6ce063f.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00023;src:url('chunks/assets/font_199f94ad2b4511ce3e9a8c5d.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:0.833000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00023;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff6_c00023{font-family:ff6_c00023;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.v1_c00023{vertical-align:23.928600px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.360000px;}
.ls3_c00023{letter-spacing:0.576000px;}
.ls1_c00023{letter-spacing:1.080000px;}
.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;}
}
.ws1_c00023{word-spacing:-17.064000px;}
.ws3_c00023{word-spacing:-16.344000px;}
.ws4_c00023{word-spacing:-10.896000px;}
.ws2_c00023{word-spacing:-9.528552px;}
.ws17_c00023{word-spacing:-3.096000px;}
.ws1e_c00023{word-spacing:-2.064000px;}
.ws18_c00023{word-spacing:-1.872000px;}
.ws1c_c00023{word-spacing:-1.656000px;}
.ws12_c00023{word-spacing:-1.440000px;}
.ws16_c00023{word-spacing:-1.296000px;}
.wsf_c00023{word-spacing:-1.080000px;}
.ws10_c00023{word-spacing:-0.576000px;}
.ws15_c00023{word-spacing:-0.216000px;}
.ws5_c00023{word-spacing:0.000000px;}
.ws13_c00023{word-spacing:0.072000px;}
.ws19_c00023{word-spacing:0.288000px;}
.ws7_c00023{word-spacing:0.360000px;}
.ws8_c00023{word-spacing:0.792000px;}
.ws1d_c00023{word-spacing:1.368000px;}
.wsb_c00023{word-spacing:1.656000px;}
.wsd_c00023{word-spacing:2.232000px;}
.ws1b_c00023{word-spacing:2.808000px;}
.wsa_c00023{word-spacing:2.952000px;}
.ws11_c00023{word-spacing:3.600000px;}
.wsc_c00023{word-spacing:3.960000px;}
.wse_c00023{word-spacing:5.112000px;}
.ws9_c00023{word-spacing:5.904000px;}
.ws1a_c00023{word-spacing:6.552000px;}
.ws6_c00023{word-spacing:8.640000px;}
.ws14_c00023{word-spacing:8.856000px;}
.ws0_c00023{word-spacing:1600.891200px;}
._3_c00023{margin-left:-5.976000px;}
._5_c00023{margin-left:-4.166520px;}
._0_c00023{margin-left:-2.112000px;}
._1_c00023{margin-left:-1.104000px;}
._2_c00023{width:1.080000px;}
._4_c00023{width:3.000000px;}
._6_c00023{width:6.480000px;}
.fc0_c00023{color:rgb(35,31,32);}
.fs2_c00023{font-size:41.976000px;}
.fs0_c00023{font-size:48.000000px;}
.fs1_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y22_c00023{bottom:111.616350px;}
.y21_c00023{bottom:126.616350px;}
.y20_c00023{bottom:194.979450px;}
.y1f_c00023{bottom:219.729450px;}
.y1e_c00023{bottom:244.479450px;}
.y1d_c00023{bottom:284.223450px;}
.y1c_c00023{bottom:308.973450px;}
.y1b_c00023{bottom:333.723450px;}
.y1a_c00023{bottom:358.473450px;}
.y19_c00023{bottom:383.223450px;}
.y18_c00023{bottom:407.973450px;}
.y17_c00023{bottom:432.723450px;}
.y16_c00023{bottom:472.467450px;}
.y15_c00023{bottom:527.223450px;}
.y14_c00023{bottom:551.973450px;}
.y13_c00023{bottom:576.723450px;}
.y12_c00023{bottom:616.467450px;}
.y11_c00023{bottom:641.217450px;}
.y10_c00023{bottom:665.979450px;}
.yf_c00023{bottom:690.729450px;}
.ye_c00023{bottom:715.479450px;}
.yd_c00023{bottom:755.223450px;}
.yc_c00023{bottom:779.973450px;}
.yb_c00023{bottom:804.723450px;}
.ya_c00023{bottom:829.473450px;}
.y9_c00023{bottom:854.223450px;}
.y8_c00023{bottom:878.973450px;}
.y7_c00023{bottom:903.723450px;}
.y6_c00023{bottom:928.473450px;}
.y5_c00023{bottom:968.217450px;}
.y4_c00023{bottom:992.967450px;}
.y3_c00023{bottom:1017.717450px;}
.y2_c00023{bottom:1042.467450px;}
.y1_c00023{bottom:1093.601100px;}
.h2_c00023{height:39.264000px;}
.h3_c00023{height:58.896000px;}
.h4_c00023{height:59.976000px;}
.h1_c00023{height:1135.500000px;}
.h0_c00023{height:1135.506150px;}
.w0_c00023{width:893.950200px;}
.w1_c00023{width:894.000000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:77.603100px;}
.x2_c00023{left:94.611000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:21.269867pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.320000pt;}
.ls3_c00023{letter-spacing:0.512000pt;}
.ls1_c00023{letter-spacing:0.960000pt;}
.ws1_c00023{word-spacing:-15.168000pt;}
.ws3_c00023{word-spacing:-14.528000pt;}
.ws4_c00023{word-spacing:-9.685333pt;}
.ws2_c00023{word-spacing:-8.469824pt;}
.ws17_c00023{word-spacing:-2.752000pt;}
.ws1e_c00023{word-spacing:-1.834667pt;}
.ws18_c00023{word-spacing:-1.664000pt;}
.ws1c_c00023{word-spacing:-1.472000pt;}
.ws12_c00023{word-spacing:-1.280000pt;}
.ws16_c00023{word-spacing:-1.152000pt;}
.wsf_c00023{word-spacing:-0.960000pt;}
.ws10_c00023{word-spacing:-0.512000pt;}
.ws15_c00023{word-spacing:-0.192000pt;}
.ws5_c00023{word-spacing:0.000000pt;}
.ws13_c00023{word-spacing:0.064000pt;}
.ws19_c00023{word-spacing:0.256000pt;}
.ws7_c00023{word-spacing:0.320000pt;}
.ws8_c00023{word-spacing:0.704000pt;}
.ws1d_c00023{word-spacing:1.216000pt;}
.wsb_c00023{word-spacing:1.472000pt;}
.wsd_c00023{word-spacing:1.984000pt;}
.ws1b_c00023{word-spacing:2.496000pt;}
.wsa_c00023{word-spacing:2.624000pt;}
.ws11_c00023{word-spacing:3.200000pt;}
.wsc_c00023{word-spacing:3.520000pt;}
.wse_c00023{word-spacing:4.544000pt;}
.ws9_c00023{word-spacing:5.248000pt;}
.ws1a_c00023{word-spacing:5.824000pt;}
.ws6_c00023{word-spacing:7.680000pt;}
.ws14_c00023{word-spacing:7.872000pt;}
.ws0_c00023{word-spacing:1423.014400pt;}
._3_c00023{margin-left:-5.312000pt;}
._5_c00023{margin-left:-3.703573pt;}
._0_c00023{margin-left:-1.877333pt;}
._1_c00023{margin-left:-0.981333pt;}
._2_c00023{width:0.960000pt;}
._4_c00023{width:2.666667pt;}
._6_c00023{width:5.760000pt;}
.fs2_c00023{font-size:37.312000pt;}
.fs0_c00023{font-size:42.666667pt;}
.fs1_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y22_c00023{bottom:99.214533pt;}
.y21_c00023{bottom:112.547867pt;}
.y20_c00023{bottom:173.315067pt;}
.y1f_c00023{bottom:195.315067pt;}
.y1e_c00023{bottom:217.315067pt;}
.y1d_c00023{bottom:252.643067pt;}
.y1c_c00023{bottom:274.643067pt;}
.y1b_c00023{bottom:296.643067pt;}
.y1a_c00023{bottom:318.643067pt;}
.y19_c00023{bottom:340.643067pt;}
.y18_c00023{bottom:362.643067pt;}
.y17_c00023{bottom:384.643067pt;}
.y16_c00023{bottom:419.971067pt;}
.y15_c00023{bottom:468.643067pt;}
.y14_c00023{bottom:490.643067pt;}
.y13_c00023{bottom:512.643067pt;}
.y12_c00023{bottom:547.971067pt;}
.y11_c00023{bottom:569.971067pt;}
.y10_c00023{bottom:591.981733pt;}
.yf_c00023{bottom:613.981733pt;}
.ye_c00023{bottom:635.981733pt;}
.yd_c00023{bottom:671.309733pt;}
.yc_c00023{bottom:693.309733pt;}
.yb_c00023{bottom:715.309733pt;}
.ya_c00023{bottom:737.309733pt;}
.y9_c00023{bottom:759.309733pt;}
.y8_c00023{bottom:781.309733pt;}
.y7_c00023{bottom:803.309733pt;}
.y6_c00023{bottom:825.309733pt;}
.y5_c00023{bottom:860.637733pt;}
.y4_c00023{bottom:882.637733pt;}
.y3_c00023{bottom:904.637733pt;}
.y2_c00023{bottom:926.637733pt;}
.y1_c00023{bottom:972.089867pt;}
.h2_c00023{height:34.901333pt;}
.h3_c00023{height:52.352000pt;}
.h4_c00023{height:53.312000pt;}
.h1_c00023{height:1009.333333pt;}
.h0_c00023{height:1009.338800pt;}
.w0_c00023{width:794.622400pt;}
.w1_c00023{width:794.666667pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:68.980533pt;}
.x2_c00023{left:84.098667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_507d0c16825bfa3c1e72fba3.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.v1_c00024{vertical-align:23.976000px;}
.ls1_c00024{letter-spacing:-1.728000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:-10.896000px;}
.ws2_c00024{word-spacing:-9.528552px;}
.ws3_c00024{word-spacing:-9.168000px;}
.ws19_c00024{word-spacing:-2.880000px;}
.ws13_c00024{word-spacing:-2.304000px;}
.ws1a_c00024{word-spacing:-2.088000px;}
.ws1c_c00024{word-spacing:-1.368000px;}
.ws9_c00024{word-spacing:-0.792000px;}
.ws18_c00024{word-spacing:-0.504000px;}
.ws1_c00024{word-spacing:-0.048000px;}
.ws6_c00024{word-spacing:0.000000px;}
.ws7_c00024{word-spacing:0.648000px;}
.ws11_c00024{word-spacing:0.864000px;}
.ws20_c00024{word-spacing:1.656000px;}
.ws16_c00024{word-spacing:1.728000px;}
.ws17_c00024{word-spacing:1.872000px;}
.wsd_c00024{word-spacing:2.160000px;}
.wse_c00024{word-spacing:2.232000px;}
.ws8_c00024{word-spacing:2.736000px;}
.ws1b_c00024{word-spacing:3.312000px;}
.ws1e_c00024{word-spacing:3.384000px;}
.ws10_c00024{word-spacing:3.600000px;}
.wsf_c00024{word-spacing:4.176000px;}
.ws12_c00024{word-spacing:4.680000px;}
.ws15_c00024{word-spacing:5.256000px;}
.ws1d_c00024{word-spacing:5.904000px;}
.ws4_c00024{word-spacing:6.264000px;}
.ws5_c00024{word-spacing:6.336000px;}
.ws1f_c00024{word-spacing:6.480000px;}
.wsb_c00024{word-spacing:6.552000px;}
.wsc_c00024{word-spacing:6.840000px;}
.ws14_c00024{word-spacing:7.056000px;}
.wsa_c00024{word-spacing:8.640000px;}
._0_c00024{margin-left:-2755.275600px;}
._4_c00024{margin-left:-5.976000px;}
._5_c00024{margin-left:-3.655320px;}
._2_c00024{margin-left:-2.232000px;}
._1_c00024{margin-left:-1.008000px;}
._3_c00024{width:1.423320px;}
._6_c00024{width:2.880000px;}
.fc0_c00024{color:rgb(35,31,32);}
.fs2_c00024{font-size:41.976000px;}
.fs0_c00024{font-size:48.000000px;}
.fs1_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y23_c00024{bottom:111.616350px;}
.y22_c00024{bottom:175.497450px;}
.y21_c00024{bottom:200.247450px;}
.y20_c00024{bottom:239.991450px;}
.y1f_c00024{bottom:264.741450px;}
.y1e_c00024{bottom:289.491450px;}
.y1d_c00024{bottom:314.241450px;}
.y1c_c00024{bottom:353.985450px;}
.y1b_c00024{bottom:378.735450px;}
.y1a_c00024{bottom:403.485450px;}
.y19_c00024{bottom:428.235450px;}
.y18_c00024{bottom:452.985450px;}
.y17_c00024{bottom:477.735450px;}
.y16_c00024{bottom:502.485450px;}
.y15_c00024{bottom:527.235450px;}
.y14_c00024{bottom:566.979450px;}
.y13_c00024{bottom:591.729450px;}
.y12_c00024{bottom:616.479450px;}
.y11_c00024{bottom:641.229450px;}
.y10_c00024{bottom:665.979450px;}
.yf_c00024{bottom:690.729450px;}
.ye_c00024{bottom:715.479450px;}
.yd_c00024{bottom:740.229450px;}
.yc_c00024{bottom:764.979450px;}
.yb_c00024{bottom:789.729450px;}
.ya_c00024{bottom:814.479450px;}
.y9_c00024{bottom:839.229450px;}
.y8_c00024{bottom:863.979450px;}
.y7_c00024{bottom:903.723450px;}
.y6_c00024{bottom:928.473450px;}
.y5_c00024{bottom:953.223450px;}
.y4_c00024{bottom:977.973450px;}
.y3_c00024{bottom:1017.717450px;}
.y2_c00024{bottom:1042.467450px;}
.y1_c00024{bottom:1093.601100px;}
.h2_c00024{height:39.264000px;}
.h3_c00024{height:58.896000px;}
.h1_c00024{height:1135.500000px;}
.h0_c00024{height:1135.506150px;}
.w0_c00024{width:893.950200px;}
.w1_c00024{width:894.000000px;}
.x0_c00024{left:0.000000px;}
.x2_c00024{left:128.626800px;}
.x1_c00024{left:807.221700px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:21.312000pt;}
.ls1_c00024{letter-spacing:-1.536000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:-9.685333pt;}
.ws2_c00024{word-spacing:-8.469824pt;}
.ws3_c00024{word-spacing:-8.149333pt;}
.ws19_c00024{word-spacing:-2.560000pt;}
.ws13_c00024{word-spacing:-2.048000pt;}
.ws1a_c00024{word-spacing:-1.856000pt;}
.ws1c_c00024{word-spacing:-1.216000pt;}
.ws9_c00024{word-spacing:-0.704000pt;}
.ws18_c00024{word-spacing:-0.448000pt;}
.ws1_c00024{word-spacing:-0.042667pt;}
.ws6_c00024{word-spacing:0.000000pt;}
.ws7_c00024{word-spacing:0.576000pt;}
.ws11_c00024{word-spacing:0.768000pt;}
.ws20_c00024{word-spacing:1.472000pt;}
.ws16_c00024{word-spacing:1.536000pt;}
.ws17_c00024{word-spacing:1.664000pt;}
.wsd_c00024{word-spacing:1.920000pt;}
.wse_c00024{word-spacing:1.984000pt;}
.ws8_c00024{word-spacing:2.432000pt;}
.ws1b_c00024{word-spacing:2.944000pt;}
.ws1e_c00024{word-spacing:3.008000pt;}
.ws10_c00024{word-spacing:3.200000pt;}
.wsf_c00024{word-spacing:3.712000pt;}
.ws12_c00024{word-spacing:4.160000pt;}
.ws15_c00024{word-spacing:4.672000pt;}
.ws1d_c00024{word-spacing:5.248000pt;}
.ws4_c00024{word-spacing:5.568000pt;}
.ws5_c00024{word-spacing:5.632000pt;}
.ws1f_c00024{word-spacing:5.760000pt;}
.wsb_c00024{word-spacing:5.824000pt;}
.wsc_c00024{word-spacing:6.080000pt;}
.ws14_c00024{word-spacing:6.272000pt;}
.wsa_c00024{word-spacing:7.680000pt;}
._0_c00024{margin-left:-2449.133867pt;}
._4_c00024{margin-left:-5.312000pt;}
._5_c00024{margin-left:-3.249173pt;}
._2_c00024{margin-left:-1.984000pt;}
._1_c00024{margin-left:-0.896000pt;}
._3_c00024{width:1.265173pt;}
._6_c00024{width:2.560000pt;}
.fs2_c00024{font-size:37.312000pt;}
.fs0_c00024{font-size:42.666667pt;}
.fs1_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y23_c00024{bottom:99.214533pt;}
.y22_c00024{bottom:155.997733pt;}
.y21_c00024{bottom:177.997733pt;}
.y20_c00024{bottom:213.325733pt;}
.y1f_c00024{bottom:235.325733pt;}
.y1e_c00024{bottom:257.325733pt;}
.y1d_c00024{bottom:279.325733pt;}
.y1c_c00024{bottom:314.653733pt;}
.y1b_c00024{bottom:336.653733pt;}
.y1a_c00024{bottom:358.653733pt;}
.y19_c00024{bottom:380.653733pt;}
.y18_c00024{bottom:402.653733pt;}
.y17_c00024{bottom:424.653733pt;}
.y16_c00024{bottom:446.653733pt;}
.y15_c00024{bottom:468.653733pt;}
.y14_c00024{bottom:503.981733pt;}
.y13_c00024{bottom:525.981733pt;}
.y12_c00024{bottom:547.981733pt;}
.y11_c00024{bottom:569.981733pt;}
.y10_c00024{bottom:591.981733pt;}
.yf_c00024{bottom:613.981733pt;}
.ye_c00024{bottom:635.981733pt;}
.yd_c00024{bottom:657.981733pt;}
.yc_c00024{bottom:679.981733pt;}
.yb_c00024{bottom:701.981733pt;}
.ya_c00024{bottom:723.981733pt;}
.y9_c00024{bottom:745.981733pt;}
.y8_c00024{bottom:767.981733pt;}
.y7_c00024{bottom:803.309733pt;}
.y6_c00024{bottom:825.309733pt;}
.y5_c00024{bottom:847.309733pt;}
.y4_c00024{bottom:869.309733pt;}
.y3_c00024{bottom:904.637733pt;}
.y2_c00024{bottom:926.637733pt;}
.y1_c00024{bottom:972.089867pt;}
.h2_c00024{height:34.901333pt;}
.h3_c00024{height:52.352000pt;}
.h1_c00024{height:1009.333333pt;}
.h0_c00024{height:1009.338800pt;}
.w0_c00024{width:794.622400pt;}
.w1_c00024{width:794.666667pt;}
.x0_c00024{left:0.000000pt;}
.x2_c00024{left:114.334933pt;}
.x1_c00024{left:717.530400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f70963029ea56ebc2a484fb.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00025;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls3_c00025{letter-spacing:-0.720000px;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.720000px;}
.ls1_c00025{letter-spacing:0.768000px;}
.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;}
}
.ws1_c00025{word-spacing:-17.064000px;}
.ws3_c00025{word-spacing:-16.344000px;}
.ws2_c00025{word-spacing:-15.768000px;}
.wsf_c00025{word-spacing:-2.808000px;}
.ws15_c00025{word-spacing:-2.448000px;}
.ws18_c00025{word-spacing:-2.232000px;}
.ws12_c00025{word-spacing:-2.160000px;}
.ws6_c00025{word-spacing:-1.944000px;}
.ws10_c00025{word-spacing:-0.648000px;}
.wsc_c00025{word-spacing:-0.216000px;}
.ws5_c00025{word-spacing:-0.144000px;}
.ws4_c00025{word-spacing:0.000000px;}
.wsa_c00025{word-spacing:0.216000px;}
.wsd_c00025{word-spacing:0.720000px;}
.wsb_c00025{word-spacing:0.864000px;}
.wse_c00025{word-spacing:1.368000px;}
.ws14_c00025{word-spacing:1.800000px;}
.ws16_c00025{word-spacing:2.736000px;}
.ws11_c00025{word-spacing:3.528000px;}
.ws13_c00025{word-spacing:3.744000px;}
.ws7_c00025{word-spacing:4.104000px;}
.ws8_c00025{word-spacing:4.536000px;}
.ws9_c00025{word-spacing:4.896000px;}
.ws17_c00025{word-spacing:6.984000px;}
.ws19_c00025{word-spacing:8.352000px;}
.ws0_c00025{word-spacing:1596.667200px;}
._4_c00025{margin-left:-9.120000px;}
._5_c00025{margin-left:-6.192000px;}
._3_c00025{margin-left:-4.224000px;}
._0_c00025{margin-left:-2.112000px;}
._1_c00025{margin-left:-1.104000px;}
._2_c00025{width:1.344000px;}
._8_c00025{width:18.576000px;}
._6_c00025{width:26.064000px;}
._7_c00025{width:29.160000px;}
.fc0_c00025{color:rgb(35,31,32);}
.fs0_c00025{font-size:48.000000px;}
.fs1_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y22_c00025{bottom:124.205850px;}
.y21_c00025{bottom:153.207750px;}
.y20_c00025{bottom:177.957750px;}
.y1f_c00025{bottom:206.959800px;}
.y1e_c00025{bottom:235.961700px;}
.y1d_c00025{bottom:260.711700px;}
.y1c_c00025{bottom:293.991450px;}
.y1b_c00025{bottom:333.735450px;}
.y1a_c00025{bottom:358.485450px;}
.y19_c00025{bottom:398.229450px;}
.y18_c00025{bottom:452.985450px;}
.y17_c00025{bottom:477.735450px;}
.y16_c00025{bottom:502.485450px;}
.y15_c00025{bottom:527.235450px;}
.y14_c00025{bottom:551.985450px;}
.y13_c00025{bottom:576.735450px;}
.y12_c00025{bottom:616.479450px;}
.y11_c00025{bottom:641.229450px;}
.y10_c00025{bottom:665.979450px;}
.yf_c00025{bottom:690.729450px;}
.ye_c00025{bottom:730.473450px;}
.yd_c00025{bottom:755.223450px;}
.yc_c00025{bottom:779.973450px;}
.yb_c00025{bottom:804.723450px;}
.ya_c00025{bottom:829.473450px;}
.y9_c00025{bottom:854.223450px;}
.y8_c00025{bottom:878.973450px;}
.y7_c00025{bottom:903.723450px;}
.y6_c00025{bottom:928.473450px;}
.y5_c00025{bottom:953.223450px;}
.y4_c00025{bottom:992.967450px;}
.y3_c00025{bottom:1017.717450px;}
.y2_c00025{bottom:1042.467450px;}
.y1_c00025{bottom:1093.601100px;}
.h2_c00025{height:39.264000px;}
.h3_c00025{height:58.896000px;}
.h4_c00025{height:59.976000px;}
.h1_c00025{height:1135.500000px;}
.h0_c00025{height:1135.506150px;}
.w0_c00025{width:893.950200px;}
.w1_c00025{width:894.000000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:77.603100px;}
.x2_c00025{left:98.875500px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls3_c00025{letter-spacing:-0.640000pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.640000pt;}
.ls1_c00025{letter-spacing:0.682667pt;}
.ws1_c00025{word-spacing:-15.168000pt;}
.ws3_c00025{word-spacing:-14.528000pt;}
.ws2_c00025{word-spacing:-14.016000pt;}
.wsf_c00025{word-spacing:-2.496000pt;}
.ws15_c00025{word-spacing:-2.176000pt;}
.ws18_c00025{word-spacing:-1.984000pt;}
.ws12_c00025{word-spacing:-1.920000pt;}
.ws6_c00025{word-spacing:-1.728000pt;}
.ws10_c00025{word-spacing:-0.576000pt;}
.wsc_c00025{word-spacing:-0.192000pt;}
.ws5_c00025{word-spacing:-0.128000pt;}
.ws4_c00025{word-spacing:0.000000pt;}
.wsa_c00025{word-spacing:0.192000pt;}
.wsd_c00025{word-spacing:0.640000pt;}
.wsb_c00025{word-spacing:0.768000pt;}
.wse_c00025{word-spacing:1.216000pt;}
.ws14_c00025{word-spacing:1.600000pt;}
.ws16_c00025{word-spacing:2.432000pt;}
.ws11_c00025{word-spacing:3.136000pt;}
.ws13_c00025{word-spacing:3.328000pt;}
.ws7_c00025{word-spacing:3.648000pt;}
.ws8_c00025{word-spacing:4.032000pt;}
.ws9_c00025{word-spacing:4.352000pt;}
.ws17_c00025{word-spacing:6.208000pt;}
.ws19_c00025{word-spacing:7.424000pt;}
.ws0_c00025{word-spacing:1419.259733pt;}
._4_c00025{margin-left:-8.106667pt;}
._5_c00025{margin-left:-5.504000pt;}
._3_c00025{margin-left:-3.754667pt;}
._0_c00025{margin-left:-1.877333pt;}
._1_c00025{margin-left:-0.981333pt;}
._2_c00025{width:1.194667pt;}
._8_c00025{width:16.512000pt;}
._6_c00025{width:23.168000pt;}
._7_c00025{width:25.920000pt;}
.fs0_c00025{font-size:42.666667pt;}
.fs1_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y22_c00025{bottom:110.405200pt;}
.y21_c00025{bottom:136.184667pt;}
.y20_c00025{bottom:158.184667pt;}
.y1f_c00025{bottom:183.964267pt;}
.y1e_c00025{bottom:209.743733pt;}
.y1d_c00025{bottom:231.743733pt;}
.y1c_c00025{bottom:261.325733pt;}
.y1b_c00025{bottom:296.653733pt;}
.y1a_c00025{bottom:318.653733pt;}
.y19_c00025{bottom:353.981733pt;}
.y18_c00025{bottom:402.653733pt;}
.y17_c00025{bottom:424.653733pt;}
.y16_c00025{bottom:446.653733pt;}
.y15_c00025{bottom:468.653733pt;}
.y14_c00025{bottom:490.653733pt;}
.y13_c00025{bottom:512.653733pt;}
.y12_c00025{bottom:547.981733pt;}
.y11_c00025{bottom:569.981733pt;}
.y10_c00025{bottom:591.981733pt;}
.yf_c00025{bottom:613.981733pt;}
.ye_c00025{bottom:649.309733pt;}
.yd_c00025{bottom:671.309733pt;}
.yc_c00025{bottom:693.309733pt;}
.yb_c00025{bottom:715.309733pt;}
.ya_c00025{bottom:737.309733pt;}
.y9_c00025{bottom:759.309733pt;}
.y8_c00025{bottom:781.309733pt;}
.y7_c00025{bottom:803.309733pt;}
.y6_c00025{bottom:825.309733pt;}
.y5_c00025{bottom:847.309733pt;}
.y4_c00025{bottom:882.637733pt;}
.y3_c00025{bottom:904.637733pt;}
.y2_c00025{bottom:926.637733pt;}
.y1_c00025{bottom:972.089867pt;}
.h2_c00025{height:34.901333pt;}
.h3_c00025{height:52.352000pt;}
.h4_c00025{height:53.312000pt;}
.h1_c00025{height:1009.333333pt;}
.h0_c00025{height:1009.338800pt;}
.w0_c00025{width:794.622400pt;}
.w1_c00025{width:794.666667pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:68.980533pt;}
.x2_c00025{left:87.889333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed3aa854c162e45d79b8ec22.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.178000;font-style:normal;font-weight:normal;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_74a9d8c169efe05c836fe817.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_85035c30ab6ad22258c7507e.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls1_c00026{letter-spacing:-1.080000px;}
.ls3_c00026{letter-spacing:-0.720000px;}
.ls2_c00026{letter-spacing:-0.504000px;}
.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;}
}
.ws3_c00026{word-spacing:-16.344000px;}
.ws2_c00026{word-spacing:-15.984000px;}
.ws0_c00026{word-spacing:-10.896000px;}
.ws18_c00026{word-spacing:-2.664000px;}
.ws1b_c00026{word-spacing:-2.304000px;}
.ws17_c00026{word-spacing:-1.872000px;}
.ws15_c00026{word-spacing:-1.656000px;}
.ws14_c00026{word-spacing:-1.152000px;}
.ws1d_c00026{word-spacing:-0.864000px;}
.ws16_c00026{word-spacing:-0.432000px;}
.ws1_c00026{word-spacing:-0.048000px;}
.ws9_c00026{word-spacing:0.000000px;}
.wsb_c00026{word-spacing:0.360000px;}
.ws10_c00026{word-spacing:1.080000px;}
.ws7_c00026{word-spacing:1.872000px;}
.ws8_c00026{word-spacing:2.016000px;}
.ws5_c00026{word-spacing:2.088000px;}
.ws6_c00026{word-spacing:2.376000px;}
.ws4_c00026{word-spacing:2.520000px;}
.wsd_c00026{word-spacing:3.744000px;}
.wsf_c00026{word-spacing:4.392000px;}
.ws12_c00026{word-spacing:4.752000px;}
.ws13_c00026{word-spacing:4.824000px;}
.ws19_c00026{word-spacing:5.976000px;}
.ws11_c00026{word-spacing:6.768000px;}
.wsc_c00026{word-spacing:7.488000px;}
.wsa_c00026{word-spacing:7.632000px;}
.wse_c00026{word-spacing:7.848000px;}
.ws1a_c00026{word-spacing:8.928000px;}
.ws1c_c00026{word-spacing:199.512000px;}
._0_c00026{margin-left:-2755.275600px;}
._a_c00026{margin-left:-199.807800px;}
._b_c00026{margin-left:-38.224200px;}
._4_c00026{margin-left:-6.984000px;}
._7_c00026{margin-left:-5.400000px;}
._3_c00026{margin-left:-2.232000px;}
._1_c00026{margin-left:-1.008000px;}
._2_c00026{width:1.224000px;}
._5_c00026{width:19.296000px;}
._9_c00026{width:20.952000px;}
._6_c00026{width:27.504000px;}
._8_c00026{width:28.800000px;}
.fc1_c00026{color:rgb(210,32,39);}
.fc0_c00026{color:rgb(35,31,32);}
.fs0_c00026{font-size:48.000000px;}
.fs1_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y25_c00026{bottom:118.696800px;}
.y24_c00026{bottom:147.698850px;}
.y23_c00026{bottom:172.448850px;}
.y22_c00026{bottom:201.450900px;}
.y21_c00026{bottom:226.200900px;}
.y20_c00026{bottom:255.202800px;}
.y1f_c00026{bottom:284.204700px;}
.y1e_c00026{bottom:308.954700px;}
.y1d_c00026{bottom:337.956750px;}
.y1c_c00026{bottom:362.706750px;}
.y1b_c00026{bottom:387.456750px;}
.y1a_c00026{bottom:416.458650px;}
.y19_c00026{bottom:441.208650px;}
.y18_c00026{bottom:465.958650px;}
.y17_c00026{bottom:494.960700px;}
.y16_c00026{bottom:519.710700px;}
.y15_c00026{bottom:544.460700px;}
.y14_c00026{bottom:569.210700px;}
.y13_c00026{bottom:593.960700px;}
.y12_c00026{bottom:622.962600px;}
.y11_c00026{bottom:647.712600px;}
.y10_c00026{bottom:672.462600px;}
.yf_c00026{bottom:697.212600px;}
.ye_c00026{bottom:721.962600px;}
.yd_c00026{bottom:746.712600px;}
.yc_c00026{bottom:771.462600px;}
.yb_c00026{bottom:800.471550px;}
.ya_c00026{bottom:840.215550px;}
.y9_c00026{bottom:864.965550px;}
.y8_c00026{bottom:889.715550px;}
.y7_c00026{bottom:918.717450px;}
.y6_c00026{bottom:943.467450px;}
.y5_c00026{bottom:968.217450px;}
.y4_c00026{bottom:992.967450px;}
.y3_c00026{bottom:1017.717450px;}
.y2_c00026{bottom:1042.467450px;}
.y1_c00026{bottom:1093.601100px;}
.h2_c00026{height:39.264000px;}
.h3_c00026{height:58.896000px;}
.h1_c00026{height:1135.500000px;}
.h0_c00026{height:1135.506150px;}
.w0_c00026{width:893.950200px;}
.w1_c00026{width:894.000000px;}
.x0_c00026{left:0.000000px;}
.x3_c00026{left:128.626800px;}
.x2_c00026{left:149.886600px;}
.x1_c00026{left:807.257700px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls1_c00026{letter-spacing:-0.960000pt;}
.ls3_c00026{letter-spacing:-0.640000pt;}
.ls2_c00026{letter-spacing:-0.448000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws3_c00026{word-spacing:-14.528000pt;}
.ws2_c00026{word-spacing:-14.208000pt;}
.ws0_c00026{word-spacing:-9.685333pt;}
.ws18_c00026{word-spacing:-2.368000pt;}
.ws1b_c00026{word-spacing:-2.048000pt;}
.ws17_c00026{word-spacing:-1.664000pt;}
.ws15_c00026{word-spacing:-1.472000pt;}
.ws14_c00026{word-spacing:-1.024000pt;}
.ws1d_c00026{word-spacing:-0.768000pt;}
.ws16_c00026{word-spacing:-0.384000pt;}
.ws1_c00026{word-spacing:-0.042667pt;}
.ws9_c00026{word-spacing:0.000000pt;}
.wsb_c00026{word-spacing:0.320000pt;}
.ws10_c00026{word-spacing:0.960000pt;}
.ws7_c00026{word-spacing:1.664000pt;}
.ws8_c00026{word-spacing:1.792000pt;}
.ws5_c00026{word-spacing:1.856000pt;}
.ws6_c00026{word-spacing:2.112000pt;}
.ws4_c00026{word-spacing:2.240000pt;}
.wsd_c00026{word-spacing:3.328000pt;}
.wsf_c00026{word-spacing:3.904000pt;}
.ws12_c00026{word-spacing:4.224000pt;}
.ws13_c00026{word-spacing:4.288000pt;}
.ws19_c00026{word-spacing:5.312000pt;}
.ws11_c00026{word-spacing:6.016000pt;}
.wsc_c00026{word-spacing:6.656000pt;}
.wsa_c00026{word-spacing:6.784000pt;}
.wse_c00026{word-spacing:6.976000pt;}
.ws1a_c00026{word-spacing:7.936000pt;}
.ws1c_c00026{word-spacing:177.344000pt;}
._0_c00026{margin-left:-2449.133867pt;}
._a_c00026{margin-left:-177.606933pt;}
._b_c00026{margin-left:-33.977067pt;}
._4_c00026{margin-left:-6.208000pt;}
._7_c00026{margin-left:-4.800000pt;}
._3_c00026{margin-left:-1.984000pt;}
._1_c00026{margin-left:-0.896000pt;}
._2_c00026{width:1.088000pt;}
._5_c00026{width:17.152000pt;}
._9_c00026{width:18.624000pt;}
._6_c00026{width:24.448000pt;}
._8_c00026{width:25.600000pt;}
.fs0_c00026{font-size:42.666667pt;}
.fs1_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y25_c00026{bottom:105.508267pt;}
.y24_c00026{bottom:131.287867pt;}
.y23_c00026{bottom:153.287867pt;}
.y22_c00026{bottom:179.067467pt;}
.y21_c00026{bottom:201.067467pt;}
.y20_c00026{bottom:226.846933pt;}
.y1f_c00026{bottom:252.626400pt;}
.y1e_c00026{bottom:274.626400pt;}
.y1d_c00026{bottom:300.406000pt;}
.y1c_c00026{bottom:322.406000pt;}
.y1b_c00026{bottom:344.406000pt;}
.y1a_c00026{bottom:370.185467pt;}
.y19_c00026{bottom:392.185467pt;}
.y18_c00026{bottom:414.185467pt;}
.y17_c00026{bottom:439.965067pt;}
.y16_c00026{bottom:461.965067pt;}
.y15_c00026{bottom:483.965067pt;}
.y14_c00026{bottom:505.965067pt;}
.y13_c00026{bottom:527.965067pt;}
.y12_c00026{bottom:553.744533pt;}
.y11_c00026{bottom:575.744533pt;}
.y10_c00026{bottom:597.744533pt;}
.yf_c00026{bottom:619.744533pt;}
.ye_c00026{bottom:641.744533pt;}
.yd_c00026{bottom:663.744533pt;}
.yc_c00026{bottom:685.744533pt;}
.yb_c00026{bottom:711.530267pt;}
.ya_c00026{bottom:746.858267pt;}
.y9_c00026{bottom:768.858267pt;}
.y8_c00026{bottom:790.858267pt;}
.y7_c00026{bottom:816.637733pt;}
.y6_c00026{bottom:838.637733pt;}
.y5_c00026{bottom:860.637733pt;}
.y4_c00026{bottom:882.637733pt;}
.y3_c00026{bottom:904.637733pt;}
.y2_c00026{bottom:926.637733pt;}
.y1_c00026{bottom:972.089867pt;}
.h2_c00026{height:34.901333pt;}
.h3_c00026{height:52.352000pt;}
.h1_c00026{height:1009.333333pt;}
.h0_c00026{height:1009.338800pt;}
.w0_c00026{width:794.622400pt;}
.w1_c00026{width:794.666667pt;}
.x0_c00026{left:0.000000pt;}
.x3_c00026{left:114.334933pt;}
.x2_c00026{left:133.232533pt;}
.x1_c00026{left:717.562400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b72b22b4be6bba74c9cc0e0.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.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;}
}
.ws1_c00027{word-spacing:0.000000px;}
.ws0_c00027{word-spacing:1598.347200px;}
._0_c00027{margin-left:-2.112000px;}
._1_c00027{margin-left:-1.104000px;}
.fc1_c00027{color:transparent;}
.fc0_c00027{color:rgb(35,31,32);}
.fs0_c00027{font-size:48.000000px;}
.y0_c00027{bottom:0.000000px;}
.y1_c00027{bottom:1093.601100px;}
.h2_c00027{height:39.264000px;}
.h1_c00027{height:1135.500000px;}
.h0_c00027{height:1135.506150px;}
.w0_c00027{width:893.950200px;}
.w1_c00027{width:894.000000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:77.603100px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws1_c00027{word-spacing:0.000000pt;}
.ws0_c00027{word-spacing:1420.753067pt;}
._0_c00027{margin-left:-1.877333pt;}
._1_c00027{margin-left:-0.981333pt;}
.fs0_c00027{font-size:42.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y1_c00027{bottom:972.089867pt;}
.h2_c00027{height:34.901333pt;}
.h1_c00027{height:1009.333333pt;}
.h0_c00027{height:1009.338800pt;}
.w0_c00027{width:794.622400pt;}
.w1_c00027{width:794.666667pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6d26b27f3a535817078e01e.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_baf38bd2a784835dfc0c5065.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.067000;font-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_c00028{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls4_c00028{letter-spacing:-1.320000px;}
.ls6_c00028{letter-spacing:-0.720000px;}
.ls5_c00028{letter-spacing:-0.576000px;}
.ls3_c00028{letter-spacing:0.000000px;}
.ls2_c00028{letter-spacing:0.360000px;}
.ls0_c00028{letter-spacing:0.480000px;}
.ls1_c00028{letter-spacing:1.560000px;}
.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;}
}
.ws2_c00028{word-spacing:-15.912000px;}
.ws1_c00028{word-spacing:-13.662000px;}
.ws0_c00028{word-spacing:-10.896000px;}
.wsf_c00028{word-spacing:-2.016000px;}
.ws11_c00028{word-spacing:-0.864000px;}
.wse_c00028{word-spacing:-0.792000px;}
.wsa_c00028{word-spacing:-0.576000px;}
.ws4_c00028{word-spacing:-0.390000px;}
.ws3_c00028{word-spacing:0.000000px;}
.ws10_c00028{word-spacing:0.576000px;}
.ws9_c00028{word-spacing:0.864000px;}
.ws8_c00028{word-spacing:1.080000px;}
.ws12_c00028{word-spacing:1.512000px;}
.wsd_c00028{word-spacing:2.664000px;}
.wsb_c00028{word-spacing:2.736000px;}
.ws13_c00028{word-spacing:3.528000px;}
.ws5_c00028{word-spacing:4.248000px;}
.wsc_c00028{word-spacing:6.264000px;}
.ws7_c00028{word-spacing:7.416000px;}
.ws6_c00028{word-spacing:8.280000px;}
._0_c00028{margin-left:-2755.275600px;}
._5_c00028{margin-left:-10.182000px;}
._1_c00028{margin-left:-5.856000px;}
._6_c00028{margin-left:-4.152000px;}
._8_c00028{margin-left:-2.448000px;}
._2_c00028{margin-left:-1.440000px;}
._7_c00028{width:1.368000px;}
._3_c00028{width:2.640000px;}
._4_c00028{width:32.668800px;}
._9_c00028{width:71.928000px;}
.fc1_c00028{color:transparent;}
.fc0_c00028{color:rgb(35,31,32);}
.fs0_c00028{font-size:48.000000px;}
.fs5_c00028{font-size:54.000000px;}
.fs4_c00028{font-size:60.000000px;}
.fs1_c00028{font-size:66.000000px;}
.fs3_c00028{font-size:72.000000px;}
.fs2_c00028{font-size:78.000000px;}
.y0_c00028{bottom:0.000000px;}
.y1b_c00028{bottom:56.120850px;}
.y16_c00028{bottom:130.148700px;}
.y15_c00028{bottom:154.898700px;}
.y14_c00028{bottom:194.642700px;}
.y13_c00028{bottom:219.392700px;}
.y12_c00028{bottom:244.142700px;}
.y11_c00028{bottom:268.892700px;}
.y10_c00028{bottom:308.642700px;}
.yf_c00028{bottom:369.658500px;}
.ye_c00028{bottom:394.408500px;}
.yd_c00028{bottom:419.158500px;}
.yc_c00028{bottom:443.908500px;}
.yb_c00028{bottom:468.658500px;}
.ya_c00028{bottom:508.402500px;}
.y9_c00028{bottom:533.152500px;}
.y8_c00028{bottom:557.902500px;}
.y7_c00028{bottom:582.652500px;}
.y6_c00028{bottom:607.402500px;}
.y5_c00028{bottom:632.152500px;}
.y1a_c00028{bottom:725.780250px;}
.y19_c00028{bottom:754.782300px;}
.y18_c00028{bottom:774.282300px;}
.y4_c00028{bottom:776.429850px;}
.y17_c00028{bottom:793.782300px;}
.y3_c00028{bottom:813.941850px;}
.y2_c00028{bottom:955.461600px;}
.y1_c00028{bottom:1093.600950px;}
.h2_c00028{height:39.264000px;}
.h3_c00028{height:39.984000px;}
.h7_c00028{height:44.172000px;}
.h6_c00028{height:49.080000px;}
.h5_c00028{height:58.896000px;}
.h4_c00028{height:64.974000px;}
.h1_c00028{height:1135.500000px;}
.h0_c00028{height:1135.506150px;}
.w0_c00028{width:893.950200px;}
.w1_c00028{width:894.000000px;}
.x0_c00028{left:0.000000px;}
.x4_c00028{left:128.709150px;}
.x2_c00028{left:188.061900px;}
.x3_c00028{left:190.513350px;}
.x5_c00028{left:423.760800px;}
.x9_c00028{left:537.444150px;}
.x8_c00028{left:580.494150px;}
.xa_c00028{left:611.799150px;}
.xb_c00028{left:677.440650px;}
.x7_c00028{left:792.264000px;}
.x1_c00028{left:806.849700px;}
.x6_c00028{left:809.274000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls4_c00028{letter-spacing:-1.173333pt;}
.ls6_c00028{letter-spacing:-0.640000pt;}
.ls5_c00028{letter-spacing:-0.512000pt;}
.ls3_c00028{letter-spacing:0.000000pt;}
.ls2_c00028{letter-spacing:0.320000pt;}
.ls0_c00028{letter-spacing:0.426667pt;}
.ls1_c00028{letter-spacing:1.386667pt;}
.ws2_c00028{word-spacing:-14.144000pt;}
.ws1_c00028{word-spacing:-12.144000pt;}
.ws0_c00028{word-spacing:-9.685333pt;}
.wsf_c00028{word-spacing:-1.792000pt;}
.ws11_c00028{word-spacing:-0.768000pt;}
.wse_c00028{word-spacing:-0.704000pt;}
.wsa_c00028{word-spacing:-0.512000pt;}
.ws4_c00028{word-spacing:-0.346667pt;}
.ws3_c00028{word-spacing:0.000000pt;}
.ws10_c00028{word-spacing:0.512000pt;}
.ws9_c00028{word-spacing:0.768000pt;}
.ws8_c00028{word-spacing:0.960000pt;}
.ws12_c00028{word-spacing:1.344000pt;}
.wsd_c00028{word-spacing:2.368000pt;}
.wsb_c00028{word-spacing:2.432000pt;}
.ws13_c00028{word-spacing:3.136000pt;}
.ws5_c00028{word-spacing:3.776000pt;}
.wsc_c00028{word-spacing:5.568000pt;}
.ws7_c00028{word-spacing:6.592000pt;}
.ws6_c00028{word-spacing:7.360000pt;}
._0_c00028{margin-left:-2449.133867pt;}
._5_c00028{margin-left:-9.050667pt;}
._1_c00028{margin-left:-5.205333pt;}
._6_c00028{margin-left:-3.690667pt;}
._8_c00028{margin-left:-2.176000pt;}
._2_c00028{margin-left:-1.280000pt;}
._7_c00028{width:1.216000pt;}
._3_c00028{width:2.346667pt;}
._4_c00028{width:29.038933pt;}
._9_c00028{width:63.936000pt;}
.fs0_c00028{font-size:42.666667pt;}
.fs5_c00028{font-size:48.000000pt;}
.fs4_c00028{font-size:53.333333pt;}
.fs1_c00028{font-size:58.666667pt;}
.fs3_c00028{font-size:64.000000pt;}
.fs2_c00028{font-size:69.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y1b_c00028{bottom:49.885200pt;}
.y16_c00028{bottom:115.687733pt;}
.y15_c00028{bottom:137.687733pt;}
.y14_c00028{bottom:173.015733pt;}
.y13_c00028{bottom:195.015733pt;}
.y12_c00028{bottom:217.015733pt;}
.y11_c00028{bottom:239.015733pt;}
.y10_c00028{bottom:274.349067pt;}
.yf_c00028{bottom:328.585333pt;}
.ye_c00028{bottom:350.585333pt;}
.yd_c00028{bottom:372.585333pt;}
.yc_c00028{bottom:394.585333pt;}
.yb_c00028{bottom:416.585333pt;}
.ya_c00028{bottom:451.913333pt;}
.y9_c00028{bottom:473.913333pt;}
.y8_c00028{bottom:495.913333pt;}
.y7_c00028{bottom:517.913333pt;}
.y6_c00028{bottom:539.913333pt;}
.y5_c00028{bottom:561.913333pt;}
.y1a_c00028{bottom:645.138000pt;}
.y19_c00028{bottom:670.917600pt;}
.y18_c00028{bottom:688.250933pt;}
.y4_c00028{bottom:690.159867pt;}
.y17_c00028{bottom:705.584267pt;}
.y3_c00028{bottom:723.503867pt;}
.y2_c00028{bottom:849.299200pt;}
.y1_c00028{bottom:972.089733pt;}
.h2_c00028{height:34.901333pt;}
.h3_c00028{height:35.541333pt;}
.h7_c00028{height:39.264000pt;}
.h6_c00028{height:43.626667pt;}
.h5_c00028{height:52.352000pt;}
.h4_c00028{height:57.754667pt;}
.h1_c00028{height:1009.333333pt;}
.h0_c00028{height:1009.338800pt;}
.w0_c00028{width:794.622400pt;}
.w1_c00028{width:794.666667pt;}
.x0_c00028{left:0.000000pt;}
.x4_c00028{left:114.408133pt;}
.x2_c00028{left:167.166133pt;}
.x3_c00028{left:169.345200pt;}
.x5_c00028{left:376.676267pt;}
.x9_c00028{left:477.728133pt;}
.x8_c00028{left:515.994800pt;}
.xa_c00028{left:543.821467pt;}
.xb_c00028{left:602.169467pt;}
.x7_c00028{left:704.234667pt;}
.x1_c00028{left:717.199733pt;}
.x6_c00028{left:719.354667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfbe0c5ff2cca6c59c8192a2.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.v1_c00029{vertical-align:23.952000px;}
.ls6_c00029{letter-spacing:-1.800000px;}
.ls8_c00029{letter-spacing:-1.344000px;}
.ls7_c00029{letter-spacing:-1.080000px;}
.ls4_c00029{letter-spacing:-0.432000px;}
.ls3_c00029{letter-spacing:-0.360000px;}
.ls2_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:0.000072px;}
.ls5_c00029{letter-spacing:0.072000px;}
.ls1_c00029{letter-spacing:0.432000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-16.416000px;}
.ws4_c00029{word-spacing:-15.912000px;}
.ws3_c00029{word-spacing:-14.688000px;}
.ws5_c00029{word-spacing:-9.552000px;}
.ws2_c00029{word-spacing:-9.528552px;}
.ws11_c00029{word-spacing:-4.176000px;}
.ws9_c00029{word-spacing:-3.312000px;}
.ws16_c00029{word-spacing:-2.736000px;}
.wsc_c00029{word-spacing:-2.520000px;}
.ws1a_c00029{word-spacing:-2.016000px;}
.ws10_c00029{word-spacing:-1.944000px;}
.ws1b_c00029{word-spacing:-1.512000px;}
.ws17_c00029{word-spacing:-1.296000px;}
.ws1d_c00029{word-spacing:-1.152000px;}
.ws12_c00029{word-spacing:-0.648000px;}
.ws20_c00029{word-spacing:-0.576000px;}
.ws21_c00029{word-spacing:-0.384000px;}
.ws8_c00029{word-spacing:-0.288000px;}
.ws15_c00029{word-spacing:-0.144000px;}
.ws6_c00029{word-spacing:0.000000px;}
.wsa_c00029{word-spacing:0.072000px;}
.ws14_c00029{word-spacing:0.144000px;}
.wsf_c00029{word-spacing:0.432000px;}
.wsd_c00029{word-spacing:0.504000px;}
.wsb_c00029{word-spacing:0.792000px;}
.ws7_c00029{word-spacing:0.864000px;}
.ws18_c00029{word-spacing:1.224000px;}
.ws1f_c00029{word-spacing:1.512000px;}
.ws1e_c00029{word-spacing:2.304000px;}
.ws13_c00029{word-spacing:2.448000px;}
.ws19_c00029{word-spacing:3.312000px;}
.wse_c00029{word-spacing:3.528000px;}
.ws1c_c00029{word-spacing:6.768000px;}
.ws0_c00029{word-spacing:1598.635200px;}
._5_c00029{margin-left:-8.952000px;}
._4_c00029{margin-left:-6.720000px;}
._3_c00029{margin-left:-5.160000px;}
._9_c00029{margin-left:-4.128000px;}
._0_c00029{margin-left:-2.112000px;}
._1_c00029{margin-left:-1.104000px;}
._2_c00029{width:1.560000px;}
._a_c00029{width:22.863000px;}
._7_c00029{width:24.783600px;}
._8_c00029{width:26.703600px;}
._6_c00029{width:29.871600px;}
.fc0_c00029{color:rgb(35,31,32);}
.fs2_c00029{font-size:41.976000px;}
.fs0_c00029{font-size:48.000000px;}
.fs1_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y25_c00029{bottom:111.616200px;}
.y24_c00029{bottom:135.120150px;}
.y23_c00029{bottom:150.120150px;}
.y22_c00029{bottom:173.624100px;}
.y21_c00029{bottom:197.128050px;}
.y20_c00029{bottom:220.632000px;}
.y1f_c00029{bottom:264.723450px;}
.y1e_c00029{bottom:289.473450px;}
.y1d_c00029{bottom:314.223450px;}
.y1c_c00029{bottom:338.973450px;}
.y1b_c00029{bottom:378.723450px;}
.y1a_c00029{bottom:403.473450px;}
.y19_c00029{bottom:428.223450px;}
.y18_c00029{bottom:452.973450px;}
.y17_c00029{bottom:477.723450px;}
.y16_c00029{bottom:502.473450px;}
.y15_c00029{bottom:527.223450px;}
.y14_c00029{bottom:566.967450px;}
.y13_c00029{bottom:591.717450px;}
.y12_c00029{bottom:616.467450px;}
.y11_c00029{bottom:641.217450px;}
.y10_c00029{bottom:665.967450px;}
.yf_c00029{bottom:690.717450px;}
.ye_c00029{bottom:715.467450px;}
.yd_c00029{bottom:740.217450px;}
.yc_c00029{bottom:764.967450px;}
.yb_c00029{bottom:789.717450px;}
.ya_c00029{bottom:814.467450px;}
.y9_c00029{bottom:839.217450px;}
.y8_c00029{bottom:878.973450px;}
.y7_c00029{bottom:903.723450px;}
.y6_c00029{bottom:928.473450px;}
.y5_c00029{bottom:953.223450px;}
.y4_c00029{bottom:977.973450px;}
.y3_c00029{bottom:1017.717450px;}
.y2_c00029{bottom:1042.467450px;}
.y1_c00029{bottom:1093.600950px;}
.h2_c00029{height:39.264000px;}
.h3_c00029{height:58.896000px;}
.h1_c00029{height:1135.500000px;}
.h0_c00029{height:1135.506150px;}
.w0_c00029{width:893.950200px;}
.w1_c00029{width:894.000000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:77.603100px;}
.x2_c00029{left:94.623000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.v1_c00029{vertical-align:21.290667pt;}
.ls6_c00029{letter-spacing:-1.600000pt;}
.ls8_c00029{letter-spacing:-1.194667pt;}
.ls7_c00029{letter-spacing:-0.960000pt;}
.ls4_c00029{letter-spacing:-0.384000pt;}
.ls3_c00029{letter-spacing:-0.320000pt;}
.ls2_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:0.000064pt;}
.ls5_c00029{letter-spacing:0.064000pt;}
.ls1_c00029{letter-spacing:0.384000pt;}
.ws1_c00029{word-spacing:-14.592000pt;}
.ws4_c00029{word-spacing:-14.144000pt;}
.ws3_c00029{word-spacing:-13.056000pt;}
.ws5_c00029{word-spacing:-8.490667pt;}
.ws2_c00029{word-spacing:-8.469824pt;}
.ws11_c00029{word-spacing:-3.712000pt;}
.ws9_c00029{word-spacing:-2.944000pt;}
.ws16_c00029{word-spacing:-2.432000pt;}
.wsc_c00029{word-spacing:-2.240000pt;}
.ws1a_c00029{word-spacing:-1.792000pt;}
.ws10_c00029{word-spacing:-1.728000pt;}
.ws1b_c00029{word-spacing:-1.344000pt;}
.ws17_c00029{word-spacing:-1.152000pt;}
.ws1d_c00029{word-spacing:-1.024000pt;}
.ws12_c00029{word-spacing:-0.576000pt;}
.ws20_c00029{word-spacing:-0.512000pt;}
.ws21_c00029{word-spacing:-0.341333pt;}
.ws8_c00029{word-spacing:-0.256000pt;}
.ws15_c00029{word-spacing:-0.128000pt;}
.ws6_c00029{word-spacing:0.000000pt;}
.wsa_c00029{word-spacing:0.064000pt;}
.ws14_c00029{word-spacing:0.128000pt;}
.wsf_c00029{word-spacing:0.384000pt;}
.wsd_c00029{word-spacing:0.448000pt;}
.wsb_c00029{word-spacing:0.704000pt;}
.ws7_c00029{word-spacing:0.768000pt;}
.ws18_c00029{word-spacing:1.088000pt;}
.ws1f_c00029{word-spacing:1.344000pt;}
.ws1e_c00029{word-spacing:2.048000pt;}
.ws13_c00029{word-spacing:2.176000pt;}
.ws19_c00029{word-spacing:2.944000pt;}
.wse_c00029{word-spacing:3.136000pt;}
.ws1c_c00029{word-spacing:6.016000pt;}
.ws0_c00029{word-spacing:1421.009067pt;}
._5_c00029{margin-left:-7.957333pt;}
._4_c00029{margin-left:-5.973333pt;}
._3_c00029{margin-left:-4.586667pt;}
._9_c00029{margin-left:-3.669333pt;}
._0_c00029{margin-left:-1.877333pt;}
._1_c00029{margin-left:-0.981333pt;}
._2_c00029{width:1.386667pt;}
._a_c00029{width:20.322667pt;}
._7_c00029{width:22.029867pt;}
._8_c00029{width:23.736533pt;}
._6_c00029{width:26.552533pt;}
.fs2_c00029{font-size:37.312000pt;}
.fs0_c00029{font-size:42.666667pt;}
.fs1_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y25_c00029{bottom:99.214400pt;}
.y24_c00029{bottom:120.106800pt;}
.y23_c00029{bottom:133.440133pt;}
.y22_c00029{bottom:154.332533pt;}
.y21_c00029{bottom:175.224933pt;}
.y20_c00029{bottom:196.117333pt;}
.y1f_c00029{bottom:235.309733pt;}
.y1e_c00029{bottom:257.309733pt;}
.y1d_c00029{bottom:279.309733pt;}
.y1c_c00029{bottom:301.309733pt;}
.y1b_c00029{bottom:336.643067pt;}
.y1a_c00029{bottom:358.643067pt;}
.y19_c00029{bottom:380.643067pt;}
.y18_c00029{bottom:402.643067pt;}
.y17_c00029{bottom:424.643067pt;}
.y16_c00029{bottom:446.643067pt;}
.y15_c00029{bottom:468.643067pt;}
.y14_c00029{bottom:503.971067pt;}
.y13_c00029{bottom:525.971067pt;}
.y12_c00029{bottom:547.971067pt;}
.y11_c00029{bottom:569.971067pt;}
.y10_c00029{bottom:591.971067pt;}
.yf_c00029{bottom:613.971067pt;}
.ye_c00029{bottom:635.971067pt;}
.yd_c00029{bottom:657.971067pt;}
.yc_c00029{bottom:679.971067pt;}
.yb_c00029{bottom:701.971067pt;}
.ya_c00029{bottom:723.971067pt;}
.y9_c00029{bottom:745.971067pt;}
.y8_c00029{bottom:781.309733pt;}
.y7_c00029{bottom:803.309733pt;}
.y6_c00029{bottom:825.309733pt;}
.y5_c00029{bottom:847.309733pt;}
.y4_c00029{bottom:869.309733pt;}
.y3_c00029{bottom:904.637733pt;}
.y2_c00029{bottom:926.637733pt;}
.y1_c00029{bottom:972.089733pt;}
.h2_c00029{height:34.901333pt;}
.h3_c00029{height:52.352000pt;}
.h1_c00029{height:1009.333333pt;}
.h0_c00029{height:1009.338800pt;}
.w0_c00029{width:794.622400pt;}
.w1_c00029{width:794.666667pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:68.980533pt;}
.x2_c00029{left:84.109333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18f5413b2d0235bdf550cf18.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_17e52cd53b91a98f994a67e1.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.067000;font-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_c00030{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.v2_c00030{vertical-align:20.937000px;}
.v1_c00030{vertical-align:23.976000px;}
.ls9_c00030{letter-spacing:-4.800000px;}
.ls4_c00030{letter-spacing:-1.152000px;}
.ls6_c00030{letter-spacing:-1.008000px;}
.lsa_c00030{letter-spacing:-0.816000px;}
.ls5_c00030{letter-spacing:-0.720000px;}
.ls7_c00030{letter-spacing:-0.504000px;}
.ls3_c00030{letter-spacing:-0.288000px;}
.ls1_c00030{letter-spacing:-0.240000px;}
.ls2_c00030{letter-spacing:0.000000px;}
.ls8_c00030{letter-spacing:0.288000px;}
.ls0_c00030{letter-spacing:0.480000px;}
.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;}
}
.ws4_c00030{word-spacing:-15.768000px;}
.ws3_c00030{word-spacing:-15.480000px;}
.ws2_c00030{word-spacing:-15.336000px;}
.ws9_c00030{word-spacing:-13.620000px;}
.ws5_c00030{word-spacing:-11.376000px;}
.ws7_c00030{word-spacing:-11.280000px;}
.ws6_c00030{word-spacing:-10.896000px;}
.ws0_c00030{word-spacing:-10.656000px;}
.ws8_c00030{word-spacing:-10.080000px;}
.ws1_c00030{word-spacing:-9.528552px;}
.ws1a_c00030{word-spacing:-2.952000px;}
.ws1b_c00030{word-spacing:-2.664000px;}
.ws13_c00030{word-spacing:-2.268000px;}
.ws22_c00030{word-spacing:-1.800000px;}
.ws21_c00030{word-spacing:-1.728000px;}
.ws16_c00030{word-spacing:-1.440000px;}
.ws12_c00030{word-spacing:-1.323000px;}
.wse_c00030{word-spacing:-1.080000px;}
.ws26_c00030{word-spacing:-1.056000px;}
.ws2a_c00030{word-spacing:-0.912000px;}
.ws19_c00030{word-spacing:-0.648000px;}
.ws25_c00030{word-spacing:-0.480000px;}
.ws1c_c00030{word-spacing:-0.072000px;}
.wsa_c00030{word-spacing:0.000000px;}
.ws14_c00030{word-spacing:0.072000px;}
.ws28_c00030{word-spacing:0.144000px;}
.ws11_c00030{word-spacing:0.288000px;}
.ws17_c00030{word-spacing:0.432000px;}
.ws1f_c00030{word-spacing:0.576000px;}
.wsd_c00030{word-spacing:0.720000px;}
.ws1e_c00030{word-spacing:1.080000px;}
.ws15_c00030{word-spacing:1.152000px;}
.ws24_c00030{word-spacing:1.584000px;}
.ws18_c00030{word-spacing:1.656000px;}
.ws20_c00030{word-spacing:1.944000px;}
.ws10_c00030{word-spacing:2.808000px;}
.ws27_c00030{word-spacing:3.168000px;}
.ws1d_c00030{word-spacing:4.320000px;}
.wsc_c00030{word-spacing:4.464000px;}
.ws29_c00030{word-spacing:4.800000px;}
.wsb_c00030{word-spacing:8.280000px;}
.wsf_c00030{word-spacing:8.640000px;}
.ws23_c00030{word-spacing:22.224000px;}
._0_c00030{margin-left:-2755.035000px;}
._7_c00030{margin-left:-7.416000px;}
._1_c00030{margin-left:-5.856000px;}
._4_c00030{margin-left:-3.672000px;}
._6_c00030{margin-left:-2.466000px;}
._2_c00030{margin-left:-1.440000px;}
._3_c00030{width:1.152000px;}
._5_c00030{width:2.808000px;}
._8_c00030{width:4.800000px;}
._a_c00030{width:23.823600px;}
._9_c00030{width:30.015600px;}
.fc0_c00030{color:rgb(35,31,32);}
.fs4_c00030{font-size:36.729000px;}
.fs2_c00030{font-size:41.976000px;}
.fs0_c00030{font-size:48.000000px;}
.fs5_c00030{font-size:60.000000px;}
.fs3_c00030{font-size:63.000000px;}
.fs1_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y26_c00030{bottom:111.616200px;}
.y25_c00030{bottom:126.616200px;}
.y24_c00030{bottom:150.120150px;}
.y23_c00030{bottom:173.624100px;}
.y22_c00030{bottom:188.624100px;}
.y21_c00030{bottom:203.624100px;}
.y20_c00030{bottom:218.624100px;}
.y1f_c00030{bottom:233.624100px;}
.y1e_c00030{bottom:248.624100px;}
.y1d_c00030{bottom:316.981500px;}
.y28_c00030{bottom:321.941850px;}
.y27_c00030{bottom:340.541850px;}
.y1c_c00030{bottom:341.731500px;}
.y1b_c00030{bottom:366.481500px;}
.y1a_c00030{bottom:391.231500px;}
.y19_c00030{bottom:430.975500px;}
.y18_c00030{bottom:455.725500px;}
.y17_c00030{bottom:480.475500px;}
.y16_c00030{bottom:505.225500px;}
.y15_c00030{bottom:529.975500px;}
.y14_c00030{bottom:554.725500px;}
.y13_c00030{bottom:579.475500px;}
.y12_c00030{bottom:619.219500px;}
.y11_c00030{bottom:643.969500px;}
.y10_c00030{bottom:668.719500px;}
.yf_c00030{bottom:693.469500px;}
.ye_c00030{bottom:718.219500px;}
.yd_c00030{bottom:757.963500px;}
.yc_c00030{bottom:782.713500px;}
.yb_c00030{bottom:822.474000px;}
.ya_c00030{bottom:843.468750px;}
.y9_c00030{bottom:864.463500px;}
.y8_c00030{bottom:893.967450px;}
.y7_c00030{bottom:918.717450px;}
.y6_c00030{bottom:943.467450px;}
.y5_c00030{bottom:968.217450px;}
.y4_c00030{bottom:992.967450px;}
.y3_c00030{bottom:1017.717450px;}
.y2_c00030{bottom:1042.467450px;}
.y1_c00030{bottom:1093.600950px;}
.h2_c00030{height:39.264000px;}
.h3_c00030{height:39.984000px;}
.h7_c00030{height:49.080000px;}
.h5_c00030{height:51.534000px;}
.h6_c00030{height:58.320000px;}
.h4_c00030{height:58.896000px;}
.h1_c00030{height:1135.500000px;}
.h0_c00030{height:1135.506150px;}
.w0_c00030{width:893.950200px;}
.w1_c00030{width:894.000000px;}
.x0_c00030{left:0.000000px;}
.x4_c00030{left:128.626800px;}
.x6_c00030{left:145.634700px;}
.x5_c00030{left:149.886600px;}
.x2_c00030{left:188.061900px;}
.x3_c00030{left:190.513350px;}
.x7_c00030{left:627.154050px;}
.x1_c00030{left:806.321550px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.v2_c00030{vertical-align:18.610667pt;}
.v1_c00030{vertical-align:21.312000pt;}
.ls9_c00030{letter-spacing:-4.266667pt;}
.ls4_c00030{letter-spacing:-1.024000pt;}
.ls6_c00030{letter-spacing:-0.896000pt;}
.lsa_c00030{letter-spacing:-0.725333pt;}
.ls5_c00030{letter-spacing:-0.640000pt;}
.ls7_c00030{letter-spacing:-0.448000pt;}
.ls3_c00030{letter-spacing:-0.256000pt;}
.ls1_c00030{letter-spacing:-0.213333pt;}
.ls2_c00030{letter-spacing:0.000000pt;}
.ls8_c00030{letter-spacing:0.256000pt;}
.ls0_c00030{letter-spacing:0.426667pt;}
.ws4_c00030{word-spacing:-14.016000pt;}
.ws3_c00030{word-spacing:-13.760000pt;}
.ws2_c00030{word-spacing:-13.632000pt;}
.ws9_c00030{word-spacing:-12.106667pt;}
.ws5_c00030{word-spacing:-10.112000pt;}
.ws7_c00030{word-spacing:-10.026667pt;}
.ws6_c00030{word-spacing:-9.685333pt;}
.ws0_c00030{word-spacing:-9.472000pt;}
.ws8_c00030{word-spacing:-8.960000pt;}
.ws1_c00030{word-spacing:-8.469824pt;}
.ws1a_c00030{word-spacing:-2.624000pt;}
.ws1b_c00030{word-spacing:-2.368000pt;}
.ws13_c00030{word-spacing:-2.016000pt;}
.ws22_c00030{word-spacing:-1.600000pt;}
.ws21_c00030{word-spacing:-1.536000pt;}
.ws16_c00030{word-spacing:-1.280000pt;}
.ws12_c00030{word-spacing:-1.176000pt;}
.wse_c00030{word-spacing:-0.960000pt;}
.ws26_c00030{word-spacing:-0.938667pt;}
.ws2a_c00030{word-spacing:-0.810667pt;}
.ws19_c00030{word-spacing:-0.576000pt;}
.ws25_c00030{word-spacing:-0.426667pt;}
.ws1c_c00030{word-spacing:-0.064000pt;}
.wsa_c00030{word-spacing:0.000000pt;}
.ws14_c00030{word-spacing:0.064000pt;}
.ws28_c00030{word-spacing:0.128000pt;}
.ws11_c00030{word-spacing:0.256000pt;}
.ws17_c00030{word-spacing:0.384000pt;}
.ws1f_c00030{word-spacing:0.512000pt;}
.wsd_c00030{word-spacing:0.640000pt;}
.ws1e_c00030{word-spacing:0.960000pt;}
.ws15_c00030{word-spacing:1.024000pt;}
.ws24_c00030{word-spacing:1.408000pt;}
.ws18_c00030{word-spacing:1.472000pt;}
.ws20_c00030{word-spacing:1.728000pt;}
.ws10_c00030{word-spacing:2.496000pt;}
.ws27_c00030{word-spacing:2.816000pt;}
.ws1d_c00030{word-spacing:3.840000pt;}
.wsc_c00030{word-spacing:3.968000pt;}
.ws29_c00030{word-spacing:4.266667pt;}
.wsb_c00030{word-spacing:7.360000pt;}
.wsf_c00030{word-spacing:7.680000pt;}
.ws23_c00030{word-spacing:19.754667pt;}
._0_c00030{margin-left:-2448.920000pt;}
._7_c00030{margin-left:-6.592000pt;}
._1_c00030{margin-left:-5.205333pt;}
._4_c00030{margin-left:-3.264000pt;}
._6_c00030{margin-left:-2.192000pt;}
._2_c00030{margin-left:-1.280000pt;}
._3_c00030{width:1.024000pt;}
._5_c00030{width:2.496000pt;}
._8_c00030{width:4.266667pt;}
._a_c00030{width:21.176533pt;}
._9_c00030{width:26.680533pt;}
.fs4_c00030{font-size:32.648000pt;}
.fs2_c00030{font-size:37.312000pt;}
.fs0_c00030{font-size:42.666667pt;}
.fs5_c00030{font-size:53.333333pt;}
.fs3_c00030{font-size:56.000000pt;}
.fs1_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y26_c00030{bottom:99.214400pt;}
.y25_c00030{bottom:112.547733pt;}
.y24_c00030{bottom:133.440133pt;}
.y23_c00030{bottom:154.332533pt;}
.y22_c00030{bottom:167.665867pt;}
.y21_c00030{bottom:180.999200pt;}
.y20_c00030{bottom:194.332533pt;}
.y1f_c00030{bottom:207.665867pt;}
.y1e_c00030{bottom:220.999200pt;}
.y1d_c00030{bottom:281.761333pt;}
.y28_c00030{bottom:286.170533pt;}
.y27_c00030{bottom:302.703867pt;}
.y1c_c00030{bottom:303.761333pt;}
.y1b_c00030{bottom:325.761333pt;}
.y1a_c00030{bottom:347.761333pt;}
.y19_c00030{bottom:383.089333pt;}
.y18_c00030{bottom:405.089333pt;}
.y17_c00030{bottom:427.089333pt;}
.y16_c00030{bottom:449.089333pt;}
.y15_c00030{bottom:471.089333pt;}
.y14_c00030{bottom:493.089333pt;}
.y13_c00030{bottom:515.089333pt;}
.y12_c00030{bottom:550.417333pt;}
.y11_c00030{bottom:572.417333pt;}
.y10_c00030{bottom:594.417333pt;}
.yf_c00030{bottom:616.417333pt;}
.ye_c00030{bottom:638.417333pt;}
.yd_c00030{bottom:673.745333pt;}
.yc_c00030{bottom:695.745333pt;}
.yb_c00030{bottom:731.088000pt;}
.ya_c00030{bottom:749.750000pt;}
.y9_c00030{bottom:768.412000pt;}
.y8_c00030{bottom:794.637733pt;}
.y7_c00030{bottom:816.637733pt;}
.y6_c00030{bottom:838.637733pt;}
.y5_c00030{bottom:860.637733pt;}
.y4_c00030{bottom:882.637733pt;}
.y3_c00030{bottom:904.637733pt;}
.y2_c00030{bottom:926.637733pt;}
.y1_c00030{bottom:972.089733pt;}
.h2_c00030{height:34.901333pt;}
.h3_c00030{height:35.541333pt;}
.h7_c00030{height:43.626667pt;}
.h5_c00030{height:45.808000pt;}
.h6_c00030{height:51.840000pt;}
.h4_c00030{height:52.352000pt;}
.h1_c00030{height:1009.333333pt;}
.h0_c00030{height:1009.338800pt;}
.w0_c00030{width:794.622400pt;}
.w1_c00030{width:794.666667pt;}
.x0_c00030{left:0.000000pt;}
.x4_c00030{left:114.334933pt;}
.x6_c00030{left:129.453067pt;}
.x5_c00030{left:133.232533pt;}
.x2_c00030{left:167.166133pt;}
.x3_c00030{left:169.345200pt;}
.x7_c00030{left:557.470267pt;}
.x1_c00030{left:716.730267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80cc082fbe12fa3db772d824.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_26e085fb1e2dea97937e6c40.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.v1_c00031{vertical-align:23.952600px;}
.ls4_c00031{letter-spacing:-2.160000px;}
.ls5_c00031{letter-spacing:-1.368000px;}
.ls6_c00031{letter-spacing:-1.152000px;}
.ls9_c00031{letter-spacing:-0.768000px;}
.lsc_c00031{letter-spacing:-0.720000px;}
.lsb_c00031{letter-spacing:-0.672000px;}
.lsd_c00031{letter-spacing:-0.540000px;}
.lsa_c00031{letter-spacing:-0.480000px;}
.ls7_c00031{letter-spacing:-0.432000px;}
.ls2_c00031{letter-spacing:-0.192000px;}
.ls3_c00031{letter-spacing:0.000000px;}
.ls8_c00031{letter-spacing:0.419760px;}
.ls1_c00031{letter-spacing:0.480000px;}
.ls0_c00031{letter-spacing:0.720000px;}
.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;}
}
.ws3_c00031{word-spacing:-15.912000px;}
.ws2_c00031{word-spacing:-14.976000px;}
.ws1_c00031{word-spacing:-14.328000px;}
.ws8_c00031{word-spacing:-10.992000px;}
.ws7_c00031{word-spacing:-10.896000px;}
.ws6_c00031{word-spacing:-10.416000px;}
.ws9_c00031{word-spacing:-10.224000px;}
.wsa_c00031{word-spacing:-10.176000px;}
.ws5_c00031{word-spacing:-9.948312px;}
.ws4_c00031{word-spacing:-9.528552px;}
.ws14_c00031{word-spacing:-4.032000px;}
.ws20_c00031{word-spacing:-2.880000px;}
.ws1f_c00031{word-spacing:-2.808000px;}
.ws21_c00031{word-spacing:-2.664000px;}
.ws1d_c00031{word-spacing:-2.232000px;}
.ws13_c00031{word-spacing:-2.160000px;}
.wse_c00031{word-spacing:-2.088000px;}
.ws26_c00031{word-spacing:-1.800000px;}
.ws15_c00031{word-spacing:-1.728000px;}
.ws24_c00031{word-spacing:-0.720000px;}
.ws2c_c00031{word-spacing:-0.288000px;}
.wsb_c00031{word-spacing:0.000000px;}
.ws16_c00031{word-spacing:0.072000px;}
.ws1c_c00031{word-spacing:0.216000px;}
.ws25_c00031{word-spacing:0.288000px;}
.ws2a_c00031{word-spacing:0.480000px;}
.ws2d_c00031{word-spacing:0.540000px;}
.ws18_c00031{word-spacing:0.648000px;}
.ws29_c00031{word-spacing:0.960000px;}
.ws1a_c00031{word-spacing:1.008000px;}
.ws1b_c00031{word-spacing:1.224000px;}
.wsd_c00031{word-spacing:1.296000px;}
.ws19_c00031{word-spacing:1.512000px;}
.ws17_c00031{word-spacing:1.800000px;}
.ws1e_c00031{word-spacing:2.376000px;}
.ws12_c00031{word-spacing:3.024000px;}
.ws27_c00031{word-spacing:3.360000px;}
.ws28_c00031{word-spacing:4.128000px;}
.wsc_c00031{word-spacing:5.688000px;}
.ws10_c00031{word-spacing:5.976000px;}
.ws11_c00031{word-spacing:6.048000px;}
.ws23_c00031{word-spacing:6.264000px;}
.ws22_c00031{word-spacing:6.840000px;}
.wsf_c00031{word-spacing:8.496000px;}
.ws2b_c00031{word-spacing:13.536000px;}
.ws0_c00031{word-spacing:1599.355200px;}
._9_c00031{margin-left:-14.719200px;}
._2_c00031{margin-left:-6.984000px;}
._7_c00031{margin-left:-3.312000px;}
._0_c00031{margin-left:-2.112000px;}
._1_c00031{margin-left:-1.104000px;}
._3_c00031{width:1.176000px;}
._4_c00031{width:2.904000px;}
._8_c00031{width:4.431000px;}
._5_c00031{width:6.936000px;}
._6_c00031{width:11.952000px;}
.fc0_c00031{color:rgb(35,31,32);}
.fs2_c00031{font-size:41.976000px;}
.fs0_c00031{font-size:48.000000px;}
.fs3_c00031{font-size:60.000000px;}
.fs1_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y25_c00031{bottom:111.616350px;}
.y24_c00031{bottom:126.612300px;}
.y23_c00031{bottom:150.120300px;}
.y22_c00031{bottom:165.120300px;}
.y21_c00031{bottom:188.624250px;}
.y20_c00031{bottom:203.624250px;}
.y1f_c00031{bottom:264.729450px;}
.y1e_c00031{bottom:289.479450px;}
.y1d_c00031{bottom:314.229450px;}
.y1c_c00031{bottom:338.979450px;}
.y1b_c00031{bottom:363.729450px;}
.y1a_c00031{bottom:403.473450px;}
.y19_c00031{bottom:428.223450px;}
.y18_c00031{bottom:452.973450px;}
.y17_c00031{bottom:477.723450px;}
.y16_c00031{bottom:502.473450px;}
.y15_c00031{bottom:542.217450px;}
.y14_c00031{bottom:566.973450px;}
.y13_c00031{bottom:591.723450px;}
.y12_c00031{bottom:616.473450px;}
.y11_c00031{bottom:641.223450px;}
.y10_c00031{bottom:680.967450px;}
.y27_c00031{bottom:700.226700px;}
.yf_c00031{bottom:705.717450px;}
.y26_c00031{bottom:718.826700px;}
.ye_c00031{bottom:730.473450px;}
.yd_c00031{bottom:755.223450px;}
.yc_c00031{bottom:779.973450px;}
.yb_c00031{bottom:804.723450px;}
.ya_c00031{bottom:829.473450px;}
.y9_c00031{bottom:869.217450px;}
.y8_c00031{bottom:893.967450px;}
.y7_c00031{bottom:918.717450px;}
.y6_c00031{bottom:943.467450px;}
.y5_c00031{bottom:968.217450px;}
.y4_c00031{bottom:992.967450px;}
.y3_c00031{bottom:1017.717450px;}
.y2_c00031{bottom:1042.467450px;}
.y1_c00031{bottom:1093.601100px;}
.h2_c00031{height:39.264000px;}
.h4_c00031{height:39.280200px;}
.h5_c00031{height:49.080000px;}
.h3_c00031{height:58.896000px;}
.h1_c00031{height:1135.500000px;}
.h0_c00031{height:1135.506150px;}
.w0_c00031{width:893.950200px;}
.w1_c00031{width:894.000000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:77.603100px;}
.x2_c00031{left:94.611000px;}
.x3_c00031{left:559.558950px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:21.291200pt;}
.ls4_c00031{letter-spacing:-1.920000pt;}
.ls5_c00031{letter-spacing:-1.216000pt;}
.ls6_c00031{letter-spacing:-1.024000pt;}
.ls9_c00031{letter-spacing:-0.682667pt;}
.lsc_c00031{letter-spacing:-0.640000pt;}
.lsb_c00031{letter-spacing:-0.597333pt;}
.lsd_c00031{letter-spacing:-0.480000pt;}
.lsa_c00031{letter-spacing:-0.426667pt;}
.ls7_c00031{letter-spacing:-0.384000pt;}
.ls2_c00031{letter-spacing:-0.170667pt;}
.ls3_c00031{letter-spacing:0.000000pt;}
.ls8_c00031{letter-spacing:0.373120pt;}
.ls1_c00031{letter-spacing:0.426667pt;}
.ls0_c00031{letter-spacing:0.640000pt;}
.ws3_c00031{word-spacing:-14.144000pt;}
.ws2_c00031{word-spacing:-13.312000pt;}
.ws1_c00031{word-spacing:-12.736000pt;}
.ws8_c00031{word-spacing:-9.770667pt;}
.ws7_c00031{word-spacing:-9.685333pt;}
.ws6_c00031{word-spacing:-9.258667pt;}
.ws9_c00031{word-spacing:-9.088000pt;}
.wsa_c00031{word-spacing:-9.045333pt;}
.ws5_c00031{word-spacing:-8.842944pt;}
.ws4_c00031{word-spacing:-8.469824pt;}
.ws14_c00031{word-spacing:-3.584000pt;}
.ws20_c00031{word-spacing:-2.560000pt;}
.ws1f_c00031{word-spacing:-2.496000pt;}
.ws21_c00031{word-spacing:-2.368000pt;}
.ws1d_c00031{word-spacing:-1.984000pt;}
.ws13_c00031{word-spacing:-1.920000pt;}
.wse_c00031{word-spacing:-1.856000pt;}
.ws26_c00031{word-spacing:-1.600000pt;}
.ws15_c00031{word-spacing:-1.536000pt;}
.ws24_c00031{word-spacing:-0.640000pt;}
.ws2c_c00031{word-spacing:-0.256000pt;}
.wsb_c00031{word-spacing:0.000000pt;}
.ws16_c00031{word-spacing:0.064000pt;}
.ws1c_c00031{word-spacing:0.192000pt;}
.ws25_c00031{word-spacing:0.256000pt;}
.ws2a_c00031{word-spacing:0.426667pt;}
.ws2d_c00031{word-spacing:0.480000pt;}
.ws18_c00031{word-spacing:0.576000pt;}
.ws29_c00031{word-spacing:0.853333pt;}
.ws1a_c00031{word-spacing:0.896000pt;}
.ws1b_c00031{word-spacing:1.088000pt;}
.wsd_c00031{word-spacing:1.152000pt;}
.ws19_c00031{word-spacing:1.344000pt;}
.ws17_c00031{word-spacing:1.600000pt;}
.ws1e_c00031{word-spacing:2.112000pt;}
.ws12_c00031{word-spacing:2.688000pt;}
.ws27_c00031{word-spacing:2.986667pt;}
.ws28_c00031{word-spacing:3.669333pt;}
.wsc_c00031{word-spacing:5.056000pt;}
.ws10_c00031{word-spacing:5.312000pt;}
.ws11_c00031{word-spacing:5.376000pt;}
.ws23_c00031{word-spacing:5.568000pt;}
.ws22_c00031{word-spacing:6.080000pt;}
.wsf_c00031{word-spacing:7.552000pt;}
.ws2b_c00031{word-spacing:12.032000pt;}
.ws0_c00031{word-spacing:1421.649067pt;}
._9_c00031{margin-left:-13.083733pt;}
._2_c00031{margin-left:-6.208000pt;}
._7_c00031{margin-left:-2.944000pt;}
._0_c00031{margin-left:-1.877333pt;}
._1_c00031{margin-left:-0.981333pt;}
._3_c00031{width:1.045333pt;}
._4_c00031{width:2.581333pt;}
._8_c00031{width:3.938667pt;}
._5_c00031{width:6.165333pt;}
._6_c00031{width:10.624000pt;}
.fs2_c00031{font-size:37.312000pt;}
.fs0_c00031{font-size:42.666667pt;}
.fs3_c00031{font-size:53.333333pt;}
.fs1_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y25_c00031{bottom:99.214533pt;}
.y24_c00031{bottom:112.544267pt;}
.y23_c00031{bottom:133.440267pt;}
.y22_c00031{bottom:146.773600pt;}
.y21_c00031{bottom:167.666000pt;}
.y20_c00031{bottom:180.999333pt;}
.y1f_c00031{bottom:235.315067pt;}
.y1e_c00031{bottom:257.315067pt;}
.y1d_c00031{bottom:279.315067pt;}
.y1c_c00031{bottom:301.315067pt;}
.y1b_c00031{bottom:323.315067pt;}
.y1a_c00031{bottom:358.643067pt;}
.y19_c00031{bottom:380.643067pt;}
.y18_c00031{bottom:402.643067pt;}
.y17_c00031{bottom:424.643067pt;}
.y16_c00031{bottom:446.643067pt;}
.y15_c00031{bottom:481.971067pt;}
.y14_c00031{bottom:503.976400pt;}
.y13_c00031{bottom:525.976400pt;}
.y12_c00031{bottom:547.976400pt;}
.y11_c00031{bottom:569.976400pt;}
.y10_c00031{bottom:605.304400pt;}
.y27_c00031{bottom:622.423733pt;}
.yf_c00031{bottom:627.304400pt;}
.y26_c00031{bottom:638.957067pt;}
.ye_c00031{bottom:649.309733pt;}
.yd_c00031{bottom:671.309733pt;}
.yc_c00031{bottom:693.309733pt;}
.yb_c00031{bottom:715.309733pt;}
.ya_c00031{bottom:737.309733pt;}
.y9_c00031{bottom:772.637733pt;}
.y8_c00031{bottom:794.637733pt;}
.y7_c00031{bottom:816.637733pt;}
.y6_c00031{bottom:838.637733pt;}
.y5_c00031{bottom:860.637733pt;}
.y4_c00031{bottom:882.637733pt;}
.y3_c00031{bottom:904.637733pt;}
.y2_c00031{bottom:926.637733pt;}
.y1_c00031{bottom:972.089867pt;}
.h2_c00031{height:34.901333pt;}
.h4_c00031{height:34.915733pt;}
.h5_c00031{height:43.626667pt;}
.h3_c00031{height:52.352000pt;}
.h1_c00031{height:1009.333333pt;}
.h0_c00031{height:1009.338800pt;}
.w0_c00031{width:794.622400pt;}
.w1_c00031{width:794.666667pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:68.980533pt;}
.x2_c00031{left:84.098667pt;}
.x3_c00031{left:497.385733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ff7acabb3f23e1a0d9e5169.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_1d0cdf7fc1e7cb80c966c2fc.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_61c6fb55d88c245be4050ba9.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.067000;font-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_c00032{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.v1_c00032{vertical-align:3.000000px;}
.ls7_c00032{letter-spacing:-0.960000px;}
.ls4_c00032{letter-spacing:-0.648000px;}
.ls6_c00032{letter-spacing:-0.420000px;}
.ls8_c00032{letter-spacing:-0.240000px;}
.ls5_c00032{letter-spacing:-0.144000px;}
.ls3_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:0.480000px;}
.ls1_c00032{letter-spacing:0.720000px;}
.ls2_c00032{letter-spacing:1328.785800px;}
.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;}
}
.ws1_c00032{word-spacing:-15.840000px;}
.ws3_c00032{word-spacing:-13.500000px;}
.ws2_c00032{word-spacing:-13.200000px;}
.ws0_c00032{word-spacing:-10.896000px;}
.ws5_c00032{word-spacing:0.000000px;}
.wsa_c00032{word-spacing:0.144000px;}
.ws6_c00032{word-spacing:0.576000px;}
.wsc_c00032{word-spacing:0.960000px;}
.wsb_c00032{word-spacing:1.008000px;}
.ws9_c00032{word-spacing:3.312000px;}
.ws7_c00032{word-spacing:3.600000px;}
.ws8_c00032{word-spacing:4.104000px;}
.ws4_c00032{word-spacing:504.466800px;}
._0_c00032{margin-left:-2755.276200px;}
._1_c00032{margin-left:-5.856000px;}
._6_c00032{margin-left:-2.592000px;}
._2_c00032{margin-left:-1.440000px;}
._4_c00032{width:1.080000px;}
._5_c00032{width:2.160000px;}
._3_c00032{width:34.631400px;}
._7_c00032{width:524.932800px;}
._9_c00032{width:527.320200px;}
._8_c00032{width:561.450600px;}
.fc0_c00032{color:rgb(35,31,32);}
.fs0_c00032{font-size:48.000000px;}
.fs3_c00032{font-size:54.000000px;}
.fs2_c00032{font-size:60.000000px;}
.fs1_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y8_c00032{bottom:113.613150px;}
.y7_c00032{bottom:138.363150px;}
.y6_c00032{bottom:163.113150px;}
.y5_c00032{bottom:187.863150px;}
.y4_c00032{bottom:212.613150px;}
.y3_c00032{bottom:237.363150px;}
.y2_c00032{bottom:277.113150px;}
.yb_c00032{bottom:354.144450px;}
.ya_c00032{bottom:372.744450px;}
.y9_c00032{bottom:391.344450px;}
.yd_c00032{bottom:426.327600px;}
.yc_c00032{bottom:622.932750px;}
.y1_c00032{bottom:1093.601100px;}
.h2_c00032{height:39.264000px;}
.h3_c00032{height:39.984000px;}
.h9_c00032{height:44.172000px;}
.h8_c00032{height:47.172000px;}
.h7_c00032{height:48.600000px;}
.h6_c00032{height:49.080000px;}
.h5_c00032{height:58.896000px;}
.h4_c00032{height:59.976000px;}
.h1_c00032{height:1135.500000px;}
.h0_c00032{height:1135.506150px;}
.w0_c00032{width:893.950200px;}
.w1_c00032{width:894.000000px;}
.x0_c00032{left:0.000000px;}
.x4_c00032{left:128.626800px;}
.x5_c00032{left:141.006300px;}
.x2_c00032{left:188.061900px;}
.x3_c00032{left:190.513350px;}
.x1_c00032{left:808.493850px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:2.666667pt;}
.ls7_c00032{letter-spacing:-0.853333pt;}
.ls4_c00032{letter-spacing:-0.576000pt;}
.ls6_c00032{letter-spacing:-0.373333pt;}
.ls8_c00032{letter-spacing:-0.213333pt;}
.ls5_c00032{letter-spacing:-0.128000pt;}
.ls3_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.426667pt;}
.ls1_c00032{letter-spacing:0.640000pt;}
.ls2_c00032{letter-spacing:1181.142933pt;}
.ws1_c00032{word-spacing:-14.080000pt;}
.ws3_c00032{word-spacing:-12.000000pt;}
.ws2_c00032{word-spacing:-11.733333pt;}
.ws0_c00032{word-spacing:-9.685333pt;}
.ws5_c00032{word-spacing:0.000000pt;}
.wsa_c00032{word-spacing:0.128000pt;}
.ws6_c00032{word-spacing:0.512000pt;}
.wsc_c00032{word-spacing:0.853333pt;}
.wsb_c00032{word-spacing:0.896000pt;}
.ws9_c00032{word-spacing:2.944000pt;}
.ws7_c00032{word-spacing:3.200000pt;}
.ws8_c00032{word-spacing:3.648000pt;}
.ws4_c00032{word-spacing:448.414933pt;}
._0_c00032{margin-left:-2449.134400pt;}
._1_c00032{margin-left:-5.205333pt;}
._6_c00032{margin-left:-2.304000pt;}
._2_c00032{margin-left:-1.280000pt;}
._4_c00032{width:0.960000pt;}
._5_c00032{width:1.920000pt;}
._3_c00032{width:30.783467pt;}
._7_c00032{width:466.606933pt;}
._9_c00032{width:468.729067pt;}
._8_c00032{width:499.067200pt;}
.fs0_c00032{font-size:42.666667pt;}
.fs3_c00032{font-size:48.000000pt;}
.fs2_c00032{font-size:53.333333pt;}
.fs1_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y8_c00032{bottom:100.989467pt;}
.y7_c00032{bottom:122.989467pt;}
.y6_c00032{bottom:144.989467pt;}
.y5_c00032{bottom:166.989467pt;}
.y4_c00032{bottom:188.989467pt;}
.y3_c00032{bottom:210.989467pt;}
.y2_c00032{bottom:246.322800pt;}
.yb_c00032{bottom:314.795067pt;}
.ya_c00032{bottom:331.328400pt;}
.y9_c00032{bottom:347.861733pt;}
.yd_c00032{bottom:378.957867pt;}
.yc_c00032{bottom:553.718000pt;}
.y1_c00032{bottom:972.089867pt;}
.h2_c00032{height:34.901333pt;}
.h3_c00032{height:35.541333pt;}
.h9_c00032{height:39.264000pt;}
.h8_c00032{height:41.930667pt;}
.h7_c00032{height:43.200000pt;}
.h6_c00032{height:43.626667pt;}
.h5_c00032{height:52.352000pt;}
.h4_c00032{height:53.312000pt;}
.h1_c00032{height:1009.333333pt;}
.h0_c00032{height:1009.338800pt;}
.w0_c00032{width:794.622400pt;}
.w1_c00032{width:794.666667pt;}
.x0_c00032{left:0.000000pt;}
.x4_c00032{left:114.334933pt;}
.x5_c00032{left:125.338933pt;}
.x2_c00032{left:167.166133pt;}
.x3_c00032{left:169.345200pt;}
.x1_c00032{left:718.661200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_066516913e5417531fbae400.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_a7974a602abdc278f54061e1.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.v1_c00033{vertical-align:23.976000px;}
.ls4_c00033{letter-spacing:-1.656000px;}
.ls5_c00033{letter-spacing:-0.945000px;}
.ls2_c00033{letter-spacing:-0.672000px;}
.ls8_c00033{letter-spacing:-0.600000px;}
.ls6_c00033{letter-spacing:-0.336000px;}
.ls7_c00033{letter-spacing:-0.144000px;}
.ls3_c00033{letter-spacing:0.000000px;}
.ls1_c00033{letter-spacing:0.720000px;}
.ls0_c00033{letter-spacing:7.482000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00033{word-spacing:-14.301000px;}
.ws3_c00033{word-spacing:-10.896000px;}
.ws4_c00033{word-spacing:-10.656000px;}
.ws2_c00033{word-spacing:-9.528552px;}
.ws6_c00033{word-spacing:-2.232000px;}
.ws1e_c00033{word-spacing:-1.953000px;}
.ws19_c00033{word-spacing:-1.368000px;}
.wsb_c00033{word-spacing:-1.008000px;}
.ws1a_c00033{word-spacing:-0.864000px;}
.wsf_c00033{word-spacing:-0.720000px;}
.ws15_c00033{word-spacing:-0.072000px;}
.ws5_c00033{word-spacing:0.000000px;}
.ws22_c00033{word-spacing:0.096000px;}
.ws21_c00033{word-spacing:0.384000px;}
.ws1c_c00033{word-spacing:0.576000px;}
.ws27_c00033{word-spacing:0.600000px;}
.ws25_c00033{word-spacing:0.720000px;}
.ws1b_c00033{word-spacing:0.792000px;}
.ws9_c00033{word-spacing:1.224000px;}
.ws1f_c00033{word-spacing:1.512000px;}
.ws23_c00033{word-spacing:1.824000px;}
.ws11_c00033{word-spacing:1.944000px;}
.ws24_c00033{word-spacing:1.968000px;}
.ws7_c00033{word-spacing:2.088000px;}
.ws1d_c00033{word-spacing:2.232000px;}
.wsd_c00033{word-spacing:2.448000px;}
.ws17_c00033{word-spacing:3.240000px;}
.ws20_c00033{word-spacing:3.696000px;}
.ws18_c00033{word-spacing:3.960000px;}
.wsa_c00033{word-spacing:4.752000px;}
.ws10_c00033{word-spacing:4.896000px;}
.ws12_c00033{word-spacing:5.112000px;}
.ws8_c00033{word-spacing:6.048000px;}
.ws13_c00033{word-spacing:6.192000px;}
.ws16_c00033{word-spacing:7.560000px;}
.ws14_c00033{word-spacing:8.496000px;}
.wse_c00033{word-spacing:8.568000px;}
.wsc_c00033{word-spacing:9.648000px;}
.ws26_c00033{word-spacing:9.936000px;}
.ws0_c00033{word-spacing:1604.827200px;}
._5_c00033{margin-left:-7.752000px;}
._4_c00033{margin-left:-4.872000px;}
._0_c00033{margin-left:-2.112000px;}
._1_c00033{margin-left:-1.104000px;}
._2_c00033{width:1.320000px;}
._3_c00033{width:2.328000px;}
._6_c00033{width:4.751400px;}
._7_c00033{width:9.864000px;}
.fc0_c00033{color:rgb(35,31,32);}
.fs3_c00033{font-size:41.976000px;}
.fs0_c00033{font-size:48.000000px;}
.fs4_c00033{font-size:60.000000px;}
.fs2_c00033{font-size:63.000000px;}
.fs1_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y27_c00033{bottom:111.616350px;}
.y26_c00033{bottom:126.616350px;}
.y25_c00033{bottom:141.616350px;}
.y24_c00033{bottom:156.616350px;}
.y23_c00033{bottom:171.616350px;}
.y22_c00033{bottom:186.616350px;}
.y21_c00033{bottom:201.616350px;}
.y2f_c00033{bottom:206.878950px;}
.y2e_c00033{bottom:225.478950px;}
.y2d_c00033{bottom:244.078950px;}
.y20_c00033{bottom:253.968750px;}
.y2c_c00033{bottom:262.678950px;}
.y1f_c00033{bottom:274.963500px;}
.y1e_c00033{bottom:304.479450px;}
.y1d_c00033{bottom:329.229450px;}
.y1c_c00033{bottom:368.973450px;}
.y1b_c00033{bottom:393.723450px;}
.y1a_c00033{bottom:418.473450px;}
.y19_c00033{bottom:443.223450px;}
.y18_c00033{bottom:467.973450px;}
.y17_c00033{bottom:492.723450px;}
.y16_c00033{bottom:517.473450px;}
.y15_c00033{bottom:542.223450px;}
.y14_c00033{bottom:566.973450px;}
.y13_c00033{bottom:591.723450px;}
.y12_c00033{bottom:616.473450px;}
.y11_c00033{bottom:641.223450px;}
.y10_c00033{bottom:665.973450px;}
.y2b_c00033{bottom:683.466000px;}
.yf_c00033{bottom:690.723450px;}
.y2a_c00033{bottom:702.066000px;}
.y29_c00033{bottom:720.666000px;}
.ye_c00033{bottom:730.467450px;}
.y28_c00033{bottom:739.266000px;}
.yd_c00033{bottom:755.217450px;}
.yc_c00033{bottom:779.967450px;}
.yb_c00033{bottom:804.723450px;}
.ya_c00033{bottom:829.473450px;}
.y9_c00033{bottom:854.223450px;}
.y8_c00033{bottom:878.973450px;}
.y7_c00033{bottom:918.717450px;}
.y6_c00033{bottom:943.467450px;}
.y5_c00033{bottom:968.217450px;}
.y4_c00033{bottom:992.967450px;}
.y3_c00033{bottom:1017.717450px;}
.y2_c00033{bottom:1042.467450px;}
.y1_c00033{bottom:1093.601100px;}
.h2_c00033{height:39.264000px;}
.h6_c00033{height:48.600000px;}
.h5_c00033{height:49.080000px;}
.h4_c00033{height:51.534000px;}
.h3_c00033{height:58.896000px;}
.h1_c00033{height:1135.500000px;}
.h0_c00033{height:1135.506150px;}
.w0_c00033{width:893.950200px;}
.w1_c00033{width:894.000000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:77.603100px;}
.x2_c00033{left:342.642450px;}
.x4_c00033{left:359.652300px;}
.x3_c00033{left:363.902250px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:21.312000pt;}
.ls4_c00033{letter-spacing:-1.472000pt;}
.ls5_c00033{letter-spacing:-0.840000pt;}
.ls2_c00033{letter-spacing:-0.597333pt;}
.ls8_c00033{letter-spacing:-0.533333pt;}
.ls6_c00033{letter-spacing:-0.298667pt;}
.ls7_c00033{letter-spacing:-0.128000pt;}
.ls3_c00033{letter-spacing:0.000000pt;}
.ls1_c00033{letter-spacing:0.640000pt;}
.ls0_c00033{letter-spacing:6.650667pt;}
.ws1_c00033{word-spacing:-12.712000pt;}
.ws3_c00033{word-spacing:-9.685333pt;}
.ws4_c00033{word-spacing:-9.472000pt;}
.ws2_c00033{word-spacing:-8.469824pt;}
.ws6_c00033{word-spacing:-1.984000pt;}
.ws1e_c00033{word-spacing:-1.736000pt;}
.ws19_c00033{word-spacing:-1.216000pt;}
.wsb_c00033{word-spacing:-0.896000pt;}
.ws1a_c00033{word-spacing:-0.768000pt;}
.wsf_c00033{word-spacing:-0.640000pt;}
.ws15_c00033{word-spacing:-0.064000pt;}
.ws5_c00033{word-spacing:0.000000pt;}
.ws22_c00033{word-spacing:0.085333pt;}
.ws21_c00033{word-spacing:0.341333pt;}
.ws1c_c00033{word-spacing:0.512000pt;}
.ws27_c00033{word-spacing:0.533333pt;}
.ws25_c00033{word-spacing:0.640000pt;}
.ws1b_c00033{word-spacing:0.704000pt;}
.ws9_c00033{word-spacing:1.088000pt;}
.ws1f_c00033{word-spacing:1.344000pt;}
.ws23_c00033{word-spacing:1.621333pt;}
.ws11_c00033{word-spacing:1.728000pt;}
.ws24_c00033{word-spacing:1.749333pt;}
.ws7_c00033{word-spacing:1.856000pt;}
.ws1d_c00033{word-spacing:1.984000pt;}
.wsd_c00033{word-spacing:2.176000pt;}
.ws17_c00033{word-spacing:2.880000pt;}
.ws20_c00033{word-spacing:3.285333pt;}
.ws18_c00033{word-spacing:3.520000pt;}
.wsa_c00033{word-spacing:4.224000pt;}
.ws10_c00033{word-spacing:4.352000pt;}
.ws12_c00033{word-spacing:4.544000pt;}
.ws8_c00033{word-spacing:5.376000pt;}
.ws13_c00033{word-spacing:5.504000pt;}
.ws16_c00033{word-spacing:6.720000pt;}
.ws14_c00033{word-spacing:7.552000pt;}
.wse_c00033{word-spacing:7.616000pt;}
.wsc_c00033{word-spacing:8.576000pt;}
.ws26_c00033{word-spacing:8.832000pt;}
.ws0_c00033{word-spacing:1426.513067pt;}
._5_c00033{margin-left:-6.890667pt;}
._4_c00033{margin-left:-4.330667pt;}
._0_c00033{margin-left:-1.877333pt;}
._1_c00033{margin-left:-0.981333pt;}
._2_c00033{width:1.173333pt;}
._3_c00033{width:2.069333pt;}
._6_c00033{width:4.223467pt;}
._7_c00033{width:8.768000pt;}
.fs3_c00033{font-size:37.312000pt;}
.fs0_c00033{font-size:42.666667pt;}
.fs4_c00033{font-size:53.333333pt;}
.fs2_c00033{font-size:56.000000pt;}
.fs1_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y27_c00033{bottom:99.214533pt;}
.y26_c00033{bottom:112.547867pt;}
.y25_c00033{bottom:125.881200pt;}
.y24_c00033{bottom:139.214533pt;}
.y23_c00033{bottom:152.547867pt;}
.y22_c00033{bottom:165.881200pt;}
.y21_c00033{bottom:179.214533pt;}
.y2f_c00033{bottom:183.892400pt;}
.y2e_c00033{bottom:200.425733pt;}
.y2d_c00033{bottom:216.959067pt;}
.y20_c00033{bottom:225.750000pt;}
.y2c_c00033{bottom:233.492400pt;}
.y1f_c00033{bottom:244.412000pt;}
.y1e_c00033{bottom:270.648400pt;}
.y1d_c00033{bottom:292.648400pt;}
.y1c_c00033{bottom:327.976400pt;}
.y1b_c00033{bottom:349.976400pt;}
.y1a_c00033{bottom:371.976400pt;}
.y19_c00033{bottom:393.976400pt;}
.y18_c00033{bottom:415.976400pt;}
.y17_c00033{bottom:437.976400pt;}
.y16_c00033{bottom:459.976400pt;}
.y15_c00033{bottom:481.976400pt;}
.y14_c00033{bottom:503.976400pt;}
.y13_c00033{bottom:525.976400pt;}
.y12_c00033{bottom:547.976400pt;}
.y11_c00033{bottom:569.976400pt;}
.y10_c00033{bottom:591.976400pt;}
.y2b_c00033{bottom:607.525333pt;}
.yf_c00033{bottom:613.976400pt;}
.y2a_c00033{bottom:624.058667pt;}
.y29_c00033{bottom:640.592000pt;}
.ye_c00033{bottom:649.304400pt;}
.y28_c00033{bottom:657.125333pt;}
.yd_c00033{bottom:671.304400pt;}
.yc_c00033{bottom:693.304400pt;}
.yb_c00033{bottom:715.309733pt;}
.ya_c00033{bottom:737.309733pt;}
.y9_c00033{bottom:759.309733pt;}
.y8_c00033{bottom:781.309733pt;}
.y7_c00033{bottom:816.637733pt;}
.y6_c00033{bottom:838.637733pt;}
.y5_c00033{bottom:860.637733pt;}
.y4_c00033{bottom:882.637733pt;}
.y3_c00033{bottom:904.637733pt;}
.y2_c00033{bottom:926.637733pt;}
.y1_c00033{bottom:972.089867pt;}
.h2_c00033{height:34.901333pt;}
.h6_c00033{height:43.200000pt;}
.h5_c00033{height:43.626667pt;}
.h4_c00033{height:45.808000pt;}
.h3_c00033{height:52.352000pt;}
.h1_c00033{height:1009.333333pt;}
.h0_c00033{height:1009.338800pt;}
.w0_c00033{width:794.622400pt;}
.w1_c00033{width:794.666667pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:68.980533pt;}
.x2_c00033{left:304.571067pt;}
.x4_c00033{left:319.690933pt;}
.x3_c00033{left:323.468667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a9de56a3c13039917b1c745.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.082000;font-style:normal;font-weight:normal;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_9d587ab0c444a9b6395135d6.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.067000;font-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_c00034{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:20.916000px;}
.v2_c00034{vertical-align:23.975400px;}
.lsd_c00034{letter-spacing:-2.088000px;}
.lsf_c00034{letter-spacing:-1.104000px;}
.lsa_c00034{letter-spacing:-1.080000px;}
.ls13_c00034{letter-spacing:-0.960000px;}
.ls6_c00034{letter-spacing:-0.945000px;}
.ls7_c00034{letter-spacing:-0.734580px;}
.ls10_c00034{letter-spacing:-0.576000px;}
.ls11_c00034{letter-spacing:-0.528000px;}
.lsc_c00034{letter-spacing:-0.504000px;}
.lsb_c00034{letter-spacing:-0.503712px;}
.ls8_c00034{letter-spacing:-0.360000px;}
.lse_c00034{letter-spacing:-0.240000px;}
.ls12_c00034{letter-spacing:-0.192000px;}
.ls5_c00034{letter-spacing:0.000000px;}
.ls3_c00034{letter-spacing:0.144000px;}
.ls9_c00034{letter-spacing:0.209880px;}
.ls0_c00034{letter-spacing:0.480000px;}
.ls4_c00034{letter-spacing:5.920200px;}
.ls1_c00034{letter-spacing:10.624200px;}
.ls2_c00034{letter-spacing:11.103600px;}
.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;}
}
.ws7_c00034{word-spacing:-10.992000px;}
.ws0_c00034{word-spacing:-10.896000px;}
.ws4_c00034{word-spacing:-10.656000px;}
.ws6_c00034{word-spacing:-10.368000px;}
.ws5_c00034{word-spacing:-10.320000px;}
.ws2_c00034{word-spacing:-9.738432px;}
.ws3_c00034{word-spacing:-9.024840px;}
.ws1_c00034{word-spacing:-7.602903px;}
.ws1c_c00034{word-spacing:-2.592000px;}
.ws12_c00034{word-spacing:-1.872000px;}
.ws1f_c00034{word-spacing:-1.728000px;}
.ws25_c00034{word-spacing:-1.536000px;}
.ws16_c00034{word-spacing:-1.368000px;}
.ws26_c00034{word-spacing:-1.344000px;}
.wsd_c00034{word-spacing:-1.152000px;}
.ws20_c00034{word-spacing:-1.008000px;}
.ws15_c00034{word-spacing:-0.576000px;}
.ws10_c00034{word-spacing:-0.360000px;}
.ws8_c00034{word-spacing:0.000000px;}
.wse_c00034{word-spacing:0.072000px;}
.ws27_c00034{word-spacing:0.336000px;}
.ws21_c00034{word-spacing:0.504000px;}
.ws29_c00034{word-spacing:0.960000px;}
.ws22_c00034{word-spacing:1.080000px;}
.ws1b_c00034{word-spacing:1.440000px;}
.ws11_c00034{word-spacing:1.800000px;}
.ws13_c00034{word-spacing:2.088000px;}
.ws19_c00034{word-spacing:3.528000px;}
.ws14_c00034{word-spacing:3.600000px;}
.ws23_c00034{word-spacing:3.696000px;}
.ws1a_c00034{word-spacing:4.032000px;}
.ws1e_c00034{word-spacing:4.176000px;}
.ws28_c00034{word-spacing:4.224000px;}
.wsc_c00034{word-spacing:4.536000px;}
.ws24_c00034{word-spacing:4.848000px;}
.ws18_c00034{word-spacing:4.968000px;}
.wsa_c00034{word-spacing:5.481000px;}
.ws9_c00034{word-spacing:6.300000px;}
.wsf_c00034{word-spacing:8.424000px;}
.ws1d_c00034{word-spacing:8.928000px;}
.wsb_c00034{word-spacing:11.151000px;}
.ws17_c00034{word-spacing:15.984000px;}
._0_c00034{margin-left:-2755.276200px;}
._5_c00034{margin-left:-7.344000px;}
._1_c00034{margin-left:-5.856000px;}
._8_c00034{margin-left:-4.692600px;}
._3_c00034{margin-left:-3.024000px;}
._2_c00034{margin-left:-1.440000px;}
._4_c00034{width:1.044000px;}
._6_c00034{width:2.052000px;}
._7_c00034{width:3.384000px;}
._9_c00034{width:6.528000px;}
.fc0_c00034{color:rgb(35,31,32);}
.fs2_c00034{font-size:36.729000px;}
.fs4_c00034{font-size:41.976000px;}
.fs0_c00034{font-size:48.000000px;}
.fs5_c00034{font-size:60.000000px;}
.fs1_c00034{font-size:63.000000px;}
.fs3_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y27_c00034{bottom:111.616500px;}
.y26_c00034{bottom:126.612300px;}
.y25_c00034{bottom:150.120300px;}
.y24_c00034{bottom:165.120300px;}
.y23_c00034{bottom:180.116250px;}
.y22_c00034{bottom:203.620200px;}
.y21_c00034{bottom:227.128200px;}
.y20_c00034{bottom:242.128200px;}
.y1f_c00034{bottom:299.099400px;}
.y1e_c00034{bottom:323.849400px;}
.y1d_c00034{bottom:348.599400px;}
.y1c_c00034{bottom:373.349400px;}
.y1b_c00034{bottom:398.113350px;}
.y1a_c00034{bottom:422.863350px;}
.y19_c00034{bottom:447.613350px;}
.y2b_c00034{bottom:470.217000px;}
.y18_c00034{bottom:472.363350px;}
.y2a_c00034{bottom:488.817000px;}
.y29_c00034{bottom:507.417000px;}
.y17_c00034{bottom:512.107350px;}
.y28_c00034{bottom:526.017000px;}
.y16_c00034{bottom:536.857350px;}
.y15_c00034{bottom:561.607350px;}
.y14_c00034{bottom:586.357350px;}
.y13_c00034{bottom:611.107350px;}
.y12_c00034{bottom:635.857350px;}
.y11_c00034{bottom:669.103350px;}
.y10_c00034{bottom:693.853350px;}
.yf_c00034{bottom:718.603350px;}
.ye_c00034{bottom:743.353350px;}
.yd_c00034{bottom:768.103350px;}
.yc_c00034{bottom:792.853350px;}
.yb_c00034{bottom:817.603350px;}
.ya_c00034{bottom:842.353350px;}
.y9_c00034{bottom:867.103350px;}
.y8_c00034{bottom:891.853350px;}
.y7_c00034{bottom:916.603350px;}
.y6_c00034{bottom:941.353350px;}
.y5_c00034{bottom:981.119100px;}
.y4_c00034{bottom:1002.113850px;}
.y3_c00034{bottom:1023.108600px;}
.y2_c00034{bottom:1044.103350px;}
.y1_c00034{bottom:1093.601100px;}
.h2_c00034{height:39.264000px;}
.h6_c00034{height:39.280200px;}
.h7_c00034{height:39.280800px;}
.h3_c00034{height:39.984000px;}
.h9_c00034{height:48.600000px;}
.h8_c00034{height:49.080000px;}
.h4_c00034{height:51.534000px;}
.h5_c00034{height:58.896000px;}
.h1_c00034{height:1135.500000px;}
.h0_c00034{height:1135.506150px;}
.w0_c00034{width:893.950200px;}
.w1_c00034{width:894.000000px;}
.x0_c00034{left:0.000000px;}
.x5_c00034{left:128.626800px;}
.x6_c00034{left:145.634700px;}
.x4_c00034{left:149.886600px;}
.x2_c00034{left:188.061900px;}
.x3_c00034{left:190.513350px;}
.x7_c00034{left:563.131950px;}
.x1_c00034{left:807.701850px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:18.592000pt;}
.v2_c00034{vertical-align:21.311467pt;}
.lsd_c00034{letter-spacing:-1.856000pt;}
.lsf_c00034{letter-spacing:-0.981333pt;}
.lsa_c00034{letter-spacing:-0.960000pt;}
.ls13_c00034{letter-spacing:-0.853333pt;}
.ls6_c00034{letter-spacing:-0.840000pt;}
.ls7_c00034{letter-spacing:-0.652960pt;}
.ls10_c00034{letter-spacing:-0.512000pt;}
.ls11_c00034{letter-spacing:-0.469333pt;}
.lsc_c00034{letter-spacing:-0.448000pt;}
.lsb_c00034{letter-spacing:-0.447744pt;}
.ls8_c00034{letter-spacing:-0.320000pt;}
.lse_c00034{letter-spacing:-0.213333pt;}
.ls12_c00034{letter-spacing:-0.170667pt;}
.ls5_c00034{letter-spacing:0.000000pt;}
.ls3_c00034{letter-spacing:0.128000pt;}
.ls9_c00034{letter-spacing:0.186560pt;}
.ls0_c00034{letter-spacing:0.426667pt;}
.ls4_c00034{letter-spacing:5.262400pt;}
.ls1_c00034{letter-spacing:9.443733pt;}
.ls2_c00034{letter-spacing:9.869867pt;}
.ws7_c00034{word-spacing:-9.770667pt;}
.ws0_c00034{word-spacing:-9.685333pt;}
.ws4_c00034{word-spacing:-9.472000pt;}
.ws6_c00034{word-spacing:-9.216000pt;}
.ws5_c00034{word-spacing:-9.173333pt;}
.ws2_c00034{word-spacing:-8.656384pt;}
.ws3_c00034{word-spacing:-8.022080pt;}
.ws1_c00034{word-spacing:-6.758136pt;}
.ws1c_c00034{word-spacing:-2.304000pt;}
.ws12_c00034{word-spacing:-1.664000pt;}
.ws1f_c00034{word-spacing:-1.536000pt;}
.ws25_c00034{word-spacing:-1.365333pt;}
.ws16_c00034{word-spacing:-1.216000pt;}
.ws26_c00034{word-spacing:-1.194667pt;}
.wsd_c00034{word-spacing:-1.024000pt;}
.ws20_c00034{word-spacing:-0.896000pt;}
.ws15_c00034{word-spacing:-0.512000pt;}
.ws10_c00034{word-spacing:-0.320000pt;}
.ws8_c00034{word-spacing:0.000000pt;}
.wse_c00034{word-spacing:0.064000pt;}
.ws27_c00034{word-spacing:0.298667pt;}
.ws21_c00034{word-spacing:0.448000pt;}
.ws29_c00034{word-spacing:0.853333pt;}
.ws22_c00034{word-spacing:0.960000pt;}
.ws1b_c00034{word-spacing:1.280000pt;}
.ws11_c00034{word-spacing:1.600000pt;}
.ws13_c00034{word-spacing:1.856000pt;}
.ws19_c00034{word-spacing:3.136000pt;}
.ws14_c00034{word-spacing:3.200000pt;}
.ws23_c00034{word-spacing:3.285333pt;}
.ws1a_c00034{word-spacing:3.584000pt;}
.ws1e_c00034{word-spacing:3.712000pt;}
.ws28_c00034{word-spacing:3.754667pt;}
.wsc_c00034{word-spacing:4.032000pt;}
.ws24_c00034{word-spacing:4.309333pt;}
.ws18_c00034{word-spacing:4.416000pt;}
.wsa_c00034{word-spacing:4.872000pt;}
.ws9_c00034{word-spacing:5.600000pt;}
.wsf_c00034{word-spacing:7.488000pt;}
.ws1d_c00034{word-spacing:7.936000pt;}
.wsb_c00034{word-spacing:9.912000pt;}
.ws17_c00034{word-spacing:14.208000pt;}
._0_c00034{margin-left:-2449.134400pt;}
._5_c00034{margin-left:-6.528000pt;}
._1_c00034{margin-left:-5.205333pt;}
._8_c00034{margin-left:-4.171200pt;}
._3_c00034{margin-left:-2.688000pt;}
._2_c00034{margin-left:-1.280000pt;}
._4_c00034{width:0.928000pt;}
._6_c00034{width:1.824000pt;}
._7_c00034{width:3.008000pt;}
._9_c00034{width:5.802667pt;}
.fs2_c00034{font-size:32.648000pt;}
.fs4_c00034{font-size:37.312000pt;}
.fs0_c00034{font-size:42.666667pt;}
.fs5_c00034{font-size:53.333333pt;}
.fs1_c00034{font-size:56.000000pt;}
.fs3_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y27_c00034{bottom:99.214667pt;}
.y26_c00034{bottom:112.544267pt;}
.y25_c00034{bottom:133.440267pt;}
.y24_c00034{bottom:146.773600pt;}
.y23_c00034{bottom:160.103333pt;}
.y22_c00034{bottom:180.995733pt;}
.y21_c00034{bottom:201.891733pt;}
.y20_c00034{bottom:215.225067pt;}
.y1f_c00034{bottom:265.866133pt;}
.y1e_c00034{bottom:287.866133pt;}
.y1d_c00034{bottom:309.866133pt;}
.y1c_c00034{bottom:331.866133pt;}
.y1b_c00034{bottom:353.878533pt;}
.y1a_c00034{bottom:375.878533pt;}
.y19_c00034{bottom:397.878533pt;}
.y2b_c00034{bottom:417.970667pt;}
.y18_c00034{bottom:419.878533pt;}
.y2a_c00034{bottom:434.504000pt;}
.y29_c00034{bottom:451.037333pt;}
.y17_c00034{bottom:455.206533pt;}
.y28_c00034{bottom:467.570667pt;}
.y16_c00034{bottom:477.206533pt;}
.y15_c00034{bottom:499.206533pt;}
.y14_c00034{bottom:521.206533pt;}
.y13_c00034{bottom:543.206533pt;}
.y12_c00034{bottom:565.206533pt;}
.y11_c00034{bottom:594.758533pt;}
.y10_c00034{bottom:616.758533pt;}
.yf_c00034{bottom:638.758533pt;}
.ye_c00034{bottom:660.758533pt;}
.yd_c00034{bottom:682.758533pt;}
.yc_c00034{bottom:704.758533pt;}
.yb_c00034{bottom:726.758533pt;}
.ya_c00034{bottom:748.758533pt;}
.y9_c00034{bottom:770.758533pt;}
.y8_c00034{bottom:792.758533pt;}
.y7_c00034{bottom:814.758533pt;}
.y6_c00034{bottom:836.758533pt;}
.y5_c00034{bottom:872.105867pt;}
.y4_c00034{bottom:890.767867pt;}
.y3_c00034{bottom:909.429867pt;}
.y2_c00034{bottom:928.091867pt;}
.y1_c00034{bottom:972.089867pt;}
.h2_c00034{height:34.901333pt;}
.h6_c00034{height:34.915733pt;}
.h7_c00034{height:34.916267pt;}
.h3_c00034{height:35.541333pt;}
.h9_c00034{height:43.200000pt;}
.h8_c00034{height:43.626667pt;}
.h4_c00034{height:45.808000pt;}
.h5_c00034{height:52.352000pt;}
.h1_c00034{height:1009.333333pt;}
.h0_c00034{height:1009.338800pt;}
.w0_c00034{width:794.622400pt;}
.w1_c00034{width:794.666667pt;}
.x0_c00034{left:0.000000pt;}
.x5_c00034{left:114.334933pt;}
.x6_c00034{left:129.453067pt;}
.x4_c00034{left:133.232533pt;}
.x2_c00034{left:167.166133pt;}
.x3_c00034{left:169.345200pt;}
.x7_c00034{left:500.561733pt;}
.x1_c00034{left:717.957200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3176b9b0e2b92855055a06a3.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.067000;font-style:normal;font-weight:normal;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_b4c770989ec8406767b765af.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.v1_c00035{vertical-align:23.952000px;}
.ls8_c00035{letter-spacing:-4.800000px;}
.ls5_c00035{letter-spacing:-1.008000px;}
.lsb_c00035{letter-spacing:-0.960000px;}
.ls3_c00035{letter-spacing:-0.720000px;}
.ls4_c00035{letter-spacing:-0.648000px;}
.lsa_c00035{letter-spacing:-0.480000px;}
.ls2_c00035{letter-spacing:-0.360000px;}
.ls9_c00035{letter-spacing:-0.336000px;}
.lsc_c00035{letter-spacing:-0.270000px;}
.ls7_c00035{letter-spacing:-0.209880px;}
.ls6_c00035{letter-spacing:-0.041976px;}
.ls1_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:0.480000px;}
.lsd_c00035{letter-spacing:0.540000px;}
.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;}
}
.ws2_c00035{word-spacing:-16.128000px;}
.ws1_c00035{word-spacing:-15.624000px;}
.ws3_c00035{word-spacing:-15.336000px;}
.ws9_c00035{word-spacing:-11.610000px;}
.ws7_c00035{word-spacing:-10.896000px;}
.ws6_c00035{word-spacing:-10.656000px;}
.ws4_c00035{word-spacing:-9.486576px;}
.ws5_c00035{word-spacing:-6.096000px;}
.ws17_c00035{word-spacing:-2.160000px;}
.ws10_c00035{word-spacing:-1.512000px;}
.ws12_c00035{word-spacing:-1.224000px;}
.ws24_c00035{word-spacing:-0.540000px;}
.ws13_c00035{word-spacing:-0.432000px;}
.wsa_c00035{word-spacing:0.000000px;}
.ws1b_c00035{word-spacing:0.209880px;}
.ws22_c00035{word-spacing:0.480000px;}
.wse_c00035{word-spacing:0.576000px;}
.ws11_c00035{word-spacing:0.720000px;}
.ws19_c00035{word-spacing:0.864000px;}
.ws23_c00035{word-spacing:0.960000px;}
.ws15_c00035{word-spacing:1.512000px;}
.wsd_c00035{word-spacing:1.656000px;}
.wsf_c00035{word-spacing:2.520000px;}
.ws14_c00035{word-spacing:3.096000px;}
.ws18_c00035{word-spacing:3.816000px;}
.ws16_c00035{word-spacing:3.960000px;}
.ws1d_c00035{word-spacing:5.712000px;}
.ws1f_c00035{word-spacing:5.808000px;}
.ws21_c00035{word-spacing:5.952000px;}
.ws20_c00035{word-spacing:6.144000px;}
.wsb_c00035{word-spacing:7.416000px;}
.ws1a_c00035{word-spacing:7.704000px;}
.ws1e_c00035{word-spacing:10.560000px;}
.wsc_c00035{word-spacing:11.592000px;}
.ws1c_c00035{word-spacing:12.144000px;}
.ws0_c00035{word-spacing:1599.451200px;}
.ws8_c00035{word-spacing:1906.278600px;}
._9_c00035{margin-left:-846.267600px;}
._3_c00035{margin-left:-7.056000px;}
._6_c00035{margin-left:-4.752000px;}
._5_c00035{margin-left:-3.600000px;}
._0_c00035{margin-left:-2.112000px;}
._1_c00035{margin-left:-1.104000px;}
._2_c00035{width:1.104000px;}
._8_c00035{width:2.136000px;}
._4_c00035{width:4.992000px;}
._7_c00035{width:7.465200px;}
.fc0_c00035{color:rgb(35,31,32);}
.fs2_c00035{font-size:41.976000px;}
.fs0_c00035{font-size:48.000000px;}
.fs4_c00035{font-size:54.000000px;}
.fs3_c00035{font-size:60.000000px;}
.fs1_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y19_c00035{bottom:111.612300px;}
.y18_c00035{bottom:135.120300px;}
.y17_c00035{bottom:150.120300px;}
.y16_c00035{bottom:165.120300px;}
.y15_c00035{bottom:180.120300px;}
.y14_c00035{bottom:195.120300px;}
.y13_c00035{bottom:210.120300px;}
.y12_c00035{bottom:225.120300px;}
.y23_c00035{bottom:246.889500px;}
.y22_c00035{bottom:265.489500px;}
.y11_c00035{bottom:281.199900px;}
.y21_c00035{bottom:284.089500px;}
.y20_c00035{bottom:302.689500px;}
.y10_c00035{bottom:305.949900px;}
.y1f_c00035{bottom:321.289500px;}
.yf_c00035{bottom:330.699900px;}
.y1e_c00035{bottom:339.889500px;}
.ye_c00035{bottom:355.449900px;}
.y1d_c00035{bottom:358.489500px;}
.yd_c00035{bottom:380.199900px;}
.yc_c00035{bottom:404.949900px;}
.yb_c00035{bottom:429.699900px;}
.ya_c00035{bottom:454.449900px;}
.y9_c00035{bottom:479.199900px;}
.y8_c00035{bottom:518.943900px;}
.y7_c00035{bottom:543.693900px;}
.y6_c00035{bottom:568.443900px;}
.y5_c00035{bottom:593.193900px;}
.y4_c00035{bottom:617.943900px;}
.y3_c00035{bottom:642.693900px;}
.y2_c00035{bottom:667.443900px;}
.y1c_c00035{bottom:728.415450px;}
.y1b_c00035{bottom:747.015450px;}
.y1a_c00035{bottom:765.615450px;}
.y24_c00035{bottom:797.311800px;}
.y1_c00035{bottom:1093.601100px;}
.h2_c00035{height:39.264000px;}
.h4_c00035{height:39.280200px;}
.h7_c00035{height:44.172000px;}
.h6_c00035{height:48.600000px;}
.h5_c00035{height:49.080000px;}
.h3_c00035{height:58.896000px;}
.h1_c00035{height:1135.500000px;}
.h0_c00035{height:1135.506150px;}
.w0_c00035{width:893.950200px;}
.w1_c00035{width:894.000000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:77.603100px;}
.x4_c00035{left:89.609250px;}
.x2_c00035{left:300.605850px;}
.x3_c00035{left:316.782000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.v1_c00035{vertical-align:21.290667pt;}
.ls8_c00035{letter-spacing:-4.266667pt;}
.ls5_c00035{letter-spacing:-0.896000pt;}
.lsb_c00035{letter-spacing:-0.853333pt;}
.ls3_c00035{letter-spacing:-0.640000pt;}
.ls4_c00035{letter-spacing:-0.576000pt;}
.lsa_c00035{letter-spacing:-0.426667pt;}
.ls2_c00035{letter-spacing:-0.320000pt;}
.ls9_c00035{letter-spacing:-0.298667pt;}
.lsc_c00035{letter-spacing:-0.240000pt;}
.ls7_c00035{letter-spacing:-0.186560pt;}
.ls6_c00035{letter-spacing:-0.037312pt;}
.ls1_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:0.426667pt;}
.lsd_c00035{letter-spacing:0.480000pt;}
.ws2_c00035{word-spacing:-14.336000pt;}
.ws1_c00035{word-spacing:-13.888000pt;}
.ws3_c00035{word-spacing:-13.632000pt;}
.ws9_c00035{word-spacing:-10.320000pt;}
.ws7_c00035{word-spacing:-9.685333pt;}
.ws6_c00035{word-spacing:-9.472000pt;}
.ws4_c00035{word-spacing:-8.432512pt;}
.ws5_c00035{word-spacing:-5.418667pt;}
.ws17_c00035{word-spacing:-1.920000pt;}
.ws10_c00035{word-spacing:-1.344000pt;}
.ws12_c00035{word-spacing:-1.088000pt;}
.ws24_c00035{word-spacing:-0.480000pt;}
.ws13_c00035{word-spacing:-0.384000pt;}
.wsa_c00035{word-spacing:0.000000pt;}
.ws1b_c00035{word-spacing:0.186560pt;}
.ws22_c00035{word-spacing:0.426667pt;}
.wse_c00035{word-spacing:0.512000pt;}
.ws11_c00035{word-spacing:0.640000pt;}
.ws19_c00035{word-spacing:0.768000pt;}
.ws23_c00035{word-spacing:0.853333pt;}
.ws15_c00035{word-spacing:1.344000pt;}
.wsd_c00035{word-spacing:1.472000pt;}
.wsf_c00035{word-spacing:2.240000pt;}
.ws14_c00035{word-spacing:2.752000pt;}
.ws18_c00035{word-spacing:3.392000pt;}
.ws16_c00035{word-spacing:3.520000pt;}
.ws1d_c00035{word-spacing:5.077333pt;}
.ws1f_c00035{word-spacing:5.162667pt;}
.ws21_c00035{word-spacing:5.290667pt;}
.ws20_c00035{word-spacing:5.461333pt;}
.wsb_c00035{word-spacing:6.592000pt;}
.ws1a_c00035{word-spacing:6.848000pt;}
.ws1e_c00035{word-spacing:9.386667pt;}
.wsc_c00035{word-spacing:10.304000pt;}
.ws1c_c00035{word-spacing:10.794667pt;}
.ws0_c00035{word-spacing:1421.734400pt;}
.ws8_c00035{word-spacing:1694.469867pt;}
._9_c00035{margin-left:-752.237867pt;}
._3_c00035{margin-left:-6.272000pt;}
._6_c00035{margin-left:-4.224000pt;}
._5_c00035{margin-left:-3.200000pt;}
._0_c00035{margin-left:-1.877333pt;}
._1_c00035{margin-left:-0.981333pt;}
._2_c00035{width:0.981333pt;}
._8_c00035{width:1.898667pt;}
._4_c00035{width:4.437333pt;}
._7_c00035{width:6.635733pt;}
.fs2_c00035{font-size:37.312000pt;}
.fs0_c00035{font-size:42.666667pt;}
.fs4_c00035{font-size:48.000000pt;}
.fs3_c00035{font-size:53.333333pt;}
.fs1_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y19_c00035{bottom:99.210933pt;}
.y18_c00035{bottom:120.106933pt;}
.y17_c00035{bottom:133.440267pt;}
.y16_c00035{bottom:146.773600pt;}
.y15_c00035{bottom:160.106933pt;}
.y14_c00035{bottom:173.440267pt;}
.y13_c00035{bottom:186.773600pt;}
.y12_c00035{bottom:200.106933pt;}
.y23_c00035{bottom:219.457333pt;}
.y22_c00035{bottom:235.990667pt;}
.y11_c00035{bottom:249.955467pt;}
.y21_c00035{bottom:252.524000pt;}
.y20_c00035{bottom:269.057333pt;}
.y10_c00035{bottom:271.955467pt;}
.y1f_c00035{bottom:285.590667pt;}
.yf_c00035{bottom:293.955467pt;}
.y1e_c00035{bottom:302.124000pt;}
.ye_c00035{bottom:315.955467pt;}
.y1d_c00035{bottom:318.657333pt;}
.yd_c00035{bottom:337.955467pt;}
.yc_c00035{bottom:359.955467pt;}
.yb_c00035{bottom:381.955467pt;}
.ya_c00035{bottom:403.955467pt;}
.y9_c00035{bottom:425.955467pt;}
.y8_c00035{bottom:461.283467pt;}
.y7_c00035{bottom:483.283467pt;}
.y6_c00035{bottom:505.283467pt;}
.y5_c00035{bottom:527.283467pt;}
.y4_c00035{bottom:549.283467pt;}
.y3_c00035{bottom:571.283467pt;}
.y2_c00035{bottom:593.283467pt;}
.y1c_c00035{bottom:647.480400pt;}
.y1b_c00035{bottom:664.013733pt;}
.y1a_c00035{bottom:680.547067pt;}
.y24_c00035{bottom:708.721600pt;}
.y1_c00035{bottom:972.089867pt;}
.h2_c00035{height:34.901333pt;}
.h4_c00035{height:34.915733pt;}
.h7_c00035{height:39.264000pt;}
.h6_c00035{height:43.200000pt;}
.h5_c00035{height:43.626667pt;}
.h3_c00035{height:52.352000pt;}
.h1_c00035{height:1009.333333pt;}
.h0_c00035{height:1009.338800pt;}
.w0_c00035{width:794.622400pt;}
.w1_c00035{width:794.666667pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:68.980533pt;}
.x4_c00035{left:79.652667pt;}
.x2_c00035{left:267.205200pt;}
.x3_c00035{left:281.584000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a18205071b5d679a6ffdfe68.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.082000;font-style:normal;font-weight:normal;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_9ae49a2b43158dd82cab3d61.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.067000;font-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_c00036{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.v1_c00036{vertical-align:23.976000px;}
.ls7_c00036{letter-spacing:-0.960000px;}
.ls6_c00036{letter-spacing:-0.900000px;}
.ls9_c00036{letter-spacing:-0.840000px;}
.ls2_c00036{letter-spacing:-0.624000px;}
.ls8_c00036{letter-spacing:-0.420000px;}
.ls5_c00036{letter-spacing:-0.288000px;}
.ls4_c00036{letter-spacing:-0.251856px;}
.ls3_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:0.480000px;}
.ls1_c00036{letter-spacing:0.720000px;}
.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:-17.064000px;}
.ws2_c00036{word-spacing:-14.301000px;}
.ws4_c00036{word-spacing:-10.608000px;}
.ws0_c00036{word-spacing:-10.272000px;}
.ws3_c00036{word-spacing:-9.276696px;}
.ws10_c00036{word-spacing:-1.890000px;}
.ws11_c00036{word-spacing:-0.936000px;}
.wsd_c00036{word-spacing:-0.567000px;}
.ws5_c00036{word-spacing:0.000000px;}
.ws14_c00036{word-spacing:0.420000px;}
.ws6_c00036{word-spacing:0.792000px;}
.ws15_c00036{word-spacing:0.840000px;}
.ws13_c00036{word-spacing:0.960000px;}
.wsa_c00036{word-spacing:1.152000px;}
.ws8_c00036{word-spacing:2.376000px;}
.ws12_c00036{word-spacing:2.592000px;}
.wsc_c00036{word-spacing:4.032000px;}
.wsb_c00036{word-spacing:5.112000px;}
.ws9_c00036{word-spacing:5.760000px;}
.wsf_c00036{word-spacing:5.940000px;}
.wse_c00036{word-spacing:6.237000px;}
.ws7_c00036{word-spacing:8.136000px;}
._0_c00036{margin-left:-2754.651000px;}
._1_c00036{margin-left:-5.856000px;}
._6_c00036{margin-left:-4.632000px;}
._4_c00036{margin-left:-2.808000px;}
._2_c00036{margin-left:-1.440000px;}
._3_c00036{width:1.296000px;}
._5_c00036{width:7.407000px;}
.fc0_c00036{color:rgb(35,31,32);}
.fs4_c00036{font-size:41.976000px;}
.fs0_c00036{font-size:48.000000px;}
.fs3_c00036{font-size:60.000000px;}
.fs2_c00036{font-size:63.000000px;}
.fs1_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y17_c00036{bottom:111.616350px;}
.y16_c00036{bottom:183.930150px;}
.y15_c00036{bottom:208.680150px;}
.y14_c00036{bottom:233.430150px;}
.y13_c00036{bottom:266.699250px;}
.y12_c00036{bottom:287.694000px;}
.y20_c00036{bottom:288.341400px;}
.y1f_c00036{bottom:306.941400px;}
.y11_c00036{bottom:312.941250px;}
.y1e_c00036{bottom:325.541400px;}
.y10_c00036{bottom:333.971700px;}
.y1d_c00036{bottom:344.141400px;}
.yf_c00036{bottom:354.966450px;}
.y1c_c00036{bottom:362.741400px;}
.ye_c00036{bottom:375.961200px;}
.yd_c00036{bottom:396.955950px;}
.yc_c00036{bottom:426.455700px;}
.yb_c00036{bottom:447.450450px;}
.ya_c00036{bottom:468.445200px;}
.y9_c00036{bottom:489.439950px;}
.y8_c00036{bottom:518.943900px;}
.y7_c00036{bottom:543.693900px;}
.y6_c00036{bottom:568.443900px;}
.y5_c00036{bottom:593.193900px;}
.y4_c00036{bottom:617.943900px;}
.y3_c00036{bottom:642.693900px;}
.y2_c00036{bottom:667.443900px;}
.y1b_c00036{bottom:710.903850px;}
.y1a_c00036{bottom:729.503850px;}
.y19_c00036{bottom:748.103850px;}
.y18_c00036{bottom:766.703850px;}
.y1_c00036{bottom:1093.601100px;}
.h2_c00036{height:39.264000px;}
.h3_c00036{height:39.984000px;}
.h7_c00036{height:48.600000px;}
.h6_c00036{height:49.080000px;}
.h5_c00036{height:51.534000px;}
.h4_c00036{height:58.896000px;}
.h1_c00036{height:1135.500000px;}
.h0_c00036{height:1135.506150px;}
.w0_c00036{width:893.950200px;}
.w1_c00036{width:894.000000px;}
.x0_c00036{left:0.000000px;}
.x4_c00036{left:128.626800px;}
.x5_c00036{left:149.886600px;}
.x2_c00036{left:188.061900px;}
.x3_c00036{left:190.513350px;}
.x6_c00036{left:321.226800px;}
.x7_c00036{left:616.520100px;}
.x1_c00036{left:807.893550px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.v1_c00036{vertical-align:21.312000pt;}
.ls7_c00036{letter-spacing:-0.853333pt;}
.ls6_c00036{letter-spacing:-0.800000pt;}
.ls9_c00036{letter-spacing:-0.746667pt;}
.ls2_c00036{letter-spacing:-0.554667pt;}
.ls8_c00036{letter-spacing:-0.373333pt;}
.ls5_c00036{letter-spacing:-0.256000pt;}
.ls4_c00036{letter-spacing:-0.223872pt;}
.ls3_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:0.426667pt;}
.ls1_c00036{letter-spacing:0.640000pt;}
.ws1_c00036{word-spacing:-15.168000pt;}
.ws2_c00036{word-spacing:-12.712000pt;}
.ws4_c00036{word-spacing:-9.429333pt;}
.ws0_c00036{word-spacing:-9.130667pt;}
.ws3_c00036{word-spacing:-8.245952pt;}
.ws10_c00036{word-spacing:-1.680000pt;}
.ws11_c00036{word-spacing:-0.832000pt;}
.wsd_c00036{word-spacing:-0.504000pt;}
.ws5_c00036{word-spacing:0.000000pt;}
.ws14_c00036{word-spacing:0.373333pt;}
.ws6_c00036{word-spacing:0.704000pt;}
.ws15_c00036{word-spacing:0.746667pt;}
.ws13_c00036{word-spacing:0.853333pt;}
.wsa_c00036{word-spacing:1.024000pt;}
.ws8_c00036{word-spacing:2.112000pt;}
.ws12_c00036{word-spacing:2.304000pt;}
.wsc_c00036{word-spacing:3.584000pt;}
.wsb_c00036{word-spacing:4.544000pt;}
.ws9_c00036{word-spacing:5.120000pt;}
.wsf_c00036{word-spacing:5.280000pt;}
.wse_c00036{word-spacing:5.544000pt;}
.ws7_c00036{word-spacing:7.232000pt;}
._0_c00036{margin-left:-2448.578667pt;}
._1_c00036{margin-left:-5.205333pt;}
._6_c00036{margin-left:-4.117333pt;}
._4_c00036{margin-left:-2.496000pt;}
._2_c00036{margin-left:-1.280000pt;}
._3_c00036{width:1.152000pt;}
._5_c00036{width:6.584000pt;}
.fs4_c00036{font-size:37.312000pt;}
.fs0_c00036{font-size:42.666667pt;}
.fs3_c00036{font-size:53.333333pt;}
.fs2_c00036{font-size:56.000000pt;}
.fs1_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y17_c00036{bottom:99.214533pt;}
.y16_c00036{bottom:163.493467pt;}
.y15_c00036{bottom:185.493467pt;}
.y14_c00036{bottom:207.493467pt;}
.y13_c00036{bottom:237.066000pt;}
.y12_c00036{bottom:255.728000pt;}
.y20_c00036{bottom:256.303467pt;}
.y1f_c00036{bottom:272.836800pt;}
.y11_c00036{bottom:278.170000pt;}
.y1e_c00036{bottom:289.370133pt;}
.y10_c00036{bottom:296.863733pt;}
.y1d_c00036{bottom:305.903467pt;}
.yf_c00036{bottom:315.525733pt;}
.y1c_c00036{bottom:322.436800pt;}
.ye_c00036{bottom:334.187733pt;}
.yd_c00036{bottom:352.849733pt;}
.yc_c00036{bottom:379.071733pt;}
.yb_c00036{bottom:397.733733pt;}
.ya_c00036{bottom:416.395733pt;}
.y9_c00036{bottom:435.057733pt;}
.y8_c00036{bottom:461.283467pt;}
.y7_c00036{bottom:483.283467pt;}
.y6_c00036{bottom:505.283467pt;}
.y5_c00036{bottom:527.283467pt;}
.y4_c00036{bottom:549.283467pt;}
.y3_c00036{bottom:571.283467pt;}
.y2_c00036{bottom:593.283467pt;}
.y1b_c00036{bottom:631.914533pt;}
.y1a_c00036{bottom:648.447867pt;}
.y19_c00036{bottom:664.981200pt;}
.y18_c00036{bottom:681.514533pt;}
.y1_c00036{bottom:972.089867pt;}
.h2_c00036{height:34.901333pt;}
.h3_c00036{height:35.541333pt;}
.h7_c00036{height:43.200000pt;}
.h6_c00036{height:43.626667pt;}
.h5_c00036{height:45.808000pt;}
.h4_c00036{height:52.352000pt;}
.h1_c00036{height:1009.333333pt;}
.h0_c00036{height:1009.338800pt;}
.w0_c00036{width:794.622400pt;}
.w1_c00036{width:794.666667pt;}
.x0_c00036{left:0.000000pt;}
.x4_c00036{left:114.334933pt;}
.x5_c00036{left:133.232533pt;}
.x2_c00036{left:167.166133pt;}
.x3_c00036{left:169.345200pt;}
.x6_c00036{left:285.534933pt;}
.x7_c00036{left:548.017867pt;}
.x1_c00036{left:718.127600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2289857f78955a01541bbe96.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.067000;font-style:normal;font-weight:normal;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_6ce0165fd5f804ecd926bbff.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.v1_c00037{vertical-align:23.928000px;}
.ls2_c00037{letter-spacing:-1.584000px;}
.ls3_c00037{letter-spacing:-0.780000px;}
.ls0_c00037{letter-spacing:-0.192000px;}
.ls1_c00037{letter-spacing:0.000000px;}
.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:-14.904000px;}
.ws3_c00037{word-spacing:-10.896000px;}
.ws2_c00037{word-spacing:-9.528552px;}
.ws12_c00037{word-spacing:-2.232000px;}
.ws10_c00037{word-spacing:-2.088000px;}
.ws14_c00037{word-spacing:-1.944000px;}
.ws11_c00037{word-spacing:-1.656000px;}
.wse_c00037{word-spacing:-1.152000px;}
.ws8_c00037{word-spacing:-0.072000px;}
.ws4_c00037{word-spacing:0.000000px;}
.ws7_c00037{word-spacing:0.432000px;}
.ws16_c00037{word-spacing:0.780000px;}
.wsf_c00037{word-spacing:0.936000px;}
.ws5_c00037{word-spacing:1.296000px;}
.wsb_c00037{word-spacing:3.024000px;}
.ws13_c00037{word-spacing:3.600000px;}
.ws6_c00037{word-spacing:4.320000px;}
.ws15_c00037{word-spacing:4.608000px;}
.wsc_c00037{word-spacing:4.968000px;}
.ws9_c00037{word-spacing:6.984000px;}
.wsa_c00037{word-spacing:7.056000px;}
.wsd_c00037{word-spacing:7.128000px;}
.ws0_c00037{word-spacing:1600.843200px;}
._5_c00037{margin-left:-7.281648px;}
._3_c00037{margin-left:-4.536000px;}
._4_c00037{margin-left:-3.115176px;}
._0_c00037{margin-left:-2.112000px;}
._1_c00037{margin-left:-1.104000px;}
._2_c00037{width:1.800000px;}
.fc0_c00037{color:rgb(35,31,32);}
.fs2_c00037{font-size:41.976000px;}
.fs0_c00037{font-size:48.000000px;}
.fs3_c00037{font-size:60.000000px;}
.fs1_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y19_c00037{bottom:98.860350px;}
.y18_c00037{bottom:113.860350px;}
.y1b_c00037{bottom:176.014350px;}
.y1a_c00037{bottom:194.614350px;}
.y17_c00037{bottom:477.723450px;}
.y16_c00037{bottom:502.473450px;}
.y15_c00037{bottom:527.223450px;}
.y14_c00037{bottom:551.973450px;}
.y13_c00037{bottom:576.723450px;}
.y12_c00037{bottom:601.473450px;}
.y11_c00037{bottom:641.217450px;}
.y10_c00037{bottom:665.967450px;}
.yf_c00037{bottom:690.717450px;}
.ye_c00037{bottom:715.467450px;}
.yd_c00037{bottom:740.229450px;}
.yc_c00037{bottom:764.979450px;}
.yb_c00037{bottom:789.729450px;}
.ya_c00037{bottom:814.479450px;}
.y9_c00037{bottom:854.223450px;}
.y8_c00037{bottom:878.973450px;}
.y7_c00037{bottom:903.723450px;}
.y6_c00037{bottom:928.473450px;}
.y5_c00037{bottom:953.223450px;}
.y4_c00037{bottom:977.973450px;}
.y3_c00037{bottom:1002.723450px;}
.y2_c00037{bottom:1042.467450px;}
.y1_c00037{bottom:1093.601100px;}
.h2_c00037{height:39.264000px;}
.h4_c00037{height:49.080000px;}
.h3_c00037{height:58.896000px;}
.h1_c00037{height:1135.500000px;}
.h0_c00037{height:1135.506150px;}
.w0_c00037{width:893.950200px;}
.w1_c00037{width:894.000000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:77.603100px;}
.x2_c00037{left:94.611000px;}
.x3_c00037{left:446.461350px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:21.269333pt;}
.ls2_c00037{letter-spacing:-1.408000pt;}
.ls3_c00037{letter-spacing:-0.693333pt;}
.ls0_c00037{letter-spacing:-0.170667pt;}
.ls1_c00037{letter-spacing:0.000000pt;}
.ws1_c00037{word-spacing:-13.248000pt;}
.ws3_c00037{word-spacing:-9.685333pt;}
.ws2_c00037{word-spacing:-8.469824pt;}
.ws12_c00037{word-spacing:-1.984000pt;}
.ws10_c00037{word-spacing:-1.856000pt;}
.ws14_c00037{word-spacing:-1.728000pt;}
.ws11_c00037{word-spacing:-1.472000pt;}
.wse_c00037{word-spacing:-1.024000pt;}
.ws8_c00037{word-spacing:-0.064000pt;}
.ws4_c00037{word-spacing:0.000000pt;}
.ws7_c00037{word-spacing:0.384000pt;}
.ws16_c00037{word-spacing:0.693333pt;}
.wsf_c00037{word-spacing:0.832000pt;}
.ws5_c00037{word-spacing:1.152000pt;}
.wsb_c00037{word-spacing:2.688000pt;}
.ws13_c00037{word-spacing:3.200000pt;}
.ws6_c00037{word-spacing:3.840000pt;}
.ws15_c00037{word-spacing:4.096000pt;}
.wsc_c00037{word-spacing:4.416000pt;}
.ws9_c00037{word-spacing:6.208000pt;}
.wsa_c00037{word-spacing:6.272000pt;}
.wsd_c00037{word-spacing:6.336000pt;}
.ws0_c00037{word-spacing:1422.971733pt;}
._5_c00037{margin-left:-6.472576pt;}
._3_c00037{margin-left:-4.032000pt;}
._4_c00037{margin-left:-2.769045pt;}
._0_c00037{margin-left:-1.877333pt;}
._1_c00037{margin-left:-0.981333pt;}
._2_c00037{width:1.600000pt;}
.fs2_c00037{font-size:37.312000pt;}
.fs0_c00037{font-size:42.666667pt;}
.fs3_c00037{font-size:53.333333pt;}
.fs1_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y19_c00037{bottom:87.875867pt;}
.y18_c00037{bottom:101.209200pt;}
.y1b_c00037{bottom:156.457200pt;}
.y1a_c00037{bottom:172.990533pt;}
.y17_c00037{bottom:424.643067pt;}
.y16_c00037{bottom:446.643067pt;}
.y15_c00037{bottom:468.643067pt;}
.y14_c00037{bottom:490.643067pt;}
.y13_c00037{bottom:512.643067pt;}
.y12_c00037{bottom:534.643067pt;}
.y11_c00037{bottom:569.971067pt;}
.y10_c00037{bottom:591.971067pt;}
.yf_c00037{bottom:613.971067pt;}
.ye_c00037{bottom:635.971067pt;}
.yd_c00037{bottom:657.981733pt;}
.yc_c00037{bottom:679.981733pt;}
.yb_c00037{bottom:701.981733pt;}
.ya_c00037{bottom:723.981733pt;}
.y9_c00037{bottom:759.309733pt;}
.y8_c00037{bottom:781.309733pt;}
.y7_c00037{bottom:803.309733pt;}
.y6_c00037{bottom:825.309733pt;}
.y5_c00037{bottom:847.309733pt;}
.y4_c00037{bottom:869.309733pt;}
.y3_c00037{bottom:891.309733pt;}
.y2_c00037{bottom:926.637733pt;}
.y1_c00037{bottom:972.089867pt;}
.h2_c00037{height:34.901333pt;}
.h4_c00037{height:43.626667pt;}
.h3_c00037{height:52.352000pt;}
.h1_c00037{height:1009.333333pt;}
.h0_c00037{height:1009.338800pt;}
.w0_c00037{width:794.622400pt;}
.w1_c00037{width:794.666667pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:68.980533pt;}
.x2_c00037{left:84.098667pt;}
.x3_c00037{left:396.854533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_572e45bafe16ddf2c21b421b.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_1d67c4176c6006b482ed5ea2.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.082000;font-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_c00038{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00038{vertical-align:-20.979000px;}
.v0_c00038{vertical-align:0.000000px;}
.v1_c00038{vertical-align:20.882400px;}
.v3_c00038{vertical-align:23.976000px;}
.ls9_c00038{letter-spacing:-2.544000px;}
.ls5_c00038{letter-spacing:-1.584000px;}
.ls6_c00038{letter-spacing:-0.720000px;}
.lsb_c00038{letter-spacing:-0.576000px;}
.lsa_c00038{letter-spacing:-0.480000px;}
.ls8_c00038{letter-spacing:-0.432000px;}
.ls3_c00038{letter-spacing:-0.315000px;}
.ls2_c00038{letter-spacing:0.000000px;}
.ls4_c00038{letter-spacing:0.183645px;}
.ls0_c00038{letter-spacing:0.480000px;}
.ls7_c00038{letter-spacing:0.587664px;}
.ls1_c00038{letter-spacing:0.630000px;}
.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;}
}
.ws6_c00038{word-spacing:-15.912000px;}
.ws5_c00038{word-spacing:-15.768000px;}
.ws4_c00038{word-spacing:-14.904000px;}
.ws1_c00038{word-spacing:-13.986000px;}
.ws8_c00038{word-spacing:-11.376000px;}
.wsb_c00038{word-spacing:-10.992000px;}
.ws0_c00038{word-spacing:-10.896000px;}
.ws9_c00038{word-spacing:-10.464000px;}
.ws3_c00038{word-spacing:-9.528552px;}
.ws7_c00038{word-spacing:-8.925147px;}
.ws2_c00038{word-spacing:-8.521128px;}
.wsa_c00038{word-spacing:-8.448000px;}
.ws18_c00038{word-spacing:-0.864000px;}
.ws1b_c00038{word-spacing:-0.432000px;}
.wsc_c00038{word-spacing:0.000000px;}
.ws19_c00038{word-spacing:0.072000px;}
.ws20_c00038{word-spacing:0.144000px;}
.ws16_c00038{word-spacing:0.360000px;}
.ws22_c00038{word-spacing:0.480000px;}
.ws12_c00038{word-spacing:0.648000px;}
.ws1a_c00038{word-spacing:0.693000px;}
.ws1d_c00038{word-spacing:1.584000px;}
.ws1e_c00038{word-spacing:1.872000px;}
.ws24_c00038{word-spacing:1.920000px;}
.ws11_c00038{word-spacing:2.088000px;}
.ws15_c00038{word-spacing:2.232000px;}
.ws17_c00038{word-spacing:2.448000px;}
.ws21_c00038{word-spacing:3.360000px;}
.ws1c_c00038{word-spacing:4.320000px;}
.ws13_c00038{word-spacing:5.040000px;}
.ws14_c00038{word-spacing:5.112000px;}
.wsf_c00038{word-spacing:5.229000px;}
.ws25_c00038{word-spacing:5.424000px;}
.ws23_c00038{word-spacing:5.856000px;}
.wse_c00038{word-spacing:6.930000px;}
.wsd_c00038{word-spacing:7.119000px;}
.ws1f_c00038{word-spacing:7.968000px;}
.ws10_c00038{word-spacing:109.557000px;}
._0_c00038{margin-left:-2755.276200px;}
._4_c00038{margin-left:-7.128000px;}
._1_c00038{margin-left:-5.856000px;}
._8_c00038{margin-left:-4.041000px;}
._6_c00038{margin-left:-2.828352px;}
._2_c00038{margin-left:-1.440000px;}
._3_c00038{width:1.008000px;}
._5_c00038{width:2.664000px;}
._7_c00038{width:26.902200px;}
.fc0_c00038{color:rgb(35,31,32);}
.fs2_c00038{font-size:36.729000px;}
.fs4_c00038{font-size:41.976000px;}
.fs0_c00038{font-size:48.000000px;}
.fs1_c00038{font-size:63.000000px;}
.fs3_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y25_c00038{bottom:98.856450px;}
.y24_c00038{bottom:122.360400px;}
.y23_c00038{bottom:145.868400px;}
.y22_c00038{bottom:160.864350px;}
.y21_c00038{bottom:184.368300px;}
.y20_c00038{bottom:207.876300px;}
.y1f_c00038{bottom:222.876300px;}
.y1e_c00038{bottom:265.595700px;}
.y1d_c00038{bottom:290.345700px;}
.y1c_c00038{bottom:315.095700px;}
.y1b_c00038{bottom:339.845700px;}
.y1a_c00038{bottom:364.595700px;}
.y19_c00038{bottom:404.339700px;}
.y18_c00038{bottom:429.089700px;}
.y17_c00038{bottom:468.850200px;}
.y16_c00038{bottom:489.844950px;}
.y15_c00038{bottom:510.839700px;}
.y14_c00038{bottom:540.343650px;}
.y13_c00038{bottom:565.093650px;}
.y12_c00038{bottom:604.838550px;}
.y11_c00038{bottom:659.594550px;}
.y10_c00038{bottom:684.344550px;}
.yf_c00038{bottom:709.094550px;}
.ye_c00038{bottom:733.844550px;}
.yd_c00038{bottom:758.594550px;}
.yc_c00038{bottom:783.344550px;}
.yb_c00038{bottom:808.094550px;}
.ya_c00038{bottom:832.844550px;}
.y9_c00038{bottom:857.594550px;}
.y8_c00038{bottom:882.344550px;}
.y7_c00038{bottom:922.119600px;}
.y6_c00038{bottom:943.114350px;}
.y5_c00038{bottom:972.614100px;}
.y4_c00038{bottom:993.608850px;}
.y3_c00038{bottom:1023.108600px;}
.y2_c00038{bottom:1044.103350px;}
.y1_c00038{bottom:1093.601100px;}
.h2_c00038{height:39.264000px;}
.h7_c00038{height:39.280200px;}
.h3_c00038{height:39.984000px;}
.h4_c00038{height:51.534000px;}
.h5_c00038{height:58.896000px;}
.h6_c00038{height:59.996400px;}
.h1_c00038{height:1135.500000px;}
.h0_c00038{height:1135.506150px;}
.w0_c00038{width:893.950200px;}
.w1_c00038{width:894.000000px;}
.x0_c00038{left:0.000000px;}
.x5_c00038{left:128.626800px;}
.x6_c00038{left:145.646400px;}
.x4_c00038{left:149.886600px;}
.x2_c00038{left:188.061900px;}
.x3_c00038{left:190.513350px;}
.x1_c00038{left:807.329850px;}
@media print{
.v2_c00038{vertical-align:-18.648000pt;}
.v0_c00038{vertical-align:0.000000pt;}
.v1_c00038{vertical-align:18.562133pt;}
.v3_c00038{vertical-align:21.312000pt;}
.ls9_c00038{letter-spacing:-2.261333pt;}
.ls5_c00038{letter-spacing:-1.408000pt;}
.ls6_c00038{letter-spacing:-0.640000pt;}
.lsb_c00038{letter-spacing:-0.512000pt;}
.lsa_c00038{letter-spacing:-0.426667pt;}
.ls8_c00038{letter-spacing:-0.384000pt;}
.ls3_c00038{letter-spacing:-0.280000pt;}
.ls2_c00038{letter-spacing:0.000000pt;}
.ls4_c00038{letter-spacing:0.163240pt;}
.ls0_c00038{letter-spacing:0.426667pt;}
.ls7_c00038{letter-spacing:0.522368pt;}
.ls1_c00038{letter-spacing:0.560000pt;}
.ws6_c00038{word-spacing:-14.144000pt;}
.ws5_c00038{word-spacing:-14.016000pt;}
.ws4_c00038{word-spacing:-13.248000pt;}
.ws1_c00038{word-spacing:-12.432000pt;}
.ws8_c00038{word-spacing:-10.112000pt;}
.wsb_c00038{word-spacing:-9.770667pt;}
.ws0_c00038{word-spacing:-9.685333pt;}
.ws9_c00038{word-spacing:-9.301333pt;}
.ws3_c00038{word-spacing:-8.469824pt;}
.ws7_c00038{word-spacing:-7.933464pt;}
.ws2_c00038{word-spacing:-7.574336pt;}
.wsa_c00038{word-spacing:-7.509333pt;}
.ws18_c00038{word-spacing:-0.768000pt;}
.ws1b_c00038{word-spacing:-0.384000pt;}
.wsc_c00038{word-spacing:0.000000pt;}
.ws19_c00038{word-spacing:0.064000pt;}
.ws20_c00038{word-spacing:0.128000pt;}
.ws16_c00038{word-spacing:0.320000pt;}
.ws22_c00038{word-spacing:0.426667pt;}
.ws12_c00038{word-spacing:0.576000pt;}
.ws1a_c00038{word-spacing:0.616000pt;}
.ws1d_c00038{word-spacing:1.408000pt;}
.ws1e_c00038{word-spacing:1.664000pt;}
.ws24_c00038{word-spacing:1.706667pt;}
.ws11_c00038{word-spacing:1.856000pt;}
.ws15_c00038{word-spacing:1.984000pt;}
.ws17_c00038{word-spacing:2.176000pt;}
.ws21_c00038{word-spacing:2.986667pt;}
.ws1c_c00038{word-spacing:3.840000pt;}
.ws13_c00038{word-spacing:4.480000pt;}
.ws14_c00038{word-spacing:4.544000pt;}
.wsf_c00038{word-spacing:4.648000pt;}
.ws25_c00038{word-spacing:4.821333pt;}
.ws23_c00038{word-spacing:5.205333pt;}
.wse_c00038{word-spacing:6.160000pt;}
.wsd_c00038{word-spacing:6.328000pt;}
.ws1f_c00038{word-spacing:7.082667pt;}
.ws10_c00038{word-spacing:97.384000pt;}
._0_c00038{margin-left:-2449.134400pt;}
._4_c00038{margin-left:-6.336000pt;}
._1_c00038{margin-left:-5.205333pt;}
._8_c00038{margin-left:-3.592000pt;}
._6_c00038{margin-left:-2.514091pt;}
._2_c00038{margin-left:-1.280000pt;}
._3_c00038{width:0.896000pt;}
._5_c00038{width:2.368000pt;}
._7_c00038{width:23.913067pt;}
.fs2_c00038{font-size:32.648000pt;}
.fs4_c00038{font-size:37.312000pt;}
.fs0_c00038{font-size:42.666667pt;}
.fs1_c00038{font-size:56.000000pt;}
.fs3_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y25_c00038{bottom:87.872400pt;}
.y24_c00038{bottom:108.764800pt;}
.y23_c00038{bottom:129.660800pt;}
.y22_c00038{bottom:142.990533pt;}
.y21_c00038{bottom:163.882933pt;}
.y20_c00038{bottom:184.778933pt;}
.y1f_c00038{bottom:198.112267pt;}
.y1e_c00038{bottom:236.085067pt;}
.y1d_c00038{bottom:258.085067pt;}
.y1c_c00038{bottom:280.085067pt;}
.y1b_c00038{bottom:302.085067pt;}
.y1a_c00038{bottom:324.085067pt;}
.y19_c00038{bottom:359.413067pt;}
.y18_c00038{bottom:381.413067pt;}
.y17_c00038{bottom:416.755733pt;}
.y16_c00038{bottom:435.417733pt;}
.y15_c00038{bottom:454.079733pt;}
.y14_c00038{bottom:480.305467pt;}
.y13_c00038{bottom:502.305467pt;}
.y12_c00038{bottom:537.634267pt;}
.y11_c00038{bottom:586.306267pt;}
.y10_c00038{bottom:608.306267pt;}
.yf_c00038{bottom:630.306267pt;}
.ye_c00038{bottom:652.306267pt;}
.yd_c00038{bottom:674.306267pt;}
.yc_c00038{bottom:696.306267pt;}
.yb_c00038{bottom:718.306267pt;}
.ya_c00038{bottom:740.306267pt;}
.y9_c00038{bottom:762.306267pt;}
.y8_c00038{bottom:784.306267pt;}
.y7_c00038{bottom:819.661867pt;}
.y6_c00038{bottom:838.323867pt;}
.y5_c00038{bottom:864.545867pt;}
.y4_c00038{bottom:883.207867pt;}
.y3_c00038{bottom:909.429867pt;}
.y2_c00038{bottom:928.091867pt;}
.y1_c00038{bottom:972.089867pt;}
.h2_c00038{height:34.901333pt;}
.h7_c00038{height:34.915733pt;}
.h3_c00038{height:35.541333pt;}
.h4_c00038{height:45.808000pt;}
.h5_c00038{height:52.352000pt;}
.h6_c00038{height:53.330133pt;}
.h1_c00038{height:1009.333333pt;}
.h0_c00038{height:1009.338800pt;}
.w0_c00038{width:794.622400pt;}
.w1_c00038{width:794.666667pt;}
.x0_c00038{left:0.000000pt;}
.x5_c00038{left:114.334933pt;}
.x6_c00038{left:129.463467pt;}
.x4_c00038{left:133.232533pt;}
.x2_c00038{left:167.166133pt;}
.x3_c00038{left:169.345200pt;}
.x1_c00038{left:717.626533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd5d30a3eb7284a482dec90a.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.v2_c00039{vertical-align:20.916600px;}
.v1_c00039{vertical-align:23.952000px;}
.ls9_c00039{letter-spacing:-1.680000px;}
.ls6_c00039{letter-spacing:-0.720000px;}
.ls4_c00039{letter-spacing:-0.504000px;}
.ls3_c00039{letter-spacing:-0.432000px;}
.ls7_c00039{letter-spacing:-0.419760px;}
.lsc_c00039{letter-spacing:-0.336000px;}
.ls5_c00039{letter-spacing:-0.288000px;}
.lsb_c00039{letter-spacing:-0.192000px;}
.ls8_c00039{letter-spacing:-0.041976px;}
.ls2_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.051600px;}
.ls1_c00039{letter-spacing:0.192000px;}
.lsa_c00039{letter-spacing:0.336000px;}
.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;}
}
.ws3_c00039{word-spacing:-16.200000px;}
.ws2_c00039{word-spacing:-15.984000px;}
.ws7_c00039{word-spacing:-11.232000px;}
.ws8_c00039{word-spacing:-10.896000px;}
.ws9_c00039{word-spacing:-10.608000px;}
.wsa_c00039{word-spacing:-10.560000px;}
.ws5_c00039{word-spacing:-9.486576px;}
.ws6_c00039{word-spacing:-9.216000px;}
.ws4_c00039{word-spacing:-9.108792px;}
.ws1_c00039{word-spacing:-8.337483px;}
.ws12_c00039{word-spacing:-2.448000px;}
.ws21_c00039{word-spacing:-2.376000px;}
.ws22_c00039{word-spacing:-2.304000px;}
.ws13_c00039{word-spacing:-2.016000px;}
.ws1d_c00039{word-spacing:-1.944000px;}
.ws19_c00039{word-spacing:-1.656000px;}
.ws1b_c00039{word-spacing:-1.512000px;}
.wsd_c00039{word-spacing:-1.368000px;}
.ws28_c00039{word-spacing:-0.912000px;}
.ws15_c00039{word-spacing:-0.378000px;}
.ws20_c00039{word-spacing:-0.360000px;}
.ws16_c00039{word-spacing:-0.252000px;}
.wsb_c00039{word-spacing:0.000000px;}
.ws10_c00039{word-spacing:0.144000px;}
.ws2b_c00039{word-spacing:0.192000px;}
.ws27_c00039{word-spacing:0.240000px;}
.ws26_c00039{word-spacing:0.528000px;}
.ws23_c00039{word-spacing:0.720000px;}
.ws1a_c00039{word-spacing:0.792000px;}
.wse_c00039{word-spacing:1.296000px;}
.ws1e_c00039{word-spacing:1.512000px;}
.ws29_c00039{word-spacing:2.208000px;}
.wsc_c00039{word-spacing:2.736000px;}
.ws2d_c00039{word-spacing:2.880000px;}
.ws2c_c00039{word-spacing:4.128000px;}
.ws14_c00039{word-spacing:4.410000px;}
.ws1f_c00039{word-spacing:4.536000px;}
.ws1c_c00039{word-spacing:4.608000px;}
.ws24_c00039{word-spacing:4.968000px;}
.ws25_c00039{word-spacing:5.040000px;}
.ws11_c00039{word-spacing:5.256000px;}
.ws17_c00039{word-spacing:5.976000px;}
.wsf_c00039{word-spacing:6.768000px;}
.ws18_c00039{word-spacing:7.056000px;}
.ws2a_c00039{word-spacing:8.592000px;}
.ws0_c00039{word-spacing:1601.275200px;}
._3_c00039{margin-left:-6.609000px;}
._6_c00039{margin-left:-4.815000px;}
._5_c00039{margin-left:-3.792000px;}
._0_c00039{margin-left:-2.112000px;}
._1_c00039{margin-left:-1.104000px;}
._2_c00039{width:1.776000px;}
._4_c00039{width:3.375000px;}
.fc0_c00039{color:rgb(35,31,32);}
.fs4_c00039{font-size:36.729000px;}
.fs2_c00039{font-size:41.976000px;}
.fs0_c00039{font-size:48.000000px;}
.fs3_c00039{font-size:63.000000px;}
.fs1_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y26_c00039{bottom:111.616350px;}
.y25_c00039{bottom:126.612300px;}
.y24_c00039{bottom:150.116250px;}
.y23_c00039{bottom:173.624250px;}
.y22_c00039{bottom:188.624250px;}
.y21_c00039{bottom:203.624250px;}
.y20_c00039{bottom:218.624250px;}
.y1f_c00039{bottom:271.219650px;}
.y1e_c00039{bottom:295.969650px;}
.y1d_c00039{bottom:335.713650px;}
.y1c_c00039{bottom:360.463650px;}
.y1b_c00039{bottom:385.213650px;}
.y1a_c00039{bottom:409.963650px;}
.y19_c00039{bottom:434.719500px;}
.y18_c00039{bottom:459.469500px;}
.y17_c00039{bottom:484.219500px;}
.y16_c00039{bottom:508.969500px;}
.y15_c00039{bottom:548.713500px;}
.y14_c00039{bottom:573.463500px;}
.y13_c00039{bottom:598.213500px;}
.y12_c00039{bottom:622.963500px;}
.y11_c00039{bottom:647.713500px;}
.y10_c00039{bottom:672.463500px;}
.yf_c00039{bottom:697.213500px;}
.ye_c00039{bottom:736.979250px;}
.yd_c00039{bottom:757.974000px;}
.yc_c00039{bottom:778.968750px;}
.yb_c00039{bottom:799.963500px;}
.ya_c00039{bottom:829.467450px;}
.y9_c00039{bottom:854.223450px;}
.y8_c00039{bottom:878.973450px;}
.y7_c00039{bottom:903.723450px;}
.y6_c00039{bottom:928.473450px;}
.y5_c00039{bottom:968.217450px;}
.y4_c00039{bottom:992.967450px;}
.y3_c00039{bottom:1017.717450px;}
.y2_c00039{bottom:1042.467450px;}
.y1_c00039{bottom:1093.601100px;}
.h2_c00039{height:39.264000px;}
.h5_c00039{height:39.280200px;}
.h4_c00039{height:51.534000px;}
.h3_c00039{height:58.896000px;}
.h1_c00039{height:1135.500000px;}
.h0_c00039{height:1135.506150px;}
.w0_c00039{width:893.950200px;}
.w1_c00039{width:894.000000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:77.603100px;}
.x3_c00039{left:94.611000px;}
.x2_c00039{left:98.862900px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.v2_c00039{vertical-align:18.592533pt;}
.v1_c00039{vertical-align:21.290667pt;}
.ls9_c00039{letter-spacing:-1.493333pt;}
.ls6_c00039{letter-spacing:-0.640000pt;}
.ls4_c00039{letter-spacing:-0.448000pt;}
.ls3_c00039{letter-spacing:-0.384000pt;}
.ls7_c00039{letter-spacing:-0.373120pt;}
.lsc_c00039{letter-spacing:-0.298667pt;}
.ls5_c00039{letter-spacing:-0.256000pt;}
.lsb_c00039{letter-spacing:-0.170667pt;}
.ls8_c00039{letter-spacing:-0.037312pt;}
.ls2_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.045867pt;}
.ls1_c00039{letter-spacing:0.170667pt;}
.lsa_c00039{letter-spacing:0.298667pt;}
.ws3_c00039{word-spacing:-14.400000pt;}
.ws2_c00039{word-spacing:-14.208000pt;}
.ws7_c00039{word-spacing:-9.984000pt;}
.ws8_c00039{word-spacing:-9.685333pt;}
.ws9_c00039{word-spacing:-9.429333pt;}
.wsa_c00039{word-spacing:-9.386667pt;}
.ws5_c00039{word-spacing:-8.432512pt;}
.ws6_c00039{word-spacing:-8.192000pt;}
.ws4_c00039{word-spacing:-8.096704pt;}
.ws1_c00039{word-spacing:-7.411096pt;}
.ws12_c00039{word-spacing:-2.176000pt;}
.ws21_c00039{word-spacing:-2.112000pt;}
.ws22_c00039{word-spacing:-2.048000pt;}
.ws13_c00039{word-spacing:-1.792000pt;}
.ws1d_c00039{word-spacing:-1.728000pt;}
.ws19_c00039{word-spacing:-1.472000pt;}
.ws1b_c00039{word-spacing:-1.344000pt;}
.wsd_c00039{word-spacing:-1.216000pt;}
.ws28_c00039{word-spacing:-0.810667pt;}
.ws15_c00039{word-spacing:-0.336000pt;}
.ws20_c00039{word-spacing:-0.320000pt;}
.ws16_c00039{word-spacing:-0.224000pt;}
.wsb_c00039{word-spacing:0.000000pt;}
.ws10_c00039{word-spacing:0.128000pt;}
.ws2b_c00039{word-spacing:0.170667pt;}
.ws27_c00039{word-spacing:0.213333pt;}
.ws26_c00039{word-spacing:0.469333pt;}
.ws23_c00039{word-spacing:0.640000pt;}
.ws1a_c00039{word-spacing:0.704000pt;}
.wse_c00039{word-spacing:1.152000pt;}
.ws1e_c00039{word-spacing:1.344000pt;}
.ws29_c00039{word-spacing:1.962667pt;}
.wsc_c00039{word-spacing:2.432000pt;}
.ws2d_c00039{word-spacing:2.560000pt;}
.ws2c_c00039{word-spacing:3.669333pt;}
.ws14_c00039{word-spacing:3.920000pt;}
.ws1f_c00039{word-spacing:4.032000pt;}
.ws1c_c00039{word-spacing:4.096000pt;}
.ws24_c00039{word-spacing:4.416000pt;}
.ws25_c00039{word-spacing:4.480000pt;}
.ws11_c00039{word-spacing:4.672000pt;}
.ws17_c00039{word-spacing:5.312000pt;}
.wsf_c00039{word-spacing:6.016000pt;}
.ws18_c00039{word-spacing:6.272000pt;}
.ws2a_c00039{word-spacing:7.637333pt;}
.ws0_c00039{word-spacing:1423.355733pt;}
._3_c00039{margin-left:-5.874667pt;}
._6_c00039{margin-left:-4.280000pt;}
._5_c00039{margin-left:-3.370667pt;}
._0_c00039{margin-left:-1.877333pt;}
._1_c00039{margin-left:-0.981333pt;}
._2_c00039{width:1.578667pt;}
._4_c00039{width:3.000000pt;}
.fs4_c00039{font-size:32.648000pt;}
.fs2_c00039{font-size:37.312000pt;}
.fs0_c00039{font-size:42.666667pt;}
.fs3_c00039{font-size:56.000000pt;}
.fs1_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y26_c00039{bottom:99.214533pt;}
.y25_c00039{bottom:112.544267pt;}
.y24_c00039{bottom:133.436667pt;}
.y23_c00039{bottom:154.332667pt;}
.y22_c00039{bottom:167.666000pt;}
.y21_c00039{bottom:180.999333pt;}
.y20_c00039{bottom:194.332667pt;}
.y1f_c00039{bottom:241.084133pt;}
.y1e_c00039{bottom:263.084133pt;}
.y1d_c00039{bottom:298.412133pt;}
.y1c_c00039{bottom:320.412133pt;}
.y1b_c00039{bottom:342.412133pt;}
.y1a_c00039{bottom:364.412133pt;}
.y19_c00039{bottom:386.417333pt;}
.y18_c00039{bottom:408.417333pt;}
.y17_c00039{bottom:430.417333pt;}
.y16_c00039{bottom:452.417333pt;}
.y15_c00039{bottom:487.745333pt;}
.y14_c00039{bottom:509.745333pt;}
.y13_c00039{bottom:531.745333pt;}
.y12_c00039{bottom:553.745333pt;}
.y11_c00039{bottom:575.745333pt;}
.y10_c00039{bottom:597.745333pt;}
.yf_c00039{bottom:619.745333pt;}
.ye_c00039{bottom:655.092667pt;}
.yd_c00039{bottom:673.754667pt;}
.yc_c00039{bottom:692.416667pt;}
.yb_c00039{bottom:711.078667pt;}
.ya_c00039{bottom:737.304400pt;}
.y9_c00039{bottom:759.309733pt;}
.y8_c00039{bottom:781.309733pt;}
.y7_c00039{bottom:803.309733pt;}
.y6_c00039{bottom:825.309733pt;}
.y5_c00039{bottom:860.637733pt;}
.y4_c00039{bottom:882.637733pt;}
.y3_c00039{bottom:904.637733pt;}
.y2_c00039{bottom:926.637733pt;}
.y1_c00039{bottom:972.089867pt;}
.h2_c00039{height:34.901333pt;}
.h5_c00039{height:34.915733pt;}
.h4_c00039{height:45.808000pt;}
.h3_c00039{height:52.352000pt;}
.h1_c00039{height:1009.333333pt;}
.h0_c00039{height:1009.338800pt;}
.w0_c00039{width:794.622400pt;}
.w1_c00039{width:794.666667pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:68.980533pt;}
.x3_c00039{left:84.098667pt;}
.x2_c00039{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6a23021d637f30e6fbbfad7.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.082000;font-style:normal;font-weight:normal;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_308d7c563442d3dd8b0045a5.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.067000;font-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_c00040{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.v1_c00040{vertical-align:23.952600px;}
.ls8_c00040{letter-spacing:-0.720000px;}
.ls7_c00040{letter-spacing:-0.432000px;}
.ls6_c00040{letter-spacing:-0.240000px;}
.ls2_c00040{letter-spacing:-0.144000px;}
.ls3_c00040{letter-spacing:0.000000px;}
.ls5_c00040{letter-spacing:0.209880px;}
.ls4_c00040{letter-spacing:0.288000px;}
.ls0_c00040{letter-spacing:0.480000px;}
.ls1_c00040{letter-spacing:0.720000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00040{word-spacing:-16.632000px;}
.ws4_c00040{word-spacing:-10.992000px;}
.ws5_c00040{word-spacing:-10.896000px;}
.ws0_c00040{word-spacing:-10.752000px;}
.ws3_c00040{word-spacing:-10.656000px;}
.ws2_c00040{word-spacing:-9.738432px;}
.ws24_c00040{word-spacing:-3.744000px;}
.ws1e_c00040{word-spacing:-3.384000px;}
.ws23_c00040{word-spacing:-1.584000px;}
.ws19_c00040{word-spacing:-1.224000px;}
.wsf_c00040{word-spacing:-0.792000px;}
.ws10_c00040{word-spacing:-0.288000px;}
.ws6_c00040{word-spacing:0.000000px;}
.ws2a_c00040{word-spacing:0.240000px;}
.ws1b_c00040{word-spacing:0.360000px;}
.ws2b_c00040{word-spacing:0.720000px;}
.ws1a_c00040{word-spacing:0.936000px;}
.ws13_c00040{word-spacing:1.080000px;}
.ws25_c00040{word-spacing:1.920000px;}
.ws12_c00040{word-spacing:1.944000px;}
.ws18_c00040{word-spacing:3.240000px;}
.ws11_c00040{word-spacing:3.960000px;}
.ws26_c00040{word-spacing:5.184000px;}
.ws27_c00040{word-spacing:5.232000px;}
.ws28_c00040{word-spacing:5.424000px;}
.ws1d_c00040{word-spacing:6.048000px;}
.wse_c00040{word-spacing:6.480000px;}
.ws7_c00040{word-spacing:6.912000px;}
.ws22_c00040{word-spacing:6.984000px;}
.ws1c_c00040{word-spacing:8.064000px;}
.wsa_c00040{word-spacing:8.496000px;}
.ws15_c00040{word-spacing:9.648000px;}
.ws1f_c00040{word-spacing:9.792000px;}
.ws8_c00040{word-spacing:10.224000px;}
.ws21_c00040{word-spacing:11.520000px;}
.wsd_c00040{word-spacing:11.880000px;}
.wsb_c00040{word-spacing:12.600000px;}
.ws29_c00040{word-spacing:13.440000px;}
.wsc_c00040{word-spacing:15.912000px;}
.ws17_c00040{word-spacing:16.416000px;}
.ws20_c00040{word-spacing:18.504000px;}
.ws9_c00040{word-spacing:18.864000px;}
.ws16_c00040{word-spacing:21.600000px;}
.ws14_c00040{word-spacing:36.720000px;}
._0_c00040{margin-left:-2755.131600px;}
._1_c00040{margin-left:-5.856000px;}
._4_c00040{margin-left:-2.448000px;}
._2_c00040{margin-left:-1.440000px;}
._3_c00040{width:1.080000px;}
.fc0_c00040{color:rgb(35,31,32);}
.fs2_c00040{font-size:41.976000px;}
.fs0_c00040{font-size:48.000000px;}
.fs3_c00040{font-size:60.000000px;}
.fs1_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y26_c00040{bottom:111.616350px;}
.y25_c00040{bottom:126.616350px;}
.y24_c00040{bottom:141.616350px;}
.y2c_c00040{bottom:164.664000px;}
.y2b_c00040{bottom:183.264000px;}
.y2a_c00040{bottom:201.864000px;}
.y23_c00040{bottom:210.723450px;}
.y22_c00040{bottom:235.473450px;}
.y21_c00040{bottom:260.223450px;}
.y20_c00040{bottom:284.973450px;}
.y1f_c00040{bottom:309.723450px;}
.y1e_c00040{bottom:334.473450px;}
.y1d_c00040{bottom:359.223450px;}
.y1c_c00040{bottom:383.973450px;}
.y1b_c00040{bottom:408.723450px;}
.y1a_c00040{bottom:433.473450px;}
.y19_c00040{bottom:458.223450px;}
.y18_c00040{bottom:482.973450px;}
.y29_c00040{bottom:506.628450px;}
.y17_c00040{bottom:507.723450px;}
.y28_c00040{bottom:525.228450px;}
.y16_c00040{bottom:532.473450px;}
.y27_c00040{bottom:543.828450px;}
.y15_c00040{bottom:557.223450px;}
.y14_c00040{bottom:581.973450px;}
.y13_c00040{bottom:606.723450px;}
.y12_c00040{bottom:631.473450px;}
.y11_c00040{bottom:656.223450px;}
.y10_c00040{bottom:680.973450px;}
.yf_c00040{bottom:705.723450px;}
.ye_c00040{bottom:745.467450px;}
.yd_c00040{bottom:770.217450px;}
.yc_c00040{bottom:794.967450px;}
.yb_c00040{bottom:819.717450px;}
.ya_c00040{bottom:844.467450px;}
.y9_c00040{bottom:869.217450px;}
.y8_c00040{bottom:893.967450px;}
.y7_c00040{bottom:918.717450px;}
.y6_c00040{bottom:943.467450px;}
.y5_c00040{bottom:968.217450px;}
.y4_c00040{bottom:992.967450px;}
.y3_c00040{bottom:1017.717450px;}
.y2_c00040{bottom:1042.467450px;}
.y1_c00040{bottom:1093.601100px;}
.h2_c00040{height:39.264000px;}
.h3_c00040{height:39.984000px;}
.h6_c00040{height:48.600000px;}
.h5_c00040{height:49.080000px;}
.h4_c00040{height:58.896000px;}
.h1_c00040{height:1135.500000px;}
.h0_c00040{height:1135.506150px;}
.w0_c00040{width:893.950200px;}
.w1_c00040{width:894.000000px;}
.x0_c00040{left:0.000000px;}
.x6_c00040{left:128.626800px;}
.x2_c00040{left:188.061900px;}
.x3_c00040{left:190.513350px;}
.x4_c00040{left:532.436250px;}
.x5_c00040{left:548.508450px;}
.x1_c00040{left:806.777700px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.v1_c00040{vertical-align:21.291200pt;}
.ls8_c00040{letter-spacing:-0.640000pt;}
.ls7_c00040{letter-spacing:-0.384000pt;}
.ls6_c00040{letter-spacing:-0.213333pt;}
.ls2_c00040{letter-spacing:-0.128000pt;}
.ls3_c00040{letter-spacing:0.000000pt;}
.ls5_c00040{letter-spacing:0.186560pt;}
.ls4_c00040{letter-spacing:0.256000pt;}
.ls0_c00040{letter-spacing:0.426667pt;}
.ls1_c00040{letter-spacing:0.640000pt;}
.ws1_c00040{word-spacing:-14.784000pt;}
.ws4_c00040{word-spacing:-9.770667pt;}
.ws5_c00040{word-spacing:-9.685333pt;}
.ws0_c00040{word-spacing:-9.557333pt;}
.ws3_c00040{word-spacing:-9.472000pt;}
.ws2_c00040{word-spacing:-8.656384pt;}
.ws24_c00040{word-spacing:-3.328000pt;}
.ws1e_c00040{word-spacing:-3.008000pt;}
.ws23_c00040{word-spacing:-1.408000pt;}
.ws19_c00040{word-spacing:-1.088000pt;}
.wsf_c00040{word-spacing:-0.704000pt;}
.ws10_c00040{word-spacing:-0.256000pt;}
.ws6_c00040{word-spacing:0.000000pt;}
.ws2a_c00040{word-spacing:0.213333pt;}
.ws1b_c00040{word-spacing:0.320000pt;}
.ws2b_c00040{word-spacing:0.640000pt;}
.ws1a_c00040{word-spacing:0.832000pt;}
.ws13_c00040{word-spacing:0.960000pt;}
.ws25_c00040{word-spacing:1.706667pt;}
.ws12_c00040{word-spacing:1.728000pt;}
.ws18_c00040{word-spacing:2.880000pt;}
.ws11_c00040{word-spacing:3.520000pt;}
.ws26_c00040{word-spacing:4.608000pt;}
.ws27_c00040{word-spacing:4.650667pt;}
.ws28_c00040{word-spacing:4.821333pt;}
.ws1d_c00040{word-spacing:5.376000pt;}
.wse_c00040{word-spacing:5.760000pt;}
.ws7_c00040{word-spacing:6.144000pt;}
.ws22_c00040{word-spacing:6.208000pt;}
.ws1c_c00040{word-spacing:7.168000pt;}
.wsa_c00040{word-spacing:7.552000pt;}
.ws15_c00040{word-spacing:8.576000pt;}
.ws1f_c00040{word-spacing:8.704000pt;}
.ws8_c00040{word-spacing:9.088000pt;}
.ws21_c00040{word-spacing:10.240000pt;}
.wsd_c00040{word-spacing:10.560000pt;}
.wsb_c00040{word-spacing:11.200000pt;}
.ws29_c00040{word-spacing:11.946667pt;}
.wsc_c00040{word-spacing:14.144000pt;}
.ws17_c00040{word-spacing:14.592000pt;}
.ws20_c00040{word-spacing:16.448000pt;}
.ws9_c00040{word-spacing:16.768000pt;}
.ws16_c00040{word-spacing:19.200000pt;}
.ws14_c00040{word-spacing:32.640000pt;}
._0_c00040{margin-left:-2449.005867pt;}
._1_c00040{margin-left:-5.205333pt;}
._4_c00040{margin-left:-2.176000pt;}
._2_c00040{margin-left:-1.280000pt;}
._3_c00040{width:0.960000pt;}
.fs2_c00040{font-size:37.312000pt;}
.fs0_c00040{font-size:42.666667pt;}
.fs3_c00040{font-size:53.333333pt;}
.fs1_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y26_c00040{bottom:99.214533pt;}
.y25_c00040{bottom:112.547867pt;}
.y24_c00040{bottom:125.881200pt;}
.y2c_c00040{bottom:146.368000pt;}
.y2b_c00040{bottom:162.901333pt;}
.y2a_c00040{bottom:179.434667pt;}
.y23_c00040{bottom:187.309733pt;}
.y22_c00040{bottom:209.309733pt;}
.y21_c00040{bottom:231.309733pt;}
.y20_c00040{bottom:253.309733pt;}
.y1f_c00040{bottom:275.309733pt;}
.y1e_c00040{bottom:297.309733pt;}
.y1d_c00040{bottom:319.309733pt;}
.y1c_c00040{bottom:341.309733pt;}
.y1b_c00040{bottom:363.309733pt;}
.y1a_c00040{bottom:385.309733pt;}
.y19_c00040{bottom:407.309733pt;}
.y18_c00040{bottom:429.309733pt;}
.y29_c00040{bottom:450.336400pt;}
.y17_c00040{bottom:451.309733pt;}
.y28_c00040{bottom:466.869733pt;}
.y16_c00040{bottom:473.309733pt;}
.y27_c00040{bottom:483.403067pt;}
.y15_c00040{bottom:495.309733pt;}
.y14_c00040{bottom:517.309733pt;}
.y13_c00040{bottom:539.309733pt;}
.y12_c00040{bottom:561.309733pt;}
.y11_c00040{bottom:583.309733pt;}
.y10_c00040{bottom:605.309733pt;}
.yf_c00040{bottom:627.309733pt;}
.ye_c00040{bottom:662.637733pt;}
.yd_c00040{bottom:684.637733pt;}
.yc_c00040{bottom:706.637733pt;}
.yb_c00040{bottom:728.637733pt;}
.ya_c00040{bottom:750.637733pt;}
.y9_c00040{bottom:772.637733pt;}
.y8_c00040{bottom:794.637733pt;}
.y7_c00040{bottom:816.637733pt;}
.y6_c00040{bottom:838.637733pt;}
.y5_c00040{bottom:860.637733pt;}
.y4_c00040{bottom:882.637733pt;}
.y3_c00040{bottom:904.637733pt;}
.y2_c00040{bottom:926.637733pt;}
.y1_c00040{bottom:972.089867pt;}
.h2_c00040{height:34.901333pt;}
.h3_c00040{height:35.541333pt;}
.h6_c00040{height:43.200000pt;}
.h5_c00040{height:43.626667pt;}
.h4_c00040{height:52.352000pt;}
.h1_c00040{height:1009.333333pt;}
.h0_c00040{height:1009.338800pt;}
.w0_c00040{width:794.622400pt;}
.w1_c00040{width:794.666667pt;}
.x0_c00040{left:0.000000pt;}
.x6_c00040{left:114.334933pt;}
.x2_c00040{left:167.166133pt;}
.x3_c00040{left:169.345200pt;}
.x4_c00040{left:473.276667pt;}
.x5_c00040{left:487.563067pt;}
.x1_c00040{left:717.135733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c40e1db666ec1f876ff2ec28.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.v2_c00041{vertical-align:20.877600px;}
.v1_c00041{vertical-align:23.952600px;}
.ls4_c00041{letter-spacing:-1.656000px;}
.ls5_c00041{letter-spacing:-1.152000px;}
.lsb_c00041{letter-spacing:-0.816000px;}
.ls3_c00041{letter-spacing:-0.720000px;}
.lse_c00041{letter-spacing:-0.672000px;}
.ls6_c00041{letter-spacing:-0.587664px;}
.lsc_c00041{letter-spacing:-0.480000px;}
.lsd_c00041{letter-spacing:-0.432000px;}
.lsa_c00041{letter-spacing:-0.336000px;}
.ls8_c00041{letter-spacing:-0.288000px;}
.ls1_c00041{letter-spacing:-0.240000px;}
.ls9_c00041{letter-spacing:-0.192000px;}
.ls2_c00041{letter-spacing:0.000000px;}
.ls7_c00041{letter-spacing:0.288000px;}
.ls0_c00041{letter-spacing:0.360000px;}
.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;}
}
.ws2_c00041{word-spacing:-16.776000px;}
.ws1_c00041{word-spacing:-15.192000px;}
.ws6_c00041{word-spacing:-10.992000px;}
.ws5_c00041{word-spacing:-10.896000px;}
.ws4_c00041{word-spacing:-10.704000px;}
.ws7_c00041{word-spacing:-10.512000px;}
.ws8_c00041{word-spacing:-10.224000px;}
.ws3_c00041{word-spacing:-8.940888px;}
.ws11_c00041{word-spacing:-2.592000px;}
.ws1d_c00041{word-spacing:-1.368000px;}
.ws14_c00041{word-spacing:-0.864000px;}
.wsb_c00041{word-spacing:-0.432000px;}
.wsc_c00041{word-spacing:-0.288000px;}
.ws9_c00041{word-spacing:0.000000px;}
.ws12_c00041{word-spacing:0.144000px;}
.ws23_c00041{word-spacing:0.192000px;}
.ws24_c00041{word-spacing:0.432000px;}
.ws1c_c00041{word-spacing:0.504000px;}
.ws18_c00041{word-spacing:0.576000px;}
.ws16_c00041{word-spacing:0.587664px;}
.ws22_c00041{word-spacing:0.816000px;}
.ws1e_c00041{word-spacing:0.864000px;}
.ws10_c00041{word-spacing:1.656000px;}
.ws1f_c00041{word-spacing:1.776000px;}
.ws13_c00041{word-spacing:1.944000px;}
.ws20_c00041{word-spacing:2.112000px;}
.ws19_c00041{word-spacing:2.304000px;}
.ws17_c00041{word-spacing:2.448000px;}
.ws1a_c00041{word-spacing:2.592000px;}
.ws1b_c00041{word-spacing:2.880000px;}
.wse_c00041{word-spacing:3.168000px;}
.wsa_c00041{word-spacing:3.528000px;}
.wsd_c00041{word-spacing:3.816000px;}
.ws15_c00041{word-spacing:4.392000px;}
.ws25_c00041{word-spacing:5.952000px;}
.wsf_c00041{word-spacing:6.696000px;}
.ws21_c00041{word-spacing:10.368000px;}
.ws0_c00041{word-spacing:1595.659200px;}
._6_c00041{margin-left:-7.368000px;}
._3_c00041{margin-left:-5.688000px;}
._7_c00041{margin-left:-4.496400px;}
._5_c00041{margin-left:-3.432000px;}
._0_c00041{margin-left:-2.112000px;}
._1_c00041{margin-left:-1.104000px;}
._2_c00041{width:1.200000px;}
._4_c00041{width:2.352000px;}
.fc0_c00041{color:rgb(35,31,32);}
.fs4_c00041{font-size:36.729000px;}
.fs2_c00041{font-size:41.976000px;}
.fs0_c00041{font-size:48.000000px;}
.fs3_c00041{font-size:63.000000px;}
.fs1_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y25_c00041{bottom:111.612300px;}
.y24_c00041{bottom:135.116250px;}
.y23_c00041{bottom:158.624250px;}
.y22_c00041{bottom:173.624250px;}
.y21_c00041{bottom:220.709700px;}
.y20_c00041{bottom:245.459700px;}
.y1f_c00041{bottom:270.209700px;}
.y1e_c00041{bottom:294.965700px;}
.y1d_c00041{bottom:319.715700px;}
.y1c_c00041{bottom:359.459700px;}
.y1b_c00041{bottom:384.209700px;}
.y1a_c00041{bottom:408.959700px;}
.y19_c00041{bottom:448.734900px;}
.y18_c00041{bottom:469.729650px;}
.y17_c00041{bottom:490.724400px;}
.y16_c00041{bottom:520.224150px;}
.y15_c00041{bottom:541.218900px;}
.y14_c00041{bottom:562.213650px;}
.y13_c00041{bottom:591.717450px;}
.y12_c00041{bottom:616.467450px;}
.y11_c00041{bottom:641.217450px;}
.y10_c00041{bottom:680.973450px;}
.yf_c00041{bottom:705.723450px;}
.ye_c00041{bottom:730.473450px;}
.yd_c00041{bottom:755.223450px;}
.yc_c00041{bottom:779.973450px;}
.yb_c00041{bottom:804.723450px;}
.ya_c00041{bottom:829.473450px;}
.y9_c00041{bottom:854.223450px;}
.y8_c00041{bottom:893.967450px;}
.y7_c00041{bottom:918.717450px;}
.y6_c00041{bottom:943.467450px;}
.y5_c00041{bottom:968.217450px;}
.y4_c00041{bottom:992.967450px;}
.y3_c00041{bottom:1017.717450px;}
.y2_c00041{bottom:1042.467450px;}
.y1_c00041{bottom:1093.601100px;}
.h2_c00041{height:39.264000px;}
.h5_c00041{height:39.280200px;}
.h4_c00041{height:51.534000px;}
.h3_c00041{height:58.896000px;}
.h1_c00041{height:1135.500000px;}
.h0_c00041{height:1135.506150px;}
.w0_c00041{width:893.950200px;}
.w1_c00041{width:894.000000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:77.603100px;}
.x3_c00041{left:94.611000px;}
.x2_c00041{left:98.862900px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.v2_c00041{vertical-align:18.557867pt;}
.v1_c00041{vertical-align:21.291200pt;}
.ls4_c00041{letter-spacing:-1.472000pt;}
.ls5_c00041{letter-spacing:-1.024000pt;}
.lsb_c00041{letter-spacing:-0.725333pt;}
.ls3_c00041{letter-spacing:-0.640000pt;}
.lse_c00041{letter-spacing:-0.597333pt;}
.ls6_c00041{letter-spacing:-0.522368pt;}
.lsc_c00041{letter-spacing:-0.426667pt;}
.lsd_c00041{letter-spacing:-0.384000pt;}
.lsa_c00041{letter-spacing:-0.298667pt;}
.ls8_c00041{letter-spacing:-0.256000pt;}
.ls1_c00041{letter-spacing:-0.213333pt;}
.ls9_c00041{letter-spacing:-0.170667pt;}
.ls2_c00041{letter-spacing:0.000000pt;}
.ls7_c00041{letter-spacing:0.256000pt;}
.ls0_c00041{letter-spacing:0.320000pt;}
.ws2_c00041{word-spacing:-14.912000pt;}
.ws1_c00041{word-spacing:-13.504000pt;}
.ws6_c00041{word-spacing:-9.770667pt;}
.ws5_c00041{word-spacing:-9.685333pt;}
.ws4_c00041{word-spacing:-9.514667pt;}
.ws7_c00041{word-spacing:-9.344000pt;}
.ws8_c00041{word-spacing:-9.088000pt;}
.ws3_c00041{word-spacing:-7.947456pt;}
.ws11_c00041{word-spacing:-2.304000pt;}
.ws1d_c00041{word-spacing:-1.216000pt;}
.ws14_c00041{word-spacing:-0.768000pt;}
.wsb_c00041{word-spacing:-0.384000pt;}
.wsc_c00041{word-spacing:-0.256000pt;}
.ws9_c00041{word-spacing:0.000000pt;}
.ws12_c00041{word-spacing:0.128000pt;}
.ws23_c00041{word-spacing:0.170667pt;}
.ws24_c00041{word-spacing:0.384000pt;}
.ws1c_c00041{word-spacing:0.448000pt;}
.ws18_c00041{word-spacing:0.512000pt;}
.ws16_c00041{word-spacing:0.522368pt;}
.ws22_c00041{word-spacing:0.725333pt;}
.ws1e_c00041{word-spacing:0.768000pt;}
.ws10_c00041{word-spacing:1.472000pt;}
.ws1f_c00041{word-spacing:1.578667pt;}
.ws13_c00041{word-spacing:1.728000pt;}
.ws20_c00041{word-spacing:1.877333pt;}
.ws19_c00041{word-spacing:2.048000pt;}
.ws17_c00041{word-spacing:2.176000pt;}
.ws1a_c00041{word-spacing:2.304000pt;}
.ws1b_c00041{word-spacing:2.560000pt;}
.wse_c00041{word-spacing:2.816000pt;}
.wsa_c00041{word-spacing:3.136000pt;}
.wsd_c00041{word-spacing:3.392000pt;}
.ws15_c00041{word-spacing:3.904000pt;}
.ws25_c00041{word-spacing:5.290667pt;}
.wsf_c00041{word-spacing:5.952000pt;}
.ws21_c00041{word-spacing:9.216000pt;}
.ws0_c00041{word-spacing:1418.363733pt;}
._6_c00041{margin-left:-6.549333pt;}
._3_c00041{margin-left:-5.056000pt;}
._7_c00041{margin-left:-3.996800pt;}
._5_c00041{margin-left:-3.050667pt;}
._0_c00041{margin-left:-1.877333pt;}
._1_c00041{margin-left:-0.981333pt;}
._2_c00041{width:1.066667pt;}
._4_c00041{width:2.090667pt;}
.fs4_c00041{font-size:32.648000pt;}
.fs2_c00041{font-size:37.312000pt;}
.fs0_c00041{font-size:42.666667pt;}
.fs3_c00041{font-size:56.000000pt;}
.fs1_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y25_c00041{bottom:99.210933pt;}
.y24_c00041{bottom:120.103333pt;}
.y23_c00041{bottom:140.999333pt;}
.y22_c00041{bottom:154.332667pt;}
.y21_c00041{bottom:196.186400pt;}
.y20_c00041{bottom:218.186400pt;}
.y1f_c00041{bottom:240.186400pt;}
.y1e_c00041{bottom:262.191733pt;}
.y1d_c00041{bottom:284.191733pt;}
.y1c_c00041{bottom:319.519733pt;}
.y1b_c00041{bottom:341.519733pt;}
.y1a_c00041{bottom:363.519733pt;}
.y19_c00041{bottom:398.875467pt;}
.y18_c00041{bottom:417.537467pt;}
.y17_c00041{bottom:436.199467pt;}
.y16_c00041{bottom:462.421467pt;}
.y15_c00041{bottom:481.083467pt;}
.y14_c00041{bottom:499.745467pt;}
.y13_c00041{bottom:525.971067pt;}
.y12_c00041{bottom:547.971067pt;}
.y11_c00041{bottom:569.971067pt;}
.y10_c00041{bottom:605.309733pt;}
.yf_c00041{bottom:627.309733pt;}
.ye_c00041{bottom:649.309733pt;}
.yd_c00041{bottom:671.309733pt;}
.yc_c00041{bottom:693.309733pt;}
.yb_c00041{bottom:715.309733pt;}
.ya_c00041{bottom:737.309733pt;}
.y9_c00041{bottom:759.309733pt;}
.y8_c00041{bottom:794.637733pt;}
.y7_c00041{bottom:816.637733pt;}
.y6_c00041{bottom:838.637733pt;}
.y5_c00041{bottom:860.637733pt;}
.y4_c00041{bottom:882.637733pt;}
.y3_c00041{bottom:904.637733pt;}
.y2_c00041{bottom:926.637733pt;}
.y1_c00041{bottom:972.089867pt;}
.h2_c00041{height:34.901333pt;}
.h5_c00041{height:34.915733pt;}
.h4_c00041{height:45.808000pt;}
.h3_c00041{height:52.352000pt;}
.h1_c00041{height:1009.333333pt;}
.h0_c00041{height:1009.338800pt;}
.w0_c00041{width:794.622400pt;}
.w1_c00041{width:794.666667pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:68.980533pt;}
.x3_c00041{left:84.098667pt;}
.x2_c00041{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd6b2354e7a864cb0f379a90.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.082000;font-style:normal;font-weight:normal;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_389c659af1473a793d687fb4.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.067000;font-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_c00042{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:23.976000px;}
.ls5_c00042{letter-spacing:-1.368000px;}
.ls6_c00042{letter-spacing:-1.008000px;}
.lsa_c00042{letter-spacing:-0.420000px;}
.ls7_c00042{letter-spacing:-0.360000px;}
.ls9_c00042{letter-spacing:-0.192000px;}
.ls4_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:0.029400px;}
.ls8_c00042{letter-spacing:0.209880px;}
.ls2_c00042{letter-spacing:0.360000px;}
.ls0_c00042{letter-spacing:0.480000px;}
.ls3_c00042{letter-spacing:0.960000px;}
.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;}
}
.ws1_c00042{word-spacing:-14.976000px;}
.ws6_c00042{word-spacing:-13.320000px;}
.ws0_c00042{word-spacing:-11.856000px;}
.ws4_c00042{word-spacing:-11.376000px;}
.ws5_c00042{word-spacing:-10.992000px;}
.ws3_c00042{word-spacing:-10.896000px;}
.ws2_c00042{word-spacing:-9.738432px;}
.ws1e_c00042{word-spacing:-3.816000px;}
.ws17_c00042{word-spacing:-2.952000px;}
.ws21_c00042{word-spacing:-1.800000px;}
.ws1c_c00042{word-spacing:-1.440000px;}
.ws20_c00042{word-spacing:-1.008000px;}
.ws22_c00042{word-spacing:-0.936000px;}
.ws1a_c00042{word-spacing:-0.360000px;}
.ws7_c00042{word-spacing:0.000000px;}
.ws9_c00042{word-spacing:0.936000px;}
.ws23_c00042{word-spacing:1.296000px;}
.ws25_c00042{word-spacing:1.488000px;}
.ws19_c00042{word-spacing:1.872000px;}
.ws13_c00042{word-spacing:1.944000px;}
.ws12_c00042{word-spacing:2.088000px;}
.ws1d_c00042{word-spacing:2.304000px;}
.wse_c00042{word-spacing:2.448000px;}
.ws24_c00042{word-spacing:2.592000px;}
.wsc_c00042{word-spacing:2.880000px;}
.ws1b_c00042{word-spacing:3.240000px;}
.wsa_c00042{word-spacing:3.600000px;}
.ws1f_c00042{word-spacing:5.328000px;}
.ws8_c00042{word-spacing:5.472000px;}
.wsb_c00042{word-spacing:5.688000px;}
.ws14_c00042{word-spacing:7.416000px;}
.ws15_c00042{word-spacing:7.704000px;}
.ws18_c00042{word-spacing:7.776000px;}
.wsf_c00042{word-spacing:9.648000px;}
.ws11_c00042{word-spacing:11.232000px;}
.ws16_c00042{word-spacing:14.112000px;}
.wsd_c00042{word-spacing:14.400000px;}
.ws10_c00042{word-spacing:15.480000px;}
._0_c00042{margin-left:-2756.236200px;}
._1_c00042{margin-left:-5.856000px;}
._5_c00042{margin-left:-4.680000px;}
._4_c00042{margin-left:-2.880000px;}
._2_c00042{margin-left:-1.440000px;}
._3_c00042{width:1.368000px;}
._6_c00042{width:2.592000px;}
._7_c00042{width:6.783000px;}
.fc0_c00042{color:rgb(35,31,32);}
.fs2_c00042{font-size:41.976000px;}
.fs0_c00042{font-size:48.000000px;}
.fs3_c00042{font-size:60.000000px;}
.fs1_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y24_c00042{bottom:111.616350px;}
.y23_c00042{bottom:126.612300px;}
.y22_c00042{bottom:150.120300px;}
.y21_c00042{bottom:230.223450px;}
.y20_c00042{bottom:254.973450px;}
.y1f_c00042{bottom:279.723450px;}
.y1e_c00042{bottom:304.473450px;}
.y1d_c00042{bottom:329.223450px;}
.y1c_c00042{bottom:368.967450px;}
.y28_c00042{bottom:375.567000px;}
.y1b_c00042{bottom:393.717450px;}
.y27_c00042{bottom:394.167000px;}
.y26_c00042{bottom:412.767000px;}
.y1a_c00042{bottom:418.473450px;}
.y25_c00042{bottom:431.367000px;}
.y19_c00042{bottom:443.223450px;}
.y18_c00042{bottom:467.973450px;}
.y17_c00042{bottom:492.723450px;}
.y16_c00042{bottom:532.467450px;}
.y15_c00042{bottom:557.217450px;}
.y14_c00042{bottom:581.967450px;}
.y13_c00042{bottom:606.717450px;}
.y12_c00042{bottom:631.467450px;}
.y11_c00042{bottom:656.217450px;}
.y10_c00042{bottom:680.967450px;}
.yf_c00042{bottom:705.717450px;}
.ye_c00042{bottom:730.467450px;}
.yd_c00042{bottom:755.217450px;}
.yc_c00042{bottom:779.967450px;}
.yb_c00042{bottom:804.717450px;}
.ya_c00042{bottom:829.467450px;}
.y9_c00042{bottom:854.217450px;}
.y8_c00042{bottom:878.967450px;}
.y7_c00042{bottom:918.717450px;}
.y6_c00042{bottom:943.467450px;}
.y5_c00042{bottom:968.217450px;}
.y4_c00042{bottom:992.967450px;}
.y3_c00042{bottom:1017.717450px;}
.y2_c00042{bottom:1042.467450px;}
.y1_c00042{bottom:1093.601100px;}
.h2_c00042{height:39.264000px;}
.h5_c00042{height:39.280200px;}
.h3_c00042{height:39.984000px;}
.h7_c00042{height:48.600000px;}
.h6_c00042{height:49.080000px;}
.h4_c00042{height:58.896000px;}
.h1_c00042{height:1135.500000px;}
.h0_c00042{height:1135.506150px;}
.w0_c00042{width:893.950200px;}
.w1_c00042{width:894.000000px;}
.x0_c00042{left:0.000000px;}
.x4_c00042{left:128.626800px;}
.x5_c00042{left:145.634100px;}
.x2_c00042{left:188.061900px;}
.x3_c00042{left:190.513350px;}
.x6_c00042{left:490.261500px;}
.x1_c00042{left:807.293850px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:21.312000pt;}
.ls5_c00042{letter-spacing:-1.216000pt;}
.ls6_c00042{letter-spacing:-0.896000pt;}
.lsa_c00042{letter-spacing:-0.373333pt;}
.ls7_c00042{letter-spacing:-0.320000pt;}
.ls9_c00042{letter-spacing:-0.170667pt;}
.ls4_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:0.026133pt;}
.ls8_c00042{letter-spacing:0.186560pt;}
.ls2_c00042{letter-spacing:0.320000pt;}
.ls0_c00042{letter-spacing:0.426667pt;}
.ls3_c00042{letter-spacing:0.853333pt;}
.ws1_c00042{word-spacing:-13.312000pt;}
.ws6_c00042{word-spacing:-11.840000pt;}
.ws0_c00042{word-spacing:-10.538667pt;}
.ws4_c00042{word-spacing:-10.112000pt;}
.ws5_c00042{word-spacing:-9.770667pt;}
.ws3_c00042{word-spacing:-9.685333pt;}
.ws2_c00042{word-spacing:-8.656384pt;}
.ws1e_c00042{word-spacing:-3.392000pt;}
.ws17_c00042{word-spacing:-2.624000pt;}
.ws21_c00042{word-spacing:-1.600000pt;}
.ws1c_c00042{word-spacing:-1.280000pt;}
.ws20_c00042{word-spacing:-0.896000pt;}
.ws22_c00042{word-spacing:-0.832000pt;}
.ws1a_c00042{word-spacing:-0.320000pt;}
.ws7_c00042{word-spacing:0.000000pt;}
.ws9_c00042{word-spacing:0.832000pt;}
.ws23_c00042{word-spacing:1.152000pt;}
.ws25_c00042{word-spacing:1.322667pt;}
.ws19_c00042{word-spacing:1.664000pt;}
.ws13_c00042{word-spacing:1.728000pt;}
.ws12_c00042{word-spacing:1.856000pt;}
.ws1d_c00042{word-spacing:2.048000pt;}
.wse_c00042{word-spacing:2.176000pt;}
.ws24_c00042{word-spacing:2.304000pt;}
.wsc_c00042{word-spacing:2.560000pt;}
.ws1b_c00042{word-spacing:2.880000pt;}
.wsa_c00042{word-spacing:3.200000pt;}
.ws1f_c00042{word-spacing:4.736000pt;}
.ws8_c00042{word-spacing:4.864000pt;}
.wsb_c00042{word-spacing:5.056000pt;}
.ws14_c00042{word-spacing:6.592000pt;}
.ws15_c00042{word-spacing:6.848000pt;}
.ws18_c00042{word-spacing:6.912000pt;}
.wsf_c00042{word-spacing:8.576000pt;}
.ws11_c00042{word-spacing:9.984000pt;}
.ws16_c00042{word-spacing:12.544000pt;}
.wsd_c00042{word-spacing:12.800000pt;}
.ws10_c00042{word-spacing:13.760000pt;}
._0_c00042{margin-left:-2449.987733pt;}
._1_c00042{margin-left:-5.205333pt;}
._5_c00042{margin-left:-4.160000pt;}
._4_c00042{margin-left:-2.560000pt;}
._2_c00042{margin-left:-1.280000pt;}
._3_c00042{width:1.216000pt;}
._6_c00042{width:2.304000pt;}
._7_c00042{width:6.029333pt;}
.fs2_c00042{font-size:37.312000pt;}
.fs0_c00042{font-size:42.666667pt;}
.fs3_c00042{font-size:53.333333pt;}
.fs1_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y24_c00042{bottom:99.214533pt;}
.y23_c00042{bottom:112.544267pt;}
.y22_c00042{bottom:133.440267pt;}
.y21_c00042{bottom:204.643067pt;}
.y20_c00042{bottom:226.643067pt;}
.y1f_c00042{bottom:248.643067pt;}
.y1e_c00042{bottom:270.643067pt;}
.y1d_c00042{bottom:292.643067pt;}
.y1c_c00042{bottom:327.971067pt;}
.y28_c00042{bottom:333.837333pt;}
.y1b_c00042{bottom:349.971067pt;}
.y27_c00042{bottom:350.370667pt;}
.y26_c00042{bottom:366.904000pt;}
.y1a_c00042{bottom:371.976400pt;}
.y25_c00042{bottom:383.437333pt;}
.y19_c00042{bottom:393.976400pt;}
.y18_c00042{bottom:415.976400pt;}
.y17_c00042{bottom:437.976400pt;}
.y16_c00042{bottom:473.304400pt;}
.y15_c00042{bottom:495.304400pt;}
.y14_c00042{bottom:517.304400pt;}
.y13_c00042{bottom:539.304400pt;}
.y12_c00042{bottom:561.304400pt;}
.y11_c00042{bottom:583.304400pt;}
.y10_c00042{bottom:605.304400pt;}
.yf_c00042{bottom:627.304400pt;}
.ye_c00042{bottom:649.304400pt;}
.yd_c00042{bottom:671.304400pt;}
.yc_c00042{bottom:693.304400pt;}
.yb_c00042{bottom:715.304400pt;}
.ya_c00042{bottom:737.304400pt;}
.y9_c00042{bottom:759.304400pt;}
.y8_c00042{bottom:781.304400pt;}
.y7_c00042{bottom:816.637733pt;}
.y6_c00042{bottom:838.637733pt;}
.y5_c00042{bottom:860.637733pt;}
.y4_c00042{bottom:882.637733pt;}
.y3_c00042{bottom:904.637733pt;}
.y2_c00042{bottom:926.637733pt;}
.y1_c00042{bottom:972.089867pt;}
.h2_c00042{height:34.901333pt;}
.h5_c00042{height:34.915733pt;}
.h3_c00042{height:35.541333pt;}
.h7_c00042{height:43.200000pt;}
.h6_c00042{height:43.626667pt;}
.h4_c00042{height:52.352000pt;}
.h1_c00042{height:1009.333333pt;}
.h0_c00042{height:1009.338800pt;}
.w0_c00042{width:794.622400pt;}
.w1_c00042{width:794.666667pt;}
.x0_c00042{left:0.000000pt;}
.x4_c00042{left:114.334933pt;}
.x5_c00042{left:129.452533pt;}
.x2_c00042{left:167.166133pt;}
.x3_c00042{left:169.345200pt;}
.x6_c00042{left:435.788000pt;}
.x1_c00042{left:717.594533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e31b44a7e87b7e5a26f18ca.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_1fe38515d79b40c0b8cd4e4c.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.v1_c00043{vertical-align:23.976600px;}
.lsc_c00043{letter-spacing:-4.800000px;}
.lse_c00043{letter-spacing:-1.872000px;}
.ls9_c00043{letter-spacing:-1.224000px;}
.lsf_c00043{letter-spacing:-0.960000px;}
.ls7_c00043{letter-spacing:-0.936000px;}
.lsa_c00043{letter-spacing:-0.624000px;}
.lsd_c00043{letter-spacing:-0.576000px;}
.ls6_c00043{letter-spacing:-0.545688px;}
.ls5_c00043{letter-spacing:-0.288000px;}
.lsb_c00043{letter-spacing:-0.192000px;}
.ls8_c00043{letter-spacing:-0.167904px;}
.ls4_c00043{letter-spacing:0.000000px;}
.ls1_c00043{letter-spacing:0.009000px;}
.ls3_c00043{letter-spacing:0.288000px;}
.ls0_c00043{letter-spacing:6.696000px;}
.ls2_c00043{letter-spacing:10.528200px;}
.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;}
}
.ws2_c00043{word-spacing:-15.552000px;}
.wsb_c00043{word-spacing:-12.780000px;}
.ws9_c00043{word-spacing:-10.896000px;}
.ws6_c00043{word-spacing:-10.704000px;}
.ws8_c00043{word-spacing:-10.320000px;}
.ws5_c00043{word-spacing:-10.272000px;}
.ws4_c00043{word-spacing:-9.528552px;}
.ws3_c00043{word-spacing:-9.360648px;}
.wsa_c00043{word-spacing:-9.120000px;}
.ws1_c00043{word-spacing:-8.982864px;}
.ws7_c00043{word-spacing:-6.096000px;}
.ws15_c00043{word-spacing:-1.584000px;}
.ws13_c00043{word-spacing:-0.072000px;}
.wsc_c00043{word-spacing:0.000000px;}
.wsd_c00043{word-spacing:0.288000px;}
.ws1c_c00043{word-spacing:0.504000px;}
.ws11_c00043{word-spacing:0.576000px;}
.ws1f_c00043{word-spacing:1.008000px;}
.ws12_c00043{word-spacing:1.080000px;}
.ws1e_c00043{word-spacing:1.584000px;}
.ws1d_c00043{word-spacing:2.160000px;}
.ws14_c00043{word-spacing:2.376000px;}
.ws1b_c00043{word-spacing:3.240000px;}
.ws1a_c00043{word-spacing:3.744000px;}
.wsf_c00043{word-spacing:4.176000px;}
.ws16_c00043{word-spacing:5.472000px;}
.ws10_c00043{word-spacing:5.688000px;}
.wse_c00043{word-spacing:6.696000px;}
.ws17_c00043{word-spacing:6.768000px;}
.ws19_c00043{word-spacing:7.560000px;}
.ws18_c00043{word-spacing:9.576000px;}
.ws0_c00043{word-spacing:1598.107200px;}
._3_c00043{margin-left:-7.056000px;}
._6_c00043{margin-left:-4.440000px;}
._5_c00043{margin-left:-3.168000px;}
._0_c00043{margin-left:-2.112000px;}
._1_c00043{margin-left:-1.104000px;}
._4_c00043{width:1.296000px;}
._7_c00043{width:3.366000px;}
._8_c00043{width:4.800000px;}
._2_c00043{width:6.984000px;}
.fc0_c00043{color:rgb(35,31,32);}
.fs2_c00043{font-size:41.976000px;}
.fs0_c00043{font-size:48.000000px;}
.fs3_c00043{font-size:60.000000px;}
.fs1_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y18_c00043{bottom:111.616350px;}
.y17_c00043{bottom:126.616350px;}
.y16_c00043{bottom:141.616350px;}
.y15_c00043{bottom:156.612300px;}
.y14_c00043{bottom:180.116250px;}
.y13_c00043{bottom:203.624250px;}
.y12_c00043{bottom:247.473450px;}
.y11_c00043{bottom:272.223450px;}
.y10_c00043{bottom:296.973450px;}
.yf_c00043{bottom:321.723450px;}
.ye_c00043{bottom:346.473450px;}
.yd_c00043{bottom:371.223450px;}
.yc_c00043{bottom:395.973450px;}
.yb_c00043{bottom:420.723450px;}
.ya_c00043{bottom:460.467450px;}
.y9_c00043{bottom:485.217450px;}
.y8_c00043{bottom:509.973450px;}
.y7_c00043{bottom:534.723450px;}
.y6_c00043{bottom:574.467450px;}
.y5_c00043{bottom:599.217450px;}
.y4_c00043{bottom:623.967450px;}
.y3_c00043{bottom:648.717450px;}
.y2_c00043{bottom:673.467450px;}
.y1b_c00043{bottom:719.694450px;}
.y1a_c00043{bottom:738.294450px;}
.y19_c00043{bottom:756.894450px;}
.y1_c00043{bottom:1093.601100px;}
.h2_c00043{height:39.264000px;}
.h4_c00043{height:39.280200px;}
.h6_c00043{height:48.600000px;}
.h5_c00043{height:49.080000px;}
.h3_c00043{height:58.896000px;}
.h1_c00043{height:1135.500000px;}
.h0_c00043{height:1135.506150px;}
.w0_c00043{width:893.950200px;}
.w1_c00043{width:894.000000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:77.603100px;}
.x2_c00043{left:94.611150px;}
.x3_c00043{left:304.488150px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.v1_c00043{vertical-align:21.312533pt;}
.lsc_c00043{letter-spacing:-4.266667pt;}
.lse_c00043{letter-spacing:-1.664000pt;}
.ls9_c00043{letter-spacing:-1.088000pt;}
.lsf_c00043{letter-spacing:-0.853333pt;}
.ls7_c00043{letter-spacing:-0.832000pt;}
.lsa_c00043{letter-spacing:-0.554667pt;}
.lsd_c00043{letter-spacing:-0.512000pt;}
.ls6_c00043{letter-spacing:-0.485056pt;}
.ls5_c00043{letter-spacing:-0.256000pt;}
.lsb_c00043{letter-spacing:-0.170667pt;}
.ls8_c00043{letter-spacing:-0.149248pt;}
.ls4_c00043{letter-spacing:0.000000pt;}
.ls1_c00043{letter-spacing:0.008000pt;}
.ls3_c00043{letter-spacing:0.256000pt;}
.ls0_c00043{letter-spacing:5.952000pt;}
.ls2_c00043{letter-spacing:9.358400pt;}
.ws2_c00043{word-spacing:-13.824000pt;}
.wsb_c00043{word-spacing:-11.360000pt;}
.ws9_c00043{word-spacing:-9.685333pt;}
.ws6_c00043{word-spacing:-9.514667pt;}
.ws8_c00043{word-spacing:-9.173333pt;}
.ws5_c00043{word-spacing:-9.130667pt;}
.ws4_c00043{word-spacing:-8.469824pt;}
.ws3_c00043{word-spacing:-8.320576pt;}
.wsa_c00043{word-spacing:-8.106667pt;}
.ws1_c00043{word-spacing:-7.984768pt;}
.ws7_c00043{word-spacing:-5.418667pt;}
.ws15_c00043{word-spacing:-1.408000pt;}
.ws13_c00043{word-spacing:-0.064000pt;}
.wsc_c00043{word-spacing:0.000000pt;}
.wsd_c00043{word-spacing:0.256000pt;}
.ws1c_c00043{word-spacing:0.448000pt;}
.ws11_c00043{word-spacing:0.512000pt;}
.ws1f_c00043{word-spacing:0.896000pt;}
.ws12_c00043{word-spacing:0.960000pt;}
.ws1e_c00043{word-spacing:1.408000pt;}
.ws1d_c00043{word-spacing:1.920000pt;}
.ws14_c00043{word-spacing:2.112000pt;}
.ws1b_c00043{word-spacing:2.880000pt;}
.ws1a_c00043{word-spacing:3.328000pt;}
.wsf_c00043{word-spacing:3.712000pt;}
.ws16_c00043{word-spacing:4.864000pt;}
.ws10_c00043{word-spacing:5.056000pt;}
.wse_c00043{word-spacing:5.952000pt;}
.ws17_c00043{word-spacing:6.016000pt;}
.ws19_c00043{word-spacing:6.720000pt;}
.ws18_c00043{word-spacing:8.512000pt;}
.ws0_c00043{word-spacing:1420.539733pt;}
._3_c00043{margin-left:-6.272000pt;}
._6_c00043{margin-left:-3.946667pt;}
._5_c00043{margin-left:-2.816000pt;}
._0_c00043{margin-left:-1.877333pt;}
._1_c00043{margin-left:-0.981333pt;}
._4_c00043{width:1.152000pt;}
._7_c00043{width:2.992000pt;}
._8_c00043{width:4.266667pt;}
._2_c00043{width:6.208000pt;}
.fs2_c00043{font-size:37.312000pt;}
.fs0_c00043{font-size:42.666667pt;}
.fs3_c00043{font-size:53.333333pt;}
.fs1_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y18_c00043{bottom:99.214533pt;}
.y17_c00043{bottom:112.547867pt;}
.y16_c00043{bottom:125.881200pt;}
.y15_c00043{bottom:139.210933pt;}
.y14_c00043{bottom:160.103333pt;}
.y13_c00043{bottom:180.999333pt;}
.y12_c00043{bottom:219.976400pt;}
.y11_c00043{bottom:241.976400pt;}
.y10_c00043{bottom:263.976400pt;}
.yf_c00043{bottom:285.976400pt;}
.ye_c00043{bottom:307.976400pt;}
.yd_c00043{bottom:329.976400pt;}
.yc_c00043{bottom:351.976400pt;}
.yb_c00043{bottom:373.976400pt;}
.ya_c00043{bottom:409.304400pt;}
.y9_c00043{bottom:431.304400pt;}
.y8_c00043{bottom:453.309733pt;}
.y7_c00043{bottom:475.309733pt;}
.y6_c00043{bottom:510.637733pt;}
.y5_c00043{bottom:532.637733pt;}
.y4_c00043{bottom:554.637733pt;}
.y3_c00043{bottom:576.637733pt;}
.y2_c00043{bottom:598.637733pt;}
.y1b_c00043{bottom:639.728400pt;}
.y1a_c00043{bottom:656.261733pt;}
.y19_c00043{bottom:672.795067pt;}
.y1_c00043{bottom:972.089867pt;}
.h2_c00043{height:34.901333pt;}
.h4_c00043{height:34.915733pt;}
.h6_c00043{height:43.200000pt;}
.h5_c00043{height:43.626667pt;}
.h3_c00043{height:52.352000pt;}
.h1_c00043{height:1009.333333pt;}
.h0_c00043{height:1009.338800pt;}
.w0_c00043{width:794.622400pt;}
.w1_c00043{width:794.666667pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:68.980533pt;}
.x2_c00043{left:84.098800pt;}
.x3_c00043{left:270.656133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_225096134f5bc64199129fa1.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.067000;font-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_c00044{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:20.937600px;}
.v2_c00044{vertical-align:23.976000px;}
.lsb_c00044{letter-spacing:-2.784000px;}
.ls9_c00044{letter-spacing:-0.720000px;}
.ls8_c00044{letter-spacing:-0.576000px;}
.lse_c00044{letter-spacing:-0.336000px;}
.lsd_c00044{letter-spacing:-0.240000px;}
.lsc_c00044{letter-spacing:-0.144000px;}
.ls4_c00044{letter-spacing:0.000000px;}
.ls5_c00044{letter-spacing:0.146916px;}
.ls7_c00044{letter-spacing:0.209880px;}
.ls6_c00044{letter-spacing:0.293832px;}
.ls2_c00044{letter-spacing:0.360000px;}
.ls0_c00044{letter-spacing:0.480000px;}
.ls1_c00044{letter-spacing:0.720000px;}
.lsa_c00044{letter-spacing:0.839520px;}
.ls3_c00044{letter-spacing:5.584800px;}
.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;}
}
.ws4_c00044{word-spacing:-16.704000px;}
.ws5_c00044{word-spacing:-15.912000px;}
.ws0_c00044{word-spacing:-10.896000px;}
.ws8_c00044{word-spacing:-10.752000px;}
.ws9_c00044{word-spacing:-10.656000px;}
.wsa_c00044{word-spacing:-10.560000px;}
.ws6_c00044{word-spacing:-10.368072px;}
.ws2_c00044{word-spacing:-9.822384px;}
.ws3_c00044{word-spacing:-9.738432px;}
.ws1_c00044{word-spacing:-8.484399px;}
.ws7_c00044{word-spacing:-8.112000px;}
.ws19_c00044{word-spacing:-3.312000px;}
.ws1d_c00044{word-spacing:-3.096000px;}
.ws1a_c00044{word-spacing:-2.592000px;}
.ws26_c00044{word-spacing:-2.352000px;}
.ws20_c00044{word-spacing:-2.304000px;}
.ws18_c00044{word-spacing:-2.016000px;}
.wsf_c00044{word-spacing:-1.827000px;}
.ws13_c00044{word-spacing:-1.152000px;}
.wsd_c00044{word-spacing:-1.080000px;}
.ws25_c00044{word-spacing:-0.816000px;}
.ws12_c00044{word-spacing:-0.576000px;}
.wsb_c00044{word-spacing:0.000000px;}
.ws1c_c00044{word-spacing:0.216000px;}
.ws27_c00044{word-spacing:0.336000px;}
.ws14_c00044{word-spacing:0.360000px;}
.wse_c00044{word-spacing:0.756000px;}
.ws21_c00044{word-spacing:0.864000px;}
.ws15_c00044{word-spacing:1.080000px;}
.ws23_c00044{word-spacing:1.224000px;}
.ws10_c00044{word-spacing:1.512000px;}
.ws22_c00044{word-spacing:1.584000px;}
.ws1e_c00044{word-spacing:1.656000px;}
.wsc_c00044{word-spacing:2.304000px;}
.ws1f_c00044{word-spacing:3.024000px;}
.ws16_c00044{word-spacing:3.240000px;}
.ws24_c00044{word-spacing:3.504000px;}
.ws1b_c00044{word-spacing:4.608000px;}
.ws11_c00044{word-spacing:6.048000px;}
.ws17_c00044{word-spacing:6.696000px;}
._0_c00044{margin-left:-2755.276200px;}
._3_c00044{margin-left:-7.056000px;}
._1_c00044{margin-left:-5.856000px;}
._5_c00044{margin-left:-3.024000px;}
._2_c00044{margin-left:-1.440000px;}
._4_c00044{width:1.008000px;}
._6_c00044{width:2.304000px;}
._7_c00044{width:4.335600px;}
.fc0_c00044{color:rgb(35,31,32);}
.fs3_c00044{font-size:36.729000px;}
.fs4_c00044{font-size:41.976000px;}
.fs0_c00044{font-size:48.000000px;}
.fs2_c00044{font-size:63.000000px;}
.fs1_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y24_c00044{bottom:111.612300px;}
.y23_c00044{bottom:135.116250px;}
.y22_c00044{bottom:158.624250px;}
.y21_c00044{bottom:173.620200px;}
.y20_c00044{bottom:197.128200px;}
.y1f_c00044{bottom:267.481500px;}
.y1e_c00044{bottom:292.231500px;}
.y1d_c00044{bottom:316.981500px;}
.y1c_c00044{bottom:341.731500px;}
.y1b_c00044{bottom:366.481500px;}
.y1a_c00044{bottom:391.231500px;}
.y19_c00044{bottom:430.975500px;}
.y18_c00044{bottom:455.725500px;}
.y17_c00044{bottom:480.475500px;}
.y16_c00044{bottom:505.225500px;}
.y15_c00044{bottom:544.969500px;}
.y14_c00044{bottom:569.719500px;}
.y13_c00044{bottom:594.469500px;}
.y12_c00044{bottom:619.219500px;}
.y11_c00044{bottom:643.969500px;}
.y10_c00044{bottom:683.713500px;}
.yf_c00044{bottom:708.463500px;}
.ye_c00044{bottom:733.213500px;}
.yd_c00044{bottom:757.963500px;}
.yc_c00044{bottom:782.713500px;}
.yb_c00044{bottom:807.463500px;}
.ya_c00044{bottom:832.213500px;}
.y9_c00044{bottom:856.963500px;}
.y8_c00044{bottom:881.713500px;}
.y7_c00044{bottom:921.474000px;}
.y6_c00044{bottom:942.468750px;}
.y5_c00044{bottom:963.463500px;}
.y4_c00044{bottom:992.967450px;}
.y3_c00044{bottom:1017.717450px;}
.y2_c00044{bottom:1042.467450px;}
.y1_c00044{bottom:1093.601100px;}
.h2_c00044{height:39.264000px;}
.h6_c00044{height:39.280200px;}
.h3_c00044{height:39.984000px;}
.h5_c00044{height:51.534000px;}
.h4_c00044{height:58.896000px;}
.h1_c00044{height:1135.500000px;}
.h0_c00044{height:1135.506150px;}
.w0_c00044{width:893.950200px;}
.w1_c00044{width:894.000000px;}
.x0_c00044{left:0.000000px;}
.x4_c00044{left:128.626800px;}
.x6_c00044{left:145.634550px;}
.x5_c00044{left:149.886600px;}
.x2_c00044{left:188.061900px;}
.x3_c00044{left:190.513350px;}
.x1_c00044{left:806.741850px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:18.611200pt;}
.v2_c00044{vertical-align:21.312000pt;}
.lsb_c00044{letter-spacing:-2.474667pt;}
.ls9_c00044{letter-spacing:-0.640000pt;}
.ls8_c00044{letter-spacing:-0.512000pt;}
.lse_c00044{letter-spacing:-0.298667pt;}
.lsd_c00044{letter-spacing:-0.213333pt;}
.lsc_c00044{letter-spacing:-0.128000pt;}
.ls4_c00044{letter-spacing:0.000000pt;}
.ls5_c00044{letter-spacing:0.130592pt;}
.ls7_c00044{letter-spacing:0.186560pt;}
.ls6_c00044{letter-spacing:0.261184pt;}
.ls2_c00044{letter-spacing:0.320000pt;}
.ls0_c00044{letter-spacing:0.426667pt;}
.ls1_c00044{letter-spacing:0.640000pt;}
.lsa_c00044{letter-spacing:0.746240pt;}
.ls3_c00044{letter-spacing:4.964267pt;}
.ws4_c00044{word-spacing:-14.848000pt;}
.ws5_c00044{word-spacing:-14.144000pt;}
.ws0_c00044{word-spacing:-9.685333pt;}
.ws8_c00044{word-spacing:-9.557333pt;}
.ws9_c00044{word-spacing:-9.472000pt;}
.wsa_c00044{word-spacing:-9.386667pt;}
.ws6_c00044{word-spacing:-9.216064pt;}
.ws2_c00044{word-spacing:-8.731008pt;}
.ws3_c00044{word-spacing:-8.656384pt;}
.ws1_c00044{word-spacing:-7.541688pt;}
.ws7_c00044{word-spacing:-7.210667pt;}
.ws19_c00044{word-spacing:-2.944000pt;}
.ws1d_c00044{word-spacing:-2.752000pt;}
.ws1a_c00044{word-spacing:-2.304000pt;}
.ws26_c00044{word-spacing:-2.090667pt;}
.ws20_c00044{word-spacing:-2.048000pt;}
.ws18_c00044{word-spacing:-1.792000pt;}
.wsf_c00044{word-spacing:-1.624000pt;}
.ws13_c00044{word-spacing:-1.024000pt;}
.wsd_c00044{word-spacing:-0.960000pt;}
.ws25_c00044{word-spacing:-0.725333pt;}
.ws12_c00044{word-spacing:-0.512000pt;}
.wsb_c00044{word-spacing:0.000000pt;}
.ws1c_c00044{word-spacing:0.192000pt;}
.ws27_c00044{word-spacing:0.298667pt;}
.ws14_c00044{word-spacing:0.320000pt;}
.wse_c00044{word-spacing:0.672000pt;}
.ws21_c00044{word-spacing:0.768000pt;}
.ws15_c00044{word-spacing:0.960000pt;}
.ws23_c00044{word-spacing:1.088000pt;}
.ws10_c00044{word-spacing:1.344000pt;}
.ws22_c00044{word-spacing:1.408000pt;}
.ws1e_c00044{word-spacing:1.472000pt;}
.wsc_c00044{word-spacing:2.048000pt;}
.ws1f_c00044{word-spacing:2.688000pt;}
.ws16_c00044{word-spacing:2.880000pt;}
.ws24_c00044{word-spacing:3.114667pt;}
.ws1b_c00044{word-spacing:4.096000pt;}
.ws11_c00044{word-spacing:5.376000pt;}
.ws17_c00044{word-spacing:5.952000pt;}
._0_c00044{margin-left:-2449.134400pt;}
._3_c00044{margin-left:-6.272000pt;}
._1_c00044{margin-left:-5.205333pt;}
._5_c00044{margin-left:-2.688000pt;}
._2_c00044{margin-left:-1.280000pt;}
._4_c00044{width:0.896000pt;}
._6_c00044{width:2.048000pt;}
._7_c00044{width:3.853867pt;}
.fs3_c00044{font-size:32.648000pt;}
.fs4_c00044{font-size:37.312000pt;}
.fs0_c00044{font-size:42.666667pt;}
.fs2_c00044{font-size:56.000000pt;}
.fs1_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y24_c00044{bottom:99.210933pt;}
.y23_c00044{bottom:120.103333pt;}
.y22_c00044{bottom:140.999333pt;}
.y21_c00044{bottom:154.329067pt;}
.y20_c00044{bottom:175.225067pt;}
.y1f_c00044{bottom:237.761333pt;}
.y1e_c00044{bottom:259.761333pt;}
.y1d_c00044{bottom:281.761333pt;}
.y1c_c00044{bottom:303.761333pt;}
.y1b_c00044{bottom:325.761333pt;}
.y1a_c00044{bottom:347.761333pt;}
.y19_c00044{bottom:383.089333pt;}
.y18_c00044{bottom:405.089333pt;}
.y17_c00044{bottom:427.089333pt;}
.y16_c00044{bottom:449.089333pt;}
.y15_c00044{bottom:484.417333pt;}
.y14_c00044{bottom:506.417333pt;}
.y13_c00044{bottom:528.417333pt;}
.y12_c00044{bottom:550.417333pt;}
.y11_c00044{bottom:572.417333pt;}
.y10_c00044{bottom:607.745333pt;}
.yf_c00044{bottom:629.745333pt;}
.ye_c00044{bottom:651.745333pt;}
.yd_c00044{bottom:673.745333pt;}
.yc_c00044{bottom:695.745333pt;}
.yb_c00044{bottom:717.745333pt;}
.ya_c00044{bottom:739.745333pt;}
.y9_c00044{bottom:761.745333pt;}
.y8_c00044{bottom:783.745333pt;}
.y7_c00044{bottom:819.088000pt;}
.y6_c00044{bottom:837.750000pt;}
.y5_c00044{bottom:856.412000pt;}
.y4_c00044{bottom:882.637733pt;}
.y3_c00044{bottom:904.637733pt;}
.y2_c00044{bottom:926.637733pt;}
.y1_c00044{bottom:972.089867pt;}
.h2_c00044{height:34.901333pt;}
.h6_c00044{height:34.915733pt;}
.h3_c00044{height:35.541333pt;}
.h5_c00044{height:45.808000pt;}
.h4_c00044{height:52.352000pt;}
.h1_c00044{height:1009.333333pt;}
.h0_c00044{height:1009.338800pt;}
.w0_c00044{width:794.622400pt;}
.w1_c00044{width:794.666667pt;}
.x0_c00044{left:0.000000pt;}
.x4_c00044{left:114.334933pt;}
.x6_c00044{left:129.452933pt;}
.x5_c00044{left:133.232533pt;}
.x2_c00044{left:167.166133pt;}
.x3_c00044{left:169.345200pt;}
.x1_c00044{left:717.103867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9e2412fa960a6bb1f238d5a.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00045;src:url('chunks/assets/font_4632656380beb8442d6d90b3.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls4_c00045{letter-spacing:-1.728000px;}
.ls5_c00045{letter-spacing:-1.152000px;}
.ls3_c00045{letter-spacing:-0.720000px;}
.ls6_c00045{letter-spacing:-0.288000px;}
.ls2_c00045{letter-spacing:0.000000px;}
.ls7_c00045{letter-spacing:0.432000px;}
.ls1_c00045{letter-spacing:0.576000px;}
.ls0_c00045{letter-spacing:0.720000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00045{word-spacing:-16.920000px;}
.ws2_c00045{word-spacing:-16.488000px;}
.ws5_c00045{word-spacing:-16.200000px;}
.ws1_c00045{word-spacing:-15.768000px;}
.ws4_c00045{word-spacing:-15.336000px;}
.ws3_c00045{word-spacing:-14.760000px;}
.wse_c00045{word-spacing:-3.312000px;}
.ws17_c00045{word-spacing:-3.168000px;}
.ws16_c00045{word-spacing:-2.448000px;}
.ws13_c00045{word-spacing:-2.232000px;}
.ws15_c00045{word-spacing:-2.088000px;}
.ws9_c00045{word-spacing:-1.080000px;}
.ws1a_c00045{word-spacing:-0.648000px;}
.ws1b_c00045{word-spacing:-0.576000px;}
.ws11_c00045{word-spacing:-0.432000px;}
.ws12_c00045{word-spacing:-0.144000px;}
.ws7_c00045{word-spacing:0.000000px;}
.ws20_c00045{word-spacing:0.072000px;}
.wsd_c00045{word-spacing:0.144000px;}
.ws8_c00045{word-spacing:0.216000px;}
.wsf_c00045{word-spacing:0.288000px;}
.wsc_c00045{word-spacing:0.504000px;}
.ws1e_c00045{word-spacing:1.008000px;}
.ws19_c00045{word-spacing:1.224000px;}
.ws18_c00045{word-spacing:1.728000px;}
.ws1c_c00045{word-spacing:2.664000px;}
.ws14_c00045{word-spacing:2.808000px;}
.ws10_c00045{word-spacing:2.952000px;}
.ws22_c00045{word-spacing:3.240000px;}
.wsb_c00045{word-spacing:3.312000px;}
.wsa_c00045{word-spacing:3.384000px;}
.ws1d_c00045{word-spacing:3.816000px;}
.ws21_c00045{word-spacing:3.888000px;}
.ws1f_c00045{word-spacing:7.416000px;}
.ws0_c00045{word-spacing:1595.323200px;}
._5_c00045{margin-left:-6.600000px;}
._6_c00045{margin-left:-5.256000px;}
._4_c00045{margin-left:-3.960000px;}
._0_c00045{margin-left:-2.112000px;}
._1_c00045{margin-left:-1.104000px;}
._2_c00045{width:1.080000px;}
._3_c00045{width:2.592000px;}
._7_c00045{width:3.960000px;}
.fc0_c00045{color:rgb(35,31,32);}
.fs0_c00045{font-size:48.000000px;}
.fs1_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y23_c00045{bottom:135.735450px;}
.y22_c00045{bottom:160.485450px;}
.y21_c00045{bottom:185.235450px;}
.y20_c00045{bottom:209.985450px;}
.y1f_c00045{bottom:249.729450px;}
.y1e_c00045{bottom:274.479450px;}
.y1d_c00045{bottom:299.229450px;}
.y1c_c00045{bottom:323.979450px;}
.y1b_c00045{bottom:348.729450px;}
.y1a_c00045{bottom:373.479450px;}
.y19_c00045{bottom:398.229450px;}
.y18_c00045{bottom:422.979450px;}
.y17_c00045{bottom:462.723450px;}
.y16_c00045{bottom:487.473450px;}
.y15_c00045{bottom:512.223450px;}
.y14_c00045{bottom:536.973450px;}
.y13_c00045{bottom:561.723450px;}
.y12_c00045{bottom:586.473450px;}
.y11_c00045{bottom:611.223450px;}
.y10_c00045{bottom:650.967450px;}
.yf_c00045{bottom:675.717450px;}
.ye_c00045{bottom:700.467450px;}
.yd_c00045{bottom:725.217450px;}
.yc_c00045{bottom:749.967450px;}
.yb_c00045{bottom:774.717450px;}
.ya_c00045{bottom:799.467450px;}
.y9_c00045{bottom:824.217450px;}
.y8_c00045{bottom:863.961450px;}
.y7_c00045{bottom:918.717450px;}
.y6_c00045{bottom:943.467450px;}
.y5_c00045{bottom:968.217450px;}
.y4_c00045{bottom:992.967450px;}
.y3_c00045{bottom:1017.717450px;}
.y2_c00045{bottom:1042.467450px;}
.y1_c00045{bottom:1093.601100px;}
.h2_c00045{height:39.264000px;}
.h3_c00045{height:58.896000px;}
.h4_c00045{height:59.976000px;}
.h1_c00045{height:1135.500000px;}
.h0_c00045{height:1135.506150px;}
.w0_c00045{width:893.950200px;}
.w1_c00045{width:894.000000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:77.603100px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls4_c00045{letter-spacing:-1.536000pt;}
.ls5_c00045{letter-spacing:-1.024000pt;}
.ls3_c00045{letter-spacing:-0.640000pt;}
.ls6_c00045{letter-spacing:-0.256000pt;}
.ls2_c00045{letter-spacing:0.000000pt;}
.ls7_c00045{letter-spacing:0.384000pt;}
.ls1_c00045{letter-spacing:0.512000pt;}
.ls0_c00045{letter-spacing:0.640000pt;}
.ws6_c00045{word-spacing:-15.040000pt;}
.ws2_c00045{word-spacing:-14.656000pt;}
.ws5_c00045{word-spacing:-14.400000pt;}
.ws1_c00045{word-spacing:-14.016000pt;}
.ws4_c00045{word-spacing:-13.632000pt;}
.ws3_c00045{word-spacing:-13.120000pt;}
.wse_c00045{word-spacing:-2.944000pt;}
.ws17_c00045{word-spacing:-2.816000pt;}
.ws16_c00045{word-spacing:-2.176000pt;}
.ws13_c00045{word-spacing:-1.984000pt;}
.ws15_c00045{word-spacing:-1.856000pt;}
.ws9_c00045{word-spacing:-0.960000pt;}
.ws1a_c00045{word-spacing:-0.576000pt;}
.ws1b_c00045{word-spacing:-0.512000pt;}
.ws11_c00045{word-spacing:-0.384000pt;}
.ws12_c00045{word-spacing:-0.128000pt;}
.ws7_c00045{word-spacing:0.000000pt;}
.ws20_c00045{word-spacing:0.064000pt;}
.wsd_c00045{word-spacing:0.128000pt;}
.ws8_c00045{word-spacing:0.192000pt;}
.wsf_c00045{word-spacing:0.256000pt;}
.wsc_c00045{word-spacing:0.448000pt;}
.ws1e_c00045{word-spacing:0.896000pt;}
.ws19_c00045{word-spacing:1.088000pt;}
.ws18_c00045{word-spacing:1.536000pt;}
.ws1c_c00045{word-spacing:2.368000pt;}
.ws14_c00045{word-spacing:2.496000pt;}
.ws10_c00045{word-spacing:2.624000pt;}
.ws22_c00045{word-spacing:2.880000pt;}
.wsb_c00045{word-spacing:2.944000pt;}
.wsa_c00045{word-spacing:3.008000pt;}
.ws1d_c00045{word-spacing:3.392000pt;}
.ws21_c00045{word-spacing:3.456000pt;}
.ws1f_c00045{word-spacing:6.592000pt;}
.ws0_c00045{word-spacing:1418.065067pt;}
._5_c00045{margin-left:-5.866667pt;}
._6_c00045{margin-left:-4.672000pt;}
._4_c00045{margin-left:-3.520000pt;}
._0_c00045{margin-left:-1.877333pt;}
._1_c00045{margin-left:-0.981333pt;}
._2_c00045{width:0.960000pt;}
._3_c00045{width:2.304000pt;}
._7_c00045{width:3.520000pt;}
.fs0_c00045{font-size:42.666667pt;}
.fs1_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y23_c00045{bottom:120.653733pt;}
.y22_c00045{bottom:142.653733pt;}
.y21_c00045{bottom:164.653733pt;}
.y20_c00045{bottom:186.653733pt;}
.y1f_c00045{bottom:221.981733pt;}
.y1e_c00045{bottom:243.981733pt;}
.y1d_c00045{bottom:265.981733pt;}
.y1c_c00045{bottom:287.981733pt;}
.y1b_c00045{bottom:309.981733pt;}
.y1a_c00045{bottom:331.981733pt;}
.y19_c00045{bottom:353.981733pt;}
.y18_c00045{bottom:375.981733pt;}
.y17_c00045{bottom:411.309733pt;}
.y16_c00045{bottom:433.309733pt;}
.y15_c00045{bottom:455.309733pt;}
.y14_c00045{bottom:477.309733pt;}
.y13_c00045{bottom:499.309733pt;}
.y12_c00045{bottom:521.309733pt;}
.y11_c00045{bottom:543.309733pt;}
.y10_c00045{bottom:578.637733pt;}
.yf_c00045{bottom:600.637733pt;}
.ye_c00045{bottom:622.637733pt;}
.yd_c00045{bottom:644.637733pt;}
.yc_c00045{bottom:666.637733pt;}
.yb_c00045{bottom:688.637733pt;}
.ya_c00045{bottom:710.637733pt;}
.y9_c00045{bottom:732.637733pt;}
.y8_c00045{bottom:767.965733pt;}
.y7_c00045{bottom:816.637733pt;}
.y6_c00045{bottom:838.637733pt;}
.y5_c00045{bottom:860.637733pt;}
.y4_c00045{bottom:882.637733pt;}
.y3_c00045{bottom:904.637733pt;}
.y2_c00045{bottom:926.637733pt;}
.y1_c00045{bottom:972.089867pt;}
.h2_c00045{height:34.901333pt;}
.h3_c00045{height:52.352000pt;}
.h4_c00045{height:53.312000pt;}
.h1_c00045{height:1009.333333pt;}
.h0_c00045{height:1009.338800pt;}
.w0_c00045{width:794.622400pt;}
.w1_c00045{width:794.666667pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6fe86a3885a7ba0209c770e6.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.067000;font-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_c00046{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.v1_c00046{vertical-align:23.976600px;}
.ls8_c00046{letter-spacing:-1.260000px;}
.ls6_c00046{letter-spacing:-0.936000px;}
.ls9_c00046{letter-spacing:-0.840000px;}
.lsa_c00046{letter-spacing:-0.540000px;}
.ls5_c00046{letter-spacing:-0.432000px;}
.ls7_c00046{letter-spacing:-0.300000px;}
.ls3_c00046{letter-spacing:-0.288000px;}
.ls2_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:0.053400px;}
.ls4_c00046{letter-spacing:0.251856px;}
.ls0_c00046{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00046{word-spacing:-15.912000px;}
.ws0_c00046{word-spacing:-10.896000px;}
.ws1_c00046{word-spacing:-9.780408px;}
.ws6_c00046{word-spacing:-2.304000px;}
.ws11_c00046{word-spacing:-2.160000px;}
.ws5_c00046{word-spacing:-2.088000px;}
.wsb_c00046{word-spacing:-2.016000px;}
.wsf_c00046{word-spacing:-0.864000px;}
.ws14_c00046{word-spacing:-0.048000px;}
.ws3_c00046{word-spacing:0.000000px;}
.ws10_c00046{word-spacing:0.072000px;}
.ws17_c00046{word-spacing:0.540000px;}
.ws7_c00046{word-spacing:0.576000px;}
.ws8_c00046{word-spacing:0.864000px;}
.ws13_c00046{word-spacing:1.008000px;}
.ws16_c00046{word-spacing:1.260000px;}
.ws15_c00046{word-spacing:1.872000px;}
.ws12_c00046{word-spacing:2.160000px;}
.wsc_c00046{word-spacing:2.232000px;}
.wse_c00046{word-spacing:2.376000px;}
.ws4_c00046{word-spacing:2.592000px;}
.wsd_c00046{word-spacing:2.664000px;}
.ws9_c00046{word-spacing:4.104000px;}
.wsa_c00046{word-spacing:4.536000px;}
._0_c00046{margin-left:-2755.275600px;}
._1_c00046{margin-left:-5.856000px;}
._4_c00046{margin-left:-2.736000px;}
._2_c00046{margin-left:-1.440000px;}
._3_c00046{width:1.152000px;}
.fc0_c00046{color:rgb(35,31,32);}
.fs2_c00046{font-size:41.976000px;}
.fs0_c00046{font-size:48.000000px;}
.fs3_c00046{font-size:60.000000px;}
.fs1_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y14_c00046{bottom:111.616350px;}
.y13_c00046{bottom:126.616350px;}
.y12_c00046{bottom:141.616350px;}
.y11_c00046{bottom:219.729450px;}
.y10_c00046{bottom:244.479450px;}
.yf_c00046{bottom:269.229450px;}
.ye_c00046{bottom:293.979450px;}
.yd_c00046{bottom:318.729450px;}
.yc_c00046{bottom:343.479450px;}
.yb_c00046{bottom:368.229450px;}
.ya_c00046{bottom:407.973450px;}
.y9_c00046{bottom:432.723450px;}
.y8_c00046{bottom:457.473450px;}
.y7_c00046{bottom:482.223450px;}
.y6_c00046{bottom:506.973450px;}
.y5_c00046{bottom:531.723450px;}
.y4_c00046{bottom:571.467450px;}
.y3_c00046{bottom:596.217450px;}
.y2_c00046{bottom:620.967450px;}
.y17_c00046{bottom:665.273700px;}
.y16_c00046{bottom:683.873700px;}
.y15_c00046{bottom:702.473700px;}
.y1_c00046{bottom:1093.601100px;}
.h2_c00046{height:39.264000px;}
.h3_c00046{height:39.984000px;}
.h6_c00046{height:48.600000px;}
.h5_c00046{height:49.080000px;}
.h4_c00046{height:58.896000px;}
.h1_c00046{height:1135.500000px;}
.h0_c00046{height:1135.506150px;}
.w0_c00046{width:893.950200px;}
.w1_c00046{width:894.000000px;}
.x0_c00046{left:0.000000px;}
.x4_c00046{left:128.626800px;}
.x5_c00046{left:145.634700px;}
.x2_c00046{left:188.061900px;}
.x3_c00046{left:190.513350px;}
.x6_c00046{left:597.775050px;}
.x1_c00046{left:806.777700px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.v1_c00046{vertical-align:21.312533pt;}
.ls8_c00046{letter-spacing:-1.120000pt;}
.ls6_c00046{letter-spacing:-0.832000pt;}
.ls9_c00046{letter-spacing:-0.746667pt;}
.lsa_c00046{letter-spacing:-0.480000pt;}
.ls5_c00046{letter-spacing:-0.384000pt;}
.ls7_c00046{letter-spacing:-0.266667pt;}
.ls3_c00046{letter-spacing:-0.256000pt;}
.ls2_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:0.047467pt;}
.ls4_c00046{letter-spacing:0.223872pt;}
.ls0_c00046{letter-spacing:0.426667pt;}
.ws2_c00046{word-spacing:-14.144000pt;}
.ws0_c00046{word-spacing:-9.685333pt;}
.ws1_c00046{word-spacing:-8.693696pt;}
.ws6_c00046{word-spacing:-2.048000pt;}
.ws11_c00046{word-spacing:-1.920000pt;}
.ws5_c00046{word-spacing:-1.856000pt;}
.wsb_c00046{word-spacing:-1.792000pt;}
.wsf_c00046{word-spacing:-0.768000pt;}
.ws14_c00046{word-spacing:-0.042667pt;}
.ws3_c00046{word-spacing:0.000000pt;}
.ws10_c00046{word-spacing:0.064000pt;}
.ws17_c00046{word-spacing:0.480000pt;}
.ws7_c00046{word-spacing:0.512000pt;}
.ws8_c00046{word-spacing:0.768000pt;}
.ws13_c00046{word-spacing:0.896000pt;}
.ws16_c00046{word-spacing:1.120000pt;}
.ws15_c00046{word-spacing:1.664000pt;}
.ws12_c00046{word-spacing:1.920000pt;}
.wsc_c00046{word-spacing:1.984000pt;}
.wse_c00046{word-spacing:2.112000pt;}
.ws4_c00046{word-spacing:2.304000pt;}
.wsd_c00046{word-spacing:2.368000pt;}
.ws9_c00046{word-spacing:3.648000pt;}
.wsa_c00046{word-spacing:4.032000pt;}
._0_c00046{margin-left:-2449.133867pt;}
._1_c00046{margin-left:-5.205333pt;}
._4_c00046{margin-left:-2.432000pt;}
._2_c00046{margin-left:-1.280000pt;}
._3_c00046{width:1.024000pt;}
.fs2_c00046{font-size:37.312000pt;}
.fs0_c00046{font-size:42.666667pt;}
.fs3_c00046{font-size:53.333333pt;}
.fs1_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y14_c00046{bottom:99.214533pt;}
.y13_c00046{bottom:112.547867pt;}
.y12_c00046{bottom:125.881200pt;}
.y11_c00046{bottom:195.315067pt;}
.y10_c00046{bottom:217.315067pt;}
.yf_c00046{bottom:239.315067pt;}
.ye_c00046{bottom:261.315067pt;}
.yd_c00046{bottom:283.315067pt;}
.yc_c00046{bottom:305.315067pt;}
.yb_c00046{bottom:327.315067pt;}
.ya_c00046{bottom:362.643067pt;}
.y9_c00046{bottom:384.643067pt;}
.y8_c00046{bottom:406.643067pt;}
.y7_c00046{bottom:428.643067pt;}
.y6_c00046{bottom:450.643067pt;}
.y5_c00046{bottom:472.643067pt;}
.y4_c00046{bottom:507.971067pt;}
.y3_c00046{bottom:529.971067pt;}
.y2_c00046{bottom:551.971067pt;}
.y17_c00046{bottom:591.354400pt;}
.y16_c00046{bottom:607.887733pt;}
.y15_c00046{bottom:624.421067pt;}
.y1_c00046{bottom:972.089867pt;}
.h2_c00046{height:34.901333pt;}
.h3_c00046{height:35.541333pt;}
.h6_c00046{height:43.200000pt;}
.h5_c00046{height:43.626667pt;}
.h4_c00046{height:52.352000pt;}
.h1_c00046{height:1009.333333pt;}
.h0_c00046{height:1009.338800pt;}
.w0_c00046{width:794.622400pt;}
.w1_c00046{width:794.666667pt;}
.x0_c00046{left:0.000000pt;}
.x4_c00046{left:114.334933pt;}
.x5_c00046{left:129.453067pt;}
.x2_c00046{left:167.166133pt;}
.x3_c00046{left:169.345200pt;}
.x6_c00046{left:531.355600pt;}
.x1_c00046{left:717.135733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4d620c68abd0c280573e37a.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_ddba39fd8707c1f0c75a297e.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.v1_c00047{vertical-align:23.928600px;}
.lsa_c00047{letter-spacing:-2.016000px;}
.lsc_c00047{letter-spacing:-1.872000px;}
.ls5_c00047{letter-spacing:-1.152000px;}
.ls8_c00047{letter-spacing:-0.936000px;}
.ls6_c00047{letter-spacing:-0.720000px;}
.lsd_c00047{letter-spacing:-0.624000px;}
.lsb_c00047{letter-spacing:-0.336000px;}
.ls9_c00047{letter-spacing:-0.192000px;}
.ls3_c00047{letter-spacing:0.000000px;}
.ls1_c00047{letter-spacing:0.072600px;}
.ls7_c00047{letter-spacing:0.503712px;}
.ls4_c00047{letter-spacing:0.504000px;}
.ls0_c00047{letter-spacing:3.024000px;}
.ls2_c00047{letter-spacing:3.520200px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00047{word-spacing:-16.848000px;}
.ws4_c00047{word-spacing:-16.344000px;}
.ws2_c00047{word-spacing:-15.768000px;}
.ws6_c00047{word-spacing:-15.552000px;}
.ws7_c00047{word-spacing:-10.896000px;}
.ws8_c00047{word-spacing:-10.656000px;}
.ws5_c00047{word-spacing:-10.032264px;}
.ws3_c00047{word-spacing:-9.528552px;}
.ws9_c00047{word-spacing:-9.120000px;}
.wsc_c00047{word-spacing:-1.296000px;}
.wsd_c00047{word-spacing:-0.216000px;}
.wsa_c00047{word-spacing:0.000000px;}
.ws23_c00047{word-spacing:0.192000px;}
.ws25_c00047{word-spacing:0.624000px;}
.ws14_c00047{word-spacing:0.648000px;}
.ws21_c00047{word-spacing:1.008000px;}
.ws1e_c00047{word-spacing:1.296000px;}
.ws1d_c00047{word-spacing:1.440000px;}
.ws12_c00047{word-spacing:1.512000px;}
.ws11_c00047{word-spacing:1.944000px;}
.ws24_c00047{word-spacing:2.016000px;}
.ws1a_c00047{word-spacing:2.232000px;}
.ws1b_c00047{word-spacing:2.304000px;}
.wse_c00047{word-spacing:2.808000px;}
.wsb_c00047{word-spacing:3.024000px;}
.ws26_c00047{word-spacing:3.168000px;}
.ws22_c00047{word-spacing:3.360000px;}
.ws19_c00047{word-spacing:3.600000px;}
.ws16_c00047{word-spacing:3.960000px;}
.ws13_c00047{word-spacing:4.464000px;}
.ws1c_c00047{word-spacing:4.608000px;}
.ws20_c00047{word-spacing:5.184000px;}
.ws10_c00047{word-spacing:5.256000px;}
.ws15_c00047{word-spacing:5.472000px;}
.ws1f_c00047{word-spacing:5.688000px;}
.wsf_c00047{word-spacing:8.496000px;}
.ws18_c00047{word-spacing:8.784000px;}
.ws17_c00047{word-spacing:8.856000px;}
.ws0_c00047{word-spacing:1596.427200px;}
._5_c00047{margin-left:-8.198592px;}
._6_c00047{margin-left:-6.528000px;}
._3_c00047{margin-left:-5.496000px;}
._9_c00047{margin-left:-4.416000px;}
._4_c00047{margin-left:-3.288000px;}
._0_c00047{margin-left:-2.112000px;}
._1_c00047{margin-left:-1.104000px;}
._2_c00047{width:1.080000px;}
._7_c00047{width:2.785200px;}
._8_c00047{width:3.943800px;}
.fc0_c00047{color:rgb(35,31,32);}
.fs2_c00047{font-size:41.976000px;}
.fs0_c00047{font-size:48.000000px;}
.fs1_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y20_c00047{bottom:111.612300px;}
.y1f_c00047{bottom:135.120300px;}
.y1e_c00047{bottom:150.116250px;}
.y1d_c00047{bottom:173.620200px;}
.y1c_c00047{bottom:197.128200px;}
.y1b_c00047{bottom:378.717450px;}
.y1a_c00047{bottom:403.467450px;}
.y19_c00047{bottom:428.217450px;}
.y18_c00047{bottom:452.973450px;}
.y17_c00047{bottom:492.717450px;}
.y16_c00047{bottom:517.467450px;}
.y15_c00047{bottom:542.217450px;}
.y14_c00047{bottom:566.967450px;}
.y13_c00047{bottom:591.717450px;}
.y12_c00047{bottom:616.467450px;}
.y11_c00047{bottom:641.229450px;}
.y10_c00047{bottom:665.979450px;}
.yf_c00047{bottom:690.729450px;}
.ye_c00047{bottom:730.473450px;}
.yd_c00047{bottom:755.223450px;}
.yc_c00047{bottom:779.973450px;}
.yb_c00047{bottom:804.723450px;}
.ya_c00047{bottom:829.473450px;}
.y9_c00047{bottom:854.223450px;}
.y8_c00047{bottom:878.973450px;}
.y7_c00047{bottom:903.723450px;}
.y6_c00047{bottom:928.473450px;}
.y5_c00047{bottom:953.223450px;}
.y4_c00047{bottom:977.973450px;}
.y3_c00047{bottom:1017.717450px;}
.y2_c00047{bottom:1042.467450px;}
.y1_c00047{bottom:1093.601100px;}
.h2_c00047{height:39.264000px;}
.h4_c00047{height:39.280200px;}
.h3_c00047{height:58.896000px;}
.h1_c00047{height:1135.500000px;}
.h0_c00047{height:1135.506150px;}
.w0_c00047{width:893.950200px;}
.w1_c00047{width:894.000000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:77.603100px;}
.x2_c00047{left:94.611000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.v1_c00047{vertical-align:21.269867pt;}
.lsa_c00047{letter-spacing:-1.792000pt;}
.lsc_c00047{letter-spacing:-1.664000pt;}
.ls5_c00047{letter-spacing:-1.024000pt;}
.ls8_c00047{letter-spacing:-0.832000pt;}
.ls6_c00047{letter-spacing:-0.640000pt;}
.lsd_c00047{letter-spacing:-0.554667pt;}
.lsb_c00047{letter-spacing:-0.298667pt;}
.ls9_c00047{letter-spacing:-0.170667pt;}
.ls3_c00047{letter-spacing:0.000000pt;}
.ls1_c00047{letter-spacing:0.064533pt;}
.ls7_c00047{letter-spacing:0.447744pt;}
.ls4_c00047{letter-spacing:0.448000pt;}
.ls0_c00047{letter-spacing:2.688000pt;}
.ls2_c00047{letter-spacing:3.129067pt;}
.ws1_c00047{word-spacing:-14.976000pt;}
.ws4_c00047{word-spacing:-14.528000pt;}
.ws2_c00047{word-spacing:-14.016000pt;}
.ws6_c00047{word-spacing:-13.824000pt;}
.ws7_c00047{word-spacing:-9.685333pt;}
.ws8_c00047{word-spacing:-9.472000pt;}
.ws5_c00047{word-spacing:-8.917568pt;}
.ws3_c00047{word-spacing:-8.469824pt;}
.ws9_c00047{word-spacing:-8.106667pt;}
.wsc_c00047{word-spacing:-1.152000pt;}
.wsd_c00047{word-spacing:-0.192000pt;}
.wsa_c00047{word-spacing:0.000000pt;}
.ws23_c00047{word-spacing:0.170667pt;}
.ws25_c00047{word-spacing:0.554667pt;}
.ws14_c00047{word-spacing:0.576000pt;}
.ws21_c00047{word-spacing:0.896000pt;}
.ws1e_c00047{word-spacing:1.152000pt;}
.ws1d_c00047{word-spacing:1.280000pt;}
.ws12_c00047{word-spacing:1.344000pt;}
.ws11_c00047{word-spacing:1.728000pt;}
.ws24_c00047{word-spacing:1.792000pt;}
.ws1a_c00047{word-spacing:1.984000pt;}
.ws1b_c00047{word-spacing:2.048000pt;}
.wse_c00047{word-spacing:2.496000pt;}
.wsb_c00047{word-spacing:2.688000pt;}
.ws26_c00047{word-spacing:2.816000pt;}
.ws22_c00047{word-spacing:2.986667pt;}
.ws19_c00047{word-spacing:3.200000pt;}
.ws16_c00047{word-spacing:3.520000pt;}
.ws13_c00047{word-spacing:3.968000pt;}
.ws1c_c00047{word-spacing:4.096000pt;}
.ws20_c00047{word-spacing:4.608000pt;}
.ws10_c00047{word-spacing:4.672000pt;}
.ws15_c00047{word-spacing:4.864000pt;}
.ws1f_c00047{word-spacing:5.056000pt;}
.wsf_c00047{word-spacing:7.552000pt;}
.ws18_c00047{word-spacing:7.808000pt;}
.ws17_c00047{word-spacing:7.872000pt;}
.ws0_c00047{word-spacing:1419.046400pt;}
._5_c00047{margin-left:-7.287637pt;}
._6_c00047{margin-left:-5.802667pt;}
._3_c00047{margin-left:-4.885333pt;}
._9_c00047{margin-left:-3.925333pt;}
._4_c00047{margin-left:-2.922667pt;}
._0_c00047{margin-left:-1.877333pt;}
._1_c00047{margin-left:-0.981333pt;}
._2_c00047{width:0.960000pt;}
._7_c00047{width:2.475733pt;}
._8_c00047{width:3.505600pt;}
.fs2_c00047{font-size:37.312000pt;}
.fs0_c00047{font-size:42.666667pt;}
.fs1_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y20_c00047{bottom:99.210933pt;}
.y1f_c00047{bottom:120.106933pt;}
.y1e_c00047{bottom:133.436667pt;}
.y1d_c00047{bottom:154.329067pt;}
.y1c_c00047{bottom:175.225067pt;}
.y1b_c00047{bottom:336.637733pt;}
.y1a_c00047{bottom:358.637733pt;}
.y19_c00047{bottom:380.637733pt;}
.y18_c00047{bottom:402.643067pt;}
.y17_c00047{bottom:437.971067pt;}
.y16_c00047{bottom:459.971067pt;}
.y15_c00047{bottom:481.971067pt;}
.y14_c00047{bottom:503.971067pt;}
.y13_c00047{bottom:525.971067pt;}
.y12_c00047{bottom:547.971067pt;}
.y11_c00047{bottom:569.981733pt;}
.y10_c00047{bottom:591.981733pt;}
.yf_c00047{bottom:613.981733pt;}
.ye_c00047{bottom:649.309733pt;}
.yd_c00047{bottom:671.309733pt;}
.yc_c00047{bottom:693.309733pt;}
.yb_c00047{bottom:715.309733pt;}
.ya_c00047{bottom:737.309733pt;}
.y9_c00047{bottom:759.309733pt;}
.y8_c00047{bottom:781.309733pt;}
.y7_c00047{bottom:803.309733pt;}
.y6_c00047{bottom:825.309733pt;}
.y5_c00047{bottom:847.309733pt;}
.y4_c00047{bottom:869.309733pt;}
.y3_c00047{bottom:904.637733pt;}
.y2_c00047{bottom:926.637733pt;}
.y1_c00047{bottom:972.089867pt;}
.h2_c00047{height:34.901333pt;}
.h4_c00047{height:34.915733pt;}
.h3_c00047{height:52.352000pt;}
.h1_c00047{height:1009.333333pt;}
.h0_c00047{height:1009.338800pt;}
.w0_c00047{width:794.622400pt;}
.w1_c00047{width:794.666667pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:68.980533pt;}
.x2_c00047{left:84.098667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_451f8da2bb7df760e96830a2.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.082000;font-style:normal;font-weight:normal;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_9152c2330cd84c33e9f7ce46.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.067000;font-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_c00048{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls3_c00048{letter-spacing:-4.200000px;}
.ls5_c00048{letter-spacing:-0.756000px;}
.ls4_c00048{letter-spacing:-0.270000px;}
.ls6_c00048{letter-spacing:-0.216000px;}
.ls2_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.480000px;}
.ls1_c00048{letter-spacing:0.624000px;}
.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;}
}
.ws3_c00048{word-spacing:-13.740000px;}
.ws1_c00048{word-spacing:-13.620000px;}
.ws0_c00048{word-spacing:-11.520000px;}
.ws2_c00048{word-spacing:-9.540000px;}
.ws5_c00048{word-spacing:0.000000px;}
.ws7_c00048{word-spacing:0.216000px;}
.ws6_c00048{word-spacing:0.756000px;}
.ws4_c00048{word-spacing:1792.944600px;}
._0_c00048{margin-left:-2755.900800px;}
._4_c00048{margin-left:-6.900000px;}
._1_c00048{margin-left:-5.856000px;}
._5_c00048{margin-left:-2.640000px;}
._2_c00048{margin-left:-1.440000px;}
._3_c00048{width:1.260000px;}
._6_c00048{width:3.240000px;}
._7_c00048{width:4.680000px;}
.fc0_c00048{color:rgb(35,31,32);}
.fs0_c00048{font-size:48.000000px;}
.fs2_c00048{font-size:54.000000px;}
.fs1_c00048{font-size:60.000000px;}
.y0_c00048{bottom:0.000000px;}
.y11_c00048{bottom:154.249650px;}
.ya_c00048{bottom:170.337900px;}
.y9_c00048{bottom:188.937900px;}
.y8_c00048{bottom:207.537900px;}
.y7_c00048{bottom:226.137900px;}
.yf_c00048{bottom:256.763250px;}
.ye_c00048{bottom:275.363250px;}
.yd_c00048{bottom:293.963250px;}
.yc_c00048{bottom:322.872900px;}
.yb_c00048{bottom:341.472900px;}
.y6_c00048{bottom:371.037900px;}
.y5_c00048{bottom:389.637900px;}
.y4_c00048{bottom:408.237900px;}
.y3_c00048{bottom:426.837900px;}
.y2_c00048{bottom:445.437900px;}
.y12_c00048{bottom:477.130050px;}
.y10_c00048{bottom:782.102550px;}
.y1_c00048{bottom:1093.601100px;}
.h2_c00048{height:39.264000px;}
.h3_c00048{height:39.984000px;}
.h6_c00048{height:44.172000px;}
.h5_c00048{height:48.600000px;}
.h4_c00048{height:49.080000px;}
.h1_c00048{height:1135.500000px;}
.h0_c00048{height:1135.506150px;}
.w0_c00048{width:893.950200px;}
.w1_c00048{width:894.000000px;}
.x0_c00048{left:0.000000px;}
.x6_c00048{left:139.893150px;}
.x5_c00048{left:141.503400px;}
.x2_c00048{left:188.061900px;}
.x3_c00048{left:190.513350px;}
.x8_c00048{left:376.912050px;}
.x4_c00048{left:593.582850px;}
.x7_c00048{left:604.738650px;}
.x1_c00048{left:806.214000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls3_c00048{letter-spacing:-3.733333pt;}
.ls5_c00048{letter-spacing:-0.672000pt;}
.ls4_c00048{letter-spacing:-0.240000pt;}
.ls6_c00048{letter-spacing:-0.192000pt;}
.ls2_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.426667pt;}
.ls1_c00048{letter-spacing:0.554667pt;}
.ws3_c00048{word-spacing:-12.213333pt;}
.ws1_c00048{word-spacing:-12.106667pt;}
.ws0_c00048{word-spacing:-10.240000pt;}
.ws2_c00048{word-spacing:-8.480000pt;}
.ws5_c00048{word-spacing:0.000000pt;}
.ws7_c00048{word-spacing:0.192000pt;}
.ws6_c00048{word-spacing:0.672000pt;}
.ws4_c00048{word-spacing:1593.728533pt;}
._0_c00048{margin-left:-2449.689600pt;}
._4_c00048{margin-left:-6.133333pt;}
._1_c00048{margin-left:-5.205333pt;}
._5_c00048{margin-left:-2.346667pt;}
._2_c00048{margin-left:-1.280000pt;}
._3_c00048{width:1.120000pt;}
._6_c00048{width:2.880000pt;}
._7_c00048{width:4.160000pt;}
.fs0_c00048{font-size:42.666667pt;}
.fs2_c00048{font-size:48.000000pt;}
.fs1_c00048{font-size:53.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y11_c00048{bottom:137.110800pt;}
.ya_c00048{bottom:151.411467pt;}
.y9_c00048{bottom:167.944800pt;}
.y8_c00048{bottom:184.478133pt;}
.y7_c00048{bottom:201.011467pt;}
.yf_c00048{bottom:228.234000pt;}
.ye_c00048{bottom:244.767333pt;}
.yd_c00048{bottom:261.300667pt;}
.yc_c00048{bottom:286.998133pt;}
.yb_c00048{bottom:303.531467pt;}
.y6_c00048{bottom:329.811467pt;}
.y5_c00048{bottom:346.344800pt;}
.y4_c00048{bottom:362.878133pt;}
.y3_c00048{bottom:379.411467pt;}
.y2_c00048{bottom:395.944800pt;}
.y12_c00048{bottom:424.115600pt;}
.y10_c00048{bottom:695.202267pt;}
.y1_c00048{bottom:972.089867pt;}
.h2_c00048{height:34.901333pt;}
.h3_c00048{height:35.541333pt;}
.h6_c00048{height:39.264000pt;}
.h5_c00048{height:43.200000pt;}
.h4_c00048{height:43.626667pt;}
.h1_c00048{height:1009.333333pt;}
.h0_c00048{height:1009.338800pt;}
.w0_c00048{width:794.622400pt;}
.w1_c00048{width:794.666667pt;}
.x0_c00048{left:0.000000pt;}
.x6_c00048{left:124.349467pt;}
.x5_c00048{left:125.780800pt;}
.x2_c00048{left:167.166133pt;}
.x3_c00048{left:169.345200pt;}
.x8_c00048{left:335.032933pt;}
.x4_c00048{left:527.629200pt;}
.x7_c00048{left:537.545467pt;}
.x1_c00048{left:716.634667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f44e6c1024550d1bd4cc79e.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.068000;font-style:normal;font-weight:normal;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_1414da9f21486ceb58eb513b.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.068000;font-style:normal;font-weight:normal;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_5490577cb2ef24e911507c4c.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_02bc9dfe2e5160923beab23d.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00049;src:url('chunks/assets/font_ba6fac5773ea720b2318c474.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.v1_c00049{vertical-align:20.748600px;}
.v2_c00049{vertical-align:23.928000px;}
.ls6_c00049{letter-spacing:-6.912000px;}
.ls9_c00049{letter-spacing:-4.800000px;}
.ls7_c00049{letter-spacing:-1.800000px;}
.ls5_c00049{letter-spacing:-1.080000px;}
.lsf_c00049{letter-spacing:-0.540000px;}
.ls8_c00049{letter-spacing:-0.503712px;}
.lsa_c00049{letter-spacing:-0.336000px;}
.lse_c00049{letter-spacing:-0.300000px;}
.lsb_c00049{letter-spacing:-0.192000px;}
.ls2_c00049{letter-spacing:0.000000px;}
.ls4_c00049{letter-spacing:0.125928px;}
.ls1_c00049{letter-spacing:0.144000px;}
.lsc_c00049{letter-spacing:0.300000px;}
.lsd_c00049{letter-spacing:0.600000px;}
.ls3_c00049{letter-spacing:1.212057px;}
.ls0_c00049{letter-spacing:1.260000px;}
.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;}
}
.ws4_c00049{word-spacing:-10.896000px;}
.ws1_c00049{word-spacing:-9.654480px;}
.ws2_c00049{word-spacing:-9.024840px;}
.ws3_c00049{word-spacing:-6.096000px;}
.ws1c_c00049{word-spacing:-2.016000px;}
.ws1a_c00049{word-spacing:-1.944000px;}
.ws25_c00049{word-spacing:-1.872000px;}
.ws22_c00049{word-spacing:-1.584000px;}
.ws1d_c00049{word-spacing:-1.440000px;}
.ws24_c00049{word-spacing:-1.392000px;}
.ws23_c00049{word-spacing:-1.248000px;}
.ws11_c00049{word-spacing:-1.212057px;}
.ws14_c00049{word-spacing:-1.152000px;}
.ws26_c00049{word-spacing:-0.060000px;}
.ws5_c00049{word-spacing:0.000000px;}
.ws27_c00049{word-spacing:0.240000px;}
.wsb_c00049{word-spacing:0.252000px;}
.wsf_c00049{word-spacing:0.378000px;}
.wsa_c00049{word-spacing:0.756000px;}
.ws1f_c00049{word-spacing:1.152000px;}
.ws13_c00049{word-spacing:1.296000px;}
.ws12_c00049{word-spacing:1.368000px;}
.ws1e_c00049{word-spacing:1.584000px;}
.ws1b_c00049{word-spacing:1.728000px;}
.ws21_c00049{word-spacing:1.800000px;}
.ws7_c00049{word-spacing:2.268000px;}
.ws19_c00049{word-spacing:2.520000px;}
.ws10_c00049{word-spacing:2.583000px;}
.ws17_c00049{word-spacing:2.592000px;}
.ws15_c00049{word-spacing:3.600000px;}
.wsd_c00049{word-spacing:3.969000px;}
.ws8_c00049{word-spacing:4.725000px;}
.ws18_c00049{word-spacing:4.752000px;}
.wsc_c00049{word-spacing:6.615000px;}
.ws20_c00049{word-spacing:6.912000px;}
.ws9_c00049{word-spacing:7.686000px;}
.ws16_c00049{word-spacing:7.776000px;}
.ws6_c00049{word-spacing:9.702000px;}
.wse_c00049{word-spacing:15.309000px;}
.ws0_c00049{word-spacing:1597.579200px;}
._5_c00049{margin-left:-3.600000px;}
._0_c00049{margin-left:-2.112000px;}
._1_c00049{margin-left:-1.104000px;}
._3_c00049{width:1.608000px;}
._6_c00049{width:2.856000px;}
._8_c00049{width:4.439400px;}
._7_c00049{width:5.784000px;}
._4_c00049{width:11.880000px;}
._2_c00049{width:67.176000px;}
.fc0_c00049{color:rgb(35,31,32);}
.fs3_c00049{font-size:36.729000px;}
.fs4_c00049{font-size:41.976000px;}
.fs0_c00049{font-size:48.000000px;}
.fs5_c00049{font-size:60.000000px;}
.fs2_c00049{font-size:63.000000px;}
.fs1_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y26_c00049{bottom:111.907800px;}
.y25_c00049{bottom:126.903750px;}
.y24_c00049{bottom:150.411750px;}
.y23_c00049{bottom:165.407700px;}
.y22_c00049{bottom:188.915700px;}
.y21_c00049{bottom:230.514150px;}
.y20_c00049{bottom:255.264150px;}
.y1f_c00049{bottom:280.014150px;}
.y1e_c00049{bottom:319.770150px;}
.y1d_c00049{bottom:344.520150px;}
.y1c_c00049{bottom:369.270150px;}
.y1b_c00049{bottom:394.020150px;}
.y1a_c00049{bottom:418.770150px;}
.y19_c00049{bottom:443.520150px;}
.y18_c00049{bottom:468.270150px;}
.y17_c00049{bottom:508.014150px;}
.y16_c00049{bottom:532.764150px;}
.y15_c00049{bottom:557.514150px;}
.y14_c00049{bottom:582.264150px;}
.y13_c00049{bottom:607.014150px;}
.y12_c00049{bottom:646.758150px;}
.y11_c00049{bottom:671.508150px;}
.y10_c00049{bottom:696.258150px;}
.yf_c00049{bottom:736.065750px;}
.y2a_c00049{bottom:737.693550px;}
.y29_c00049{bottom:756.293550px;}
.ye_c00049{bottom:757.060500px;}
.y28_c00049{bottom:774.893550px;}
.yd_c00049{bottom:778.055250px;}
.y27_c00049{bottom:793.493550px;}
.yc_c00049{bottom:799.050000px;}
.yb_c00049{bottom:820.044750px;}
.ya_c00049{bottom:841.039500px;}
.y9_c00049{bottom:862.034250px;}
.y8_c00049{bottom:883.029000px;}
.y7_c00049{bottom:904.023750px;}
.y6_c00049{bottom:925.018500px;}
.y5_c00049{bottom:946.013250px;}
.y4_c00049{bottom:967.008000px;}
.y3_c00049{bottom:1003.008000px;}
.y2_c00049{bottom:1042.758900px;}
.y1_c00049{bottom:1093.892550px;}
.h2_c00049{height:38.928000px;}
.h6_c00049{height:38.944200px;}
.h8_c00049{height:42.720000px;}
.h7_c00049{height:48.660000px;}
.h4_c00049{height:50.832000px;}
.h5_c00049{height:51.093000px;}
.h3_c00049{height:58.392000px;}
.h1_c00049{height:1134.750000px;}
.h0_c00049{height:1134.972600px;}
.w1_c00049{width:893.250000px;}
.w0_c00049{width:893.389200px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:75.824100px;}
.x3_c00049{left:92.826450px;}
.x2_c00049{left:97.083900px;}
.x4_c00049{left:399.824100px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.v1_c00049{vertical-align:18.443200pt;}
.v2_c00049{vertical-align:21.269333pt;}
.ls6_c00049{letter-spacing:-6.144000pt;}
.ls9_c00049{letter-spacing:-4.266667pt;}
.ls7_c00049{letter-spacing:-1.600000pt;}
.ls5_c00049{letter-spacing:-0.960000pt;}
.lsf_c00049{letter-spacing:-0.480000pt;}
.ls8_c00049{letter-spacing:-0.447744pt;}
.lsa_c00049{letter-spacing:-0.298667pt;}
.lse_c00049{letter-spacing:-0.266667pt;}
.lsb_c00049{letter-spacing:-0.170667pt;}
.ls2_c00049{letter-spacing:0.000000pt;}
.ls4_c00049{letter-spacing:0.111936pt;}
.ls1_c00049{letter-spacing:0.128000pt;}
.lsc_c00049{letter-spacing:0.266667pt;}
.lsd_c00049{letter-spacing:0.533333pt;}
.ls3_c00049{letter-spacing:1.077384pt;}
.ls0_c00049{letter-spacing:1.120000pt;}
.ws4_c00049{word-spacing:-9.685333pt;}
.ws1_c00049{word-spacing:-8.581760pt;}
.ws2_c00049{word-spacing:-8.022080pt;}
.ws3_c00049{word-spacing:-5.418667pt;}
.ws1c_c00049{word-spacing:-1.792000pt;}
.ws1a_c00049{word-spacing:-1.728000pt;}
.ws25_c00049{word-spacing:-1.664000pt;}
.ws22_c00049{word-spacing:-1.408000pt;}
.ws1d_c00049{word-spacing:-1.280000pt;}
.ws24_c00049{word-spacing:-1.237333pt;}
.ws23_c00049{word-spacing:-1.109333pt;}
.ws11_c00049{word-spacing:-1.077384pt;}
.ws14_c00049{word-spacing:-1.024000pt;}
.ws26_c00049{word-spacing:-0.053333pt;}
.ws5_c00049{word-spacing:0.000000pt;}
.ws27_c00049{word-spacing:0.213333pt;}
.wsb_c00049{word-spacing:0.224000pt;}
.wsf_c00049{word-spacing:0.336000pt;}
.wsa_c00049{word-spacing:0.672000pt;}
.ws1f_c00049{word-spacing:1.024000pt;}
.ws13_c00049{word-spacing:1.152000pt;}
.ws12_c00049{word-spacing:1.216000pt;}
.ws1e_c00049{word-spacing:1.408000pt;}
.ws1b_c00049{word-spacing:1.536000pt;}
.ws21_c00049{word-spacing:1.600000pt;}
.ws7_c00049{word-spacing:2.016000pt;}
.ws19_c00049{word-spacing:2.240000pt;}
.ws10_c00049{word-spacing:2.296000pt;}
.ws17_c00049{word-spacing:2.304000pt;}
.ws15_c00049{word-spacing:3.200000pt;}
.wsd_c00049{word-spacing:3.528000pt;}
.ws8_c00049{word-spacing:4.200000pt;}
.ws18_c00049{word-spacing:4.224000pt;}
.wsc_c00049{word-spacing:5.880000pt;}
.ws20_c00049{word-spacing:6.144000pt;}
.ws9_c00049{word-spacing:6.832000pt;}
.ws16_c00049{word-spacing:6.912000pt;}
.ws6_c00049{word-spacing:8.624000pt;}
.wse_c00049{word-spacing:13.608000pt;}
.ws0_c00049{word-spacing:1420.070400pt;}
._5_c00049{margin-left:-3.200000pt;}
._0_c00049{margin-left:-1.877333pt;}
._1_c00049{margin-left:-0.981333pt;}
._3_c00049{width:1.429333pt;}
._6_c00049{width:2.538667pt;}
._8_c00049{width:3.946133pt;}
._7_c00049{width:5.141333pt;}
._4_c00049{width:10.560000pt;}
._2_c00049{width:59.712000pt;}
.fs3_c00049{font-size:32.648000pt;}
.fs4_c00049{font-size:37.312000pt;}
.fs0_c00049{font-size:42.666667pt;}
.fs5_c00049{font-size:53.333333pt;}
.fs2_c00049{font-size:56.000000pt;}
.fs1_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y26_c00049{bottom:99.473600pt;}
.y25_c00049{bottom:112.803333pt;}
.y24_c00049{bottom:133.699333pt;}
.y23_c00049{bottom:147.029067pt;}
.y22_c00049{bottom:167.925067pt;}
.y21_c00049{bottom:204.901467pt;}
.y20_c00049{bottom:226.901467pt;}
.y1f_c00049{bottom:248.901467pt;}
.y1e_c00049{bottom:284.240133pt;}
.y1d_c00049{bottom:306.240133pt;}
.y1c_c00049{bottom:328.240133pt;}
.y1b_c00049{bottom:350.240133pt;}
.y1a_c00049{bottom:372.240133pt;}
.y19_c00049{bottom:394.240133pt;}
.y18_c00049{bottom:416.240133pt;}
.y17_c00049{bottom:451.568133pt;}
.y16_c00049{bottom:473.568133pt;}
.y15_c00049{bottom:495.568133pt;}
.y14_c00049{bottom:517.568133pt;}
.y13_c00049{bottom:539.568133pt;}
.y12_c00049{bottom:574.896133pt;}
.y11_c00049{bottom:596.896133pt;}
.y10_c00049{bottom:618.896133pt;}
.yf_c00049{bottom:654.280667pt;}
.y2a_c00049{bottom:655.727600pt;}
.y29_c00049{bottom:672.260933pt;}
.ye_c00049{bottom:672.942667pt;}
.y28_c00049{bottom:688.794267pt;}
.yd_c00049{bottom:691.604667pt;}
.y27_c00049{bottom:705.327600pt;}
.yc_c00049{bottom:710.266667pt;}
.yb_c00049{bottom:728.928667pt;}
.ya_c00049{bottom:747.590667pt;}
.y9_c00049{bottom:766.252667pt;}
.y8_c00049{bottom:784.914667pt;}
.y7_c00049{bottom:803.576667pt;}
.y6_c00049{bottom:822.238667pt;}
.y5_c00049{bottom:840.900667pt;}
.y4_c00049{bottom:859.562667pt;}
.y3_c00049{bottom:891.562667pt;}
.y2_c00049{bottom:926.896800pt;}
.y1_c00049{bottom:972.348933pt;}
.h2_c00049{height:34.602667pt;}
.h6_c00049{height:34.617067pt;}
.h8_c00049{height:37.973333pt;}
.h7_c00049{height:43.253333pt;}
.h4_c00049{height:45.184000pt;}
.h5_c00049{height:45.416000pt;}
.h3_c00049{height:51.904000pt;}
.h1_c00049{height:1008.666667pt;}
.h0_c00049{height:1008.864533pt;}
.w1_c00049{width:794.000000pt;}
.w0_c00049{width:794.123733pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:67.399200pt;}
.x3_c00049{left:82.512400pt;}
.x2_c00049{left:86.296800pt;}
.x4_c00049{left:355.399200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be224e225c0216bf66e6d43d.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.082000;font-style:normal;font-weight:normal;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_250131fdfe6ed0db0e240df9.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.067000;font-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_c00050{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00050{vertical-align:-23.976000px;}
.v0_c00050{vertical-align:0.000000px;}
.v1_c00050{vertical-align:24.456600px;}
.ls5_c00050{letter-spacing:-1.800000px;}
.lsf_c00050{letter-spacing:-0.780000px;}
.ls8_c00050{letter-spacing:-0.629640px;}
.ls10_c00050{letter-spacing:-0.480000px;}
.lsb_c00050{letter-spacing:-0.461736px;}
.ls7_c00050{letter-spacing:-0.360000px;}
.lse_c00050{letter-spacing:-0.288000px;}
.ls11_c00050{letter-spacing:-0.240000px;}
.lsa_c00050{letter-spacing:-0.144000px;}
.lsc_c00050{letter-spacing:-0.048000px;}
.ls4_c00050{letter-spacing:0.000000px;}
.ls6_c00050{letter-spacing:0.072000px;}
.ls2_c00050{letter-spacing:0.240000px;}
.ls3_c00050{letter-spacing:0.336000px;}
.ls1_c00050{letter-spacing:0.360000px;}
.ls9_c00050{letter-spacing:0.377784px;}
.ls0_c00050{letter-spacing:0.480000px;}
.lsd_c00050{letter-spacing:0.672000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00050{word-spacing:-16.704000px;}
.ws4_c00050{word-spacing:-15.984000px;}
.ws9_c00050{word-spacing:-13.620000px;}
.ws7_c00050{word-spacing:-11.568000px;}
.ws0_c00050{word-spacing:-11.232000px;}
.ws5_c00050{word-spacing:-11.136000px;}
.ws6_c00050{word-spacing:-10.848000px;}
.ws8_c00050{word-spacing:-10.608000px;}
.ws3_c00050{word-spacing:-9.906336px;}
.ws2_c00050{word-spacing:-8.898912px;}
.ws1a_c00050{word-spacing:-3.384000px;}
.wsc_c00050{word-spacing:-2.016000px;}
.ws30_c00050{word-spacing:-1.440000px;}
.ws31_c00050{word-spacing:-1.344000px;}
.ws29_c00050{word-spacing:-1.224000px;}
.ws2f_c00050{word-spacing:-1.152000px;}
.ws2d_c00050{word-spacing:-0.216000px;}
.wsa_c00050{word-spacing:0.000000px;}
.ws1b_c00050{word-spacing:0.144000px;}
.ws1d_c00050{word-spacing:0.216000px;}
.ws34_c00050{word-spacing:0.240000px;}
.ws1e_c00050{word-spacing:0.288000px;}
.ws1c_c00050{word-spacing:0.360000px;}
.ws2e_c00050{word-spacing:0.461736px;}
.ws33_c00050{word-spacing:0.480000px;}
.ws12_c00050{word-spacing:0.576000px;}
.ws32_c00050{word-spacing:0.780000px;}
.ws27_c00050{word-spacing:1.008000px;}
.ws21_c00050{word-spacing:1.224000px;}
.ws16_c00050{word-spacing:1.800000px;}
.ws2a_c00050{word-spacing:3.816000px;}
.ws24_c00050{word-spacing:4.248000px;}
.ws25_c00050{word-spacing:4.392000px;}
.ws28_c00050{word-spacing:4.968000px;}
.ws14_c00050{word-spacing:5.688000px;}
.ws20_c00050{word-spacing:5.976000px;}
.ws2b_c00050{word-spacing:6.696000px;}
.ws13_c00050{word-spacing:6.912000px;}
.wsb_c00050{word-spacing:7.128000px;}
.ws10_c00050{word-spacing:7.344000px;}
.ws1f_c00050{word-spacing:7.416000px;}
.ws18_c00050{word-spacing:7.848000px;}
.ws17_c00050{word-spacing:8.208000px;}
.ws19_c00050{word-spacing:9.360000px;}
.ws15_c00050{word-spacing:10.656000px;}
.ws26_c00050{word-spacing:10.800000px;}
.wsf_c00050{word-spacing:11.016000px;}
.ws22_c00050{word-spacing:11.160000px;}
.ws23_c00050{word-spacing:11.232000px;}
.ws11_c00050{word-spacing:12.456000px;}
.wsd_c00050{word-spacing:14.184000px;}
.wse_c00050{word-spacing:16.776000px;}
.ws2c_c00050{word-spacing:18.504000px;}
._0_c00050{margin-left:-2755.612800px;}
._1_c00050{margin-left:-5.856000px;}
._6_c00050{margin-left:-3.672000px;}
._4_c00050{margin-left:-2.448000px;}
._2_c00050{margin-left:-1.440000px;}
._3_c00050{width:1.080000px;}
._5_c00050{width:2.376000px;}
._8_c00050{width:7.712400px;}
._7_c00050{width:8.729400px;}
.fc0_c00050{color:rgb(35,31,32);}
.fs2_c00050{font-size:41.976000px;}
.fs0_c00050{font-size:48.000000px;}
.fs3_c00050{font-size:60.000000px;}
.fs1_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y28_c00050{bottom:111.616350px;}
.y27_c00050{bottom:126.616350px;}
.y26_c00050{bottom:141.612300px;}
.y25_c00050{bottom:165.116250px;}
.y24_c00050{bottom:188.624250px;}
.y23_c00050{bottom:203.624250px;}
.y30_c00050{bottom:250.421850px;}
.y22_c00050{bottom:254.025600px;}
.y2f_c00050{bottom:269.021850px;}
.y21_c00050{bottom:278.775600px;}
.y2e_c00050{bottom:287.621850px;}
.y20_c00050{bottom:302.931600px;}
.y1f_c00050{bottom:327.087600px;}
.y1e_c00050{bottom:351.243600px;}
.y1d_c00050{bottom:375.399600px;}
.y1c_c00050{bottom:399.555600px;}
.y1b_c00050{bottom:423.711600px;}
.y1a_c00050{bottom:447.849600px;}
.y19_c00050{bottom:472.005600px;}
.y18_c00050{bottom:496.161600px;}
.y17_c00050{bottom:520.197450px;}
.y16_c00050{bottom:544.353450px;}
.y15_c00050{bottom:568.509450px;}
.y14_c00050{bottom:592.665450px;}
.y13_c00050{bottom:616.821450px;}
.y12_c00050{bottom:640.977450px;}
.y11_c00050{bottom:665.133450px;}
.y10_c00050{bottom:689.289450px;}
.y2d_c00050{bottom:707.160300px;}
.y2c_c00050{bottom:725.760300px;}
.yf_c00050{bottom:728.439450px;}
.y2b_c00050{bottom:744.360300px;}
.ye_c00050{bottom:752.595450px;}
.y2a_c00050{bottom:762.960300px;}
.yd_c00050{bottom:776.751450px;}
.y29_c00050{bottom:781.560300px;}
.yc_c00050{bottom:800.907450px;}
.yb_c00050{bottom:825.063450px;}
.ya_c00050{bottom:849.219450px;}
.y9_c00050{bottom:873.375450px;}
.y8_c00050{bottom:897.531450px;}
.y7_c00050{bottom:921.687450px;}
.y6_c00050{bottom:945.843450px;}
.y5_c00050{bottom:969.999450px;}
.y4_c00050{bottom:994.155450px;}
.y3_c00050{bottom:1018.311450px;}
.y2_c00050{bottom:1042.467450px;}
.y1_c00050{bottom:1093.601100px;}
.h2_c00050{height:39.264000px;}
.h7_c00050{height:39.280200px;}
.h3_c00050{height:39.984000px;}
.h9_c00050{height:48.600000px;}
.h8_c00050{height:49.080000px;}
.h4_c00050{height:58.896000px;}
.h6_c00050{height:58.968000px;}
.h5_c00050{height:59.376600px;}
.h1_c00050{height:1135.500000px;}
.h0_c00050{height:1135.506150px;}
.w0_c00050{width:893.950200px;}
.w1_c00050{width:894.000000px;}
.x0_c00050{left:0.000000px;}
.x5_c00050{left:128.626800px;}
.x6_c00050{left:145.636350px;}
.x2_c00050{left:188.061900px;}
.x3_c00050{left:190.513350px;}
.x4_c00050{left:514.204950px;}
.x1_c00050{left:805.698000px;}
@media print{
.v2_c00050{vertical-align:-21.312000pt;}
.v0_c00050{vertical-align:0.000000pt;}
.v1_c00050{vertical-align:21.739200pt;}
.ls5_c00050{letter-spacing:-1.600000pt;}
.lsf_c00050{letter-spacing:-0.693333pt;}
.ls8_c00050{letter-spacing:-0.559680pt;}
.ls10_c00050{letter-spacing:-0.426667pt;}
.lsb_c00050{letter-spacing:-0.410432pt;}
.ls7_c00050{letter-spacing:-0.320000pt;}
.lse_c00050{letter-spacing:-0.256000pt;}
.ls11_c00050{letter-spacing:-0.213333pt;}
.lsa_c00050{letter-spacing:-0.128000pt;}
.lsc_c00050{letter-spacing:-0.042667pt;}
.ls4_c00050{letter-spacing:0.000000pt;}
.ls6_c00050{letter-spacing:0.064000pt;}
.ls2_c00050{letter-spacing:0.213333pt;}
.ls3_c00050{letter-spacing:0.298667pt;}
.ls1_c00050{letter-spacing:0.320000pt;}
.ls9_c00050{letter-spacing:0.335808pt;}
.ls0_c00050{letter-spacing:0.426667pt;}
.lsd_c00050{letter-spacing:0.597333pt;}
.ws1_c00050{word-spacing:-14.848000pt;}
.ws4_c00050{word-spacing:-14.208000pt;}
.ws9_c00050{word-spacing:-12.106667pt;}
.ws7_c00050{word-spacing:-10.282667pt;}
.ws0_c00050{word-spacing:-9.984000pt;}
.ws5_c00050{word-spacing:-9.898667pt;}
.ws6_c00050{word-spacing:-9.642667pt;}
.ws8_c00050{word-spacing:-9.429333pt;}
.ws3_c00050{word-spacing:-8.805632pt;}
.ws2_c00050{word-spacing:-7.910144pt;}
.ws1a_c00050{word-spacing:-3.008000pt;}
.wsc_c00050{word-spacing:-1.792000pt;}
.ws30_c00050{word-spacing:-1.280000pt;}
.ws31_c00050{word-spacing:-1.194667pt;}
.ws29_c00050{word-spacing:-1.088000pt;}
.ws2f_c00050{word-spacing:-1.024000pt;}
.ws2d_c00050{word-spacing:-0.192000pt;}
.wsa_c00050{word-spacing:0.000000pt;}
.ws1b_c00050{word-spacing:0.128000pt;}
.ws1d_c00050{word-spacing:0.192000pt;}
.ws34_c00050{word-spacing:0.213333pt;}
.ws1e_c00050{word-spacing:0.256000pt;}
.ws1c_c00050{word-spacing:0.320000pt;}
.ws2e_c00050{word-spacing:0.410432pt;}
.ws33_c00050{word-spacing:0.426667pt;}
.ws12_c00050{word-spacing:0.512000pt;}
.ws32_c00050{word-spacing:0.693333pt;}
.ws27_c00050{word-spacing:0.896000pt;}
.ws21_c00050{word-spacing:1.088000pt;}
.ws16_c00050{word-spacing:1.600000pt;}
.ws2a_c00050{word-spacing:3.392000pt;}
.ws24_c00050{word-spacing:3.776000pt;}
.ws25_c00050{word-spacing:3.904000pt;}
.ws28_c00050{word-spacing:4.416000pt;}
.ws14_c00050{word-spacing:5.056000pt;}
.ws20_c00050{word-spacing:5.312000pt;}
.ws2b_c00050{word-spacing:5.952000pt;}
.ws13_c00050{word-spacing:6.144000pt;}
.wsb_c00050{word-spacing:6.336000pt;}
.ws10_c00050{word-spacing:6.528000pt;}
.ws1f_c00050{word-spacing:6.592000pt;}
.ws18_c00050{word-spacing:6.976000pt;}
.ws17_c00050{word-spacing:7.296000pt;}
.ws19_c00050{word-spacing:8.320000pt;}
.ws15_c00050{word-spacing:9.472000pt;}
.ws26_c00050{word-spacing:9.600000pt;}
.wsf_c00050{word-spacing:9.792000pt;}
.ws22_c00050{word-spacing:9.920000pt;}
.ws23_c00050{word-spacing:9.984000pt;}
.ws11_c00050{word-spacing:11.072000pt;}
.wsd_c00050{word-spacing:12.608000pt;}
.wse_c00050{word-spacing:14.912000pt;}
.ws2c_c00050{word-spacing:16.448000pt;}
._0_c00050{margin-left:-2449.433600pt;}
._1_c00050{margin-left:-5.205333pt;}
._6_c00050{margin-left:-3.264000pt;}
._4_c00050{margin-left:-2.176000pt;}
._2_c00050{margin-left:-1.280000pt;}
._3_c00050{width:0.960000pt;}
._5_c00050{width:2.112000pt;}
._8_c00050{width:6.855467pt;}
._7_c00050{width:7.759467pt;}
.fs2_c00050{font-size:37.312000pt;}
.fs0_c00050{font-size:42.666667pt;}
.fs3_c00050{font-size:53.333333pt;}
.fs1_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y28_c00050{bottom:99.214533pt;}
.y27_c00050{bottom:112.547867pt;}
.y26_c00050{bottom:125.877600pt;}
.y25_c00050{bottom:146.770000pt;}
.y24_c00050{bottom:167.666000pt;}
.y23_c00050{bottom:180.999333pt;}
.y30_c00050{bottom:222.597200pt;}
.y22_c00050{bottom:225.800533pt;}
.y2f_c00050{bottom:239.130533pt;}
.y21_c00050{bottom:247.800533pt;}
.y2e_c00050{bottom:255.663867pt;}
.y20_c00050{bottom:269.272533pt;}
.y1f_c00050{bottom:290.744533pt;}
.y1e_c00050{bottom:312.216533pt;}
.y1d_c00050{bottom:333.688533pt;}
.y1c_c00050{bottom:355.160533pt;}
.y1b_c00050{bottom:376.632533pt;}
.y1a_c00050{bottom:398.088533pt;}
.y19_c00050{bottom:419.560533pt;}
.y18_c00050{bottom:441.032533pt;}
.y17_c00050{bottom:462.397733pt;}
.y16_c00050{bottom:483.869733pt;}
.y15_c00050{bottom:505.341733pt;}
.y14_c00050{bottom:526.813733pt;}
.y13_c00050{bottom:548.285733pt;}
.y12_c00050{bottom:569.757733pt;}
.y11_c00050{bottom:591.229733pt;}
.y10_c00050{bottom:612.701733pt;}
.y2d_c00050{bottom:628.586933pt;}
.y2c_c00050{bottom:645.120267pt;}
.yf_c00050{bottom:647.501733pt;}
.y2b_c00050{bottom:661.653600pt;}
.ye_c00050{bottom:668.973733pt;}
.y2a_c00050{bottom:678.186933pt;}
.yd_c00050{bottom:690.445733pt;}
.y29_c00050{bottom:694.720267pt;}
.yc_c00050{bottom:711.917733pt;}
.yb_c00050{bottom:733.389733pt;}
.ya_c00050{bottom:754.861733pt;}
.y9_c00050{bottom:776.333733pt;}
.y8_c00050{bottom:797.805733pt;}
.y7_c00050{bottom:819.277733pt;}
.y6_c00050{bottom:840.749733pt;}
.y5_c00050{bottom:862.221733pt;}
.y4_c00050{bottom:883.693733pt;}
.y3_c00050{bottom:905.165733pt;}
.y2_c00050{bottom:926.637733pt;}
.y1_c00050{bottom:972.089867pt;}
.h2_c00050{height:34.901333pt;}
.h7_c00050{height:34.915733pt;}
.h3_c00050{height:35.541333pt;}
.h9_c00050{height:43.200000pt;}
.h8_c00050{height:43.626667pt;}
.h4_c00050{height:52.352000pt;}
.h6_c00050{height:52.416000pt;}
.h5_c00050{height:52.779200pt;}
.h1_c00050{height:1009.333333pt;}
.h0_c00050{height:1009.338800pt;}
.w0_c00050{width:794.622400pt;}
.w1_c00050{width:794.666667pt;}
.x0_c00050{left:0.000000pt;}
.x5_c00050{left:114.334933pt;}
.x6_c00050{left:129.454533pt;}
.x2_c00050{left:167.166133pt;}
.x3_c00050{left:169.345200pt;}
.x4_c00050{left:457.071067pt;}
.x1_c00050{left:716.176000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e47a2d652df728da1d9117e.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_52f5502cd35efa359b96d019.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.v1_c00051{vertical-align:23.976600px;}
.ls6_c00051{letter-spacing:-6.000000px;}
.ls8_c00051{letter-spacing:-5.820000px;}
.ls3_c00051{letter-spacing:-0.672000px;}
.ls4_c00051{letter-spacing:-0.624000px;}
.ls0_c00051{letter-spacing:-0.480000px;}
.ls2_c00051{letter-spacing:-0.336000px;}
.ls7_c00051{letter-spacing:-0.300000px;}
.ls5_c00051{letter-spacing:-0.240000px;}
.ls1_c00051{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00051{word-spacing:-13.740000px;}
.ws4_c00051{word-spacing:-13.620000px;}
.ws7_c00051{word-spacing:-10.992000px;}
.ws3_c00051{word-spacing:-10.896000px;}
.ws2_c00051{word-spacing:-10.560000px;}
.ws8_c00051{word-spacing:-10.368000px;}
.ws6_c00051{word-spacing:-10.320000px;}
.ws1_c00051{word-spacing:-9.528552px;}
.wsc_c00051{word-spacing:-1.224000px;}
.ws9_c00051{word-spacing:0.000000px;}
.ws11_c00051{word-spacing:0.240000px;}
.ws13_c00051{word-spacing:0.300000px;}
.ws10_c00051{word-spacing:1.296000px;}
.wsa_c00051{word-spacing:1.512000px;}
.wsd_c00051{word-spacing:2.952000px;}
.wse_c00051{word-spacing:3.024000px;}
.wsf_c00051{word-spacing:3.504000px;}
.ws14_c00051{word-spacing:5.820000px;}
.ws12_c00051{word-spacing:6.000000px;}
.wsb_c00051{word-spacing:6.192000px;}
.ws0_c00051{word-spacing:1600.363200px;}
._5_c00051{margin-left:-6.804000px;}
._4_c00051{margin-left:-4.087800px;}
._0_c00051{margin-left:-2.112000px;}
._1_c00051{margin-left:-1.104000px;}
._2_c00051{width:1.080000px;}
._6_c00051{width:5.580000px;}
._3_c00051{width:7.359600px;}
.fc0_c00051{color:rgb(35,31,32);}
.fs2_c00051{font-size:41.976000px;}
.fs0_c00051{font-size:48.000000px;}
.fs4_c00051{font-size:54.000000px;}
.fs3_c00051{font-size:60.000000px;}
.fs1_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y9_c00051{bottom:111.616350px;}
.y8_c00051{bottom:126.612300px;}
.y7_c00051{bottom:150.120300px;}
.y6_c00051{bottom:198.131550px;}
.y5_c00051{bottom:222.881550px;}
.y4_c00051{bottom:247.631550px;}
.y3_c00051{bottom:272.381400px;}
.y2_c00051{bottom:297.131400px;}
.y13_c00051{bottom:355.305300px;}
.y12_c00051{bottom:373.905300px;}
.y11_c00051{bottom:392.505300px;}
.yd_c00051{bottom:748.861800px;}
.y10_c00051{bottom:766.861800px;}
.yc_c00051{bottom:767.461800px;}
.yf_c00051{bottom:785.461800px;}
.yb_c00051{bottom:786.061800px;}
.ye_c00051{bottom:804.061800px;}
.ya_c00051{bottom:804.661800px;}
.y1_c00051{bottom:1093.601100px;}
.h2_c00051{height:39.264000px;}
.h6_c00051{height:44.172000px;}
.h7_c00051{height:48.600000px;}
.h8_c00051{height:49.080000px;}
.h5_c00051{height:49.096200px;}
.h3_c00051{height:58.896000px;}
.h4_c00051{height:58.896600px;}
.h1_c00051{height:1135.500000px;}
.h0_c00051{height:1135.506150px;}
.w0_c00051{width:893.950200px;}
.w1_c00051{width:894.000000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:77.603100px;}
.x2_c00051{left:94.609050px;}
.x3_c00051{left:348.606450px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:21.312533pt;}
.ls6_c00051{letter-spacing:-5.333333pt;}
.ls8_c00051{letter-spacing:-5.173333pt;}
.ls3_c00051{letter-spacing:-0.597333pt;}
.ls4_c00051{letter-spacing:-0.554667pt;}
.ls0_c00051{letter-spacing:-0.426667pt;}
.ls2_c00051{letter-spacing:-0.298667pt;}
.ls7_c00051{letter-spacing:-0.266667pt;}
.ls5_c00051{letter-spacing:-0.213333pt;}
.ls1_c00051{letter-spacing:0.000000pt;}
.ws5_c00051{word-spacing:-12.213333pt;}
.ws4_c00051{word-spacing:-12.106667pt;}
.ws7_c00051{word-spacing:-9.770667pt;}
.ws3_c00051{word-spacing:-9.685333pt;}
.ws2_c00051{word-spacing:-9.386667pt;}
.ws8_c00051{word-spacing:-9.216000pt;}
.ws6_c00051{word-spacing:-9.173333pt;}
.ws1_c00051{word-spacing:-8.469824pt;}
.wsc_c00051{word-spacing:-1.088000pt;}
.ws9_c00051{word-spacing:0.000000pt;}
.ws11_c00051{word-spacing:0.213333pt;}
.ws13_c00051{word-spacing:0.266667pt;}
.ws10_c00051{word-spacing:1.152000pt;}
.wsa_c00051{word-spacing:1.344000pt;}
.wsd_c00051{word-spacing:2.624000pt;}
.wse_c00051{word-spacing:2.688000pt;}
.wsf_c00051{word-spacing:3.114667pt;}
.ws14_c00051{word-spacing:5.173333pt;}
.ws12_c00051{word-spacing:5.333333pt;}
.wsb_c00051{word-spacing:5.504000pt;}
.ws0_c00051{word-spacing:1422.545067pt;}
._5_c00051{margin-left:-6.048000pt;}
._4_c00051{margin-left:-3.633600pt;}
._0_c00051{margin-left:-1.877333pt;}
._1_c00051{margin-left:-0.981333pt;}
._2_c00051{width:0.960000pt;}
._6_c00051{width:4.960000pt;}
._3_c00051{width:6.541867pt;}
.fs2_c00051{font-size:37.312000pt;}
.fs0_c00051{font-size:42.666667pt;}
.fs4_c00051{font-size:48.000000pt;}
.fs3_c00051{font-size:53.333333pt;}
.fs1_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y9_c00051{bottom:99.214533pt;}
.y8_c00051{bottom:112.544267pt;}
.y7_c00051{bottom:133.440267pt;}
.y6_c00051{bottom:176.116933pt;}
.y5_c00051{bottom:198.116933pt;}
.y4_c00051{bottom:220.116933pt;}
.y3_c00051{bottom:242.116800pt;}
.y2_c00051{bottom:264.116800pt;}
.y13_c00051{bottom:315.826933pt;}
.y12_c00051{bottom:332.360267pt;}
.y11_c00051{bottom:348.893600pt;}
.yd_c00051{bottom:665.654933pt;}
.y10_c00051{bottom:681.654933pt;}
.yc_c00051{bottom:682.188267pt;}
.yf_c00051{bottom:698.188267pt;}
.yb_c00051{bottom:698.721600pt;}
.ye_c00051{bottom:714.721600pt;}
.ya_c00051{bottom:715.254933pt;}
.y1_c00051{bottom:972.089867pt;}
.h2_c00051{height:34.901333pt;}
.h6_c00051{height:39.264000pt;}
.h7_c00051{height:43.200000pt;}
.h8_c00051{height:43.626667pt;}
.h5_c00051{height:43.641067pt;}
.h3_c00051{height:52.352000pt;}
.h4_c00051{height:52.352533pt;}
.h1_c00051{height:1009.333333pt;}
.h0_c00051{height:1009.338800pt;}
.w0_c00051{width:794.622400pt;}
.w1_c00051{width:794.666667pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:68.980533pt;}
.x2_c00051{left:84.096933pt;}
.x3_c00051{left:309.872400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3a626fe55f6c4665ef9d522.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.067000;font-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_c00052{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00052{vertical-align:-23.976000px;}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:20.937000px;}
.v2_c00052{vertical-align:23.928000px;}
.lsa_c00052{letter-spacing:-4.800000px;}
.ls4_c00052{letter-spacing:-1.512000px;}
.lsb_c00052{letter-spacing:-0.960000px;}
.ls3_c00052{letter-spacing:-0.648000px;}
.ls6_c00052{letter-spacing:-0.377784px;}
.ls5_c00052{letter-spacing:-0.360000px;}
.ls9_c00052{letter-spacing:-0.288000px;}
.ls8_c00052{letter-spacing:-0.192000px;}
.ls2_c00052{letter-spacing:0.000000px;}
.ls7_c00052{letter-spacing:0.419760px;}
.ls0_c00052{letter-spacing:0.480000px;}
.ls1_c00052{letter-spacing:0.672000px;}
.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;}
}
.ws2_c00052{word-spacing:-16.344000px;}
.ws0_c00052{word-spacing:-11.568000px;}
.ws5_c00052{word-spacing:-10.896000px;}
.ws4_c00052{word-spacing:-10.704000px;}
.ws6_c00052{word-spacing:-10.608000px;}
.ws3_c00052{word-spacing:-9.150768px;}
.ws1_c00052{word-spacing:-8.337483px;}
.ws7_c00052{word-spacing:-6.096000px;}
.ws15_c00052{word-spacing:-3.024000px;}
.ws1b_c00052{word-spacing:-1.968000px;}
.wsa_c00052{word-spacing:-1.944000px;}
.ws1d_c00052{word-spacing:-1.872000px;}
.ws13_c00052{word-spacing:-1.800000px;}
.ws11_c00052{word-spacing:-0.432000px;}
.ws18_c00052{word-spacing:-0.419760px;}
.wsb_c00052{word-spacing:-0.315000px;}
.ws8_c00052{word-spacing:0.000000px;}
.ws16_c00052{word-spacing:0.216000px;}
.ws14_c00052{word-spacing:0.288000px;}
.ws17_c00052{word-spacing:0.360000px;}
.ws10_c00052{word-spacing:0.576000px;}
.ws19_c00052{word-spacing:0.768000px;}
.wsd_c00052{word-spacing:0.792000px;}
.wsc_c00052{word-spacing:0.882000px;}
.ws20_c00052{word-spacing:0.960000px;}
.ws1c_c00052{word-spacing:1.104000px;}
.ws1a_c00052{word-spacing:2.880000px;}
.ws9_c00052{word-spacing:3.384000px;}
.ws1e_c00052{word-spacing:3.744000px;}
.wse_c00052{word-spacing:4.248000px;}
.ws12_c00052{word-spacing:4.536000px;}
.wsf_c00052{word-spacing:5.112000px;}
.ws1f_c00052{word-spacing:6.528000px;}
._0_c00052{margin-left:-2755.947600px;}
._5_c00052{margin-left:-7.704000px;}
._1_c00052{margin-left:-5.856000px;}
._8_c00052{margin-left:-4.320000px;}
._4_c00052{margin-left:-2.880000px;}
._2_c00052{margin-left:-1.440000px;}
._3_c00052{width:1.080000px;}
._7_c00052{width:2.679000px;}
._9_c00052{width:5.520000px;}
._6_c00052{width:7.488000px;}
.fc0_c00052{color:rgb(35,31,32);}
.fs3_c00052{font-size:36.729000px;}
.fs4_c00052{font-size:41.976000px;}
.fs0_c00052{font-size:48.000000px;}
.fs5_c00052{font-size:60.000000px;}
.fs2_c00052{font-size:63.000000px;}
.fs1_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y1b_c00052{bottom:111.616350px;}
.y1a_c00052{bottom:126.616350px;}
.y19_c00052{bottom:141.612300px;}
.y18_c00052{bottom:165.120300px;}
.y17_c00052{bottom:180.120300px;}
.y16_c00052{bottom:195.120300px;}
.y15_c00052{bottom:210.120300px;}
.y14_c00052{bottom:225.120300px;}
.y13_c00052{bottom:240.116250px;}
.y12_c00052{bottom:263.624250px;}
.y11_c00052{bottom:315.463650px;}
.y10_c00052{bottom:340.213650px;}
.yf_c00052{bottom:364.975650px;}
.ye_c00052{bottom:389.725650px;}
.yd_c00052{bottom:414.475650px;}
.yc_c00052{bottom:439.225650px;}
.yb_c00052{bottom:478.969650px;}
.ya_c00052{bottom:503.719650px;}
.y9_c00052{bottom:528.469650px;}
.y8_c00052{bottom:553.219650px;}
.y7_c00052{bottom:592.974150px;}
.y6_c00052{bottom:613.968900px;}
.y5_c00052{bottom:634.963650px;}
.y4_c00052{bottom:664.467450px;}
.y3_c00052{bottom:689.217450px;}
.y2_c00052{bottom:713.967450px;}
.y1e_c00052{bottom:758.357700px;}
.y1d_c00052{bottom:776.957700px;}
.y1c_c00052{bottom:795.557700px;}
.y1_c00052{bottom:1093.601100px;}
.h2_c00052{height:39.264000px;}
.h7_c00052{height:39.280200px;}
.h3_c00052{height:39.984000px;}
.h9_c00052{height:48.600000px;}
.h8_c00052{height:49.080000px;}
.h5_c00052{height:51.534000px;}
.h6_c00052{height:58.854000px;}
.h4_c00052{height:58.896000px;}
.h1_c00052{height:1135.500000px;}
.h0_c00052{height:1135.506150px;}
.w0_c00052{width:893.950200px;}
.w1_c00052{width:894.000000px;}
.x0_c00052{left:0.000000px;}
.x4_c00052{left:128.626800px;}
.x6_c00052{left:145.634700px;}
.x5_c00052{left:149.886600px;}
.x2_c00052{left:188.061900px;}
.x3_c00052{left:190.513350px;}
.x7_c00052{left:489.796950px;}
.x1_c00052{left:808.361700px;}
@media print{
.v3_c00052{vertical-align:-21.312000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:18.610667pt;}
.v2_c00052{vertical-align:21.269333pt;}
.lsa_c00052{letter-spacing:-4.266667pt;}
.ls4_c00052{letter-spacing:-1.344000pt;}
.lsb_c00052{letter-spacing:-0.853333pt;}
.ls3_c00052{letter-spacing:-0.576000pt;}
.ls6_c00052{letter-spacing:-0.335808pt;}
.ls5_c00052{letter-spacing:-0.320000pt;}
.ls9_c00052{letter-spacing:-0.256000pt;}
.ls8_c00052{letter-spacing:-0.170667pt;}
.ls2_c00052{letter-spacing:0.000000pt;}
.ls7_c00052{letter-spacing:0.373120pt;}
.ls0_c00052{letter-spacing:0.426667pt;}
.ls1_c00052{letter-spacing:0.597333pt;}
.ws2_c00052{word-spacing:-14.528000pt;}
.ws0_c00052{word-spacing:-10.282667pt;}
.ws5_c00052{word-spacing:-9.685333pt;}
.ws4_c00052{word-spacing:-9.514667pt;}
.ws6_c00052{word-spacing:-9.429333pt;}
.ws3_c00052{word-spacing:-8.134016pt;}
.ws1_c00052{word-spacing:-7.411096pt;}
.ws7_c00052{word-spacing:-5.418667pt;}
.ws15_c00052{word-spacing:-2.688000pt;}
.ws1b_c00052{word-spacing:-1.749333pt;}
.wsa_c00052{word-spacing:-1.728000pt;}
.ws1d_c00052{word-spacing:-1.664000pt;}
.ws13_c00052{word-spacing:-1.600000pt;}
.ws11_c00052{word-spacing:-0.384000pt;}
.ws18_c00052{word-spacing:-0.373120pt;}
.wsb_c00052{word-spacing:-0.280000pt;}
.ws8_c00052{word-spacing:0.000000pt;}
.ws16_c00052{word-spacing:0.192000pt;}
.ws14_c00052{word-spacing:0.256000pt;}
.ws17_c00052{word-spacing:0.320000pt;}
.ws10_c00052{word-spacing:0.512000pt;}
.ws19_c00052{word-spacing:0.682667pt;}
.wsd_c00052{word-spacing:0.704000pt;}
.wsc_c00052{word-spacing:0.784000pt;}
.ws20_c00052{word-spacing:0.853333pt;}
.ws1c_c00052{word-spacing:0.981333pt;}
.ws1a_c00052{word-spacing:2.560000pt;}
.ws9_c00052{word-spacing:3.008000pt;}
.ws1e_c00052{word-spacing:3.328000pt;}
.wse_c00052{word-spacing:3.776000pt;}
.ws12_c00052{word-spacing:4.032000pt;}
.wsf_c00052{word-spacing:4.544000pt;}
.ws1f_c00052{word-spacing:5.802667pt;}
._0_c00052{margin-left:-2449.731200pt;}
._5_c00052{margin-left:-6.848000pt;}
._1_c00052{margin-left:-5.205333pt;}
._8_c00052{margin-left:-3.840000pt;}
._4_c00052{margin-left:-2.560000pt;}
._2_c00052{margin-left:-1.280000pt;}
._3_c00052{width:0.960000pt;}
._7_c00052{width:2.381333pt;}
._9_c00052{width:4.906667pt;}
._6_c00052{width:6.656000pt;}
.fs3_c00052{font-size:32.648000pt;}
.fs4_c00052{font-size:37.312000pt;}
.fs0_c00052{font-size:42.666667pt;}
.fs5_c00052{font-size:53.333333pt;}
.fs2_c00052{font-size:56.000000pt;}
.fs1_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y1b_c00052{bottom:99.214533pt;}
.y1a_c00052{bottom:112.547867pt;}
.y19_c00052{bottom:125.877600pt;}
.y18_c00052{bottom:146.773600pt;}
.y17_c00052{bottom:160.106933pt;}
.y16_c00052{bottom:173.440267pt;}
.y15_c00052{bottom:186.773600pt;}
.y14_c00052{bottom:200.106933pt;}
.y13_c00052{bottom:213.436667pt;}
.y12_c00052{bottom:234.332667pt;}
.y11_c00052{bottom:280.412133pt;}
.y10_c00052{bottom:302.412133pt;}
.yf_c00052{bottom:324.422800pt;}
.ye_c00052{bottom:346.422800pt;}
.yd_c00052{bottom:368.422800pt;}
.yc_c00052{bottom:390.422800pt;}
.yb_c00052{bottom:425.750800pt;}
.ya_c00052{bottom:447.750800pt;}
.y9_c00052{bottom:469.750800pt;}
.y8_c00052{bottom:491.750800pt;}
.y7_c00052{bottom:527.088133pt;}
.y6_c00052{bottom:545.750133pt;}
.y5_c00052{bottom:564.412133pt;}
.y4_c00052{bottom:590.637733pt;}
.y3_c00052{bottom:612.637733pt;}
.y2_c00052{bottom:634.637733pt;}
.y1e_c00052{bottom:674.095733pt;}
.y1d_c00052{bottom:690.629067pt;}
.y1c_c00052{bottom:707.162400pt;}
.y1_c00052{bottom:972.089867pt;}
.h2_c00052{height:34.901333pt;}
.h7_c00052{height:34.915733pt;}
.h3_c00052{height:35.541333pt;}
.h9_c00052{height:43.200000pt;}
.h8_c00052{height:43.626667pt;}
.h5_c00052{height:45.808000pt;}
.h6_c00052{height:52.314667pt;}
.h4_c00052{height:52.352000pt;}
.h1_c00052{height:1009.333333pt;}
.h0_c00052{height:1009.338800pt;}
.w0_c00052{width:794.622400pt;}
.w1_c00052{width:794.666667pt;}
.x0_c00052{left:0.000000pt;}
.x4_c00052{left:114.334933pt;}
.x6_c00052{left:129.453067pt;}
.x5_c00052{left:133.232533pt;}
.x2_c00052{left:167.166133pt;}
.x3_c00052{left:169.345200pt;}
.x7_c00052{left:435.375067pt;}
.x1_c00052{left:718.543733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_777529917bc1b57e5e6dae0e.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_6ea6e1d7c44dbbaf5c7050b6.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls4_c00053{letter-spacing:-0.960000px;}
.ls3_c00053{letter-spacing:-0.600000px;}
.ls2_c00053{letter-spacing:-0.420000px;}
.ls0_c00053{letter-spacing:-0.288000px;}
.ls5_c00053{letter-spacing:-0.240000px;}
.ls1_c00053{letter-spacing:0.000000px;}
.ls7_c00053{letter-spacing:0.480000px;}
.ls8_c00053{letter-spacing:0.648000px;}
.ls6_c00053{letter-spacing:0.720000px;}
.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;}
}
.ws4_c00053{word-spacing:-14.340000px;}
.ws5_c00053{word-spacing:-14.220000px;}
.ws1_c00053{word-spacing:-13.200000px;}
.ws2_c00053{word-spacing:-13.140000px;}
.wsa_c00053{word-spacing:-0.648000px;}
.ws6_c00053{word-spacing:0.000000px;}
.ws9_c00053{word-spacing:0.240000px;}
.ws7_c00053{word-spacing:0.600000px;}
.ws8_c00053{word-spacing:0.960000px;}
.ws3_c00053{word-spacing:1336.000800px;}
.ws0_c00053{word-spacing:1603.819200px;}
._0_c00053{margin-left:-2.112000px;}
._1_c00053{margin-left:-1.104000px;}
._2_c00053{width:1.020000px;}
.fc0_c00053{color:rgb(35,31,32);}
.fs0_c00053{font-size:48.000000px;}
.fs2_c00053{font-size:54.000000px;}
.fs1_c00053{font-size:60.000000px;}
.y0_c00053{bottom:0.000000px;}
.y4_c00053{bottom:122.246250px;}
.y6_c00053{bottom:122.937750px;}
.y3_c00053{bottom:140.846250px;}
.y2_c00053{bottom:159.446250px;}
.ya_c00053{bottom:204.469050px;}
.y9_c00053{bottom:223.069050px;}
.y8_c00053{bottom:241.669050px;}
.y7_c00053{bottom:260.269050px;}
.yb_c00053{bottom:298.911300px;}
.y5_c00053{bottom:593.147550px;}
.y1_c00053{bottom:1093.601100px;}
.h2_c00053{height:39.264000px;}
.h5_c00053{height:44.172000px;}
.h4_c00053{height:48.600000px;}
.h3_c00053{height:49.080000px;}
.h1_c00053{height:1135.500000px;}
.h0_c00053{height:1135.506150px;}
.w0_c00053{width:893.950200px;}
.w1_c00053{width:894.000000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:77.603100px;}
.x2_c00053{left:88.590150px;}
.x3_c00053{left:437.048850px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls4_c00053{letter-spacing:-0.853333pt;}
.ls3_c00053{letter-spacing:-0.533333pt;}
.ls2_c00053{letter-spacing:-0.373333pt;}
.ls0_c00053{letter-spacing:-0.256000pt;}
.ls5_c00053{letter-spacing:-0.213333pt;}
.ls1_c00053{letter-spacing:0.000000pt;}
.ls7_c00053{letter-spacing:0.426667pt;}
.ls8_c00053{letter-spacing:0.576000pt;}
.ls6_c00053{letter-spacing:0.640000pt;}
.ws4_c00053{word-spacing:-12.746667pt;}
.ws5_c00053{word-spacing:-12.640000pt;}
.ws1_c00053{word-spacing:-11.733333pt;}
.ws2_c00053{word-spacing:-11.680000pt;}
.wsa_c00053{word-spacing:-0.576000pt;}
.ws6_c00053{word-spacing:0.000000pt;}
.ws9_c00053{word-spacing:0.213333pt;}
.ws7_c00053{word-spacing:0.533333pt;}
.ws8_c00053{word-spacing:0.853333pt;}
.ws3_c00053{word-spacing:1187.556267pt;}
.ws0_c00053{word-spacing:1425.617067pt;}
._0_c00053{margin-left:-1.877333pt;}
._1_c00053{margin-left:-0.981333pt;}
._2_c00053{width:0.906667pt;}
.fs0_c00053{font-size:42.666667pt;}
.fs2_c00053{font-size:48.000000pt;}
.fs1_c00053{font-size:53.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y4_c00053{bottom:108.663333pt;}
.y6_c00053{bottom:109.278000pt;}
.y3_c00053{bottom:125.196667pt;}
.y2_c00053{bottom:141.730000pt;}
.ya_c00053{bottom:181.750267pt;}
.y9_c00053{bottom:198.283600pt;}
.y8_c00053{bottom:214.816933pt;}
.y7_c00053{bottom:231.350267pt;}
.yb_c00053{bottom:265.698933pt;}
.y5_c00053{bottom:527.242267pt;}
.y1_c00053{bottom:972.089867pt;}
.h2_c00053{height:34.901333pt;}
.h5_c00053{height:39.264000pt;}
.h4_c00053{height:43.200000pt;}
.h3_c00053{height:43.626667pt;}
.h1_c00053{height:1009.333333pt;}
.h0_c00053{height:1009.338800pt;}
.w0_c00053{width:794.622400pt;}
.w1_c00053{width:794.666667pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:68.980533pt;}
.x2_c00053{left:78.746800pt;}
.x3_c00053{left:388.487867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddb9ea2a783ecfe7d919671a.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.067000;font-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_c00054{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls5_c00054{letter-spacing:-5.820000px;}
.ls4_c00054{letter-spacing:-0.600000px;}
.lsa_c00054{letter-spacing:-0.540000px;}
.ls2_c00054{letter-spacing:-0.420000px;}
.ls6_c00054{letter-spacing:-0.240000px;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls9_c00054{letter-spacing:0.162000px;}
.ls8_c00054{letter-spacing:0.378000px;}
.ls0_c00054{letter-spacing:0.480000px;}
.ls7_c00054{letter-spacing:0.702000px;}
.ls3_c00054{letter-spacing:0.780000px;}
.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;}
}
.ws2_c00054{word-spacing:-14.400000px;}
.ws1_c00054{word-spacing:-13.200000px;}
.ws3_c00054{word-spacing:-13.020000px;}
.ws0_c00054{word-spacing:-10.896000px;}
.ws4_c00054{word-spacing:-7.920000px;}
.ws9_c00054{word-spacing:-0.378000px;}
.ws7_c00054{word-spacing:0.000000px;}
.ws8_c00054{word-spacing:0.240000px;}
.wsa_c00054{word-spacing:0.540000px;}
.ws6_c00054{word-spacing:1402.789800px;}
.ws5_c00054{word-spacing:1426.785600px;}
._0_c00054{margin-left:-2755.275600px;}
._1_c00054{margin-left:-5.856000px;}
._3_c00054{margin-left:-2.520000px;}
._2_c00054{margin-left:-1.440000px;}
._5_c00054{width:1.020000px;}
._4_c00054{width:5.400000px;}
.fc0_c00054{color:rgb(35,31,32);}
.fs0_c00054{font-size:48.000000px;}
.fs2_c00054{font-size:54.000000px;}
.fs1_c00054{font-size:60.000000px;}
.y0_c00054{bottom:0.000000px;}
.y5_c00054{bottom:140.818950px;}
.y4_c00054{bottom:159.418950px;}
.y3_c00054{bottom:178.018950px;}
.y2_c00054{bottom:196.618950px;}
.y7_c00054{bottom:235.321050px;}
.y6_c00054{bottom:717.346050px;}
.y1_c00054{bottom:1093.601100px;}
.h2_c00054{height:39.264000px;}
.h3_c00054{height:39.984000px;}
.h6_c00054{height:44.172000px;}
.h5_c00054{height:48.600000px;}
.h4_c00054{height:49.080000px;}
.h1_c00054{height:1135.500000px;}
.h0_c00054{height:1135.506150px;}
.w0_c00054{width:893.950200px;}
.w1_c00054{width:894.000000px;}
.x0_c00054{left:0.000000px;}
.x4_c00054{left:128.626800px;}
.x5_c00054{left:139.316850px;}
.x2_c00054{left:188.061900px;}
.x3_c00054{left:190.513350px;}
.x1_c00054{left:807.737700px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls5_c00054{letter-spacing:-5.173333pt;}
.ls4_c00054{letter-spacing:-0.533333pt;}
.lsa_c00054{letter-spacing:-0.480000pt;}
.ls2_c00054{letter-spacing:-0.373333pt;}
.ls6_c00054{letter-spacing:-0.213333pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls9_c00054{letter-spacing:0.144000pt;}
.ls8_c00054{letter-spacing:0.336000pt;}
.ls0_c00054{letter-spacing:0.426667pt;}
.ls7_c00054{letter-spacing:0.624000pt;}
.ls3_c00054{letter-spacing:0.693333pt;}
.ws2_c00054{word-spacing:-12.800000pt;}
.ws1_c00054{word-spacing:-11.733333pt;}
.ws3_c00054{word-spacing:-11.573333pt;}
.ws0_c00054{word-spacing:-9.685333pt;}
.ws4_c00054{word-spacing:-7.040000pt;}
.ws9_c00054{word-spacing:-0.336000pt;}
.ws7_c00054{word-spacing:0.000000pt;}
.ws8_c00054{word-spacing:0.213333pt;}
.wsa_c00054{word-spacing:0.480000pt;}
.ws6_c00054{word-spacing:1246.924267pt;}
.ws5_c00054{word-spacing:1268.253867pt;}
._0_c00054{margin-left:-2449.133867pt;}
._1_c00054{margin-left:-5.205333pt;}
._3_c00054{margin-left:-2.240000pt;}
._2_c00054{margin-left:-1.280000pt;}
._5_c00054{width:0.906667pt;}
._4_c00054{width:4.800000pt;}
.fs0_c00054{font-size:42.666667pt;}
.fs2_c00054{font-size:48.000000pt;}
.fs1_c00054{font-size:53.333333pt;}
.y0_c00054{bottom:0.000000pt;}
.y5_c00054{bottom:125.172400pt;}
.y4_c00054{bottom:141.705733pt;}
.y3_c00054{bottom:158.239067pt;}
.y2_c00054{bottom:174.772400pt;}
.y7_c00054{bottom:209.174267pt;}
.y6_c00054{bottom:637.640933pt;}
.y1_c00054{bottom:972.089867pt;}
.h2_c00054{height:34.901333pt;}
.h3_c00054{height:35.541333pt;}
.h6_c00054{height:39.264000pt;}
.h5_c00054{height:43.200000pt;}
.h4_c00054{height:43.626667pt;}
.h1_c00054{height:1009.333333pt;}
.h0_c00054{height:1009.338800pt;}
.w0_c00054{width:794.622400pt;}
.w1_c00054{width:794.666667pt;}
.x0_c00054{left:0.000000pt;}
.x4_c00054{left:114.334933pt;}
.x5_c00054{left:123.837200pt;}
.x2_c00054{left:167.166133pt;}
.x3_c00054{left:169.345200pt;}
.x1_c00054{left:717.989067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eae2c21fa3c2fe6902a89812.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_3a08404276bb4ec3e7358082.woff2')format("woff");}.ff5_c00055{font-family:ff5_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;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.v1_c00055{vertical-align:23.976000px;}
.ls4_c00055{letter-spacing:-7.056000px;}
.ls5_c00055{letter-spacing:-1.368000px;}
.ls6_c00055{letter-spacing:-0.936000px;}
.ls2_c00055{letter-spacing:-0.720000px;}
.ls7_c00055{letter-spacing:-0.192000px;}
.ls3_c00055{letter-spacing:-0.167904px;}
.ls1_c00055{letter-spacing:0.000000px;}
.ls9_c00055{letter-spacing:0.096000px;}
.ls8_c00055{letter-spacing:0.528000px;}
.ls0_c00055{letter-spacing:0.720000px;}
.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;}
}
.ws1_c00055{word-spacing:-16.344000px;}
.ws5_c00055{word-spacing:-11.088000px;}
.ws4_c00055{word-spacing:-10.704000px;}
.ws2_c00055{word-spacing:-9.360648px;}
.ws3_c00055{word-spacing:-9.288000px;}
.ws12_c00055{word-spacing:-2.160000px;}
.ws13_c00055{word-spacing:-2.016000px;}
.ws1a_c00055{word-spacing:-1.872000px;}
.ws18_c00055{word-spacing:-1.224000px;}
.ws1b_c00055{word-spacing:-0.936000px;}
.ws20_c00055{word-spacing:-0.864000px;}
.ws25_c00055{word-spacing:-0.720000px;}
.ws16_c00055{word-spacing:-0.360000px;}
.ws6_c00055{word-spacing:0.000000px;}
.ws10_c00055{word-spacing:0.288000px;}
.ws22_c00055{word-spacing:0.528000px;}
.ws15_c00055{word-spacing:0.720000px;}
.ws1c_c00055{word-spacing:0.792000px;}
.ws17_c00055{word-spacing:1.008000px;}
.ws21_c00055{word-spacing:1.080000px;}
.wsd_c00055{word-spacing:1.152000px;}
.wse_c00055{word-spacing:1.224000px;}
.wsb_c00055{word-spacing:2.520000px;}
.wsc_c00055{word-spacing:2.592000px;}
.ws1f_c00055{word-spacing:2.664000px;}
.ws8_c00055{word-spacing:2.952000px;}
.ws9_c00055{word-spacing:3.096000px;}
.ws14_c00055{word-spacing:3.312000px;}
.wsa_c00055{word-spacing:3.816000px;}
.wsf_c00055{word-spacing:3.888000px;}
.ws24_c00055{word-spacing:4.224000px;}
.ws23_c00055{word-spacing:4.512000px;}
.ws7_c00055{word-spacing:4.536000px;}
.ws19_c00055{word-spacing:5.328000px;}
.ws1d_c00055{word-spacing:5.904000px;}
.ws1e_c00055{word-spacing:5.976000px;}
.ws11_c00055{word-spacing:6.840000px;}
.ws0_c00055{word-spacing:1601.035200px;}
._3_c00055{margin-left:-6.216000px;}
._7_c00055{margin-left:-4.080000px;}
._0_c00055{margin-left:-2.112000px;}
._1_c00055{margin-left:-1.104000px;}
._2_c00055{width:1.128000px;}
._5_c00055{width:2.256000px;}
._6_c00055{width:4.463400px;}
._4_c00055{width:6.840000px;}
.fc0_c00055{color:rgb(35,31,32);}
.fs2_c00055{font-size:41.976000px;}
.fs0_c00055{font-size:48.000000px;}
.fs3_c00055{font-size:57.000000px;}
.fs1_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y23_c00055{bottom:120.120300px;}
.y22_c00055{bottom:135.120300px;}
.y21_c00055{bottom:150.120300px;}
.y20_c00055{bottom:165.116250px;}
.y1f_c00055{bottom:188.624250px;}
.y1e_c00055{bottom:259.479450px;}
.y1d_c00055{bottom:284.229450px;}
.y1c_c00055{bottom:323.973450px;}
.y1b_c00055{bottom:348.723450px;}
.y1a_c00055{bottom:373.473450px;}
.y19_c00055{bottom:398.223450px;}
.y18_c00055{bottom:422.973450px;}
.y17_c00055{bottom:462.717450px;}
.y16_c00055{bottom:487.479450px;}
.y15_c00055{bottom:512.229450px;}
.y14_c00055{bottom:536.979450px;}
.y13_c00055{bottom:561.729450px;}
.y12_c00055{bottom:601.473450px;}
.y11_c00055{bottom:626.223450px;}
.y10_c00055{bottom:650.973450px;}
.yf_c00055{bottom:675.723450px;}
.ye_c00055{bottom:715.479450px;}
.yd_c00055{bottom:740.229450px;}
.yc_c00055{bottom:764.979450px;}
.yb_c00055{bottom:789.729450px;}
.ya_c00055{bottom:814.479450px;}
.y9_c00055{bottom:854.223450px;}
.y8_c00055{bottom:878.973450px;}
.y7_c00055{bottom:903.723450px;}
.y6_c00055{bottom:928.473450px;}
.y5_c00055{bottom:953.223450px;}
.y4_c00055{bottom:992.967450px;}
.y3_c00055{bottom:1017.717450px;}
.y2_c00055{bottom:1042.467450px;}
.y1_c00055{bottom:1093.601100px;}
.h2_c00055{height:39.264000px;}
.h5_c00055{height:39.280200px;}
.h3_c00055{height:58.896000px;}
.h4_c00055{height:70.664062px;}
.h1_c00055{height:1135.500000px;}
.h0_c00055{height:1135.506150px;}
.w0_c00055{width:893.950200px;}
.w1_c00055{width:894.000000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:77.603100px;}
.x2_c00055{left:94.608450px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.v1_c00055{vertical-align:21.312000pt;}
.ls4_c00055{letter-spacing:-6.272000pt;}
.ls5_c00055{letter-spacing:-1.216000pt;}
.ls6_c00055{letter-spacing:-0.832000pt;}
.ls2_c00055{letter-spacing:-0.640000pt;}
.ls7_c00055{letter-spacing:-0.170667pt;}
.ls3_c00055{letter-spacing:-0.149248pt;}
.ls1_c00055{letter-spacing:0.000000pt;}
.ls9_c00055{letter-spacing:0.085333pt;}
.ls8_c00055{letter-spacing:0.469333pt;}
.ls0_c00055{letter-spacing:0.640000pt;}
.ws1_c00055{word-spacing:-14.528000pt;}
.ws5_c00055{word-spacing:-9.856000pt;}
.ws4_c00055{word-spacing:-9.514667pt;}
.ws2_c00055{word-spacing:-8.320576pt;}
.ws3_c00055{word-spacing:-8.256000pt;}
.ws12_c00055{word-spacing:-1.920000pt;}
.ws13_c00055{word-spacing:-1.792000pt;}
.ws1a_c00055{word-spacing:-1.664000pt;}
.ws18_c00055{word-spacing:-1.088000pt;}
.ws1b_c00055{word-spacing:-0.832000pt;}
.ws20_c00055{word-spacing:-0.768000pt;}
.ws25_c00055{word-spacing:-0.640000pt;}
.ws16_c00055{word-spacing:-0.320000pt;}
.ws6_c00055{word-spacing:0.000000pt;}
.ws10_c00055{word-spacing:0.256000pt;}
.ws22_c00055{word-spacing:0.469333pt;}
.ws15_c00055{word-spacing:0.640000pt;}
.ws1c_c00055{word-spacing:0.704000pt;}
.ws17_c00055{word-spacing:0.896000pt;}
.ws21_c00055{word-spacing:0.960000pt;}
.wsd_c00055{word-spacing:1.024000pt;}
.wse_c00055{word-spacing:1.088000pt;}
.wsb_c00055{word-spacing:2.240000pt;}
.wsc_c00055{word-spacing:2.304000pt;}
.ws1f_c00055{word-spacing:2.368000pt;}
.ws8_c00055{word-spacing:2.624000pt;}
.ws9_c00055{word-spacing:2.752000pt;}
.ws14_c00055{word-spacing:2.944000pt;}
.wsa_c00055{word-spacing:3.392000pt;}
.wsf_c00055{word-spacing:3.456000pt;}
.ws24_c00055{word-spacing:3.754667pt;}
.ws23_c00055{word-spacing:4.010667pt;}
.ws7_c00055{word-spacing:4.032000pt;}
.ws19_c00055{word-spacing:4.736000pt;}
.ws1d_c00055{word-spacing:5.248000pt;}
.ws1e_c00055{word-spacing:5.312000pt;}
.ws11_c00055{word-spacing:6.080000pt;}
.ws0_c00055{word-spacing:1423.142400pt;}
._3_c00055{margin-left:-5.525333pt;}
._7_c00055{margin-left:-3.626667pt;}
._0_c00055{margin-left:-1.877333pt;}
._1_c00055{margin-left:-0.981333pt;}
._2_c00055{width:1.002667pt;}
._5_c00055{width:2.005333pt;}
._6_c00055{width:3.967467pt;}
._4_c00055{width:6.080000pt;}
.fs2_c00055{font-size:37.312000pt;}
.fs0_c00055{font-size:42.666667pt;}
.fs3_c00055{font-size:50.666667pt;}
.fs1_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y23_c00055{bottom:106.773600pt;}
.y22_c00055{bottom:120.106933pt;}
.y21_c00055{bottom:133.440267pt;}
.y20_c00055{bottom:146.770000pt;}
.y1f_c00055{bottom:167.666000pt;}
.y1e_c00055{bottom:230.648400pt;}
.y1d_c00055{bottom:252.648400pt;}
.y1c_c00055{bottom:287.976400pt;}
.y1b_c00055{bottom:309.976400pt;}
.y1a_c00055{bottom:331.976400pt;}
.y19_c00055{bottom:353.976400pt;}
.y18_c00055{bottom:375.976400pt;}
.y17_c00055{bottom:411.304400pt;}
.y16_c00055{bottom:433.315067pt;}
.y15_c00055{bottom:455.315067pt;}
.y14_c00055{bottom:477.315067pt;}
.y13_c00055{bottom:499.315067pt;}
.y12_c00055{bottom:534.643067pt;}
.y11_c00055{bottom:556.643067pt;}
.y10_c00055{bottom:578.643067pt;}
.yf_c00055{bottom:600.643067pt;}
.ye_c00055{bottom:635.981733pt;}
.yd_c00055{bottom:657.981733pt;}
.yc_c00055{bottom:679.981733pt;}
.yb_c00055{bottom:701.981733pt;}
.ya_c00055{bottom:723.981733pt;}
.y9_c00055{bottom:759.309733pt;}
.y8_c00055{bottom:781.309733pt;}
.y7_c00055{bottom:803.309733pt;}
.y6_c00055{bottom:825.309733pt;}
.y5_c00055{bottom:847.309733pt;}
.y4_c00055{bottom:882.637733pt;}
.y3_c00055{bottom:904.637733pt;}
.y2_c00055{bottom:926.637733pt;}
.y1_c00055{bottom:972.089867pt;}
.h2_c00055{height:34.901333pt;}
.h5_c00055{height:34.915733pt;}
.h3_c00055{height:52.352000pt;}
.h4_c00055{height:62.812500pt;}
.h1_c00055{height:1009.333333pt;}
.h0_c00055{height:1009.338800pt;}
.w0_c00055{width:794.622400pt;}
.w1_c00055{width:794.666667pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:68.980533pt;}
.x2_c00055{left:84.096400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a81584a32516a22280cecc2e.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_92a2d64688a825668fc1df18.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_7ec4b726a10a885af92c4827.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00056{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:23.976000px;}
.ls2_c00056{letter-spacing:-0.288000px;}
.ls3_c00056{letter-spacing:-0.240000px;}
.ls1_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00056{word-spacing:-16.056000px;}
.ws3_c00056{word-spacing:-14.301000px;}
.ws0_c00056{word-spacing:-10.896000px;}
.ws2_c00056{word-spacing:-9.528552px;}
.ws12_c00056{word-spacing:-2.808000px;}
.wsa_c00056{word-spacing:-2.088000px;}
.ws8_c00056{word-spacing:-1.872000px;}
.wsd_c00056{word-spacing:-0.945000px;}
.ws11_c00056{word-spacing:-0.936000px;}
.ws4_c00056{word-spacing:0.000000px;}
.ws14_c00056{word-spacing:0.240000px;}
.wse_c00056{word-spacing:0.252000px;}
.ws13_c00056{word-spacing:0.288000px;}
.ws9_c00056{word-spacing:0.648000px;}
.wsc_c00056{word-spacing:1.008000px;}
.wsf_c00056{word-spacing:1.575000px;}
.ws10_c00056{word-spacing:3.024000px;}
.ws6_c00056{word-spacing:3.240000px;}
.ws5_c00056{word-spacing:3.312000px;}
.wsb_c00056{word-spacing:4.464000px;}
.ws7_c00056{word-spacing:5.400000px;}
._0_c00056{margin-left:-2755.275600px;}
._5_c00056{margin-left:-7.488000px;}
._1_c00056{margin-left:-5.856000px;}
._4_c00056{margin-left:-4.176000px;}
._6_c00056{margin-left:-2.940000px;}
._2_c00056{margin-left:-1.440000px;}
._3_c00056{width:1.008000px;}
._7_c00056{width:3.012000px;}
.fc0_c00056{color:rgb(35,31,32);}
.fs2_c00056{font-size:41.976000px;}
.fs0_c00056{font-size:48.000000px;}
.fs4_c00056{font-size:60.000000px;}
.fs3_c00056{font-size:63.000000px;}
.fs1_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y17_c00056{bottom:115.868400px;}
.y16_c00056{bottom:130.868400px;}
.y15_c00056{bottom:173.478150px;}
.y14_c00056{bottom:198.228150px;}
.y13_c00056{bottom:238.019550px;}
.y12_c00056{bottom:259.014300px;}
.y11_c00056{bottom:280.009050px;}
.y10_c00056{bottom:301.003800px;}
.yf_c00056{bottom:326.251050px;}
.ye_c00056{bottom:347.245800px;}
.yd_c00056{bottom:368.240550px;}
.yc_c00056{bottom:389.235300px;}
.yb_c00056{bottom:410.230050px;}
.ya_c00056{bottom:439.740150px;}
.y9_c00056{bottom:464.490150px;}
.y8_c00056{bottom:489.240150px;}
.y7_c00056{bottom:513.990150px;}
.y6_c00056{bottom:538.740150px;}
.y5_c00056{bottom:563.490150px;}
.y4_c00056{bottom:588.240150px;}
.y3_c00056{bottom:627.984150px;}
.y2_c00056{bottom:652.734150px;}
.y1a_c00056{bottom:692.272050px;}
.y19_c00056{bottom:710.872050px;}
.y18_c00056{bottom:729.472050px;}
.y1_c00056{bottom:1093.601100px;}
.h2_c00056{height:39.264000px;}
.h3_c00056{height:39.984000px;}
.h8_c00056{height:48.600000px;}
.h7_c00056{height:49.080000px;}
.h6_c00056{height:51.534000px;}
.h4_c00056{height:58.896000px;}
.h5_c00056{height:70.628906px;}
.h1_c00056{height:1135.500000px;}
.h0_c00056{height:1135.506150px;}
.w0_c00056{width:893.950200px;}
.w1_c00056{width:894.000000px;}
.x0_c00056{left:0.000000px;}
.x4_c00056{left:128.626800px;}
.x6_c00056{left:145.634700px;}
.x5_c00056{left:149.886600px;}
.x2_c00056{left:188.061900px;}
.x3_c00056{left:190.513350px;}
.x1_c00056{left:807.773700px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:21.312000pt;}
.ls2_c00056{letter-spacing:-0.256000pt;}
.ls3_c00056{letter-spacing:-0.213333pt;}
.ls1_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.426667pt;}
.ws1_c00056{word-spacing:-14.272000pt;}
.ws3_c00056{word-spacing:-12.712000pt;}
.ws0_c00056{word-spacing:-9.685333pt;}
.ws2_c00056{word-spacing:-8.469824pt;}
.ws12_c00056{word-spacing:-2.496000pt;}
.wsa_c00056{word-spacing:-1.856000pt;}
.ws8_c00056{word-spacing:-1.664000pt;}
.wsd_c00056{word-spacing:-0.840000pt;}
.ws11_c00056{word-spacing:-0.832000pt;}
.ws4_c00056{word-spacing:0.000000pt;}
.ws14_c00056{word-spacing:0.213333pt;}
.wse_c00056{word-spacing:0.224000pt;}
.ws13_c00056{word-spacing:0.256000pt;}
.ws9_c00056{word-spacing:0.576000pt;}
.wsc_c00056{word-spacing:0.896000pt;}
.wsf_c00056{word-spacing:1.400000pt;}
.ws10_c00056{word-spacing:2.688000pt;}
.ws6_c00056{word-spacing:2.880000pt;}
.ws5_c00056{word-spacing:2.944000pt;}
.wsb_c00056{word-spacing:3.968000pt;}
.ws7_c00056{word-spacing:4.800000pt;}
._0_c00056{margin-left:-2449.133867pt;}
._5_c00056{margin-left:-6.656000pt;}
._1_c00056{margin-left:-5.205333pt;}
._4_c00056{margin-left:-3.712000pt;}
._6_c00056{margin-left:-2.613333pt;}
._2_c00056{margin-left:-1.280000pt;}
._3_c00056{width:0.896000pt;}
._7_c00056{width:2.677333pt;}
.fs2_c00056{font-size:37.312000pt;}
.fs0_c00056{font-size:42.666667pt;}
.fs4_c00056{font-size:53.333333pt;}
.fs3_c00056{font-size:56.000000pt;}
.fs1_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y17_c00056{bottom:102.994133pt;}
.y16_c00056{bottom:116.327467pt;}
.y15_c00056{bottom:154.202800pt;}
.y14_c00056{bottom:176.202800pt;}
.y13_c00056{bottom:211.572933pt;}
.y12_c00056{bottom:230.234933pt;}
.y11_c00056{bottom:248.896933pt;}
.y10_c00056{bottom:267.558933pt;}
.yf_c00056{bottom:290.000933pt;}
.ye_c00056{bottom:308.662933pt;}
.yd_c00056{bottom:327.324933pt;}
.yc_c00056{bottom:345.986933pt;}
.yb_c00056{bottom:364.648933pt;}
.ya_c00056{bottom:390.880133pt;}
.y9_c00056{bottom:412.880133pt;}
.y8_c00056{bottom:434.880133pt;}
.y7_c00056{bottom:456.880133pt;}
.y6_c00056{bottom:478.880133pt;}
.y5_c00056{bottom:500.880133pt;}
.y4_c00056{bottom:522.880133pt;}
.y3_c00056{bottom:558.208133pt;}
.y2_c00056{bottom:580.208133pt;}
.y1a_c00056{bottom:615.352933pt;}
.y19_c00056{bottom:631.886267pt;}
.y18_c00056{bottom:648.419600pt;}
.y1_c00056{bottom:972.089867pt;}
.h2_c00056{height:34.901333pt;}
.h3_c00056{height:35.541333pt;}
.h8_c00056{height:43.200000pt;}
.h7_c00056{height:43.626667pt;}
.h6_c00056{height:45.808000pt;}
.h4_c00056{height:52.352000pt;}
.h5_c00056{height:62.781250pt;}
.h1_c00056{height:1009.333333pt;}
.h0_c00056{height:1009.338800pt;}
.w0_c00056{width:794.622400pt;}
.w1_c00056{width:794.666667pt;}
.x0_c00056{left:0.000000pt;}
.x4_c00056{left:114.334933pt;}
.x6_c00056{left:129.453067pt;}
.x5_c00056{left:133.232533pt;}
.x2_c00056{left:167.166133pt;}
.x3_c00056{left:169.345200pt;}
.x1_c00056{left:718.021067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adf686bede35368ee6ec39cd.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_3a08404276bb4ec3e7358082.woff2')format("woff");}.ff5_c00057{font-family:ff5_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;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:19.980600px;}
.v2_c00057{vertical-align:23.952000px;}
.lsa_c00057{letter-spacing:-1.056000px;}
.lsc_c00057{letter-spacing:-0.864000px;}
.ls5_c00057{letter-spacing:-0.769560px;}
.lsd_c00057{letter-spacing:-0.768000px;}
.ls6_c00057{letter-spacing:-0.755568px;}
.ls4_c00057{letter-spacing:-0.720000px;}
.lsb_c00057{letter-spacing:-0.624000px;}
.lse_c00057{letter-spacing:-0.480000px;}
.ls7_c00057{letter-spacing:-0.419760px;}
.ls8_c00057{letter-spacing:-0.360000px;}
.lsf_c00057{letter-spacing:-0.336000px;}
.ls9_c00057{letter-spacing:-0.288000px;}
.ls3_c00057{letter-spacing:-0.209880px;}
.ls1_c00057{letter-spacing:-0.192000px;}
.ls2_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:0.144000px;}
.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;}
}
.ws2_c00057{word-spacing:-13.620000px;}
.ws7_c00057{word-spacing:-10.896000px;}
.ws5_c00057{word-spacing:-10.608000px;}
.wsb_c00057{word-spacing:-10.560000px;}
.wsa_c00057{word-spacing:-10.416000px;}
.ws8_c00057{word-spacing:-10.272000px;}
.ws9_c00057{word-spacing:-10.032000px;}
.ws6_c00057{word-spacing:-9.840000px;}
.ws4_c00057{word-spacing:-9.108792px;}
.ws3_c00057{word-spacing:-8.772984px;}
.ws1_c00057{word-spacing:-7.730580px;}
.ws16_c00057{word-spacing:-2.736000px;}
.ws22_c00057{word-spacing:-2.520000px;}
.ws14_c00057{word-spacing:-2.304000px;}
.wsf_c00057{word-spacing:-1.872000px;}
.ws17_c00057{word-spacing:-1.860000px;}
.ws21_c00057{word-spacing:-1.728000px;}
.ws23_c00057{word-spacing:-1.584000px;}
.ws1b_c00057{word-spacing:-1.512000px;}
.ws19_c00057{word-spacing:-1.260000px;}
.ws1c_c00057{word-spacing:-0.648000px;}
.wsd_c00057{word-spacing:-0.432000px;}
.wsc_c00057{word-spacing:0.000000px;}
.ws26_c00057{word-spacing:0.144000px;}
.ws15_c00057{word-spacing:0.432000px;}
.wse_c00057{word-spacing:0.648000px;}
.ws1a_c00057{word-spacing:0.769560px;}
.ws12_c00057{word-spacing:1.260000px;}
.ws1f_c00057{word-spacing:1.296000px;}
.ws13_c00057{word-spacing:1.440000px;}
.ws24_c00057{word-spacing:1.536000px;}
.ws25_c00057{word-spacing:1.632000px;}
.ws18_c00057{word-spacing:1.860000px;}
.ws10_c00057{word-spacing:2.220000px;}
.ws28_c00057{word-spacing:3.168000px;}
.ws27_c00057{word-spacing:4.368000px;}
.ws1d_c00057{word-spacing:4.896000px;}
.ws11_c00057{word-spacing:5.160000px;}
.ws1e_c00057{word-spacing:5.616000px;}
.ws20_c00057{word-spacing:7.128000px;}
.ws0_c00057{word-spacing:1600.987200px;}
._6_c00057{margin-left:-6.984000px;}
._2_c00057{margin-left:-4.656000px;}
._4_c00057{margin-left:-3.216000px;}
._0_c00057{margin-left:-2.112000px;}
._1_c00057{margin-left:-1.104000px;}
._3_c00057{width:1.176000px;}
._5_c00057{width:2.184000px;}
._7_c00057{width:6.495600px;}
.fc0_c00057{color:rgb(35,31,32);}
.fs3_c00057{font-size:34.980000px;}
.fs4_c00057{font-size:41.976000px;}
.fs0_c00057{font-size:48.000000px;}
.fs2_c00057{font-size:60.000000px;}
.fs1_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y27_c00057{bottom:98.856300px;}
.y26_c00057{bottom:122.364300px;}
.y25_c00057{bottom:137.360250px;}
.y24_c00057{bottom:160.868250px;}
.y23_c00057{bottom:175.868250px;}
.y22_c00057{bottom:190.868250px;}
.y21_c00057{bottom:205.864200px;}
.y20_c00057{bottom:229.372200px;}
.y1f_c00057{bottom:273.964650px;}
.y1e_c00057{bottom:298.714650px;}
.y1d_c00057{bottom:338.458650px;}
.y1c_c00057{bottom:363.208650px;}
.y1b_c00057{bottom:387.958650px;}
.y1a_c00057{bottom:412.708650px;}
.y19_c00057{bottom:437.464650px;}
.y18_c00057{bottom:462.214650px;}
.y17_c00057{bottom:486.964650px;}
.y16_c00057{bottom:526.708650px;}
.y15_c00057{bottom:551.458650px;}
.y14_c00057{bottom:591.209700px;}
.y13_c00057{bottom:612.209700px;}
.y12_c00057{bottom:633.209700px;}
.y11_c00057{bottom:654.209700px;}
.y10_c00057{bottom:675.209700px;}
.yf_c00057{bottom:696.209700px;}
.ye_c00057{bottom:725.713500px;}
.yd_c00057{bottom:750.463500px;}
.yc_c00057{bottom:775.213500px;}
.yb_c00057{bottom:814.963500px;}
.ya_c00057{bottom:835.963500px;}
.y9_c00057{bottom:856.963500px;}
.y8_c00057{bottom:877.963500px;}
.y7_c00057{bottom:898.963500px;}
.y6_c00057{bottom:928.473450px;}
.y5_c00057{bottom:953.223450px;}
.y4_c00057{bottom:977.973450px;}
.y3_c00057{bottom:1017.717450px;}
.y2_c00057{bottom:1042.467450px;}
.y1_c00057{bottom:1093.601100px;}
.h2_c00057{height:39.264000px;}
.h5_c00057{height:39.280200px;}
.h6_c00057{height:47.109375px;}
.h4_c00057{height:49.080000px;}
.h3_c00057{height:58.896000px;}
.h1_c00057{height:1135.500000px;}
.h0_c00057{height:1135.506150px;}
.w0_c00057{width:893.950200px;}
.w1_c00057{width:894.000000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:77.603100px;}
.x3_c00057{left:94.616700px;}
.x2_c00057{left:98.862900px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:17.760533pt;}
.v2_c00057{vertical-align:21.290667pt;}
.lsa_c00057{letter-spacing:-0.938667pt;}
.lsc_c00057{letter-spacing:-0.768000pt;}
.ls5_c00057{letter-spacing:-0.684053pt;}
.lsd_c00057{letter-spacing:-0.682667pt;}
.ls6_c00057{letter-spacing:-0.671616pt;}
.ls4_c00057{letter-spacing:-0.640000pt;}
.lsb_c00057{letter-spacing:-0.554667pt;}
.lse_c00057{letter-spacing:-0.426667pt;}
.ls7_c00057{letter-spacing:-0.373120pt;}
.ls8_c00057{letter-spacing:-0.320000pt;}
.lsf_c00057{letter-spacing:-0.298667pt;}
.ls9_c00057{letter-spacing:-0.256000pt;}
.ls3_c00057{letter-spacing:-0.186560pt;}
.ls1_c00057{letter-spacing:-0.170667pt;}
.ls2_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:0.128000pt;}
.ws2_c00057{word-spacing:-12.106667pt;}
.ws7_c00057{word-spacing:-9.685333pt;}
.ws5_c00057{word-spacing:-9.429333pt;}
.wsb_c00057{word-spacing:-9.386667pt;}
.wsa_c00057{word-spacing:-9.258667pt;}
.ws8_c00057{word-spacing:-9.130667pt;}
.ws9_c00057{word-spacing:-8.917333pt;}
.ws6_c00057{word-spacing:-8.746667pt;}
.ws4_c00057{word-spacing:-8.096704pt;}
.ws3_c00057{word-spacing:-7.798208pt;}
.ws1_c00057{word-spacing:-6.871627pt;}
.ws16_c00057{word-spacing:-2.432000pt;}
.ws22_c00057{word-spacing:-2.240000pt;}
.ws14_c00057{word-spacing:-2.048000pt;}
.wsf_c00057{word-spacing:-1.664000pt;}
.ws17_c00057{word-spacing:-1.653333pt;}
.ws21_c00057{word-spacing:-1.536000pt;}
.ws23_c00057{word-spacing:-1.408000pt;}
.ws1b_c00057{word-spacing:-1.344000pt;}
.ws19_c00057{word-spacing:-1.120000pt;}
.ws1c_c00057{word-spacing:-0.576000pt;}
.wsd_c00057{word-spacing:-0.384000pt;}
.wsc_c00057{word-spacing:0.000000pt;}
.ws26_c00057{word-spacing:0.128000pt;}
.ws15_c00057{word-spacing:0.384000pt;}
.wse_c00057{word-spacing:0.576000pt;}
.ws1a_c00057{word-spacing:0.684053pt;}
.ws12_c00057{word-spacing:1.120000pt;}
.ws1f_c00057{word-spacing:1.152000pt;}
.ws13_c00057{word-spacing:1.280000pt;}
.ws24_c00057{word-spacing:1.365333pt;}
.ws25_c00057{word-spacing:1.450667pt;}
.ws18_c00057{word-spacing:1.653333pt;}
.ws10_c00057{word-spacing:1.973333pt;}
.ws28_c00057{word-spacing:2.816000pt;}
.ws27_c00057{word-spacing:3.882667pt;}
.ws1d_c00057{word-spacing:4.352000pt;}
.ws11_c00057{word-spacing:4.586667pt;}
.ws1e_c00057{word-spacing:4.992000pt;}
.ws20_c00057{word-spacing:6.336000pt;}
.ws0_c00057{word-spacing:1423.099733pt;}
._6_c00057{margin-left:-6.208000pt;}
._2_c00057{margin-left:-4.138667pt;}
._4_c00057{margin-left:-2.858667pt;}
._0_c00057{margin-left:-1.877333pt;}
._1_c00057{margin-left:-0.981333pt;}
._3_c00057{width:1.045333pt;}
._5_c00057{width:1.941333pt;}
._7_c00057{width:5.773867pt;}
.fs3_c00057{font-size:31.093333pt;}
.fs4_c00057{font-size:37.312000pt;}
.fs0_c00057{font-size:42.666667pt;}
.fs2_c00057{font-size:53.333333pt;}
.fs1_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y27_c00057{bottom:87.872267pt;}
.y26_c00057{bottom:108.768267pt;}
.y25_c00057{bottom:122.098000pt;}
.y24_c00057{bottom:142.994000pt;}
.y23_c00057{bottom:156.327333pt;}
.y22_c00057{bottom:169.660667pt;}
.y21_c00057{bottom:182.990400pt;}
.y20_c00057{bottom:203.886400pt;}
.y1f_c00057{bottom:243.524133pt;}
.y1e_c00057{bottom:265.524133pt;}
.y1d_c00057{bottom:300.852133pt;}
.y1c_c00057{bottom:322.852133pt;}
.y1b_c00057{bottom:344.852133pt;}
.y1a_c00057{bottom:366.852133pt;}
.y19_c00057{bottom:388.857467pt;}
.y18_c00057{bottom:410.857467pt;}
.y17_c00057{bottom:432.857467pt;}
.y16_c00057{bottom:468.185467pt;}
.y15_c00057{bottom:490.185467pt;}
.y14_c00057{bottom:525.519733pt;}
.y13_c00057{bottom:544.186400pt;}
.y12_c00057{bottom:562.853067pt;}
.y11_c00057{bottom:581.519733pt;}
.y10_c00057{bottom:600.186400pt;}
.yf_c00057{bottom:618.853067pt;}
.ye_c00057{bottom:645.078667pt;}
.yd_c00057{bottom:667.078667pt;}
.yc_c00057{bottom:689.078667pt;}
.yb_c00057{bottom:724.412000pt;}
.ya_c00057{bottom:743.078667pt;}
.y9_c00057{bottom:761.745333pt;}
.y8_c00057{bottom:780.412000pt;}
.y7_c00057{bottom:799.078667pt;}
.y6_c00057{bottom:825.309733pt;}
.y5_c00057{bottom:847.309733pt;}
.y4_c00057{bottom:869.309733pt;}
.y3_c00057{bottom:904.637733pt;}
.y2_c00057{bottom:926.637733pt;}
.y1_c00057{bottom:972.089867pt;}
.h2_c00057{height:34.901333pt;}
.h5_c00057{height:34.915733pt;}
.h6_c00057{height:41.875000pt;}
.h4_c00057{height:43.626667pt;}
.h3_c00057{height:52.352000pt;}
.h1_c00057{height:1009.333333pt;}
.h0_c00057{height:1009.338800pt;}
.w0_c00057{width:794.622400pt;}
.w1_c00057{width:794.666667pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:68.980533pt;}
.x3_c00057{left:84.103733pt;}
.x2_c00057{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c75576dc65740b4be01f782c.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.082000;font-style:normal;font-weight:normal;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_480d35356ca5c65770e4d005.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.067000;font-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_c00058{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.v1_c00058{vertical-align:23.976000px;}
.ls7_c00058{letter-spacing:-1.872000px;}
.ls4_c00058{letter-spacing:-0.377784px;}
.ls3_c00058{letter-spacing:-0.360000px;}
.ls8_c00058{letter-spacing:-0.240000px;}
.ls5_c00058{letter-spacing:-0.209880px;}
.ls6_c00058{letter-spacing:-0.192000px;}
.ls2_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.480000px;}
.ls1_c00058{letter-spacing:0.720000px;}
.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;}
}
.ws7_c00058{word-spacing:-13.740000px;}
.ws3_c00058{word-spacing:-13.620000px;}
.ws0_c00058{word-spacing:-11.616000px;}
.ws5_c00058{word-spacing:-10.896000px;}
.ws4_c00058{word-spacing:-10.704000px;}
.ws2_c00058{word-spacing:-9.318672px;}
.ws1_c00058{word-spacing:-9.150768px;}
.ws6_c00058{word-spacing:-9.120000px;}
.ws1e_c00058{word-spacing:-2.808000px;}
.ws10_c00058{word-spacing:-2.700000px;}
.wsd_c00058{word-spacing:-2.448000px;}
.ws11_c00058{word-spacing:-2.220000px;}
.ws17_c00058{word-spacing:-1.656000px;}
.ws1d_c00058{word-spacing:-1.224000px;}
.ws12_c00058{word-spacing:-0.288000px;}
.ws8_c00058{word-spacing:0.000000px;}
.ws21_c00058{word-spacing:0.240000px;}
.wsf_c00058{word-spacing:0.360000px;}
.ws16_c00058{word-spacing:0.432000px;}
.wse_c00058{word-spacing:0.648000px;}
.ws14_c00058{word-spacing:0.936000px;}
.ws15_c00058{word-spacing:1.296000px;}
.ws9_c00058{word-spacing:1.656000px;}
.ws1c_c00058{word-spacing:1.728000px;}
.wsc_c00058{word-spacing:2.808000px;}
.ws18_c00058{word-spacing:4.248000px;}
.ws13_c00058{word-spacing:4.464000px;}
.ws1f_c00058{word-spacing:4.608000px;}
.wsb_c00058{word-spacing:4.968000px;}
.wsa_c00058{word-spacing:5.040000px;}
.ws20_c00058{word-spacing:5.184000px;}
.ws1b_c00058{word-spacing:8.424000px;}
.ws1a_c00058{word-spacing:9.144000px;}
.ws19_c00058{word-spacing:9.432000px;}
._0_c00058{margin-left:-2755.995600px;}
._1_c00058{margin-left:-5.856000px;}
._4_c00058{margin-left:-2.592000px;}
._2_c00058{margin-left:-1.440000px;}
._3_c00058{width:1.152000px;}
._6_c00058{width:2.256000px;}
._5_c00058{width:3.471600px;}
.fc0_c00058{color:rgb(35,31,32);}
.fs2_c00058{font-size:41.976000px;}
.fs0_c00058{font-size:48.000000px;}
.fs3_c00058{font-size:60.000000px;}
.fs1_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y25_c00058{bottom:111.612150px;}
.y24_c00058{bottom:135.120150px;}
.y29_c00058{bottom:186.364200px;}
.y23_c00058{bottom:189.463650px;}
.y28_c00058{bottom:204.964200px;}
.y22_c00058{bottom:214.213650px;}
.y27_c00058{bottom:223.564200px;}
.y21_c00058{bottom:238.963650px;}
.y26_c00058{bottom:242.164200px;}
.y20_c00058{bottom:263.713650px;}
.y1f_c00058{bottom:288.463650px;}
.y1e_c00058{bottom:313.213650px;}
.y1d_c00058{bottom:337.963650px;}
.y1c_c00058{bottom:362.713650px;}
.y1b_c00058{bottom:402.457650px;}
.y1a_c00058{bottom:427.207650px;}
.y19_c00058{bottom:451.957650px;}
.y18_c00058{bottom:476.707650px;}
.y17_c00058{bottom:501.457650px;}
.y16_c00058{bottom:526.207650px;}
.y15_c00058{bottom:550.957650px;}
.y14_c00058{bottom:575.707650px;}
.y13_c00058{bottom:600.457650px;}
.y12_c00058{bottom:625.207650px;}
.y11_c00058{bottom:664.978500px;}
.y10_c00058{bottom:685.978500px;}
.yf_c00058{bottom:706.978500px;}
.ye_c00058{bottom:732.223500px;}
.yd_c00058{bottom:753.223500px;}
.yc_c00058{bottom:778.468500px;}
.yb_c00058{bottom:803.713500px;}
.ya_c00058{bottom:824.713500px;}
.y9_c00058{bottom:854.223450px;}
.y8_c00058{bottom:878.973450px;}
.y7_c00058{bottom:903.723450px;}
.y6_c00058{bottom:928.473450px;}
.y5_c00058{bottom:968.217450px;}
.y4_c00058{bottom:992.967450px;}
.y3_c00058{bottom:1017.717450px;}
.y2_c00058{bottom:1042.467450px;}
.y1_c00058{bottom:1093.601100px;}
.h2_c00058{height:39.264000px;}
.h6_c00058{height:39.280200px;}
.h3_c00058{height:39.984000px;}
.h7_c00058{height:48.600000px;}
.h5_c00058{height:49.080000px;}
.h4_c00058{height:58.896000px;}
.h1_c00058{height:1135.500000px;}
.h0_c00058{height:1135.506150px;}
.w0_c00058{width:893.950200px;}
.w1_c00058{width:894.000000px;}
.x0_c00058{left:0.000000px;}
.x4_c00058{left:128.626800px;}
.x7_c00058{left:130.894500px;}
.x5_c00058{left:149.886600px;}
.x2_c00058{left:188.061900px;}
.x3_c00058{left:190.513350px;}
.x6_c00058{left:458.746800px;}
.x1_c00058{left:807.185700px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:21.312000pt;}
.ls7_c00058{letter-spacing:-1.664000pt;}
.ls4_c00058{letter-spacing:-0.335808pt;}
.ls3_c00058{letter-spacing:-0.320000pt;}
.ls8_c00058{letter-spacing:-0.213333pt;}
.ls5_c00058{letter-spacing:-0.186560pt;}
.ls6_c00058{letter-spacing:-0.170667pt;}
.ls2_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.426667pt;}
.ls1_c00058{letter-spacing:0.640000pt;}
.ws7_c00058{word-spacing:-12.213333pt;}
.ws3_c00058{word-spacing:-12.106667pt;}
.ws0_c00058{word-spacing:-10.325333pt;}
.ws5_c00058{word-spacing:-9.685333pt;}
.ws4_c00058{word-spacing:-9.514667pt;}
.ws2_c00058{word-spacing:-8.283264pt;}
.ws1_c00058{word-spacing:-8.134016pt;}
.ws6_c00058{word-spacing:-8.106667pt;}
.ws1e_c00058{word-spacing:-2.496000pt;}
.ws10_c00058{word-spacing:-2.400000pt;}
.wsd_c00058{word-spacing:-2.176000pt;}
.ws11_c00058{word-spacing:-1.973333pt;}
.ws17_c00058{word-spacing:-1.472000pt;}
.ws1d_c00058{word-spacing:-1.088000pt;}
.ws12_c00058{word-spacing:-0.256000pt;}
.ws8_c00058{word-spacing:0.000000pt;}
.ws21_c00058{word-spacing:0.213333pt;}
.wsf_c00058{word-spacing:0.320000pt;}
.ws16_c00058{word-spacing:0.384000pt;}
.wse_c00058{word-spacing:0.576000pt;}
.ws14_c00058{word-spacing:0.832000pt;}
.ws15_c00058{word-spacing:1.152000pt;}
.ws9_c00058{word-spacing:1.472000pt;}
.ws1c_c00058{word-spacing:1.536000pt;}
.wsc_c00058{word-spacing:2.496000pt;}
.ws18_c00058{word-spacing:3.776000pt;}
.ws13_c00058{word-spacing:3.968000pt;}
.ws1f_c00058{word-spacing:4.096000pt;}
.wsb_c00058{word-spacing:4.416000pt;}
.wsa_c00058{word-spacing:4.480000pt;}
.ws20_c00058{word-spacing:4.608000pt;}
.ws1b_c00058{word-spacing:7.488000pt;}
.ws1a_c00058{word-spacing:8.128000pt;}
.ws19_c00058{word-spacing:8.384000pt;}
._0_c00058{margin-left:-2449.773867pt;}
._1_c00058{margin-left:-5.205333pt;}
._4_c00058{margin-left:-2.304000pt;}
._2_c00058{margin-left:-1.280000pt;}
._3_c00058{width:1.024000pt;}
._6_c00058{width:2.005333pt;}
._5_c00058{width:3.085867pt;}
.fs2_c00058{font-size:37.312000pt;}
.fs0_c00058{font-size:42.666667pt;}
.fs3_c00058{font-size:53.333333pt;}
.fs1_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y25_c00058{bottom:99.210800pt;}
.y24_c00058{bottom:120.106800pt;}
.y29_c00058{bottom:165.657067pt;}
.y23_c00058{bottom:168.412133pt;}
.y28_c00058{bottom:182.190400pt;}
.y22_c00058{bottom:190.412133pt;}
.y27_c00058{bottom:198.723733pt;}
.y21_c00058{bottom:212.412133pt;}
.y26_c00058{bottom:215.257067pt;}
.y20_c00058{bottom:234.412133pt;}
.y1f_c00058{bottom:256.412133pt;}
.y1e_c00058{bottom:278.412133pt;}
.y1d_c00058{bottom:300.412133pt;}
.y1c_c00058{bottom:322.412133pt;}
.y1b_c00058{bottom:357.740133pt;}
.y1a_c00058{bottom:379.740133pt;}
.y19_c00058{bottom:401.740133pt;}
.y18_c00058{bottom:423.740133pt;}
.y17_c00058{bottom:445.740133pt;}
.y16_c00058{bottom:467.740133pt;}
.y15_c00058{bottom:489.740133pt;}
.y14_c00058{bottom:511.740133pt;}
.y13_c00058{bottom:533.740133pt;}
.y12_c00058{bottom:555.740133pt;}
.y11_c00058{bottom:591.092000pt;}
.y10_c00058{bottom:609.758667pt;}
.yf_c00058{bottom:628.425333pt;}
.ye_c00058{bottom:650.865333pt;}
.yd_c00058{bottom:669.532000pt;}
.yc_c00058{bottom:691.972000pt;}
.yb_c00058{bottom:714.412000pt;}
.ya_c00058{bottom:733.078667pt;}
.y9_c00058{bottom:759.309733pt;}
.y8_c00058{bottom:781.309733pt;}
.y7_c00058{bottom:803.309733pt;}
.y6_c00058{bottom:825.309733pt;}
.y5_c00058{bottom:860.637733pt;}
.y4_c00058{bottom:882.637733pt;}
.y3_c00058{bottom:904.637733pt;}
.y2_c00058{bottom:926.637733pt;}
.y1_c00058{bottom:972.089867pt;}
.h2_c00058{height:34.901333pt;}
.h6_c00058{height:34.915733pt;}
.h3_c00058{height:35.541333pt;}
.h7_c00058{height:43.200000pt;}
.h5_c00058{height:43.626667pt;}
.h4_c00058{height:52.352000pt;}
.h1_c00058{height:1009.333333pt;}
.h0_c00058{height:1009.338800pt;}
.w0_c00058{width:794.622400pt;}
.w1_c00058{width:794.666667pt;}
.x0_c00058{left:0.000000pt;}
.x4_c00058{left:114.334933pt;}
.x7_c00058{left:116.350667pt;}
.x5_c00058{left:133.232533pt;}
.x2_c00058{left:167.166133pt;}
.x3_c00058{left:169.345200pt;}
.x6_c00058{left:407.774933pt;}
.x1_c00058{left:717.498400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8efa322b102ea73f59881130.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.067000;font-style:normal;font-weight:normal;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_201bd8d32d490b3b3003ba82.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.082000;font-style:normal;font-weight:normal;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_5c84052867b3186776ff4e84.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00059;src:url('chunks/assets/font_8ad16807265948b16c5183db.woff2')format("woff");}.ff6_c00059{font-family:ff6_c00059;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.v1_c00059{vertical-align:23.972400px;}
.ls9_c00059{letter-spacing:-4.800000px;}
.lsa_c00059{letter-spacing:-0.768000px;}
.ls6_c00059{letter-spacing:-0.720000px;}
.lsb_c00059{letter-spacing:-0.624000px;}
.ls7_c00059{letter-spacing:-0.504000px;}
.lsd_c00059{letter-spacing:-0.420000px;}
.ls8_c00059{letter-spacing:-0.251856px;}
.lsc_c00059{letter-spacing:-0.240000px;}
.ls5_c00059{letter-spacing:-0.167904px;}
.ls4_c00059{letter-spacing:0.000000px;}
.ls2_c00059{letter-spacing:0.024600px;}
.ls0_c00059{letter-spacing:0.360000px;}
.ls1_c00059{letter-spacing:0.720000px;}
.ls3_c00059{letter-spacing:1.008000px;}
.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;}
}
.ws6_c00059{word-spacing:-13.320000px;}
.ws5_c00059{word-spacing:-11.904000px;}
.ws4_c00059{word-spacing:-10.896000px;}
.ws3_c00059{word-spacing:-10.368000px;}
.ws1_c00059{word-spacing:-9.360648px;}
.ws2_c00059{word-spacing:-6.096000px;}
.ws16_c00059{word-spacing:-2.592000px;}
.ws15_c00059{word-spacing:-2.520000px;}
.ws14_c00059{word-spacing:-2.448000px;}
.ws19_c00059{word-spacing:-2.232000px;}
.ws18_c00059{word-spacing:-1.584000px;}
.ws11_c00059{word-spacing:-0.936000px;}
.wse_c00059{word-spacing:-0.864000px;}
.ws9_c00059{word-spacing:-0.504000px;}
.ws10_c00059{word-spacing:-0.432000px;}
.ws17_c00059{word-spacing:-0.288000px;}
.ws7_c00059{word-spacing:0.000000px;}
.wsb_c00059{word-spacing:0.167904px;}
.ws23_c00059{word-spacing:0.240000px;}
.ws1a_c00059{word-spacing:0.504000px;}
.ws12_c00059{word-spacing:1.584000px;}
.wsd_c00059{word-spacing:2.232000px;}
.wsa_c00059{word-spacing:2.448000px;}
.ws8_c00059{word-spacing:2.808000px;}
.ws1e_c00059{word-spacing:2.880000px;}
.wsc_c00059{word-spacing:5.184000px;}
.ws20_c00059{word-spacing:5.232000px;}
.ws21_c00059{word-spacing:5.280000px;}
.ws1b_c00059{word-spacing:5.544000px;}
.wsf_c00059{word-spacing:5.832000px;}
.ws1c_c00059{word-spacing:6.408000px;}
.ws1d_c00059{word-spacing:6.480000px;}
.ws1f_c00059{word-spacing:7.488000px;}
.ws13_c00059{word-spacing:8.424000px;}
.ws22_c00059{word-spacing:9.408000px;}
.ws0_c00059{word-spacing:1601.995200px;}
._4_c00059{margin-left:-7.560000px;}
._3_c00059{margin-left:-5.976000px;}
._6_c00059{margin-left:-3.504000px;}
._0_c00059{margin-left:-2.112000px;}
._1_c00059{margin-left:-1.104000px;}
._2_c00059{width:1.536000px;}
._5_c00059{width:4.128000px;}
.fc0_c00059{color:rgb(35,31,32);}
.fs2_c00059{font-size:41.976000px;}
.fs0_c00059{font-size:48.000000px;}
.fs3_c00059{font-size:60.000000px;}
.fs1_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y23_c00059{bottom:111.612300px;}
.y22_c00059{bottom:126.612300px;}
.y21_c00059{bottom:141.612300px;}
.y20_c00059{bottom:156.612300px;}
.y1f_c00059{bottom:180.116250px;}
.y1e_c00059{bottom:203.624250px;}
.y1d_c00059{bottom:254.216550px;}
.y29_c00059{bottom:275.405100px;}
.y1c_c00059{bottom:278.978550px;}
.y28_c00059{bottom:294.005100px;}
.y1b_c00059{bottom:303.728550px;}
.y27_c00059{bottom:312.605100px;}
.y26_c00059{bottom:331.205100px;}
.y1a_c00059{bottom:343.472550px;}
.y25_c00059{bottom:349.805100px;}
.y19_c00059{bottom:368.222550px;}
.y24_c00059{bottom:368.405100px;}
.y18_c00059{bottom:392.972550px;}
.y17_c00059{bottom:417.722550px;}
.y16_c00059{bottom:457.466550px;}
.y15_c00059{bottom:482.216550px;}
.y14_c00059{bottom:506.966550px;}
.y13_c00059{bottom:531.716550px;}
.y12_c00059{bottom:556.466550px;}
.y11_c00059{bottom:581.216550px;}
.y10_c00059{bottom:605.966550px;}
.yf_c00059{bottom:645.722550px;}
.ye_c00059{bottom:670.472550px;}
.yd_c00059{bottom:695.222550px;}
.yc_c00059{bottom:734.966550px;}
.yb_c00059{bottom:759.716550px;}
.ya_c00059{bottom:784.466550px;}
.y9_c00059{bottom:809.216550px;}
.y8_c00059{bottom:848.967450px;}
.y7_c00059{bottom:873.717450px;}
.y6_c00059{bottom:898.467450px;}
.y5_c00059{bottom:923.217450px;}
.y4_c00059{bottom:962.961450px;}
.y3_c00059{bottom:1017.717450px;}
.y2_c00059{bottom:1042.467450px;}
.y1_c00059{bottom:1093.601100px;}
.h2_c00059{height:39.264000px;}
.h5_c00059{height:39.280200px;}
.h7_c00059{height:48.600000px;}
.h6_c00059{height:49.080000px;}
.h3_c00059{height:58.896000px;}
.h4_c00059{height:59.976000px;}
.h1_c00059{height:1135.500000px;}
.h0_c00059{height:1135.506150px;}
.w0_c00059{width:893.950200px;}
.w1_c00059{width:894.000000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:77.603100px;}
.x3_c00059{left:94.611000px;}
.x2_c00059{left:263.117550px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.v1_c00059{vertical-align:21.308800pt;}
.ls9_c00059{letter-spacing:-4.266667pt;}
.lsa_c00059{letter-spacing:-0.682667pt;}
.ls6_c00059{letter-spacing:-0.640000pt;}
.lsb_c00059{letter-spacing:-0.554667pt;}
.ls7_c00059{letter-spacing:-0.448000pt;}
.lsd_c00059{letter-spacing:-0.373333pt;}
.ls8_c00059{letter-spacing:-0.223872pt;}
.lsc_c00059{letter-spacing:-0.213333pt;}
.ls5_c00059{letter-spacing:-0.149248pt;}
.ls4_c00059{letter-spacing:0.000000pt;}
.ls2_c00059{letter-spacing:0.021867pt;}
.ls0_c00059{letter-spacing:0.320000pt;}
.ls1_c00059{letter-spacing:0.640000pt;}
.ls3_c00059{letter-spacing:0.896000pt;}
.ws6_c00059{word-spacing:-11.840000pt;}
.ws5_c00059{word-spacing:-10.581333pt;}
.ws4_c00059{word-spacing:-9.685333pt;}
.ws3_c00059{word-spacing:-9.216000pt;}
.ws1_c00059{word-spacing:-8.320576pt;}
.ws2_c00059{word-spacing:-5.418667pt;}
.ws16_c00059{word-spacing:-2.304000pt;}
.ws15_c00059{word-spacing:-2.240000pt;}
.ws14_c00059{word-spacing:-2.176000pt;}
.ws19_c00059{word-spacing:-1.984000pt;}
.ws18_c00059{word-spacing:-1.408000pt;}
.ws11_c00059{word-spacing:-0.832000pt;}
.wse_c00059{word-spacing:-0.768000pt;}
.ws9_c00059{word-spacing:-0.448000pt;}
.ws10_c00059{word-spacing:-0.384000pt;}
.ws17_c00059{word-spacing:-0.256000pt;}
.ws7_c00059{word-spacing:0.000000pt;}
.wsb_c00059{word-spacing:0.149248pt;}
.ws23_c00059{word-spacing:0.213333pt;}
.ws1a_c00059{word-spacing:0.448000pt;}
.ws12_c00059{word-spacing:1.408000pt;}
.wsd_c00059{word-spacing:1.984000pt;}
.wsa_c00059{word-spacing:2.176000pt;}
.ws8_c00059{word-spacing:2.496000pt;}
.ws1e_c00059{word-spacing:2.560000pt;}
.wsc_c00059{word-spacing:4.608000pt;}
.ws20_c00059{word-spacing:4.650667pt;}
.ws21_c00059{word-spacing:4.693333pt;}
.ws1b_c00059{word-spacing:4.928000pt;}
.wsf_c00059{word-spacing:5.184000pt;}
.ws1c_c00059{word-spacing:5.696000pt;}
.ws1d_c00059{word-spacing:5.760000pt;}
.ws1f_c00059{word-spacing:6.656000pt;}
.ws13_c00059{word-spacing:7.488000pt;}
.ws22_c00059{word-spacing:8.362667pt;}
.ws0_c00059{word-spacing:1423.995733pt;}
._4_c00059{margin-left:-6.720000pt;}
._3_c00059{margin-left:-5.312000pt;}
._6_c00059{margin-left:-3.114667pt;}
._0_c00059{margin-left:-1.877333pt;}
._1_c00059{margin-left:-0.981333pt;}
._2_c00059{width:1.365333pt;}
._5_c00059{width:3.669333pt;}
.fs2_c00059{font-size:37.312000pt;}
.fs0_c00059{font-size:42.666667pt;}
.fs3_c00059{font-size:53.333333pt;}
.fs1_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y23_c00059{bottom:99.210933pt;}
.y22_c00059{bottom:112.544267pt;}
.y21_c00059{bottom:125.877600pt;}
.y20_c00059{bottom:139.210933pt;}
.y1f_c00059{bottom:160.103333pt;}
.y1e_c00059{bottom:180.999333pt;}
.y1d_c00059{bottom:225.970267pt;}
.y29_c00059{bottom:244.804533pt;}
.y1c_c00059{bottom:247.980933pt;}
.y28_c00059{bottom:261.337867pt;}
.y1b_c00059{bottom:269.980933pt;}
.y27_c00059{bottom:277.871200pt;}
.y26_c00059{bottom:294.404533pt;}
.y1a_c00059{bottom:305.308933pt;}
.y25_c00059{bottom:310.937867pt;}
.y19_c00059{bottom:327.308933pt;}
.y24_c00059{bottom:327.471200pt;}
.y18_c00059{bottom:349.308933pt;}
.y17_c00059{bottom:371.308933pt;}
.y16_c00059{bottom:406.636933pt;}
.y15_c00059{bottom:428.636933pt;}
.y14_c00059{bottom:450.636933pt;}
.y13_c00059{bottom:472.636933pt;}
.y12_c00059{bottom:494.636933pt;}
.y11_c00059{bottom:516.636933pt;}
.y10_c00059{bottom:538.636933pt;}
.yf_c00059{bottom:573.975600pt;}
.ye_c00059{bottom:595.975600pt;}
.yd_c00059{bottom:617.975600pt;}
.yc_c00059{bottom:653.303600pt;}
.yb_c00059{bottom:675.303600pt;}
.ya_c00059{bottom:697.303600pt;}
.y9_c00059{bottom:719.303600pt;}
.y8_c00059{bottom:754.637733pt;}
.y7_c00059{bottom:776.637733pt;}
.y6_c00059{bottom:798.637733pt;}
.y5_c00059{bottom:820.637733pt;}
.y4_c00059{bottom:855.965733pt;}
.y3_c00059{bottom:904.637733pt;}
.y2_c00059{bottom:926.637733pt;}
.y1_c00059{bottom:972.089867pt;}
.h2_c00059{height:34.901333pt;}
.h5_c00059{height:34.915733pt;}
.h7_c00059{height:43.200000pt;}
.h6_c00059{height:43.626667pt;}
.h3_c00059{height:52.352000pt;}
.h4_c00059{height:53.312000pt;}
.h1_c00059{height:1009.333333pt;}
.h0_c00059{height:1009.338800pt;}
.w0_c00059{width:794.622400pt;}
.w1_c00059{width:794.666667pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:68.980533pt;}
.x3_c00059{left:84.098667pt;}
.x2_c00059{left:233.882267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19ee4e5b949809e85d62808e.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_767b86c97adf5f0321d9887a.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.067000;font-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_c00060{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00060{vertical-align:-23.976000px;}
.v0_c00060{vertical-align:0.000000px;}
.v2_c00060{vertical-align:20.874600px;}
.v1_c00060{vertical-align:23.976000px;}
.ls9_c00060{letter-spacing:-2.160000px;}
.lsc_c00060{letter-spacing:-2.088000px;}
.lsb_c00060{letter-spacing:-1.440000px;}
.lsf_c00060{letter-spacing:-1.200000px;}
.ls8_c00060{letter-spacing:-0.720000px;}
.ls10_c00060{letter-spacing:-0.600000px;}
.ls11_c00060{letter-spacing:-0.540000px;}
.lsa_c00060{letter-spacing:-0.419760px;}
.ls4_c00060{letter-spacing:-0.192000px;}
.lsd_c00060{letter-spacing:-0.144000px;}
.ls6_c00060{letter-spacing:-0.125928px;}
.ls5_c00060{letter-spacing:0.000000px;}
.ls1_c00060{letter-spacing:0.216000px;}
.ls0_c00060{letter-spacing:0.480000px;}
.ls3_c00060{letter-spacing:1.008000px;}
.ls7_c00060{letter-spacing:1.212057px;}
.lse_c00060{letter-spacing:1.584000px;}
.ls2_c00060{letter-spacing:3.808200px;}
.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;}
}
.ws1_c00060{word-spacing:-16.344000px;}
.ws4_c00060{word-spacing:-14.400000px;}
.ws9_c00060{word-spacing:-13.200000px;}
.ws6_c00060{word-spacing:-12.480000px;}
.ws8_c00060{word-spacing:-11.904000px;}
.ws7_c00060{word-spacing:-10.896000px;}
.ws5_c00060{word-spacing:-10.752000px;}
.ws0_c00060{word-spacing:-10.704000px;}
.ws2_c00060{word-spacing:-9.402624px;}
.ws3_c00060{word-spacing:-9.108792px;}
.wsd_c00060{word-spacing:-1.728000px;}
.ws26_c00060{word-spacing:-1.368000px;}
.ws13_c00060{word-spacing:-1.212057px;}
.ws22_c00060{word-spacing:-0.864000px;}
.ws21_c00060{word-spacing:-0.792000px;}
.ws1f_c00060{word-spacing:-0.648000px;}
.ws14_c00060{word-spacing:-0.288000px;}
.ws1c_c00060{word-spacing:-0.144000px;}
.wsa_c00060{word-spacing:0.000000px;}
.ws1b_c00060{word-spacing:0.216000px;}
.ws2a_c00060{word-spacing:0.600000px;}
.ws29_c00060{word-spacing:1.200000px;}
.ws18_c00060{word-spacing:1.440000px;}
.ws24_c00060{word-spacing:1.512000px;}
.ws1a_c00060{word-spacing:1.584000px;}
.wse_c00060{word-spacing:1.638000px;}
.ws17_c00060{word-spacing:1.872000px;}
.ws12_c00060{word-spacing:1.890000px;}
.ws23_c00060{word-spacing:2.160000px;}
.wsc_c00060{word-spacing:2.592000px;}
.wsf_c00060{word-spacing:2.961000px;}
.ws20_c00060{word-spacing:3.024000px;}
.wsb_c00060{word-spacing:3.384000px;}
.ws10_c00060{word-spacing:3.654000px;}
.ws11_c00060{word-spacing:4.095000px;}
.ws28_c00060{word-spacing:4.128000px;}
.ws1e_c00060{word-spacing:5.544000px;}
.ws15_c00060{word-spacing:6.336000px;}
.ws25_c00060{word-spacing:6.912000px;}
.ws1d_c00060{word-spacing:7.056000px;}
.ws27_c00060{word-spacing:7.296000px;}
.ws16_c00060{word-spacing:7.560000px;}
.ws19_c00060{word-spacing:9.144000px;}
._0_c00060{margin-left:-2755.083600px;}
._1_c00060{margin-left:-5.856000px;}
._4_c00060{margin-left:-3.240000px;}
._2_c00060{margin-left:-1.440000px;}
._3_c00060{width:1.224000px;}
._6_c00060{width:2.952000px;}
._5_c00060{width:8.712000px;}
.fc0_c00060{color:rgb(35,31,32);}
.fs4_c00060{font-size:36.729000px;}
.fs2_c00060{font-size:41.976000px;}
.fs0_c00060{font-size:48.000000px;}
.fs6_c00060{font-size:54.000000px;}
.fs5_c00060{font-size:60.000000px;}
.fs3_c00060{font-size:63.000000px;}
.fs1_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y26_c00060{bottom:111.616350px;}
.y25_c00060{bottom:126.616350px;}
.y24_c00060{bottom:141.612300px;}
.y23_c00060{bottom:165.116250px;}
.y22_c00060{bottom:188.624250px;}
.y21_c00060{bottom:244.213650px;}
.y20_c00060{bottom:268.963650px;}
.y2e_c00060{bottom:272.906250px;}
.y2d_c00060{bottom:291.506250px;}
.y1f_c00060{bottom:293.719500px;}
.y2c_c00060{bottom:310.106250px;}
.y1e_c00060{bottom:318.469500px;}
.y2b_c00060{bottom:328.706250px;}
.y1d_c00060{bottom:343.219500px;}
.y1c_c00060{bottom:367.969500px;}
.y1b_c00060{bottom:392.719500px;}
.y1a_c00060{bottom:417.469500px;}
.y19_c00060{bottom:442.219500px;}
.y18_c00060{bottom:481.963500px;}
.y17_c00060{bottom:506.713500px;}
.y16_c00060{bottom:531.463500px;}
.y15_c00060{bottom:556.213500px;}
.y14_c00060{bottom:580.963500px;}
.y13_c00060{bottom:605.713500px;}
.y12_c00060{bottom:630.463500px;}
.y11_c00060{bottom:655.213500px;}
.y2a_c00060{bottom:672.346950px;}
.y10_c00060{bottom:679.963500px;}
.y29_c00060{bottom:690.946950px;}
.yf_c00060{bottom:704.713500px;}
.y28_c00060{bottom:709.546950px;}
.y27_c00060{bottom:728.146950px;}
.ye_c00060{bottom:729.463500px;}
.yd_c00060{bottom:754.213500px;}
.yc_c00060{bottom:793.989750px;}
.yb_c00060{bottom:814.984500px;}
.ya_c00060{bottom:835.979250px;}
.y9_c00060{bottom:856.974000px;}
.y8_c00060{bottom:877.968750px;}
.y7_c00060{bottom:898.963500px;}
.y6_c00060{bottom:928.473450px;}
.y5_c00060{bottom:968.217450px;}
.y4_c00060{bottom:992.967450px;}
.y3_c00060{bottom:1017.717450px;}
.y2_c00060{bottom:1042.467450px;}
.y1_c00060{bottom:1093.601100px;}
.h2_c00060{height:39.264000px;}
.h6_c00060{height:39.280200px;}
.h3_c00060{height:39.984000px;}
.h9_c00060{height:44.172000px;}
.h8_c00060{height:48.600000px;}
.h7_c00060{height:49.080000px;}
.h5_c00060{height:51.534000px;}
.h4_c00060{height:58.896000px;}
.h1_c00060{height:1135.500000px;}
.h0_c00060{height:1135.506150px;}
.w0_c00060{width:893.950200px;}
.w1_c00060{width:894.000000px;}
.x0_c00060{left:0.000000px;}
.x4_c00060{left:128.626800px;}
.x6_c00060{left:145.634700px;}
.x5_c00060{left:149.886600px;}
.x2_c00060{left:188.061900px;}
.x3_c00060{left:190.513350px;}
.x7_c00060{left:603.218250px;}
.x1_c00060{left:806.825700px;}
@media print{
.v3_c00060{vertical-align:-21.312000pt;}
.v0_c00060{vertical-align:0.000000pt;}
.v2_c00060{vertical-align:18.555200pt;}
.v1_c00060{vertical-align:21.312000pt;}
.ls9_c00060{letter-spacing:-1.920000pt;}
.lsc_c00060{letter-spacing:-1.856000pt;}
.lsb_c00060{letter-spacing:-1.280000pt;}
.lsf_c00060{letter-spacing:-1.066667pt;}
.ls8_c00060{letter-spacing:-0.640000pt;}
.ls10_c00060{letter-spacing:-0.533333pt;}
.ls11_c00060{letter-spacing:-0.480000pt;}
.lsa_c00060{letter-spacing:-0.373120pt;}
.ls4_c00060{letter-spacing:-0.170667pt;}
.lsd_c00060{letter-spacing:-0.128000pt;}
.ls6_c00060{letter-spacing:-0.111936pt;}
.ls5_c00060{letter-spacing:0.000000pt;}
.ls1_c00060{letter-spacing:0.192000pt;}
.ls0_c00060{letter-spacing:0.426667pt;}
.ls3_c00060{letter-spacing:0.896000pt;}
.ls7_c00060{letter-spacing:1.077384pt;}
.lse_c00060{letter-spacing:1.408000pt;}
.ls2_c00060{letter-spacing:3.385067pt;}
.ws1_c00060{word-spacing:-14.528000pt;}
.ws4_c00060{word-spacing:-12.800000pt;}
.ws9_c00060{word-spacing:-11.733333pt;}
.ws6_c00060{word-spacing:-11.093333pt;}
.ws8_c00060{word-spacing:-10.581333pt;}
.ws7_c00060{word-spacing:-9.685333pt;}
.ws5_c00060{word-spacing:-9.557333pt;}
.ws0_c00060{word-spacing:-9.514667pt;}
.ws2_c00060{word-spacing:-8.357888pt;}
.ws3_c00060{word-spacing:-8.096704pt;}
.wsd_c00060{word-spacing:-1.536000pt;}
.ws26_c00060{word-spacing:-1.216000pt;}
.ws13_c00060{word-spacing:-1.077384pt;}
.ws22_c00060{word-spacing:-0.768000pt;}
.ws21_c00060{word-spacing:-0.704000pt;}
.ws1f_c00060{word-spacing:-0.576000pt;}
.ws14_c00060{word-spacing:-0.256000pt;}
.ws1c_c00060{word-spacing:-0.128000pt;}
.wsa_c00060{word-spacing:0.000000pt;}
.ws1b_c00060{word-spacing:0.192000pt;}
.ws2a_c00060{word-spacing:0.533333pt;}
.ws29_c00060{word-spacing:1.066667pt;}
.ws18_c00060{word-spacing:1.280000pt;}
.ws24_c00060{word-spacing:1.344000pt;}
.ws1a_c00060{word-spacing:1.408000pt;}
.wse_c00060{word-spacing:1.456000pt;}
.ws17_c00060{word-spacing:1.664000pt;}
.ws12_c00060{word-spacing:1.680000pt;}
.ws23_c00060{word-spacing:1.920000pt;}
.wsc_c00060{word-spacing:2.304000pt;}
.wsf_c00060{word-spacing:2.632000pt;}
.ws20_c00060{word-spacing:2.688000pt;}
.wsb_c00060{word-spacing:3.008000pt;}
.ws10_c00060{word-spacing:3.248000pt;}
.ws11_c00060{word-spacing:3.640000pt;}
.ws28_c00060{word-spacing:3.669333pt;}
.ws1e_c00060{word-spacing:4.928000pt;}
.ws15_c00060{word-spacing:5.632000pt;}
.ws25_c00060{word-spacing:6.144000pt;}
.ws1d_c00060{word-spacing:6.272000pt;}
.ws27_c00060{word-spacing:6.485333pt;}
.ws16_c00060{word-spacing:6.720000pt;}
.ws19_c00060{word-spacing:8.128000pt;}
._0_c00060{margin-left:-2448.963200pt;}
._1_c00060{margin-left:-5.205333pt;}
._4_c00060{margin-left:-2.880000pt;}
._2_c00060{margin-left:-1.280000pt;}
._3_c00060{width:1.088000pt;}
._6_c00060{width:2.624000pt;}
._5_c00060{width:7.744000pt;}
.fs4_c00060{font-size:32.648000pt;}
.fs2_c00060{font-size:37.312000pt;}
.fs0_c00060{font-size:42.666667pt;}
.fs6_c00060{font-size:48.000000pt;}
.fs5_c00060{font-size:53.333333pt;}
.fs3_c00060{font-size:56.000000pt;}
.fs1_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y26_c00060{bottom:99.214533pt;}
.y25_c00060{bottom:112.547867pt;}
.y24_c00060{bottom:125.877600pt;}
.y23_c00060{bottom:146.770000pt;}
.y22_c00060{bottom:167.666000pt;}
.y21_c00060{bottom:217.078800pt;}
.y20_c00060{bottom:239.078800pt;}
.y2e_c00060{bottom:242.583333pt;}
.y2d_c00060{bottom:259.116667pt;}
.y1f_c00060{bottom:261.084000pt;}
.y2c_c00060{bottom:275.650000pt;}
.y1e_c00060{bottom:283.084000pt;}
.y2b_c00060{bottom:292.183333pt;}
.y1d_c00060{bottom:305.084000pt;}
.y1c_c00060{bottom:327.084000pt;}
.y1b_c00060{bottom:349.084000pt;}
.y1a_c00060{bottom:371.084000pt;}
.y19_c00060{bottom:393.084000pt;}
.y18_c00060{bottom:428.412000pt;}
.y17_c00060{bottom:450.412000pt;}
.y16_c00060{bottom:472.412000pt;}
.y15_c00060{bottom:494.412000pt;}
.y14_c00060{bottom:516.412000pt;}
.y13_c00060{bottom:538.412000pt;}
.y12_c00060{bottom:560.412000pt;}
.y11_c00060{bottom:582.412000pt;}
.y2a_c00060{bottom:597.641733pt;}
.y10_c00060{bottom:604.412000pt;}
.y29_c00060{bottom:614.175067pt;}
.yf_c00060{bottom:626.412000pt;}
.y28_c00060{bottom:630.708400pt;}
.y27_c00060{bottom:647.241733pt;}
.ye_c00060{bottom:648.412000pt;}
.yd_c00060{bottom:670.412000pt;}
.yc_c00060{bottom:705.768667pt;}
.yb_c00060{bottom:724.430667pt;}
.ya_c00060{bottom:743.092667pt;}
.y9_c00060{bottom:761.754667pt;}
.y8_c00060{bottom:780.416667pt;}
.y7_c00060{bottom:799.078667pt;}
.y6_c00060{bottom:825.309733pt;}
.y5_c00060{bottom:860.637733pt;}
.y4_c00060{bottom:882.637733pt;}
.y3_c00060{bottom:904.637733pt;}
.y2_c00060{bottom:926.637733pt;}
.y1_c00060{bottom:972.089867pt;}
.h2_c00060{height:34.901333pt;}
.h6_c00060{height:34.915733pt;}
.h3_c00060{height:35.541333pt;}
.h9_c00060{height:39.264000pt;}
.h8_c00060{height:43.200000pt;}
.h7_c00060{height:43.626667pt;}
.h5_c00060{height:45.808000pt;}
.h4_c00060{height:52.352000pt;}
.h1_c00060{height:1009.333333pt;}
.h0_c00060{height:1009.338800pt;}
.w0_c00060{width:794.622400pt;}
.w1_c00060{width:794.666667pt;}
.x0_c00060{left:0.000000pt;}
.x4_c00060{left:114.334933pt;}
.x6_c00060{left:129.453067pt;}
.x5_c00060{left:133.232533pt;}
.x2_c00060{left:167.166133pt;}
.x3_c00060{left:169.345200pt;}
.x7_c00060{left:536.194000pt;}
.x1_c00060{left:717.178400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bcf7fa164873c57a6ff6d1e.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_f8faca78deae2776ee1c0b48.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:20.628000px;}
.ls9_c00061{letter-spacing:-1.200000px;}
.ls4_c00061{letter-spacing:-0.720000px;}
.ls8_c00061{letter-spacing:-0.600000px;}
.lsb_c00061{letter-spacing:-0.540000px;}
.lsa_c00061{letter-spacing:-0.300000px;}
.ls7_c00061{letter-spacing:-0.240000px;}
.ls3_c00061{letter-spacing:0.000000px;}
.ls6_c00061{letter-spacing:0.480000px;}
.ls1_c00061{letter-spacing:0.630000px;}
.ls2_c00061{letter-spacing:0.720000px;}
.ls5_c00061{letter-spacing:0.734580px;}
.ls0_c00061{letter-spacing:3.600000px;}
.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;}
}
.ws2_c00061{word-spacing:-11.376000px;}
.ws1_c00061{word-spacing:-9.072063px;}
.ws6_c00061{word-spacing:-2.088000px;}
.ws15_c00061{word-spacing:-0.630000px;}
.ws1c_c00061{word-spacing:-0.252000px;}
.ws3_c00061{word-spacing:0.000000px;}
.ws23_c00061{word-spacing:0.216000px;}
.ws26_c00061{word-spacing:0.240000px;}
.ws29_c00061{word-spacing:0.420000px;}
.wsd_c00061{word-spacing:0.432000px;}
.ws27_c00061{word-spacing:0.600000px;}
.wsb_c00061{word-spacing:0.720000px;}
.ws28_c00061{word-spacing:1.200000px;}
.ws22_c00061{word-spacing:1.872000px;}
.ws25_c00061{word-spacing:2.160000px;}
.ws10_c00061{word-spacing:2.232000px;}
.ws17_c00061{word-spacing:2.835000px;}
.ws14_c00061{word-spacing:2.898000px;}
.ws24_c00061{word-spacing:3.096000px;}
.ws21_c00061{word-spacing:3.168000px;}
.ws8_c00061{word-spacing:3.816000px;}
.wsa_c00061{word-spacing:4.320000px;}
.ws1a_c00061{word-spacing:4.788000px;}
.ws11_c00061{word-spacing:4.968000px;}
.ws20_c00061{word-spacing:5.040000px;}
.wsf_c00061{word-spacing:5.184000px;}
.ws1d_c00061{word-spacing:5.985000px;}
.ws12_c00061{word-spacing:6.237000px;}
.ws13_c00061{word-spacing:6.804000px;}
.ws5_c00061{word-spacing:6.984000px;}
.ws16_c00061{word-spacing:7.119000px;}
.ws7_c00061{word-spacing:7.272000px;}
.ws19_c00061{word-spacing:7.623000px;}
.ws1b_c00061{word-spacing:9.009000px;}
.wse_c00061{word-spacing:9.144000px;}
.ws1f_c00061{word-spacing:9.432000px;}
.wsc_c00061{word-spacing:10.008000px;}
.ws18_c00061{word-spacing:11.277000px;}
.ws1e_c00061{word-spacing:11.448000px;}
.ws4_c00061{word-spacing:11.664000px;}
.ws9_c00061{word-spacing:19.080000px;}
.ws0_c00061{word-spacing:1594.315200px;}
._4_c00061{margin-left:-5.988000px;}
._0_c00061{margin-left:-2.112000px;}
._1_c00061{margin-left:-1.104000px;}
._2_c00061{width:1.464000px;}
._3_c00061{width:4.318800px;}
.fc0_c00061{color:rgb(35,31,32);}
.fs3_c00061{font-size:36.729000px;}
.fs0_c00061{font-size:48.000000px;}
.fs4_c00061{font-size:60.000000px;}
.fs2_c00061{font-size:63.000000px;}
.fs1_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y27_c00061{bottom:111.616200px;}
.y26_c00061{bottom:152.521500px;}
.y25_c00061{bottom:177.577500px;}
.y24_c00061{bottom:202.633500px;}
.y23_c00061{bottom:227.689500px;}
.y22_c00061{bottom:252.745500px;}
.y21_c00061{bottom:277.801500px;}
.y20_c00061{bottom:302.857500px;}
.y1f_c00061{bottom:327.913500px;}
.y1e_c00061{bottom:368.051250px;}
.y2b_c00061{bottom:379.073250px;}
.y1d_c00061{bottom:389.644500px;}
.y2a_c00061{bottom:397.673250px;}
.y1c_c00061{bottom:411.237750px;}
.y29_c00061{bottom:416.273250px;}
.y1b_c00061{bottom:432.831000px;}
.y28_c00061{bottom:434.873250px;}
.y1a_c00061{bottom:454.424250px;}
.y19_c00061{bottom:476.017500px;}
.y18_c00061{bottom:497.610750px;}
.y17_c00061{bottom:519.204000px;}
.y16_c00061{bottom:540.797250px;}
.y15_c00061{bottom:562.390500px;}
.y14_c00061{bottom:583.983750px;}
.y13_c00061{bottom:605.577000px;}
.y12_c00061{bottom:627.170250px;}
.y11_c00061{bottom:648.763500px;}
.y10_c00061{bottom:678.831450px;}
.yf_c00061{bottom:703.887450px;}
.ye_c00061{bottom:728.943450px;}
.y2e_c00061{bottom:735.605100px;}
.yd_c00061{bottom:753.999450px;}
.y2d_c00061{bottom:754.205100px;}
.y2c_c00061{bottom:772.805100px;}
.yc_c00061{bottom:779.055450px;}
.yb_c00061{bottom:804.111450px;}
.ya_c00061{bottom:829.167450px;}
.y9_c00061{bottom:869.217450px;}
.y8_c00061{bottom:893.967450px;}
.y7_c00061{bottom:918.717450px;}
.y6_c00061{bottom:943.467450px;}
.y5_c00061{bottom:968.217450px;}
.y4_c00061{bottom:992.967450px;}
.y3_c00061{bottom:1017.717450px;}
.y2_c00061{bottom:1042.467450px;}
.y1_c00061{bottom:1093.600950px;}
.h2_c00061{height:39.264000px;}
.h6_c00061{height:48.600000px;}
.h5_c00061{height:49.080000px;}
.h4_c00061{height:51.534000px;}
.h3_c00061{height:58.896000px;}
.h1_c00061{height:1135.500000px;}
.h0_c00061{height:1135.506150px;}
.w0_c00061{width:893.950200px;}
.w1_c00061{width:894.000000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:77.603100px;}
.x2_c00061{left:98.862900px;}
.x4_c00061{left:379.690500px;}
.x3_c00061{left:580.486200px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:18.336000pt;}
.ls9_c00061{letter-spacing:-1.066667pt;}
.ls4_c00061{letter-spacing:-0.640000pt;}
.ls8_c00061{letter-spacing:-0.533333pt;}
.lsb_c00061{letter-spacing:-0.480000pt;}
.lsa_c00061{letter-spacing:-0.266667pt;}
.ls7_c00061{letter-spacing:-0.213333pt;}
.ls3_c00061{letter-spacing:0.000000pt;}
.ls6_c00061{letter-spacing:0.426667pt;}
.ls1_c00061{letter-spacing:0.560000pt;}
.ls2_c00061{letter-spacing:0.640000pt;}
.ls5_c00061{letter-spacing:0.652960pt;}
.ls0_c00061{letter-spacing:3.200000pt;}
.ws2_c00061{word-spacing:-10.112000pt;}
.ws1_c00061{word-spacing:-8.064056pt;}
.ws6_c00061{word-spacing:-1.856000pt;}
.ws15_c00061{word-spacing:-0.560000pt;}
.ws1c_c00061{word-spacing:-0.224000pt;}
.ws3_c00061{word-spacing:0.000000pt;}
.ws23_c00061{word-spacing:0.192000pt;}
.ws26_c00061{word-spacing:0.213333pt;}
.ws29_c00061{word-spacing:0.373333pt;}
.wsd_c00061{word-spacing:0.384000pt;}
.ws27_c00061{word-spacing:0.533333pt;}
.wsb_c00061{word-spacing:0.640000pt;}
.ws28_c00061{word-spacing:1.066667pt;}
.ws22_c00061{word-spacing:1.664000pt;}
.ws25_c00061{word-spacing:1.920000pt;}
.ws10_c00061{word-spacing:1.984000pt;}
.ws17_c00061{word-spacing:2.520000pt;}
.ws14_c00061{word-spacing:2.576000pt;}
.ws24_c00061{word-spacing:2.752000pt;}
.ws21_c00061{word-spacing:2.816000pt;}
.ws8_c00061{word-spacing:3.392000pt;}
.wsa_c00061{word-spacing:3.840000pt;}
.ws1a_c00061{word-spacing:4.256000pt;}
.ws11_c00061{word-spacing:4.416000pt;}
.ws20_c00061{word-spacing:4.480000pt;}
.wsf_c00061{word-spacing:4.608000pt;}
.ws1d_c00061{word-spacing:5.320000pt;}
.ws12_c00061{word-spacing:5.544000pt;}
.ws13_c00061{word-spacing:6.048000pt;}
.ws5_c00061{word-spacing:6.208000pt;}
.ws16_c00061{word-spacing:6.328000pt;}
.ws7_c00061{word-spacing:6.464000pt;}
.ws19_c00061{word-spacing:6.776000pt;}
.ws1b_c00061{word-spacing:8.008000pt;}
.wse_c00061{word-spacing:8.128000pt;}
.ws1f_c00061{word-spacing:8.384000pt;}
.wsc_c00061{word-spacing:8.896000pt;}
.ws18_c00061{word-spacing:10.024000pt;}
.ws1e_c00061{word-spacing:10.176000pt;}
.ws4_c00061{word-spacing:10.368000pt;}
.ws9_c00061{word-spacing:16.960000pt;}
.ws0_c00061{word-spacing:1417.169067pt;}
._4_c00061{margin-left:-5.322667pt;}
._0_c00061{margin-left:-1.877333pt;}
._1_c00061{margin-left:-0.981333pt;}
._2_c00061{width:1.301333pt;}
._3_c00061{width:3.838933pt;}
.fs3_c00061{font-size:32.648000pt;}
.fs0_c00061{font-size:42.666667pt;}
.fs4_c00061{font-size:53.333333pt;}
.fs2_c00061{font-size:56.000000pt;}
.fs1_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y27_c00061{bottom:99.214400pt;}
.y26_c00061{bottom:135.574667pt;}
.y25_c00061{bottom:157.846667pt;}
.y24_c00061{bottom:180.118667pt;}
.y23_c00061{bottom:202.390667pt;}
.y22_c00061{bottom:224.662667pt;}
.y21_c00061{bottom:246.934667pt;}
.y20_c00061{bottom:269.206667pt;}
.y1f_c00061{bottom:291.478667pt;}
.y1e_c00061{bottom:327.156667pt;}
.y2b_c00061{bottom:336.954000pt;}
.y1d_c00061{bottom:346.350667pt;}
.y2a_c00061{bottom:353.487333pt;}
.y1c_c00061{bottom:365.544667pt;}
.y29_c00061{bottom:370.020667pt;}
.y1b_c00061{bottom:384.738667pt;}
.y28_c00061{bottom:386.554000pt;}
.y1a_c00061{bottom:403.932667pt;}
.y19_c00061{bottom:423.126667pt;}
.y18_c00061{bottom:442.320667pt;}
.y17_c00061{bottom:461.514667pt;}
.y16_c00061{bottom:480.708667pt;}
.y15_c00061{bottom:499.902667pt;}
.y14_c00061{bottom:519.096667pt;}
.y13_c00061{bottom:538.290667pt;}
.y12_c00061{bottom:557.484667pt;}
.y11_c00061{bottom:576.678667pt;}
.y10_c00061{bottom:603.405733pt;}
.yf_c00061{bottom:625.677733pt;}
.ye_c00061{bottom:647.949733pt;}
.y2e_c00061{bottom:653.871200pt;}
.yd_c00061{bottom:670.221733pt;}
.y2d_c00061{bottom:670.404533pt;}
.y2c_c00061{bottom:686.937867pt;}
.yc_c00061{bottom:692.493733pt;}
.yb_c00061{bottom:714.765733pt;}
.ya_c00061{bottom:737.037733pt;}
.y9_c00061{bottom:772.637733pt;}
.y8_c00061{bottom:794.637733pt;}
.y7_c00061{bottom:816.637733pt;}
.y6_c00061{bottom:838.637733pt;}
.y5_c00061{bottom:860.637733pt;}
.y4_c00061{bottom:882.637733pt;}
.y3_c00061{bottom:904.637733pt;}
.y2_c00061{bottom:926.637733pt;}
.y1_c00061{bottom:972.089733pt;}
.h2_c00061{height:34.901333pt;}
.h6_c00061{height:43.200000pt;}
.h5_c00061{height:43.626667pt;}
.h4_c00061{height:45.808000pt;}
.h3_c00061{height:52.352000pt;}
.h1_c00061{height:1009.333333pt;}
.h0_c00061{height:1009.338800pt;}
.w0_c00061{width:794.622400pt;}
.w1_c00061{width:794.666667pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:68.980533pt;}
.x2_c00061{left:87.878133pt;}
.x4_c00061{left:337.502667pt;}
.x3_c00061{left:515.987733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bbed4a32d2973919bd62f40.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_7535e920f07451d3720c422b.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.067000;font-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_c00062{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls9_c00062{letter-spacing:-1.500000px;}
.lse_c00062{letter-spacing:-1.188000px;}
.lsd_c00062{letter-spacing:-0.972000px;}
.ls8_c00062{letter-spacing:-0.648000px;}
.lsf_c00062{letter-spacing:-0.540000px;}
.lsb_c00062{letter-spacing:-0.420000px;}
.lsc_c00062{letter-spacing:-0.324000px;}
.ls4_c00062{letter-spacing:-0.288000px;}
.lsa_c00062{letter-spacing:-0.240000px;}
.ls7_c00062{letter-spacing:-0.144000px;}
.ls5_c00062{letter-spacing:0.000000px;}
.ls6_c00062{letter-spacing:0.288000px;}
.ls0_c00062{letter-spacing:0.480000px;}
.ls1_c00062{letter-spacing:0.576000px;}
.ls2_c00062{letter-spacing:0.720000px;}
.ls3_c00062{letter-spacing:1.080000px;}
.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;}
}
.ws1_c00062{word-spacing:-16.920000px;}
.ws3_c00062{word-spacing:-13.620000px;}
.ws2_c00062{word-spacing:-12.120000px;}
.ws5_c00062{word-spacing:-11.286000px;}
.ws0_c00062{word-spacing:-10.608000px;}
.ws16_c00062{word-spacing:-3.744000px;}
.ws17_c00062{word-spacing:-3.312000px;}
.ws13_c00062{word-spacing:-2.592000px;}
.ws18_c00062{word-spacing:-2.448000px;}
.ws1a_c00062{word-spacing:-1.728000px;}
.ws15_c00062{word-spacing:-1.080000px;}
.ws1b_c00062{word-spacing:-1.008000px;}
.wsc_c00062{word-spacing:-0.576000px;}
.ws19_c00062{word-spacing:-0.360000px;}
.ws1f_c00062{word-spacing:-0.144000px;}
.ws6_c00062{word-spacing:0.000000px;}
.ws20_c00062{word-spacing:0.240000px;}
.wse_c00062{word-spacing:0.288000px;}
.ws21_c00062{word-spacing:0.420000px;}
.ws23_c00062{word-spacing:0.540000px;}
.ws1c_c00062{word-spacing:0.576000px;}
.ws1e_c00062{word-spacing:0.792000px;}
.ws10_c00062{word-spacing:0.864000px;}
.ws22_c00062{word-spacing:1.188000px;}
.wsf_c00062{word-spacing:1.368000px;}
.ws14_c00062{word-spacing:2.376000px;}
.ws11_c00062{word-spacing:3.096000px;}
.ws1d_c00062{word-spacing:4.248000px;}
.ws7_c00062{word-spacing:4.608000px;}
.ws9_c00062{word-spacing:5.040000px;}
.wsa_c00062{word-spacing:5.400000px;}
.wsd_c00062{word-spacing:5.472000px;}
.wsb_c00062{word-spacing:5.544000px;}
.ws8_c00062{word-spacing:6.336000px;}
.ws12_c00062{word-spacing:7.272000px;}
.ws4_c00062{word-spacing:1837.854000px;}
._0_c00062{margin-left:-2754.987600px;}
._9_c00062{margin-left:-1011.559800px;}
._6_c00062{margin-left:-8.172000px;}
._1_c00062{margin-left:-5.856000px;}
._4_c00062{margin-left:-3.888000px;}
._7_c00062{margin-left:-2.520000px;}
._2_c00062{margin-left:-1.440000px;}
._3_c00062{width:1.152000px;}
._5_c00062{width:2.448000px;}
._8_c00062{width:6.792000px;}
.fc0_c00062{color:rgb(35,31,32);}
.fs0_c00062{font-size:48.000000px;}
.fs3_c00062{font-size:54.000000px;}
.fs2_c00062{font-size:60.000000px;}
.fs1_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y18_c00062{bottom:133.845900px;}
.y25_c00062{bottom:147.648150px;}
.y17_c00062{bottom:158.901900px;}
.y24_c00062{bottom:166.248150px;}
.y16_c00062{bottom:183.957900px;}
.y23_c00062{bottom:184.848150px;}
.y15_c00062{bottom:209.013900px;}
.y22_c00062{bottom:211.953150px;}
.y21_c00062{bottom:230.553150px;}
.y14_c00062{bottom:234.069900px;}
.y20_c00062{bottom:249.153150px;}
.y13_c00062{bottom:259.125900px;}
.y1f_c00062{bottom:267.753150px;}
.y12_c00062{bottom:284.181900px;}
.y1e_c00062{bottom:286.353150px;}
.y1d_c00062{bottom:304.953150px;}
.y11_c00062{bottom:309.237900px;}
.y1c_c00062{bottom:332.058150px;}
.y10_c00062{bottom:349.287900px;}
.y1b_c00062{bottom:350.658150px;}
.yf_c00062{bottom:374.343900px;}
.y1a_c00062{bottom:377.763150px;}
.y19_c00062{bottom:396.363150px;}
.ye_c00062{bottom:399.399900px;}
.yd_c00062{bottom:424.455900px;}
.y27_c00062{bottom:428.062350px;}
.yc_c00062{bottom:449.511900px;}
.yb_c00062{bottom:474.567900px;}
.ya_c00062{bottom:514.617900px;}
.y9_c00062{bottom:539.673900px;}
.y8_c00062{bottom:564.729900px;}
.y7_c00062{bottom:589.785900px;}
.y6_c00062{bottom:614.841900px;}
.y5_c00062{bottom:639.897900px;}
.y4_c00062{bottom:664.953900px;}
.y3_c00062{bottom:690.009900px;}
.y2_c00062{bottom:715.065900px;}
.y26_c00062{bottom:768.232500px;}
.y1_c00062{bottom:1093.601100px;}
.h2_c00062{height:39.264000px;}
.h3_c00062{height:39.984000px;}
.h7_c00062{height:44.172000px;}
.h6_c00062{height:48.600000px;}
.h5_c00062{height:49.080000px;}
.h4_c00062{height:58.896000px;}
.h1_c00062{height:1135.500000px;}
.h0_c00062{height:1135.506150px;}
.w0_c00062{width:893.950200px;}
.w1_c00062{width:894.000000px;}
.x0_c00062{left:0.000000px;}
.x5_c00062{left:128.626800px;}
.x6_c00062{left:140.011950px;}
.x2_c00062{left:188.061900px;}
.x3_c00062{left:190.513350px;}
.x4_c00062{left:359.574150px;}
.x1_c00062{left:807.449700px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls9_c00062{letter-spacing:-1.333333pt;}
.lse_c00062{letter-spacing:-1.056000pt;}
.lsd_c00062{letter-spacing:-0.864000pt;}
.ls8_c00062{letter-spacing:-0.576000pt;}
.lsf_c00062{letter-spacing:-0.480000pt;}
.lsb_c00062{letter-spacing:-0.373333pt;}
.lsc_c00062{letter-spacing:-0.288000pt;}
.ls4_c00062{letter-spacing:-0.256000pt;}
.lsa_c00062{letter-spacing:-0.213333pt;}
.ls7_c00062{letter-spacing:-0.128000pt;}
.ls5_c00062{letter-spacing:0.000000pt;}
.ls6_c00062{letter-spacing:0.256000pt;}
.ls0_c00062{letter-spacing:0.426667pt;}
.ls1_c00062{letter-spacing:0.512000pt;}
.ls2_c00062{letter-spacing:0.640000pt;}
.ls3_c00062{letter-spacing:0.960000pt;}
.ws1_c00062{word-spacing:-15.040000pt;}
.ws3_c00062{word-spacing:-12.106667pt;}
.ws2_c00062{word-spacing:-10.773333pt;}
.ws5_c00062{word-spacing:-10.032000pt;}
.ws0_c00062{word-spacing:-9.429333pt;}
.ws16_c00062{word-spacing:-3.328000pt;}
.ws17_c00062{word-spacing:-2.944000pt;}
.ws13_c00062{word-spacing:-2.304000pt;}
.ws18_c00062{word-spacing:-2.176000pt;}
.ws1a_c00062{word-spacing:-1.536000pt;}
.ws15_c00062{word-spacing:-0.960000pt;}
.ws1b_c00062{word-spacing:-0.896000pt;}
.wsc_c00062{word-spacing:-0.512000pt;}
.ws19_c00062{word-spacing:-0.320000pt;}
.ws1f_c00062{word-spacing:-0.128000pt;}
.ws6_c00062{word-spacing:0.000000pt;}
.ws20_c00062{word-spacing:0.213333pt;}
.wse_c00062{word-spacing:0.256000pt;}
.ws21_c00062{word-spacing:0.373333pt;}
.ws23_c00062{word-spacing:0.480000pt;}
.ws1c_c00062{word-spacing:0.512000pt;}
.ws1e_c00062{word-spacing:0.704000pt;}
.ws10_c00062{word-spacing:0.768000pt;}
.ws22_c00062{word-spacing:1.056000pt;}
.wsf_c00062{word-spacing:1.216000pt;}
.ws14_c00062{word-spacing:2.112000pt;}
.ws11_c00062{word-spacing:2.752000pt;}
.ws1d_c00062{word-spacing:3.776000pt;}
.ws7_c00062{word-spacing:4.096000pt;}
.ws9_c00062{word-spacing:4.480000pt;}
.wsa_c00062{word-spacing:4.800000pt;}
.wsd_c00062{word-spacing:4.864000pt;}
.wsb_c00062{word-spacing:4.928000pt;}
.ws8_c00062{word-spacing:5.632000pt;}
.ws12_c00062{word-spacing:6.464000pt;}
.ws4_c00062{word-spacing:1633.648000pt;}
._0_c00062{margin-left:-2448.877867pt;}
._9_c00062{margin-left:-899.164267pt;}
._6_c00062{margin-left:-7.264000pt;}
._1_c00062{margin-left:-5.205333pt;}
._4_c00062{margin-left:-3.456000pt;}
._7_c00062{margin-left:-2.240000pt;}
._2_c00062{margin-left:-1.280000pt;}
._3_c00062{width:1.024000pt;}
._5_c00062{width:2.176000pt;}
._8_c00062{width:6.037333pt;}
.fs0_c00062{font-size:42.666667pt;}
.fs3_c00062{font-size:48.000000pt;}
.fs2_c00062{font-size:53.333333pt;}
.fs1_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y18_c00062{bottom:118.974133pt;}
.y25_c00062{bottom:131.242800pt;}
.y17_c00062{bottom:141.246133pt;}
.y24_c00062{bottom:147.776133pt;}
.y16_c00062{bottom:163.518133pt;}
.y23_c00062{bottom:164.309467pt;}
.y15_c00062{bottom:185.790133pt;}
.y22_c00062{bottom:188.402800pt;}
.y21_c00062{bottom:204.936133pt;}
.y14_c00062{bottom:208.062133pt;}
.y20_c00062{bottom:221.469467pt;}
.y13_c00062{bottom:230.334133pt;}
.y1f_c00062{bottom:238.002800pt;}
.y12_c00062{bottom:252.606133pt;}
.y1e_c00062{bottom:254.536133pt;}
.y1d_c00062{bottom:271.069467pt;}
.y11_c00062{bottom:274.878133pt;}
.y1c_c00062{bottom:295.162800pt;}
.y10_c00062{bottom:310.478133pt;}
.y1b_c00062{bottom:311.696133pt;}
.yf_c00062{bottom:332.750133pt;}
.y1a_c00062{bottom:335.789467pt;}
.y19_c00062{bottom:352.322800pt;}
.ye_c00062{bottom:355.022133pt;}
.yd_c00062{bottom:377.294133pt;}
.y27_c00062{bottom:380.499867pt;}
.yc_c00062{bottom:399.566133pt;}
.yb_c00062{bottom:421.838133pt;}
.ya_c00062{bottom:457.438133pt;}
.y9_c00062{bottom:479.710133pt;}
.y8_c00062{bottom:501.982133pt;}
.y7_c00062{bottom:524.254133pt;}
.y6_c00062{bottom:546.526133pt;}
.y5_c00062{bottom:568.798133pt;}
.y4_c00062{bottom:591.070133pt;}
.y3_c00062{bottom:613.342133pt;}
.y2_c00062{bottom:635.614133pt;}
.y26_c00062{bottom:682.873333pt;}
.y1_c00062{bottom:972.089867pt;}
.h2_c00062{height:34.901333pt;}
.h3_c00062{height:35.541333pt;}
.h7_c00062{height:39.264000pt;}
.h6_c00062{height:43.200000pt;}
.h5_c00062{height:43.626667pt;}
.h4_c00062{height:52.352000pt;}
.h1_c00062{height:1009.333333pt;}
.h0_c00062{height:1009.338800pt;}
.w0_c00062{width:794.622400pt;}
.w1_c00062{width:794.666667pt;}
.x0_c00062{left:0.000000pt;}
.x5_c00062{left:114.334933pt;}
.x6_c00062{left:124.455067pt;}
.x2_c00062{left:167.166133pt;}
.x3_c00062{left:169.345200pt;}
.x4_c00062{left:319.621467pt;}
.x1_c00062{left:717.733067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_097bc5650c009580e6a87ade.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.067000;font-style:normal;font-weight:normal;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_c74369cd670846b9d3785956.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00063{vertical-align:-23.976000px;}
.v0_c00063{vertical-align:0.000000px;}
.v1_c00063{vertical-align:20.916000px;}
.v2_c00063{vertical-align:23.952000px;}
.ls9_c00063{letter-spacing:-2.640000px;}
.ls5_c00063{letter-spacing:-2.020095px;}
.lsb_c00063{letter-spacing:-1.872000px;}
.ls3_c00063{letter-spacing:-1.056000px;}
.ls6_c00063{letter-spacing:-0.504000px;}
.ls8_c00063{letter-spacing:-0.288000px;}
.lsa_c00063{letter-spacing:-0.192000px;}
.ls4_c00063{letter-spacing:0.000000px;}
.ls1_c00063{letter-spacing:0.240000px;}
.ls0_c00063{letter-spacing:0.720000px;}
.ls7_c00063{letter-spacing:0.839520px;}
.ls2_c00063{letter-spacing:5.391600px;}
.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;}
}
.ws4_c00063{word-spacing:-17.064000px;}
.ws2_c00063{word-spacing:-16.488000px;}
.ws1_c00063{word-spacing:-16.344000px;}
.ws6_c00063{word-spacing:-16.056000px;}
.ws3_c00063{word-spacing:-15.984000px;}
.ws8_c00063{word-spacing:-10.992000px;}
.ws9_c00063{word-spacing:-10.896000px;}
.ws5_c00063{word-spacing:-10.368072px;}
.wsa_c00063{word-spacing:-9.120000px;}
.ws7_c00063{word-spacing:-8.256000px;}
.ws22_c00063{word-spacing:-3.240000px;}
.ws23_c00063{word-spacing:-3.168000px;}
.ws24_c00063{word-spacing:-2.808000px;}
.wsf_c00063{word-spacing:-2.088000px;}
.ws11_c00063{word-spacing:-0.648000px;}
.ws25_c00063{word-spacing:-0.432000px;}
.ws20_c00063{word-spacing:-0.216000px;}
.ws26_c00063{word-spacing:-0.096000px;}
.wsb_c00063{word-spacing:0.000000px;}
.ws27_c00063{word-spacing:0.096000px;}
.ws1c_c00063{word-spacing:0.216000px;}
.ws21_c00063{word-spacing:0.360000px;}
.ws1e_c00063{word-spacing:0.576000px;}
.ws1a_c00063{word-spacing:0.648000px;}
.ws1b_c00063{word-spacing:1.008000px;}
.wsc_c00063{word-spacing:1.440000px;}
.ws13_c00063{word-spacing:2.016000px;}
.ws16_c00063{word-spacing:2.020095px;}
.ws15_c00063{word-spacing:2.646000px;}
.ws1f_c00063{word-spacing:2.952000px;}
.ws12_c00063{word-spacing:3.672000px;}
.ws10_c00063{word-spacing:3.888000px;}
.ws14_c00063{word-spacing:4.221000px;}
.ws18_c00063{word-spacing:5.256000px;}
.ws19_c00063{word-spacing:5.328000px;}
.ws17_c00063{word-spacing:5.688000px;}
.ws1d_c00063{word-spacing:7.632000px;}
.wsd_c00063{word-spacing:7.704000px;}
.wse_c00063{word-spacing:7.776000px;}
.ws0_c00063{word-spacing:1601.515200px;}
._5_c00063{margin-left:-7.608000px;}
._4_c00063{margin-left:-4.800000px;}
._0_c00063{margin-left:-2.112000px;}
._1_c00063{margin-left:-1.104000px;}
._2_c00063{width:1.080000px;}
._3_c00063{width:2.160000px;}
._6_c00063{width:5.487600px;}
.fc0_c00063{color:rgb(35,31,32);}
.fs3_c00063{font-size:36.729000px;}
.fs4_c00063{font-size:41.976000px;}
.fs0_c00063{font-size:48.000000px;}
.fs2_c00063{font-size:63.000000px;}
.fs1_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y22_c00063{bottom:111.612300px;}
.y21_c00063{bottom:135.120300px;}
.y20_c00063{bottom:233.281650px;}
.y1f_c00063{bottom:258.031650px;}
.y1e_c00063{bottom:282.781650px;}
.y1d_c00063{bottom:307.531650px;}
.y1c_c00063{bottom:347.275650px;}
.y1b_c00063{bottom:372.025650px;}
.y1a_c00063{bottom:396.775650px;}
.y19_c00063{bottom:421.525650px;}
.y18_c00063{bottom:461.269650px;}
.y17_c00063{bottom:486.019650px;}
.y16_c00063{bottom:510.769650px;}
.y15_c00063{bottom:535.519650px;}
.y14_c00063{bottom:575.269650px;}
.y13_c00063{bottom:600.019650px;}
.y12_c00063{bottom:624.769650px;}
.y11_c00063{bottom:649.519650px;}
.y10_c00063{bottom:689.263650px;}
.yf_c00063{bottom:714.013650px;}
.ye_c00063{bottom:738.763650px;}
.yd_c00063{bottom:763.513650px;}
.yc_c00063{bottom:803.279400px;}
.yb_c00063{bottom:824.274150px;}
.ya_c00063{bottom:845.268900px;}
.y9_c00063{bottom:866.263650px;}
.y8_c00063{bottom:895.767450px;}
.y7_c00063{bottom:920.517450px;}
.y6_c00063{bottom:945.267450px;}
.y5_c00063{bottom:969.567450px;}
.y4_c00063{bottom:993.867450px;}
.y3_c00063{bottom:1018.167450px;}
.y2_c00063{bottom:1042.467450px;}
.y1_c00063{bottom:1093.600950px;}
.h2_c00063{height:39.264000px;}
.h5_c00063{height:39.280200px;}
.h4_c00063{height:51.534000px;}
.h3_c00063{height:58.896000px;}
.h1_c00063{height:1135.500000px;}
.h0_c00063{height:1135.506150px;}
.w0_c00063{width:893.950200px;}
.w1_c00063{width:894.000000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:77.603100px;}
.x2_c00063{left:98.862900px;}
@media print{
.v3_c00063{vertical-align:-21.312000pt;}
.v0_c00063{vertical-align:0.000000pt;}
.v1_c00063{vertical-align:18.592000pt;}
.v2_c00063{vertical-align:21.290667pt;}
.ls9_c00063{letter-spacing:-2.346667pt;}
.ls5_c00063{letter-spacing:-1.795640pt;}
.lsb_c00063{letter-spacing:-1.664000pt;}
.ls3_c00063{letter-spacing:-0.938667pt;}
.ls6_c00063{letter-spacing:-0.448000pt;}
.ls8_c00063{letter-spacing:-0.256000pt;}
.lsa_c00063{letter-spacing:-0.170667pt;}
.ls4_c00063{letter-spacing:0.000000pt;}
.ls1_c00063{letter-spacing:0.213333pt;}
.ls0_c00063{letter-spacing:0.640000pt;}
.ls7_c00063{letter-spacing:0.746240pt;}
.ls2_c00063{letter-spacing:4.792533pt;}
.ws4_c00063{word-spacing:-15.168000pt;}
.ws2_c00063{word-spacing:-14.656000pt;}
.ws1_c00063{word-spacing:-14.528000pt;}
.ws6_c00063{word-spacing:-14.272000pt;}
.ws3_c00063{word-spacing:-14.208000pt;}
.ws8_c00063{word-spacing:-9.770667pt;}
.ws9_c00063{word-spacing:-9.685333pt;}
.ws5_c00063{word-spacing:-9.216064pt;}
.wsa_c00063{word-spacing:-8.106667pt;}
.ws7_c00063{word-spacing:-7.338667pt;}
.ws22_c00063{word-spacing:-2.880000pt;}
.ws23_c00063{word-spacing:-2.816000pt;}
.ws24_c00063{word-spacing:-2.496000pt;}
.wsf_c00063{word-spacing:-1.856000pt;}
.ws11_c00063{word-spacing:-0.576000pt;}
.ws25_c00063{word-spacing:-0.384000pt;}
.ws20_c00063{word-spacing:-0.192000pt;}
.ws26_c00063{word-spacing:-0.085333pt;}
.wsb_c00063{word-spacing:0.000000pt;}
.ws27_c00063{word-spacing:0.085333pt;}
.ws1c_c00063{word-spacing:0.192000pt;}
.ws21_c00063{word-spacing:0.320000pt;}
.ws1e_c00063{word-spacing:0.512000pt;}
.ws1a_c00063{word-spacing:0.576000pt;}
.ws1b_c00063{word-spacing:0.896000pt;}
.wsc_c00063{word-spacing:1.280000pt;}
.ws13_c00063{word-spacing:1.792000pt;}
.ws16_c00063{word-spacing:1.795640pt;}
.ws15_c00063{word-spacing:2.352000pt;}
.ws1f_c00063{word-spacing:2.624000pt;}
.ws12_c00063{word-spacing:3.264000pt;}
.ws10_c00063{word-spacing:3.456000pt;}
.ws14_c00063{word-spacing:3.752000pt;}
.ws18_c00063{word-spacing:4.672000pt;}
.ws19_c00063{word-spacing:4.736000pt;}
.ws17_c00063{word-spacing:5.056000pt;}
.ws1d_c00063{word-spacing:6.784000pt;}
.wsd_c00063{word-spacing:6.848000pt;}
.wse_c00063{word-spacing:6.912000pt;}
.ws0_c00063{word-spacing:1423.569067pt;}
._5_c00063{margin-left:-6.762667pt;}
._4_c00063{margin-left:-4.266667pt;}
._0_c00063{margin-left:-1.877333pt;}
._1_c00063{margin-left:-0.981333pt;}
._2_c00063{width:0.960000pt;}
._3_c00063{width:1.920000pt;}
._6_c00063{width:4.877867pt;}
.fs3_c00063{font-size:32.648000pt;}
.fs4_c00063{font-size:37.312000pt;}
.fs0_c00063{font-size:42.666667pt;}
.fs2_c00063{font-size:56.000000pt;}
.fs1_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y22_c00063{bottom:99.210933pt;}
.y21_c00063{bottom:120.106933pt;}
.y20_c00063{bottom:207.361467pt;}
.y1f_c00063{bottom:229.361467pt;}
.y1e_c00063{bottom:251.361467pt;}
.y1d_c00063{bottom:273.361467pt;}
.y1c_c00063{bottom:308.689467pt;}
.y1b_c00063{bottom:330.689467pt;}
.y1a_c00063{bottom:352.689467pt;}
.y19_c00063{bottom:374.689467pt;}
.y18_c00063{bottom:410.017467pt;}
.y17_c00063{bottom:432.017467pt;}
.y16_c00063{bottom:454.017467pt;}
.y15_c00063{bottom:476.017467pt;}
.y14_c00063{bottom:511.350800pt;}
.y13_c00063{bottom:533.350800pt;}
.y12_c00063{bottom:555.350800pt;}
.y11_c00063{bottom:577.350800pt;}
.y10_c00063{bottom:612.678800pt;}
.yf_c00063{bottom:634.678800pt;}
.ye_c00063{bottom:656.678800pt;}
.yd_c00063{bottom:678.678800pt;}
.yc_c00063{bottom:714.026133pt;}
.yb_c00063{bottom:732.688133pt;}
.ya_c00063{bottom:751.350133pt;}
.y9_c00063{bottom:770.012133pt;}
.y8_c00063{bottom:796.237733pt;}
.y7_c00063{bottom:818.237733pt;}
.y6_c00063{bottom:840.237733pt;}
.y5_c00063{bottom:861.837733pt;}
.y4_c00063{bottom:883.437733pt;}
.y3_c00063{bottom:905.037733pt;}
.y2_c00063{bottom:926.637733pt;}
.y1_c00063{bottom:972.089733pt;}
.h2_c00063{height:34.901333pt;}
.h5_c00063{height:34.915733pt;}
.h4_c00063{height:45.808000pt;}
.h3_c00063{height:52.352000pt;}
.h1_c00063{height:1009.333333pt;}
.h0_c00063{height:1009.338800pt;}
.w0_c00063{width:794.622400pt;}
.w1_c00063{width:794.666667pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:68.980533pt;}
.x2_c00063{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f74e3e018fe07b1713185c8.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_5c84052867b3186776ff4e84.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00064;src:url('chunks/assets/font_e1a8d90c0fceaa015dc0356d.woff2')format("woff");}.ff6_c00064{font-family:ff6_c00064;line-height:1.067000;font-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_c00064{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls6_c00064{letter-spacing:-6.300000px;}
.ls2_c00064{letter-spacing:-0.864000px;}
.ls5_c00064{letter-spacing:-0.630000px;}
.ls4_c00064{letter-spacing:-0.378000px;}
.ls7_c00064{letter-spacing:-0.315000px;}
.ls3_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:0.480000px;}
.ls1_c00064{letter-spacing:35.658000px;}
.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:-10.032000px;}
.wsf_c00064{word-spacing:-5.229000px;}
.ws3_c00064{word-spacing:-2.205000px;}
.ws23_c00064{word-spacing:-2.079000px;}
.ws1e_c00064{word-spacing:-1.386000px;}
.ws13_c00064{word-spacing:-1.071000px;}
.ws1_c00064{word-spacing:0.000000px;}
.ws20_c00064{word-spacing:0.378000px;}
.ws12_c00064{word-spacing:0.945000px;}
.ws11_c00064{word-spacing:1.260000px;}
.wsd_c00064{word-spacing:2.016000px;}
.ws2_c00064{word-spacing:2.457000px;}
.ws19_c00064{word-spacing:3.528000px;}
.ws7_c00064{word-spacing:3.843000px;}
.ws17_c00064{word-spacing:4.095000px;}
.ws1d_c00064{word-spacing:4.221000px;}
.ws8_c00064{word-spacing:4.914000px;}
.ws1f_c00064{word-spacing:5.103000px;}
.ws18_c00064{word-spacing:5.166000px;}
.ws21_c00064{word-spacing:5.544000px;}
.ws5_c00064{word-spacing:5.670000px;}
.wsb_c00064{word-spacing:5.796000px;}
.ws4_c00064{word-spacing:5.922000px;}
.ws1a_c00064{word-spacing:6.048000px;}
.ws10_c00064{word-spacing:6.300000px;}
.ws14_c00064{word-spacing:6.867000px;}
.ws15_c00064{word-spacing:10.143000px;}
.ws16_c00064{word-spacing:10.584000px;}
.ws22_c00064{word-spacing:11.277000px;}
.ws1b_c00064{word-spacing:13.356000px;}
.wse_c00064{word-spacing:13.734000px;}
.wsa_c00064{word-spacing:15.120000px;}
.ws9_c00064{word-spacing:15.372000px;}
.ws6_c00064{word-spacing:17.136000px;}
.ws1c_c00064{word-spacing:17.199000px;}
.wsc_c00064{word-spacing:22.491000px;}
._0_c00064{margin-left:-2754.411600px;}
._5_c00064{margin-left:-46.304400px;}
._1_c00064{margin-left:-5.856000px;}
._4_c00064{margin-left:-2.952000px;}
._2_c00064{margin-left:-1.440000px;}
._3_c00064{width:1.440000px;}
._6_c00064{width:5.409000px;}
._7_c00064{width:6.939000px;}
.fc0_c00064{color:rgb(35,31,32);}
.fs0_c00064{font-size:48.000000px;}
.fs2_c00064{font-size:63.000000px;}
.fs1_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y29_c00064{bottom:110.853900px;}
.y28_c00064{bottom:131.848650px;}
.y27_c00064{bottom:152.843400px;}
.y4a_c00064{bottom:173.848650px;}
.y26_c00064{bottom:173.852850px;}
.y49_c00064{bottom:194.843400px;}
.y25_c00064{bottom:203.352600px;}
.y48_c00064{bottom:215.852850px;}
.y24_c00064{bottom:224.347350px;}
.y47_c00064{bottom:245.352600px;}
.y23_c00064{bottom:245.362050px;}
.y46_c00064{bottom:266.347350px;}
.y22_c00064{bottom:274.861800px;}
.y45_c00064{bottom:287.356800px;}
.y21_c00064{bottom:295.856550px;}
.y20_c00064{bottom:316.851300px;}
.y44_c00064{bottom:316.856550px;}
.y43_c00064{bottom:337.851300px;}
.y1f_c00064{bottom:337.860750px;}
.y42_c00064{bottom:358.871250px;}
.y1e_c00064{bottom:367.360500px;}
.y1d_c00064{bottom:388.355250px;}
.y41_c00064{bottom:388.371000px;}
.y1c_c00064{bottom:409.359450px;}
.y40_c00064{bottom:409.365750px;}
.y3f_c00064{bottom:430.360500px;}
.y1b_c00064{bottom:438.859200px;}
.y3e_c00064{bottom:451.355250px;}
.y1a_c00064{bottom:459.879150px;}
.y3d_c00064{bottom:472.369950px;}
.y19_c00064{bottom:489.378900px;}
.y3c_c00064{bottom:501.869700px;}
.y18_c00064{bottom:510.373650px;}
.y3b_c00064{bottom:522.864450px;}
.y17_c00064{bottom:531.368400px;}
.y3a_c00064{bottom:543.859200px;}
.y16_c00064{bottom:552.363150px;}
.y39_c00064{bottom:564.873900px;}
.y15_c00064{bottom:581.877600px;}
.y38_c00064{bottom:594.373650px;}
.y14_c00064{bottom:602.872350px;}
.y37_c00064{bottom:615.368400px;}
.y13_c00064{bottom:623.867100px;}
.y36_c00064{bottom:636.363150px;}
.y12_c00064{bottom:653.386650px;}
.y35_c00064{bottom:657.377850px;}
.y11_c00064{bottom:674.381400px;}
.y34_c00064{bottom:686.877600px;}
.y10_c00064{bottom:695.376150px;}
.y33_c00064{bottom:707.872350px;}
.yf_c00064{bottom:716.370900px;}
.y32_c00064{bottom:728.867100px;}
.ye_c00064{bottom:737.385750px;}
.y31_c00064{bottom:749.876400px;}
.yd_c00064{bottom:766.885500px;}
.y30_c00064{bottom:779.376150px;}
.yc_c00064{bottom:787.880250px;}
.y2f_c00064{bottom:800.370900px;}
.yb_c00064{bottom:808.875000px;}
.y2e_c00064{bottom:821.380500px;}
.ya_c00064{bottom:829.884300px;}
.y2d_c00064{bottom:850.880250px;}
.y9_c00064{bottom:859.384050px;}
.y2c_c00064{bottom:871.875000px;}
.y8_c00064{bottom:880.378800px;}
.y2b_c00064{bottom:892.884300px;}
.y7_c00064{bottom:901.389300px;}
.y6_c00064{bottom:922.384050px;}
.y5_c00064{bottom:943.378800px;}
.y4_c00064{bottom:964.378800px;}
.y2a_c00064{bottom:964.393650px;}
.y3_c00064{bottom:1002.723450px;}
.y2_c00064{bottom:1042.467450px;}
.y1_c00064{bottom:1093.600950px;}
.h2_c00064{height:39.264000px;}
.h3_c00064{height:39.984000px;}
.h6_c00064{height:51.030000px;}
.h8_c00064{height:51.534000px;}
.h7_c00064{height:52.479000px;}
.h5_c00064{height:58.896000px;}
.h4_c00064{height:59.976000px;}
.h1_c00064{height:1135.500000px;}
.h0_c00064{height:1135.506150px;}
.w0_c00064{width:893.950200px;}
.w1_c00064{width:894.000000px;}
.x0_c00064{left:0.000000px;}
.x4_c00064{left:128.626800px;}
.x5_c00064{left:136.627650px;}
.x6_c00064{left:145.636800px;}
.x2_c00064{left:188.061900px;}
.x3_c00064{left:190.513350px;}
.x7_c00064{left:490.042050px;}
.x8_c00064{left:498.139500px;}
.x9_c00064{left:507.054150px;}
.x1_c00064{left:806.801700px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls6_c00064{letter-spacing:-5.600000pt;}
.ls2_c00064{letter-spacing:-0.768000pt;}
.ls5_c00064{letter-spacing:-0.560000pt;}
.ls4_c00064{letter-spacing:-0.336000pt;}
.ls7_c00064{letter-spacing:-0.280000pt;}
.ls3_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:0.426667pt;}
.ls1_c00064{letter-spacing:31.696000pt;}
.ws0_c00064{word-spacing:-8.917333pt;}
.wsf_c00064{word-spacing:-4.648000pt;}
.ws3_c00064{word-spacing:-1.960000pt;}
.ws23_c00064{word-spacing:-1.848000pt;}
.ws1e_c00064{word-spacing:-1.232000pt;}
.ws13_c00064{word-spacing:-0.952000pt;}
.ws1_c00064{word-spacing:0.000000pt;}
.ws20_c00064{word-spacing:0.336000pt;}
.ws12_c00064{word-spacing:0.840000pt;}
.ws11_c00064{word-spacing:1.120000pt;}
.wsd_c00064{word-spacing:1.792000pt;}
.ws2_c00064{word-spacing:2.184000pt;}
.ws19_c00064{word-spacing:3.136000pt;}
.ws7_c00064{word-spacing:3.416000pt;}
.ws17_c00064{word-spacing:3.640000pt;}
.ws1d_c00064{word-spacing:3.752000pt;}
.ws8_c00064{word-spacing:4.368000pt;}
.ws1f_c00064{word-spacing:4.536000pt;}
.ws18_c00064{word-spacing:4.592000pt;}
.ws21_c00064{word-spacing:4.928000pt;}
.ws5_c00064{word-spacing:5.040000pt;}
.wsb_c00064{word-spacing:5.152000pt;}
.ws4_c00064{word-spacing:5.264000pt;}
.ws1a_c00064{word-spacing:5.376000pt;}
.ws10_c00064{word-spacing:5.600000pt;}
.ws14_c00064{word-spacing:6.104000pt;}
.ws15_c00064{word-spacing:9.016000pt;}
.ws16_c00064{word-spacing:9.408000pt;}
.ws22_c00064{word-spacing:10.024000pt;}
.ws1b_c00064{word-spacing:11.872000pt;}
.wse_c00064{word-spacing:12.208000pt;}
.wsa_c00064{word-spacing:13.440000pt;}
.ws9_c00064{word-spacing:13.664000pt;}
.ws6_c00064{word-spacing:15.232000pt;}
.ws1c_c00064{word-spacing:15.288000pt;}
.wsc_c00064{word-spacing:19.992000pt;}
._0_c00064{margin-left:-2448.365867pt;}
._5_c00064{margin-left:-41.159467pt;}
._1_c00064{margin-left:-5.205333pt;}
._4_c00064{margin-left:-2.624000pt;}
._2_c00064{margin-left:-1.280000pt;}
._3_c00064{width:1.280000pt;}
._6_c00064{width:4.808000pt;}
._7_c00064{width:6.168000pt;}
.fs0_c00064{font-size:42.666667pt;}
.fs2_c00064{font-size:56.000000pt;}
.fs1_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y29_c00064{bottom:98.536800pt;}
.y28_c00064{bottom:117.198800pt;}
.y27_c00064{bottom:135.860800pt;}
.y4a_c00064{bottom:154.532133pt;}
.y26_c00064{bottom:154.535867pt;}
.y49_c00064{bottom:173.194133pt;}
.y25_c00064{bottom:180.757867pt;}
.y48_c00064{bottom:191.869200pt;}
.y24_c00064{bottom:199.419867pt;}
.y47_c00064{bottom:218.091200pt;}
.y23_c00064{bottom:218.099600pt;}
.y46_c00064{bottom:236.753200pt;}
.y22_c00064{bottom:244.321600pt;}
.y45_c00064{bottom:255.428267pt;}
.y21_c00064{bottom:262.983600pt;}
.y20_c00064{bottom:281.645600pt;}
.y44_c00064{bottom:281.650267pt;}
.y43_c00064{bottom:300.312267pt;}
.y1f_c00064{bottom:300.320667pt;}
.y42_c00064{bottom:318.996667pt;}
.y1e_c00064{bottom:326.542667pt;}
.y1d_c00064{bottom:345.204667pt;}
.y41_c00064{bottom:345.218667pt;}
.y1c_c00064{bottom:363.875067pt;}
.y40_c00064{bottom:363.880667pt;}
.y3f_c00064{bottom:382.542667pt;}
.y1b_c00064{bottom:390.097067pt;}
.y3e_c00064{bottom:401.204667pt;}
.y1a_c00064{bottom:408.781467pt;}
.y3d_c00064{bottom:419.884400pt;}
.y19_c00064{bottom:435.003467pt;}
.y3c_c00064{bottom:446.106400pt;}
.y18_c00064{bottom:453.665467pt;}
.y3b_c00064{bottom:464.768400pt;}
.y17_c00064{bottom:472.327467pt;}
.y3a_c00064{bottom:483.430400pt;}
.y16_c00064{bottom:490.989467pt;}
.y39_c00064{bottom:502.110133pt;}
.y15_c00064{bottom:517.224533pt;}
.y38_c00064{bottom:528.332133pt;}
.y14_c00064{bottom:535.886533pt;}
.y37_c00064{bottom:546.994133pt;}
.y13_c00064{bottom:554.548533pt;}
.y36_c00064{bottom:565.656133pt;}
.y12_c00064{bottom:580.788133pt;}
.y35_c00064{bottom:584.335867pt;}
.y11_c00064{bottom:599.450133pt;}
.y34_c00064{bottom:610.557867pt;}
.y10_c00064{bottom:618.112133pt;}
.y33_c00064{bottom:629.219867pt;}
.yf_c00064{bottom:636.774133pt;}
.y32_c00064{bottom:647.881867pt;}
.ye_c00064{bottom:655.454000pt;}
.y31_c00064{bottom:666.556800pt;}
.yd_c00064{bottom:681.676000pt;}
.y30_c00064{bottom:692.778800pt;}
.yc_c00064{bottom:700.338000pt;}
.y2f_c00064{bottom:711.440800pt;}
.yb_c00064{bottom:719.000000pt;}
.y2e_c00064{bottom:730.116000pt;}
.ya_c00064{bottom:737.674933pt;}
.y2d_c00064{bottom:756.338000pt;}
.y9_c00064{bottom:763.896933pt;}
.y2c_c00064{bottom:775.000000pt;}
.y8_c00064{bottom:782.558933pt;}
.y2b_c00064{bottom:793.674933pt;}
.y7_c00064{bottom:801.234933pt;}
.y6_c00064{bottom:819.896933pt;}
.y5_c00064{bottom:838.558933pt;}
.y4_c00064{bottom:857.225600pt;}
.y2a_c00064{bottom:857.238800pt;}
.y3_c00064{bottom:891.309733pt;}
.y2_c00064{bottom:926.637733pt;}
.y1_c00064{bottom:972.089733pt;}
.h2_c00064{height:34.901333pt;}
.h3_c00064{height:35.541333pt;}
.h6_c00064{height:45.360000pt;}
.h8_c00064{height:45.808000pt;}
.h7_c00064{height:46.648000pt;}
.h5_c00064{height:52.352000pt;}
.h4_c00064{height:53.312000pt;}
.h1_c00064{height:1009.333333pt;}
.h0_c00064{height:1009.338800pt;}
.w0_c00064{width:794.622400pt;}
.w1_c00064{width:794.666667pt;}
.x0_c00064{left:0.000000pt;}
.x4_c00064{left:114.334933pt;}
.x5_c00064{left:121.446800pt;}
.x6_c00064{left:129.454933pt;}
.x2_c00064{left:167.166133pt;}
.x3_c00064{left:169.345200pt;}
.x7_c00064{left:435.592933pt;}
.x8_c00064{left:442.790667pt;}
.x9_c00064{left:450.714800pt;}
.x1_c00064{left:717.157067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1981fe76769b60a095036ff5.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_201bd8d32d490b3b3003ba82.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_d9eb055f999b6b0e006ff861.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:23.952000px;}
.ls5_c00065{letter-spacing:-1.440000px;}
.ls6_c00065{letter-spacing:-0.720000px;}
.ls1_c00065{letter-spacing:-0.480000px;}
.ls9_c00065{letter-spacing:-0.420000px;}
.ls3_c00065{letter-spacing:-0.288000px;}
.ls8_c00065{letter-spacing:-0.240000px;}
.ls7_c00065{letter-spacing:-0.192000px;}
.ls2_c00065{letter-spacing:0.000000px;}
.ls4_c00065{letter-spacing:0.293832px;}
.ls0_c00065{letter-spacing:0.720000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00065{word-spacing:-17.064000px;}
.ws2_c00065{word-spacing:-16.344000px;}
.ws1_c00065{word-spacing:-16.056000px;}
.ws5_c00065{word-spacing:-15.048000px;}
.ws7_c00065{word-spacing:-13.320000px;}
.ws6_c00065{word-spacing:-10.704000px;}
.ws3_c00065{word-spacing:-9.822384px;}
.ws23_c00065{word-spacing:-2.808000px;}
.ws1c_c00065{word-spacing:-2.664000px;}
.wsa_c00065{word-spacing:-2.232000px;}
.ws13_c00065{word-spacing:-1.872000px;}
.ws26_c00065{word-spacing:-1.392000px;}
.ws24_c00065{word-spacing:-1.152000px;}
.ws15_c00065{word-spacing:-0.720000px;}
.ws22_c00065{word-spacing:-0.648000px;}
.ws27_c00065{word-spacing:-0.624000px;}
.ws1b_c00065{word-spacing:-0.432000px;}
.ws11_c00065{word-spacing:-0.216000px;}
.ws8_c00065{word-spacing:0.000000px;}
.ws9_c00065{word-spacing:0.144000px;}
.ws28_c00065{word-spacing:0.240000px;}
.wsb_c00065{word-spacing:0.432000px;}
.wsf_c00065{word-spacing:0.504000px;}
.ws25_c00065{word-spacing:0.672000px;}
.ws1d_c00065{word-spacing:0.792000px;}
.ws19_c00065{word-spacing:1.440000px;}
.ws12_c00065{word-spacing:1.728000px;}
.ws1a_c00065{word-spacing:2.160000px;}
.ws21_c00065{word-spacing:2.448000px;}
.ws10_c00065{word-spacing:2.880000px;}
.ws1f_c00065{word-spacing:3.312000px;}
.ws20_c00065{word-spacing:4.032000px;}
.ws14_c00065{word-spacing:5.112000px;}
.ws1e_c00065{word-spacing:8.208000px;}
.wse_c00065{word-spacing:8.640000px;}
.wsd_c00065{word-spacing:9.072000px;}
.ws16_c00065{word-spacing:12.096000px;}
.wsc_c00065{word-spacing:13.464000px;}
.ws18_c00065{word-spacing:14.832000px;}
.ws17_c00065{word-spacing:18.144000px;}
.ws0_c00065{word-spacing:1597.867200px;}
._8_c00065{margin-left:-7.032000px;}
._a_c00065{margin-left:-5.820000px;}
._9_c00065{margin-left:-4.608000px;}
._5_c00065{margin-left:-3.384000px;}
._0_c00065{margin-left:-2.112000px;}
._1_c00065{margin-left:-1.104000px;}
._3_c00065{width:1.080000px;}
._7_c00065{width:2.520000px;}
._6_c00065{width:3.528000px;}
._4_c00065{width:12.816000px;}
._2_c00065{width:14.327400px;}
.fc0_c00065{color:rgb(35,31,32);}
.fs2_c00065{font-size:41.976000px;}
.fs0_c00065{font-size:48.000000px;}
.fs3_c00065{font-size:54.000000px;}
.fs4_c00065{font-size:60.000000px;}
.fs1_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y25_c00065{bottom:111.616200px;}
.y24_c00065{bottom:126.616200px;}
.y23_c00065{bottom:141.616200px;}
.y22_c00065{bottom:156.616200px;}
.y21_c00065{bottom:200.235450px;}
.y20_c00065{bottom:224.985450px;}
.y1f_c00065{bottom:249.735450px;}
.y1e_c00065{bottom:289.479450px;}
.y1d_c00065{bottom:314.229450px;}
.y1c_c00065{bottom:338.979450px;}
.y1b_c00065{bottom:363.729450px;}
.y1a_c00065{bottom:388.479450px;}
.y19_c00065{bottom:413.229450px;}
.y18_c00065{bottom:437.979450px;}
.y17_c00065{bottom:477.723450px;}
.y16_c00065{bottom:502.473450px;}
.y15_c00065{bottom:527.223450px;}
.y14_c00065{bottom:551.973450px;}
.y13_c00065{bottom:576.723450px;}
.y29_c00065{bottom:581.368200px;}
.y28_c00065{bottom:599.968200px;}
.y12_c00065{bottom:601.473450px;}
.y27_c00065{bottom:618.568200px;}
.y11_c00065{bottom:626.223450px;}
.y26_c00065{bottom:637.168200px;}
.y10_c00065{bottom:650.973450px;}
.yf_c00065{bottom:675.723450px;}
.ye_c00065{bottom:715.467450px;}
.yd_c00065{bottom:740.217450px;}
.yc_c00065{bottom:764.973450px;}
.yb_c00065{bottom:789.723450px;}
.ya_c00065{bottom:814.473450px;}
.y9_c00065{bottom:839.223450px;}
.y8_c00065{bottom:863.973450px;}
.y7_c00065{bottom:888.723450px;}
.y6_c00065{bottom:928.467450px;}
.y5_c00065{bottom:953.217450px;}
.y4_c00065{bottom:977.967450px;}
.y3_c00065{bottom:1002.717450px;}
.y2_c00065{bottom:1042.467450px;}
.y1_c00065{bottom:1093.600950px;}
.h2_c00065{height:39.264000px;}
.h5_c00065{height:44.172000px;}
.h7_c00065{height:48.600000px;}
.h6_c00065{height:49.080000px;}
.h4_c00065{height:58.896000px;}
.h3_c00065{height:59.976000px;}
.h1_c00065{height:1135.500000px;}
.h0_c00065{height:1135.506150px;}
.w0_c00065{width:893.950200px;}
.w1_c00065{width:894.000000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:77.603100px;}
.x3_c00065{left:94.611000px;}
.x2_c00065{left:429.953100px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:21.290667pt;}
.ls5_c00065{letter-spacing:-1.280000pt;}
.ls6_c00065{letter-spacing:-0.640000pt;}
.ls1_c00065{letter-spacing:-0.426667pt;}
.ls9_c00065{letter-spacing:-0.373333pt;}
.ls3_c00065{letter-spacing:-0.256000pt;}
.ls8_c00065{letter-spacing:-0.213333pt;}
.ls7_c00065{letter-spacing:-0.170667pt;}
.ls2_c00065{letter-spacing:0.000000pt;}
.ls4_c00065{letter-spacing:0.261184pt;}
.ls0_c00065{letter-spacing:0.640000pt;}
.ws4_c00065{word-spacing:-15.168000pt;}
.ws2_c00065{word-spacing:-14.528000pt;}
.ws1_c00065{word-spacing:-14.272000pt;}
.ws5_c00065{word-spacing:-13.376000pt;}
.ws7_c00065{word-spacing:-11.840000pt;}
.ws6_c00065{word-spacing:-9.514667pt;}
.ws3_c00065{word-spacing:-8.731008pt;}
.ws23_c00065{word-spacing:-2.496000pt;}
.ws1c_c00065{word-spacing:-2.368000pt;}
.wsa_c00065{word-spacing:-1.984000pt;}
.ws13_c00065{word-spacing:-1.664000pt;}
.ws26_c00065{word-spacing:-1.237333pt;}
.ws24_c00065{word-spacing:-1.024000pt;}
.ws15_c00065{word-spacing:-0.640000pt;}
.ws22_c00065{word-spacing:-0.576000pt;}
.ws27_c00065{word-spacing:-0.554667pt;}
.ws1b_c00065{word-spacing:-0.384000pt;}
.ws11_c00065{word-spacing:-0.192000pt;}
.ws8_c00065{word-spacing:0.000000pt;}
.ws9_c00065{word-spacing:0.128000pt;}
.ws28_c00065{word-spacing:0.213333pt;}
.wsb_c00065{word-spacing:0.384000pt;}
.wsf_c00065{word-spacing:0.448000pt;}
.ws25_c00065{word-spacing:0.597333pt;}
.ws1d_c00065{word-spacing:0.704000pt;}
.ws19_c00065{word-spacing:1.280000pt;}
.ws12_c00065{word-spacing:1.536000pt;}
.ws1a_c00065{word-spacing:1.920000pt;}
.ws21_c00065{word-spacing:2.176000pt;}
.ws10_c00065{word-spacing:2.560000pt;}
.ws1f_c00065{word-spacing:2.944000pt;}
.ws20_c00065{word-spacing:3.584000pt;}
.ws14_c00065{word-spacing:4.544000pt;}
.ws1e_c00065{word-spacing:7.296000pt;}
.wse_c00065{word-spacing:7.680000pt;}
.wsd_c00065{word-spacing:8.064000pt;}
.ws16_c00065{word-spacing:10.752000pt;}
.wsc_c00065{word-spacing:11.968000pt;}
.ws18_c00065{word-spacing:13.184000pt;}
.ws17_c00065{word-spacing:16.128000pt;}
.ws0_c00065{word-spacing:1420.326400pt;}
._8_c00065{margin-left:-6.250667pt;}
._a_c00065{margin-left:-5.173333pt;}
._9_c00065{margin-left:-4.096000pt;}
._5_c00065{margin-left:-3.008000pt;}
._0_c00065{margin-left:-1.877333pt;}
._1_c00065{margin-left:-0.981333pt;}
._3_c00065{width:0.960000pt;}
._7_c00065{width:2.240000pt;}
._6_c00065{width:3.136000pt;}
._4_c00065{width:11.392000pt;}
._2_c00065{width:12.735467pt;}
.fs2_c00065{font-size:37.312000pt;}
.fs0_c00065{font-size:42.666667pt;}
.fs3_c00065{font-size:48.000000pt;}
.fs4_c00065{font-size:53.333333pt;}
.fs1_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y25_c00065{bottom:99.214400pt;}
.y24_c00065{bottom:112.547733pt;}
.y23_c00065{bottom:125.881067pt;}
.y22_c00065{bottom:139.214400pt;}
.y21_c00065{bottom:177.987067pt;}
.y20_c00065{bottom:199.987067pt;}
.y1f_c00065{bottom:221.987067pt;}
.y1e_c00065{bottom:257.315067pt;}
.y1d_c00065{bottom:279.315067pt;}
.y1c_c00065{bottom:301.315067pt;}
.y1b_c00065{bottom:323.315067pt;}
.y1a_c00065{bottom:345.315067pt;}
.y19_c00065{bottom:367.315067pt;}
.y18_c00065{bottom:389.315067pt;}
.y17_c00065{bottom:424.643067pt;}
.y16_c00065{bottom:446.643067pt;}
.y15_c00065{bottom:468.643067pt;}
.y14_c00065{bottom:490.643067pt;}
.y13_c00065{bottom:512.643067pt;}
.y29_c00065{bottom:516.771733pt;}
.y28_c00065{bottom:533.305067pt;}
.y12_c00065{bottom:534.643067pt;}
.y27_c00065{bottom:549.838400pt;}
.y11_c00065{bottom:556.643067pt;}
.y26_c00065{bottom:566.371733pt;}
.y10_c00065{bottom:578.643067pt;}
.yf_c00065{bottom:600.643067pt;}
.ye_c00065{bottom:635.971067pt;}
.yd_c00065{bottom:657.971067pt;}
.yc_c00065{bottom:679.976400pt;}
.yb_c00065{bottom:701.976400pt;}
.ya_c00065{bottom:723.976400pt;}
.y9_c00065{bottom:745.976400pt;}
.y8_c00065{bottom:767.976400pt;}
.y7_c00065{bottom:789.976400pt;}
.y6_c00065{bottom:825.304400pt;}
.y5_c00065{bottom:847.304400pt;}
.y4_c00065{bottom:869.304400pt;}
.y3_c00065{bottom:891.304400pt;}
.y2_c00065{bottom:926.637733pt;}
.y1_c00065{bottom:972.089733pt;}
.h2_c00065{height:34.901333pt;}
.h5_c00065{height:39.264000pt;}
.h7_c00065{height:43.200000pt;}
.h6_c00065{height:43.626667pt;}
.h4_c00065{height:52.352000pt;}
.h3_c00065{height:53.312000pt;}
.h1_c00065{height:1009.333333pt;}
.h0_c00065{height:1009.338800pt;}
.w0_c00065{width:794.622400pt;}
.w1_c00065{width:794.666667pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:68.980533pt;}
.x3_c00065{left:84.098667pt;}
.x2_c00065{left:382.180533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8af423743f7b0ca4dcaad4fd.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_424af87f5d3d4911bd40024d.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.067000;font-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_c00066{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls3_c00066{letter-spacing:-0.600000px;}
.ls4_c00066{letter-spacing:-0.240000px;}
.ls1_c00066{letter-spacing:-0.192000px;}
.ls2_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00066{word-spacing:-13.740000px;}
.ws0_c00066{word-spacing:-10.704000px;}
.ws5_c00066{word-spacing:-0.060000px;}
.ws2_c00066{word-spacing:0.000000px;}
.ws6_c00066{word-spacing:0.180000px;}
.ws4_c00066{word-spacing:0.240000px;}
.ws3_c00066{word-spacing:0.600000px;}
._0_c00066{margin-left:-2755.083600px;}
._1_c00066{margin-left:-5.856000px;}
._4_c00066{margin-left:-2.700000px;}
._2_c00066{margin-left:-1.440000px;}
._3_c00066{width:1.140000px;}
.fc0_c00066{color:rgb(35,31,32);}
.fs0_c00066{font-size:48.000000px;}
.fs1_c00066{font-size:54.000000px;}
.fs2_c00066{font-size:60.000000px;}
.y0_c00066{bottom:0.000000px;}
.y9_c00066{bottom:159.823350px;}
.y8_c00066{bottom:178.423350px;}
.y7_c00066{bottom:197.023350px;}
.y6_c00066{bottom:215.623350px;}
.y5_c00066{bottom:623.462550px;}
.y4_c00066{bottom:642.062550px;}
.y3_c00066{bottom:660.662550px;}
.y2_c00066{bottom:679.262550px;}
.y1_c00066{bottom:1093.600950px;}
.h2_c00066{height:39.264000px;}
.h3_c00066{height:39.984000px;}
.h4_c00066{height:44.172000px;}
.h6_c00066{height:48.600000px;}
.h5_c00066{height:49.080000px;}
.h1_c00066{height:1135.500000px;}
.h0_c00066{height:1135.506150px;}
.w0_c00066{width:893.950200px;}
.w1_c00066{width:894.000000px;}
.x0_c00066{left:0.000000px;}
.x5_c00066{left:128.626800px;}
.x2_c00066{left:188.061900px;}
.x3_c00066{left:190.513350px;}
.x4_c00066{left:554.036250px;}
.x1_c00066{left:806.669700px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls3_c00066{letter-spacing:-0.533333pt;}
.ls4_c00066{letter-spacing:-0.213333pt;}
.ls1_c00066{letter-spacing:-0.170667pt;}
.ls2_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.426667pt;}
.ws1_c00066{word-spacing:-12.213333pt;}
.ws0_c00066{word-spacing:-9.514667pt;}
.ws5_c00066{word-spacing:-0.053333pt;}
.ws2_c00066{word-spacing:0.000000pt;}
.ws6_c00066{word-spacing:0.160000pt;}
.ws4_c00066{word-spacing:0.213333pt;}
.ws3_c00066{word-spacing:0.533333pt;}
._0_c00066{margin-left:-2448.963200pt;}
._1_c00066{margin-left:-5.205333pt;}
._4_c00066{margin-left:-2.400000pt;}
._2_c00066{margin-left:-1.280000pt;}
._3_c00066{width:1.013333pt;}
.fs0_c00066{font-size:42.666667pt;}
.fs1_c00066{font-size:48.000000pt;}
.fs2_c00066{font-size:53.333333pt;}
.y0_c00066{bottom:0.000000pt;}
.y9_c00066{bottom:142.065200pt;}
.y8_c00066{bottom:158.598533pt;}
.y7_c00066{bottom:175.131867pt;}
.y6_c00066{bottom:191.665200pt;}
.y5_c00066{bottom:554.188933pt;}
.y4_c00066{bottom:570.722267pt;}
.y3_c00066{bottom:587.255600pt;}
.y2_c00066{bottom:603.788933pt;}
.y1_c00066{bottom:972.089733pt;}
.h2_c00066{height:34.901333pt;}
.h3_c00066{height:35.541333pt;}
.h4_c00066{height:39.264000pt;}
.h6_c00066{height:43.200000pt;}
.h5_c00066{height:43.626667pt;}
.h1_c00066{height:1009.333333pt;}
.h0_c00066{height:1009.338800pt;}
.w0_c00066{width:794.622400pt;}
.w1_c00066{width:794.666667pt;}
.x0_c00066{left:0.000000pt;}
.x5_c00066{left:114.334933pt;}
.x2_c00066{left:167.166133pt;}
.x3_c00066{left:169.345200pt;}
.x4_c00066{left:492.476667pt;}
.x1_c00066{left:717.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_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_78c2077fc1c2f4cfa7168e40.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.067000;font-style:normal;font-weight:normal;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_60a3f21d5f7162b9e848301d.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.v1_c00067{vertical-align:23.952000px;}
.ls7_c00067{letter-spacing:-4.800000px;}
.ls4_c00067{letter-spacing:-2.808000px;}
.ls5_c00067{letter-spacing:-0.720000px;}
.ls3_c00067{letter-spacing:-0.288000px;}
.ls2_c00067{letter-spacing:0.000000px;}
.ls8_c00067{letter-spacing:0.060000px;}
.ls1_c00067{letter-spacing:0.300000px;}
.ls0_c00067{letter-spacing:0.720000px;}
.ls6_c00067{letter-spacing:1.007424px;}
.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.064000px;}
.ws4_c00067{word-spacing:-16.488000px;}
.ws3_c00067{word-spacing:-16.200000px;}
.ws2_c00067{word-spacing:-16.056000px;}
.ws7_c00067{word-spacing:-10.896000px;}
.ws5_c00067{word-spacing:-10.535976px;}
.ws6_c00067{word-spacing:-6.096000px;}
.ws1e_c00067{word-spacing:-3.024000px;}
.ws24_c00067{word-spacing:-2.520000px;}
.wse_c00067{word-spacing:-1.944000px;}
.ws15_c00067{word-spacing:-1.728000px;}
.ws28_c00067{word-spacing:-1.632000px;}
.ws27_c00067{word-spacing:-1.584000px;}
.ws10_c00067{word-spacing:-0.936000px;}
.wsa_c00067{word-spacing:-0.648000px;}
.wsd_c00067{word-spacing:-0.360000px;}
.ws22_c00067{word-spacing:-0.144000px;}
.ws8_c00067{word-spacing:0.000000px;}
.ws1f_c00067{word-spacing:0.144000px;}
.ws29_c00067{word-spacing:0.240000px;}
.ws9_c00067{word-spacing:0.648000px;}
.ws18_c00067{word-spacing:0.720000px;}
.ws1d_c00067{word-spacing:0.864000px;}
.ws1b_c00067{word-spacing:2.016000px;}
.ws26_c00067{word-spacing:2.088000px;}
.ws14_c00067{word-spacing:4.176000px;}
.ws23_c00067{word-spacing:4.464000px;}
.wsf_c00067{word-spacing:5.472000px;}
.ws1c_c00067{word-spacing:5.616000px;}
.ws25_c00067{word-spacing:6.624000px;}
.wsb_c00067{word-spacing:6.768000px;}
.ws13_c00067{word-spacing:6.912000px;}
.ws20_c00067{word-spacing:6.984000px;}
.ws21_c00067{word-spacing:8.568000px;}
.ws19_c00067{word-spacing:9.000000px;}
.wsc_c00067{word-spacing:9.216000px;}
.ws1a_c00067{word-spacing:9.576000px;}
.ws12_c00067{word-spacing:10.080000px;}
.ws16_c00067{word-spacing:11.088000px;}
.ws17_c00067{word-spacing:13.968000px;}
.ws11_c00067{word-spacing:19.296000px;}
.ws0_c00067{word-spacing:1595.803200px;}
._5_c00067{margin-left:-3.768000px;}
._0_c00067{margin-left:-2.112000px;}
._1_c00067{margin-left:-1.104000px;}
._2_c00067{width:1.320000px;}
._3_c00067{width:2.880000px;}
._7_c00067{width:4.799400px;}
._6_c00067{width:5.952000px;}
._4_c00067{width:9.336000px;}
.fc0_c00067{color:rgb(35,31,32);}
.fs2_c00067{font-size:41.976000px;}
.fs0_c00067{font-size:48.000000px;}
.fs3_c00067{font-size:60.000000px;}
.fs1_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y24_c00067{bottom:111.616200px;}
.y23_c00067{bottom:126.616200px;}
.y22_c00067{bottom:193.509450px;}
.y21_c00067{bottom:217.953450px;}
.y20_c00067{bottom:242.397450px;}
.y1f_c00067{bottom:281.853450px;}
.y1e_c00067{bottom:306.297450px;}
.y1d_c00067{bottom:330.741450px;}
.y1c_c00067{bottom:355.185450px;}
.y1b_c00067{bottom:379.629450px;}
.y1a_c00067{bottom:404.073450px;}
.y19_c00067{bottom:428.517450px;}
.y18_c00067{bottom:467.973450px;}
.y17_c00067{bottom:492.723450px;}
.y16_c00067{bottom:517.473450px;}
.y15_c00067{bottom:542.223450px;}
.y14_c00067{bottom:581.973450px;}
.y13_c00067{bottom:606.723450px;}
.y29_c00067{bottom:617.605350px;}
.y12_c00067{bottom:631.473450px;}
.y28_c00067{bottom:636.205350px;}
.y27_c00067{bottom:654.805350px;}
.y11_c00067{bottom:656.223450px;}
.y26_c00067{bottom:673.405350px;}
.y10_c00067{bottom:680.973450px;}
.y25_c00067{bottom:692.005350px;}
.yf_c00067{bottom:705.723450px;}
.ye_c00067{bottom:730.473450px;}
.yd_c00067{bottom:755.223450px;}
.yc_c00067{bottom:779.973450px;}
.yb_c00067{bottom:804.723450px;}
.ya_c00067{bottom:844.467450px;}
.y9_c00067{bottom:869.217450px;}
.y8_c00067{bottom:893.967450px;}
.y7_c00067{bottom:918.717450px;}
.y6_c00067{bottom:943.467450px;}
.y5_c00067{bottom:968.217450px;}
.y4_c00067{bottom:992.967450px;}
.y3_c00067{bottom:1017.717450px;}
.y2_c00067{bottom:1042.467450px;}
.y1_c00067{bottom:1093.601100px;}
.h2_c00067{height:39.264000px;}
.h5_c00067{height:48.600000px;}
.h4_c00067{height:49.080000px;}
.h3_c00067{height:58.896000px;}
.h1_c00067{height:1135.500000px;}
.h0_c00067{height:1135.506150px;}
.w0_c00067{width:893.950200px;}
.w1_c00067{width:894.000000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:77.603100px;}
.x3_c00067{left:94.609350px;}
.x2_c00067{left:496.427100px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.v1_c00067{vertical-align:21.290667pt;}
.ls7_c00067{letter-spacing:-4.266667pt;}
.ls4_c00067{letter-spacing:-2.496000pt;}
.ls5_c00067{letter-spacing:-0.640000pt;}
.ls3_c00067{letter-spacing:-0.256000pt;}
.ls2_c00067{letter-spacing:0.000000pt;}
.ls8_c00067{letter-spacing:0.053333pt;}
.ls1_c00067{letter-spacing:0.266667pt;}
.ls0_c00067{letter-spacing:0.640000pt;}
.ls6_c00067{letter-spacing:0.895488pt;}
.ws1_c00067{word-spacing:-15.168000pt;}
.ws4_c00067{word-spacing:-14.656000pt;}
.ws3_c00067{word-spacing:-14.400000pt;}
.ws2_c00067{word-spacing:-14.272000pt;}
.ws7_c00067{word-spacing:-9.685333pt;}
.ws5_c00067{word-spacing:-9.365312pt;}
.ws6_c00067{word-spacing:-5.418667pt;}
.ws1e_c00067{word-spacing:-2.688000pt;}
.ws24_c00067{word-spacing:-2.240000pt;}
.wse_c00067{word-spacing:-1.728000pt;}
.ws15_c00067{word-spacing:-1.536000pt;}
.ws28_c00067{word-spacing:-1.450667pt;}
.ws27_c00067{word-spacing:-1.408000pt;}
.ws10_c00067{word-spacing:-0.832000pt;}
.wsa_c00067{word-spacing:-0.576000pt;}
.wsd_c00067{word-spacing:-0.320000pt;}
.ws22_c00067{word-spacing:-0.128000pt;}
.ws8_c00067{word-spacing:0.000000pt;}
.ws1f_c00067{word-spacing:0.128000pt;}
.ws29_c00067{word-spacing:0.213333pt;}
.ws9_c00067{word-spacing:0.576000pt;}
.ws18_c00067{word-spacing:0.640000pt;}
.ws1d_c00067{word-spacing:0.768000pt;}
.ws1b_c00067{word-spacing:1.792000pt;}
.ws26_c00067{word-spacing:1.856000pt;}
.ws14_c00067{word-spacing:3.712000pt;}
.ws23_c00067{word-spacing:3.968000pt;}
.wsf_c00067{word-spacing:4.864000pt;}
.ws1c_c00067{word-spacing:4.992000pt;}
.ws25_c00067{word-spacing:5.888000pt;}
.wsb_c00067{word-spacing:6.016000pt;}
.ws13_c00067{word-spacing:6.144000pt;}
.ws20_c00067{word-spacing:6.208000pt;}
.ws21_c00067{word-spacing:7.616000pt;}
.ws19_c00067{word-spacing:8.000000pt;}
.wsc_c00067{word-spacing:8.192000pt;}
.ws1a_c00067{word-spacing:8.512000pt;}
.ws12_c00067{word-spacing:8.960000pt;}
.ws16_c00067{word-spacing:9.856000pt;}
.ws17_c00067{word-spacing:12.416000pt;}
.ws11_c00067{word-spacing:17.152000pt;}
.ws0_c00067{word-spacing:1418.491733pt;}
._5_c00067{margin-left:-3.349333pt;}
._0_c00067{margin-left:-1.877333pt;}
._1_c00067{margin-left:-0.981333pt;}
._2_c00067{width:1.173333pt;}
._3_c00067{width:2.560000pt;}
._7_c00067{width:4.266133pt;}
._6_c00067{width:5.290667pt;}
._4_c00067{width:8.298667pt;}
.fs2_c00067{font-size:37.312000pt;}
.fs0_c00067{font-size:42.666667pt;}
.fs3_c00067{font-size:53.333333pt;}
.fs1_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y24_c00067{bottom:99.214400pt;}
.y23_c00067{bottom:112.547733pt;}
.y22_c00067{bottom:172.008400pt;}
.y21_c00067{bottom:193.736400pt;}
.y20_c00067{bottom:215.464400pt;}
.y1f_c00067{bottom:250.536400pt;}
.y1e_c00067{bottom:272.264400pt;}
.y1d_c00067{bottom:293.992400pt;}
.y1c_c00067{bottom:315.720400pt;}
.y1b_c00067{bottom:337.448400pt;}
.y1a_c00067{bottom:359.176400pt;}
.y19_c00067{bottom:380.904400pt;}
.y18_c00067{bottom:415.976400pt;}
.y17_c00067{bottom:437.976400pt;}
.y16_c00067{bottom:459.976400pt;}
.y15_c00067{bottom:481.976400pt;}
.y14_c00067{bottom:517.309733pt;}
.y13_c00067{bottom:539.309733pt;}
.y29_c00067{bottom:548.982533pt;}
.y12_c00067{bottom:561.309733pt;}
.y28_c00067{bottom:565.515867pt;}
.y27_c00067{bottom:582.049200pt;}
.y11_c00067{bottom:583.309733pt;}
.y26_c00067{bottom:598.582533pt;}
.y10_c00067{bottom:605.309733pt;}
.y25_c00067{bottom:615.115867pt;}
.yf_c00067{bottom:627.309733pt;}
.ye_c00067{bottom:649.309733pt;}
.yd_c00067{bottom:671.309733pt;}
.yc_c00067{bottom:693.309733pt;}
.yb_c00067{bottom:715.309733pt;}
.ya_c00067{bottom:750.637733pt;}
.y9_c00067{bottom:772.637733pt;}
.y8_c00067{bottom:794.637733pt;}
.y7_c00067{bottom:816.637733pt;}
.y6_c00067{bottom:838.637733pt;}
.y5_c00067{bottom:860.637733pt;}
.y4_c00067{bottom:882.637733pt;}
.y3_c00067{bottom:904.637733pt;}
.y2_c00067{bottom:926.637733pt;}
.y1_c00067{bottom:972.089867pt;}
.h2_c00067{height:34.901333pt;}
.h5_c00067{height:43.200000pt;}
.h4_c00067{height:43.626667pt;}
.h3_c00067{height:52.352000pt;}
.h1_c00067{height:1009.333333pt;}
.h0_c00067{height:1009.338800pt;}
.w0_c00067{width:794.622400pt;}
.w1_c00067{width:794.666667pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:68.980533pt;}
.x3_c00067{left:84.097200pt;}
.x2_c00067{left:441.268533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de5bd4483741471f77c406ea.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.178000;font-style:normal;font-weight:normal;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_e6a4d9d41a39b60c6c66a202.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.178000;font-style:normal;font-weight:normal;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_9a203712e198a610db58c10b.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.082000;font-style:normal;font-weight:normal;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_30a357147ba259831b2886fc.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_2ee07d5c700fb6e7ebcd5e43.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.067000;font-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_c00068{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.v1_c00068{vertical-align:23.880000px;}
.ls9_c00068{letter-spacing:-5.040000px;}
.ls6_c00068{letter-spacing:-1.224000px;}
.ls4_c00068{letter-spacing:-0.672000px;}
.ls5_c00068{letter-spacing:0.000000px;}
.ls2_c00068{letter-spacing:0.360000px;}
.ls8_c00068{letter-spacing:0.419760px;}
.ls0_c00068{letter-spacing:0.480000px;}
.ls7_c00068{letter-spacing:0.671616px;}
.ls3_c00068{letter-spacing:0.720000px;}
.ls1_c00068{letter-spacing:48.024000px;}
.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;}
}
.ws5_c00068{word-spacing:-17.064000px;}
.ws3_c00068{word-spacing:-16.704000px;}
.ws2_c00068{word-spacing:-16.344000px;}
.ws1_c00068{word-spacing:-15.120000px;}
.ws8_c00068{word-spacing:-14.982000px;}
.ws9_c00068{word-spacing:-10.992000px;}
.ws6_c00068{word-spacing:-10.896000px;}
.ws0_c00068{word-spacing:-10.224000px;}
.ws4_c00068{word-spacing:-9.948312px;}
.ws7_c00068{word-spacing:-5.856000px;}
.ws15_c00068{word-spacing:-2.232000px;}
.ws14_c00068{word-spacing:-1.656000px;}
.ws18_c00068{word-spacing:-1.152000px;}
.ws25_c00068{word-spacing:-1.104000px;}
.ws21_c00068{word-spacing:-0.816000px;}
.ws1a_c00068{word-spacing:-0.792000px;}
.wsf_c00068{word-spacing:-0.671616px;}
.ws26_c00068{word-spacing:-0.480000px;}
.ws20_c00068{word-spacing:-0.240000px;}
.ws11_c00068{word-spacing:-0.216000px;}
.wsa_c00068{word-spacing:0.000000px;}
.ws13_c00068{word-spacing:0.072000px;}
.ws1f_c00068{word-spacing:0.144000px;}
.ws24_c00068{word-spacing:0.336000px;}
.wsb_c00068{word-spacing:1.008000px;}
.ws1c_c00068{word-spacing:1.512000px;}
.ws22_c00068{word-spacing:2.112000px;}
.ws10_c00068{word-spacing:2.160000px;}
.ws23_c00068{word-spacing:2.304000px;}
.wsc_c00068{word-spacing:3.024000px;}
.ws17_c00068{word-spacing:4.032000px;}
.ws19_c00068{word-spacing:4.248000px;}
.ws1b_c00068{word-spacing:4.680000px;}
.ws1d_c00068{word-spacing:4.824000px;}
.wse_c00068{word-spacing:4.896000px;}
.ws1e_c00068{word-spacing:6.552000px;}
.ws12_c00068{word-spacing:7.992000px;}
.wsd_c00068{word-spacing:9.072000px;}
.ws16_c00068{word-spacing:9.576000px;}
._0_c00068{margin-left:-2754.603600px;}
._3_c00068{margin-left:-53.351400px;}
._6_c00068{margin-left:-7.776000px;}
._1_c00068{margin-left:-5.856000px;}
._7_c00068{margin-left:-3.816000px;}
._5_c00068{margin-left:-2.448000px;}
._2_c00068{margin-left:-1.440000px;}
._4_c00068{width:1.224000px;}
._8_c00068{width:2.880000px;}
._a_c00068{width:3.974400px;}
._9_c00068{width:5.001600px;}
._b_c00068{width:54.816000px;}
.fc0_c00068{color:rgb(35,31,32);}
.fs2_c00068{font-size:41.976000px;}
.fs0_c00068{font-size:48.000000px;}
.fs3_c00068{font-size:66.000000px;}
.fs1_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y27_c00068{bottom:111.616200px;}
.y26_c00068{bottom:126.616200px;}
.y25_c00068{bottom:141.616200px;}
.y24_c00068{bottom:156.616200px;}
.y23_c00068{bottom:171.616200px;}
.y22_c00068{bottom:186.612150px;}
.y21_c00068{bottom:201.612150px;}
.y20_c00068{bottom:225.120150px;}
.y1f_c00068{bottom:240.116100px;}
.y1e_c00068{bottom:263.624100px;}
.y1d_c00068{bottom:278.620050px;}
.y1c_c00068{bottom:302.128050px;}
.y1b_c00068{bottom:353.823450px;}
.y1a_c00068{bottom:378.573450px;}
.y19_c00068{bottom:403.323450px;}
.y18_c00068{bottom:443.067450px;}
.y17_c00068{bottom:467.817450px;}
.y16_c00068{bottom:492.567450px;}
.y15_c00068{bottom:517.317450px;}
.y14_c00068{bottom:542.067450px;}
.y13_c00068{bottom:566.835450px;}
.y12_c00068{bottom:591.279450px;}
.y11_c00068{bottom:615.723450px;}
.y10_c00068{bottom:640.167450px;}
.yf_c00068{bottom:679.635450px;}
.ye_c00068{bottom:704.079450px;}
.yd_c00068{bottom:728.523450px;}
.yc_c00068{bottom:752.967450px;}
.yb_c00068{bottom:792.423450px;}
.ya_c00068{bottom:816.867450px;}
.y9_c00068{bottom:856.329450px;}
.y8_c00068{bottom:880.773450px;}
.y7_c00068{bottom:905.217450px;}
.y6_c00068{bottom:944.691450px;}
.y5_c00068{bottom:969.135450px;}
.y4_c00068{bottom:993.579450px;}
.y3_c00068{bottom:1018.023450px;}
.y2_c00068{bottom:1042.467450px;}
.y1_c00068{bottom:1093.601100px;}
.h2_c00068{height:39.264000px;}
.h7_c00068{height:39.280200px;}
.h3_c00068{height:39.984000px;}
.h6_c00068{height:54.004200px;}
.h5_c00068{height:58.896000px;}
.h4_c00068{height:59.976000px;}
.h1_c00068{height:1135.500000px;}
.h0_c00068{height:1135.506150px;}
.w0_c00068{width:893.950200px;}
.w1_c00068{width:894.000000px;}
.x0_c00068{left:0.000000px;}
.x6_c00068{left:128.626800px;}
.x4_c00068{left:137.878650px;}
.x7_c00068{left:145.643100px;}
.x5_c00068{left:149.884800px;}
.x2_c00068{left:188.061900px;}
.x3_c00068{left:190.513350px;}
.x1_c00068{left:806.381700px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:21.226667pt;}
.ls9_c00068{letter-spacing:-4.480000pt;}
.ls6_c00068{letter-spacing:-1.088000pt;}
.ls4_c00068{letter-spacing:-0.597333pt;}
.ls5_c00068{letter-spacing:0.000000pt;}
.ls2_c00068{letter-spacing:0.320000pt;}
.ls8_c00068{letter-spacing:0.373120pt;}
.ls0_c00068{letter-spacing:0.426667pt;}
.ls7_c00068{letter-spacing:0.596992pt;}
.ls3_c00068{letter-spacing:0.640000pt;}
.ls1_c00068{letter-spacing:42.688000pt;}
.ws5_c00068{word-spacing:-15.168000pt;}
.ws3_c00068{word-spacing:-14.848000pt;}
.ws2_c00068{word-spacing:-14.528000pt;}
.ws1_c00068{word-spacing:-13.440000pt;}
.ws8_c00068{word-spacing:-13.317333pt;}
.ws9_c00068{word-spacing:-9.770667pt;}
.ws6_c00068{word-spacing:-9.685333pt;}
.ws0_c00068{word-spacing:-9.088000pt;}
.ws4_c00068{word-spacing:-8.842944pt;}
.ws7_c00068{word-spacing:-5.205333pt;}
.ws15_c00068{word-spacing:-1.984000pt;}
.ws14_c00068{word-spacing:-1.472000pt;}
.ws18_c00068{word-spacing:-1.024000pt;}
.ws25_c00068{word-spacing:-0.981333pt;}
.ws21_c00068{word-spacing:-0.725333pt;}
.ws1a_c00068{word-spacing:-0.704000pt;}
.wsf_c00068{word-spacing:-0.596992pt;}
.ws26_c00068{word-spacing:-0.426667pt;}
.ws20_c00068{word-spacing:-0.213333pt;}
.ws11_c00068{word-spacing:-0.192000pt;}
.wsa_c00068{word-spacing:0.000000pt;}
.ws13_c00068{word-spacing:0.064000pt;}
.ws1f_c00068{word-spacing:0.128000pt;}
.ws24_c00068{word-spacing:0.298667pt;}
.wsb_c00068{word-spacing:0.896000pt;}
.ws1c_c00068{word-spacing:1.344000pt;}
.ws22_c00068{word-spacing:1.877333pt;}
.ws10_c00068{word-spacing:1.920000pt;}
.ws23_c00068{word-spacing:2.048000pt;}
.wsc_c00068{word-spacing:2.688000pt;}
.ws17_c00068{word-spacing:3.584000pt;}
.ws19_c00068{word-spacing:3.776000pt;}
.ws1b_c00068{word-spacing:4.160000pt;}
.ws1d_c00068{word-spacing:4.288000pt;}
.wse_c00068{word-spacing:4.352000pt;}
.ws1e_c00068{word-spacing:5.824000pt;}
.ws12_c00068{word-spacing:7.104000pt;}
.wsd_c00068{word-spacing:8.064000pt;}
.ws16_c00068{word-spacing:8.512000pt;}
._0_c00068{margin-left:-2448.536533pt;}
._3_c00068{margin-left:-47.423467pt;}
._6_c00068{margin-left:-6.912000pt;}
._1_c00068{margin-left:-5.205333pt;}
._7_c00068{margin-left:-3.392000pt;}
._5_c00068{margin-left:-2.176000pt;}
._2_c00068{margin-left:-1.280000pt;}
._4_c00068{width:1.088000pt;}
._8_c00068{width:2.560000pt;}
._a_c00068{width:3.532800pt;}
._9_c00068{width:4.445867pt;}
._b_c00068{width:48.725333pt;}
.fs2_c00068{font-size:37.312000pt;}
.fs0_c00068{font-size:42.666667pt;}
.fs3_c00068{font-size:58.666667pt;}
.fs1_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y27_c00068{bottom:99.214400pt;}
.y26_c00068{bottom:112.547733pt;}
.y25_c00068{bottom:125.881067pt;}
.y24_c00068{bottom:139.214400pt;}
.y23_c00068{bottom:152.547733pt;}
.y22_c00068{bottom:165.877467pt;}
.y21_c00068{bottom:179.210800pt;}
.y20_c00068{bottom:200.106800pt;}
.y1f_c00068{bottom:213.436533pt;}
.y1e_c00068{bottom:234.332533pt;}
.y1d_c00068{bottom:247.662267pt;}
.y1c_c00068{bottom:268.558267pt;}
.y1b_c00068{bottom:314.509733pt;}
.y1a_c00068{bottom:336.509733pt;}
.y19_c00068{bottom:358.509733pt;}
.y18_c00068{bottom:393.837733pt;}
.y17_c00068{bottom:415.837733pt;}
.y16_c00068{bottom:437.837733pt;}
.y15_c00068{bottom:459.837733pt;}
.y14_c00068{bottom:481.837733pt;}
.y13_c00068{bottom:503.853733pt;}
.y12_c00068{bottom:525.581733pt;}
.y11_c00068{bottom:547.309733pt;}
.y10_c00068{bottom:569.037733pt;}
.yf_c00068{bottom:604.120400pt;}
.ye_c00068{bottom:625.848400pt;}
.yd_c00068{bottom:647.576400pt;}
.yc_c00068{bottom:669.304400pt;}
.yb_c00068{bottom:704.376400pt;}
.ya_c00068{bottom:726.104400pt;}
.y9_c00068{bottom:761.181733pt;}
.y8_c00068{bottom:782.909733pt;}
.y7_c00068{bottom:804.637733pt;}
.y6_c00068{bottom:839.725733pt;}
.y5_c00068{bottom:861.453733pt;}
.y4_c00068{bottom:883.181733pt;}
.y3_c00068{bottom:904.909733pt;}
.y2_c00068{bottom:926.637733pt;}
.y1_c00068{bottom:972.089867pt;}
.h2_c00068{height:34.901333pt;}
.h7_c00068{height:34.915733pt;}
.h3_c00068{height:35.541333pt;}
.h6_c00068{height:48.003733pt;}
.h5_c00068{height:52.352000pt;}
.h4_c00068{height:53.312000pt;}
.h1_c00068{height:1009.333333pt;}
.h0_c00068{height:1009.338800pt;}
.w0_c00068{width:794.622400pt;}
.w1_c00068{width:794.666667pt;}
.x0_c00068{left:0.000000pt;}
.x6_c00068{left:114.334933pt;}
.x4_c00068{left:122.558800pt;}
.x7_c00068{left:129.460533pt;}
.x5_c00068{left:133.230933pt;}
.x2_c00068{left:167.166133pt;}
.x3_c00068{left:169.345200pt;}
.x1_c00068{left:716.783733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ff33495b5e204670c861ac7.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_4cb49075e9facecfe81d1e9f.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:23.976000px;}
.ls4_c00069{letter-spacing:-0.881496px;}
.ls3_c00069{letter-spacing:-0.587664px;}
.ls5_c00069{letter-spacing:-0.251856px;}
.ls2_c00069{letter-spacing:0.000000px;}
.ls6_c00069{letter-spacing:0.072000px;}
.ls1_c00069{letter-spacing:0.360000px;}
.ls0_c00069{letter-spacing:0.720000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00069{word-spacing:-16.344000px;}
.ws4_c00069{word-spacing:-9.276696px;}
.ws1_c00069{word-spacing:-8.940888px;}
.ws2_c00069{word-spacing:-8.647056px;}
.ws12_c00069{word-spacing:-2.520000px;}
.ws11_c00069{word-spacing:-1.728000px;}
.wsf_c00069{word-spacing:-1.152000px;}
.wsc_c00069{word-spacing:-0.648000px;}
.ws6_c00069{word-spacing:-0.432000px;}
.ws10_c00069{word-spacing:-0.072000px;}
.ws5_c00069{word-spacing:0.000000px;}
.wse_c00069{word-spacing:0.288000px;}
.wsa_c00069{word-spacing:1.368000px;}
.ws8_c00069{word-spacing:1.440000px;}
.wsb_c00069{word-spacing:1.800000px;}
.wsd_c00069{word-spacing:2.016000px;}
.ws9_c00069{word-spacing:2.448000px;}
.ws7_c00069{word-spacing:3.600000px;}
.ws0_c00069{word-spacing:1597.387200px;}
._3_c00069{margin-left:-8.280000px;}
._0_c00069{margin-left:-2.112000px;}
._1_c00069{margin-left:-1.104000px;}
._2_c00069{width:1.296000px;}
._4_c00069{width:2.664000px;}
.fc0_c00069{color:rgb(35,31,32);}
.fs2_c00069{font-size:41.976000px;}
.fs0_c00069{font-size:48.000000px;}
.fs1_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y17_c00069{bottom:111.612300px;}
.y16_c00069{bottom:135.120300px;}
.y15_c00069{bottom:158.624250px;}
.y14_c00069{bottom:551.979450px;}
.y13_c00069{bottom:576.729450px;}
.y12_c00069{bottom:601.479450px;}
.y11_c00069{bottom:626.229450px;}
.y10_c00069{bottom:650.979450px;}
.yf_c00069{bottom:675.729450px;}
.ye_c00069{bottom:700.479450px;}
.yd_c00069{bottom:740.223450px;}
.yc_c00069{bottom:764.973450px;}
.yb_c00069{bottom:789.723450px;}
.ya_c00069{bottom:814.473450px;}
.y9_c00069{bottom:839.223450px;}
.y8_c00069{bottom:878.967450px;}
.y7_c00069{bottom:903.717450px;}
.y6_c00069{bottom:928.473450px;}
.y5_c00069{bottom:953.223450px;}
.y4_c00069{bottom:977.973450px;}
.y3_c00069{bottom:1017.717450px;}
.y2_c00069{bottom:1042.467450px;}
.y1_c00069{bottom:1093.601100px;}
.h2_c00069{height:39.264000px;}
.h3_c00069{height:58.896000px;}
.h1_c00069{height:1135.500000px;}
.h0_c00069{height:1135.506150px;}
.w0_c00069{width:893.950200px;}
.w1_c00069{width:894.000000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:77.603100px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:21.312000pt;}
.ls4_c00069{letter-spacing:-0.783552pt;}
.ls3_c00069{letter-spacing:-0.522368pt;}
.ls5_c00069{letter-spacing:-0.223872pt;}
.ls2_c00069{letter-spacing:0.000000pt;}
.ls6_c00069{letter-spacing:0.064000pt;}
.ls1_c00069{letter-spacing:0.320000pt;}
.ls0_c00069{letter-spacing:0.640000pt;}
.ws3_c00069{word-spacing:-14.528000pt;}
.ws4_c00069{word-spacing:-8.245952pt;}
.ws1_c00069{word-spacing:-7.947456pt;}
.ws2_c00069{word-spacing:-7.686272pt;}
.ws12_c00069{word-spacing:-2.240000pt;}
.ws11_c00069{word-spacing:-1.536000pt;}
.wsf_c00069{word-spacing:-1.024000pt;}
.wsc_c00069{word-spacing:-0.576000pt;}
.ws6_c00069{word-spacing:-0.384000pt;}
.ws10_c00069{word-spacing:-0.064000pt;}
.ws5_c00069{word-spacing:0.000000pt;}
.wse_c00069{word-spacing:0.256000pt;}
.wsa_c00069{word-spacing:1.216000pt;}
.ws8_c00069{word-spacing:1.280000pt;}
.wsb_c00069{word-spacing:1.600000pt;}
.wsd_c00069{word-spacing:1.792000pt;}
.ws9_c00069{word-spacing:2.176000pt;}
.ws7_c00069{word-spacing:3.200000pt;}
.ws0_c00069{word-spacing:1419.899733pt;}
._3_c00069{margin-left:-7.360000pt;}
._0_c00069{margin-left:-1.877333pt;}
._1_c00069{margin-left:-0.981333pt;}
._2_c00069{width:1.152000pt;}
._4_c00069{width:2.368000pt;}
.fs2_c00069{font-size:37.312000pt;}
.fs0_c00069{font-size:42.666667pt;}
.fs1_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y17_c00069{bottom:99.210933pt;}
.y16_c00069{bottom:120.106933pt;}
.y15_c00069{bottom:140.999333pt;}
.y14_c00069{bottom:490.648400pt;}
.y13_c00069{bottom:512.648400pt;}
.y12_c00069{bottom:534.648400pt;}
.y11_c00069{bottom:556.648400pt;}
.y10_c00069{bottom:578.648400pt;}
.yf_c00069{bottom:600.648400pt;}
.ye_c00069{bottom:622.648400pt;}
.yd_c00069{bottom:657.976400pt;}
.yc_c00069{bottom:679.976400pt;}
.yb_c00069{bottom:701.976400pt;}
.ya_c00069{bottom:723.976400pt;}
.y9_c00069{bottom:745.976400pt;}
.y8_c00069{bottom:781.304400pt;}
.y7_c00069{bottom:803.304400pt;}
.y6_c00069{bottom:825.309733pt;}
.y5_c00069{bottom:847.309733pt;}
.y4_c00069{bottom:869.309733pt;}
.y3_c00069{bottom:904.637733pt;}
.y2_c00069{bottom:926.637733pt;}
.y1_c00069{bottom:972.089867pt;}
.h2_c00069{height:34.901333pt;}
.h3_c00069{height:52.352000pt;}
.h1_c00069{height:1009.333333pt;}
.h0_c00069{height:1009.338800pt;}
.w0_c00069{width:794.622400pt;}
.w1_c00069{width:794.666667pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4f0cf455d30af558b257137.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.082000;font-style:normal;font-weight:normal;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_c73d2f59843a699ef7a696f9.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.082000;font-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_c00070{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.v1_c00070{vertical-align:23.952000px;}
.ls8_c00070{letter-spacing:-2.784000px;}
.ls5_c00070{letter-spacing:-0.720000px;}
.ls7_c00070{letter-spacing:-0.648000px;}
.ls4_c00070{letter-spacing:-0.360000px;}
.ls6_c00070{letter-spacing:-0.288000px;}
.ls9_c00070{letter-spacing:-0.192000px;}
.ls3_c00070{letter-spacing:0.000000px;}
.ls2_c00070{letter-spacing:0.216000px;}
.ls1_c00070{letter-spacing:0.360000px;}
.ls0_c00070{letter-spacing:0.480000px;}
.lsa_c00070{letter-spacing:0.990000px;}
.lsb_c00070{letter-spacing:1.170000px;}
.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;}
}
.ws4_c00070{word-spacing:-16.488000px;}
.ws1_c00070{word-spacing:-16.344000px;}
.ws5_c00070{word-spacing:-16.056000px;}
.ws2_c00070{word-spacing:-15.984000px;}
.ws8_c00070{word-spacing:-15.972000px;}
.ws7_c00070{word-spacing:-10.992000px;}
.ws0_c00070{word-spacing:-10.896000px;}
.ws3_c00070{word-spacing:-9.528552px;}
.ws6_c00070{word-spacing:-8.112000px;}
.ws10_c00070{word-spacing:-3.024000px;}
.wsf_c00070{word-spacing:-2.376000px;}
.wse_c00070{word-spacing:-2.016000px;}
.ws15_c00070{word-spacing:-1.584000px;}
.ws11_c00070{word-spacing:-0.792000px;}
.ws9_c00070{word-spacing:0.000000px;}
.ws1b_c00070{word-spacing:0.288000px;}
.ws12_c00070{word-spacing:0.360000px;}
.ws17_c00070{word-spacing:0.432000px;}
.ws1c_c00070{word-spacing:0.936000px;}
.ws18_c00070{word-spacing:1.152000px;}
.ws20_c00070{word-spacing:1.296000px;}
.ws21_c00070{word-spacing:1.488000px;}
.ws1a_c00070{word-spacing:2.016000px;}
.ws19_c00070{word-spacing:2.304000px;}
.ws16_c00070{word-spacing:2.592000px;}
.ws1e_c00070{word-spacing:2.664000px;}
.ws13_c00070{word-spacing:3.240000px;}
.wsb_c00070{word-spacing:3.384000px;}
.wsa_c00070{word-spacing:3.744000px;}
.ws1f_c00070{word-spacing:3.960000px;}
.ws1d_c00070{word-spacing:4.680000px;}
.ws14_c00070{word-spacing:4.968000px;}
.wsc_c00070{word-spacing:8.208000px;}
.wsd_c00070{word-spacing:9.144000px;}
._0_c00070{margin-left:-2755.276200px;}
._3_c00070{margin-left:-5.160000px;}
._4_c00070{margin-left:-2.496000px;}
._1_c00070{margin-left:-1.344000px;}
._2_c00070{width:1.104000px;}
._5_c00070{width:2.640000px;}
._7_c00070{width:24.783600px;}
._8_c00070{width:26.703600px;}
._6_c00070{width:29.871600px;}
._9_c00070{width:37.205400px;}
.fc1_c00070{color:transparent;}
.fc0_c00070{color:rgb(35,31,32);}
.fs2_c00070{font-size:41.976000px;}
.fs0_c00070{font-size:48.000000px;}
.fs5_c00070{font-size:60.000000px;}
.fs3_c00070{font-size:66.000000px;}
.fs1_c00070{font-size:72.000000px;}
.fs4_c00070{font-size:78.000000px;}
.y0_c00070{bottom:0.000000px;}
.y2_c00070{bottom:51.868800px;}
.y18_c00070{bottom:92.482500px;}
.y17_c00070{bottom:107.482500px;}
.y16_c00070{bottom:130.986450px;}
.y15_c00070{bottom:154.490250px;}
.y14_c00070{bottom:196.402500px;}
.y13_c00070{bottom:221.152500px;}
.y12_c00070{bottom:245.902500px;}
.y11_c00070{bottom:270.652500px;}
.y10_c00070{bottom:295.402500px;}
.yf_c00070{bottom:320.152500px;}
.ye_c00070{bottom:344.902500px;}
.yd_c00070{bottom:369.652500px;}
.yc_c00070{bottom:394.408500px;}
.yb_c00070{bottom:419.158500px;}
.ya_c00070{bottom:443.908500px;}
.y9_c00070{bottom:483.652500px;}
.y8_c00070{bottom:508.402500px;}
.y7_c00070{bottom:533.152500px;}
.y6_c00070{bottom:557.902500px;}
.y5_c00070{bottom:582.652500px;}
.y4_c00070{bottom:607.402500px;}
.y3_c00070{bottom:632.152500px;}
.y1d_c00070{bottom:707.787300px;}
.y1c_c00070{bottom:745.287300px;}
.y1b_c00070{bottom:774.282300px;}
.y1a_c00070{bottom:793.782300px;}
.y19_c00070{bottom:955.461600px;}
.y1_c00070{bottom:1093.600950px;}
.h2_c00070{height:39.264000px;}
.h3_c00070{height:39.984000px;}
.h6_c00070{height:49.080000px;}
.h4_c00070{height:58.896000px;}
.h5_c00070{height:64.974000px;}
.h1_c00070{height:1135.500000px;}
.h0_c00070{height:1135.506150px;}
.w0_c00070{width:893.950200px;}
.w1_c00070{width:894.000000px;}
.x0_c00070{left:0.000000px;}
.x4_c00070{left:128.626800px;}
.x5_c00070{left:145.634700px;}
.x2_c00070{left:188.061900px;}
.x3_c00070{left:190.513350px;}
.x7_c00070{left:611.620500px;}
.x6_c00070{left:616.146150px;}
.x8_c00070{left:655.810500px;}
.x9_c00070{left:705.670500px;}
.xa_c00070{left:793.630500px;}
.x1_c00070{left:805.625850px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.v1_c00070{vertical-align:21.290667pt;}
.ls8_c00070{letter-spacing:-2.474667pt;}
.ls5_c00070{letter-spacing:-0.640000pt;}
.ls7_c00070{letter-spacing:-0.576000pt;}
.ls4_c00070{letter-spacing:-0.320000pt;}
.ls6_c00070{letter-spacing:-0.256000pt;}
.ls9_c00070{letter-spacing:-0.170667pt;}
.ls3_c00070{letter-spacing:0.000000pt;}
.ls2_c00070{letter-spacing:0.192000pt;}
.ls1_c00070{letter-spacing:0.320000pt;}
.ls0_c00070{letter-spacing:0.426667pt;}
.lsa_c00070{letter-spacing:0.880000pt;}
.lsb_c00070{letter-spacing:1.040000pt;}
.ws4_c00070{word-spacing:-14.656000pt;}
.ws1_c00070{word-spacing:-14.528000pt;}
.ws5_c00070{word-spacing:-14.272000pt;}
.ws2_c00070{word-spacing:-14.208000pt;}
.ws8_c00070{word-spacing:-14.197333pt;}
.ws7_c00070{word-spacing:-9.770667pt;}
.ws0_c00070{word-spacing:-9.685333pt;}
.ws3_c00070{word-spacing:-8.469824pt;}
.ws6_c00070{word-spacing:-7.210667pt;}
.ws10_c00070{word-spacing:-2.688000pt;}
.wsf_c00070{word-spacing:-2.112000pt;}
.wse_c00070{word-spacing:-1.792000pt;}
.ws15_c00070{word-spacing:-1.408000pt;}
.ws11_c00070{word-spacing:-0.704000pt;}
.ws9_c00070{word-spacing:0.000000pt;}
.ws1b_c00070{word-spacing:0.256000pt;}
.ws12_c00070{word-spacing:0.320000pt;}
.ws17_c00070{word-spacing:0.384000pt;}
.ws1c_c00070{word-spacing:0.832000pt;}
.ws18_c00070{word-spacing:1.024000pt;}
.ws20_c00070{word-spacing:1.152000pt;}
.ws21_c00070{word-spacing:1.322667pt;}
.ws1a_c00070{word-spacing:1.792000pt;}
.ws19_c00070{word-spacing:2.048000pt;}
.ws16_c00070{word-spacing:2.304000pt;}
.ws1e_c00070{word-spacing:2.368000pt;}
.ws13_c00070{word-spacing:2.880000pt;}
.wsb_c00070{word-spacing:3.008000pt;}
.wsa_c00070{word-spacing:3.328000pt;}
.ws1f_c00070{word-spacing:3.520000pt;}
.ws1d_c00070{word-spacing:4.160000pt;}
.ws14_c00070{word-spacing:4.416000pt;}
.wsc_c00070{word-spacing:7.296000pt;}
.wsd_c00070{word-spacing:8.128000pt;}
._0_c00070{margin-left:-2449.134400pt;}
._3_c00070{margin-left:-4.586667pt;}
._4_c00070{margin-left:-2.218667pt;}
._1_c00070{margin-left:-1.194667pt;}
._2_c00070{width:0.981333pt;}
._5_c00070{width:2.346667pt;}
._7_c00070{width:22.029867pt;}
._8_c00070{width:23.736533pt;}
._6_c00070{width:26.552533pt;}
._9_c00070{width:33.071467pt;}
.fs2_c00070{font-size:37.312000pt;}
.fs0_c00070{font-size:42.666667pt;}
.fs5_c00070{font-size:53.333333pt;}
.fs3_c00070{font-size:58.666667pt;}
.fs1_c00070{font-size:64.000000pt;}
.fs4_c00070{font-size:69.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y2_c00070{bottom:46.105600pt;}
.y18_c00070{bottom:82.206667pt;}
.y17_c00070{bottom:95.540000pt;}
.y16_c00070{bottom:116.432400pt;}
.y15_c00070{bottom:137.324667pt;}
.y14_c00070{bottom:174.580000pt;}
.y13_c00070{bottom:196.580000pt;}
.y12_c00070{bottom:218.580000pt;}
.y11_c00070{bottom:240.580000pt;}
.y10_c00070{bottom:262.580000pt;}
.yf_c00070{bottom:284.580000pt;}
.ye_c00070{bottom:306.580000pt;}
.yd_c00070{bottom:328.580000pt;}
.yc_c00070{bottom:350.585333pt;}
.yb_c00070{bottom:372.585333pt;}
.ya_c00070{bottom:394.585333pt;}
.y9_c00070{bottom:429.913333pt;}
.y8_c00070{bottom:451.913333pt;}
.y7_c00070{bottom:473.913333pt;}
.y6_c00070{bottom:495.913333pt;}
.y5_c00070{bottom:517.913333pt;}
.y4_c00070{bottom:539.913333pt;}
.y3_c00070{bottom:561.913333pt;}
.y1d_c00070{bottom:629.144267pt;}
.y1c_c00070{bottom:662.477600pt;}
.y1b_c00070{bottom:688.250933pt;}
.y1a_c00070{bottom:705.584267pt;}
.y19_c00070{bottom:849.299200pt;}
.y1_c00070{bottom:972.089733pt;}
.h2_c00070{height:34.901333pt;}
.h3_c00070{height:35.541333pt;}
.h6_c00070{height:43.626667pt;}
.h4_c00070{height:52.352000pt;}
.h5_c00070{height:57.754667pt;}
.h1_c00070{height:1009.333333pt;}
.h0_c00070{height:1009.338800pt;}
.w0_c00070{width:794.622400pt;}
.w1_c00070{width:794.666667pt;}
.x0_c00070{left:0.000000pt;}
.x4_c00070{left:114.334933pt;}
.x5_c00070{left:129.453067pt;}
.x2_c00070{left:167.166133pt;}
.x3_c00070{left:169.345200pt;}
.x7_c00070{left:543.662667pt;}
.x6_c00070{left:547.685467pt;}
.x8_c00070{left:582.942667pt;}
.x9_c00070{left:627.262667pt;}
.xa_c00070{left:705.449333pt;}
.x1_c00070{left:716.111867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17b94beb514a78592e78afcd.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_1778f6548fca050e15965b3e.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00071{vertical-align:-23.976000px;}
.v0_c00071{vertical-align:0.000000px;}
.v1_c00071{vertical-align:23.976000px;}
.lsa_c00071{letter-spacing:-4.800000px;}
.ls7_c00071{letter-spacing:-0.864000px;}
.ls8_c00071{letter-spacing:-0.648000px;}
.ls6_c00071{letter-spacing:-0.504000px;}
.lsb_c00071{letter-spacing:-0.336000px;}
.ls9_c00071{letter-spacing:-0.288000px;}
.lsc_c00071{letter-spacing:-0.240000px;}
.ls4_c00071{letter-spacing:-0.144000px;}
.ls5_c00071{letter-spacing:0.000000px;}
.ls1_c00071{letter-spacing:0.216000px;}
.ls2_c00071{letter-spacing:0.360000px;}
.ls0_c00071{letter-spacing:1.872000px;}
.ls3_c00071{letter-spacing:11.664000px;}
.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;}
}
.ws1_c00071{word-spacing:-16.344000px;}
.ws3_c00071{word-spacing:-15.480000px;}
.ws6_c00071{word-spacing:-13.740000px;}
.ws4_c00071{word-spacing:-10.992000px;}
.ws5_c00071{word-spacing:-10.896000px;}
.ws2_c00071{word-spacing:-9.528552px;}
.ws29_c00071{word-spacing:-2.064000px;}
.ws8_c00071{word-spacing:-1.440000px;}
.ws15_c00071{word-spacing:-0.864000px;}
.ws14_c00071{word-spacing:-0.720000px;}
.ws25_c00071{word-spacing:-0.648000px;}
.ws12_c00071{word-spacing:-0.432000px;}
.ws27_c00071{word-spacing:-0.288000px;}
.ws26_c00071{word-spacing:-0.240000px;}
.ws13_c00071{word-spacing:-0.072000px;}
.ws7_c00071{word-spacing:0.000000px;}
.ws2d_c00071{word-spacing:0.240000px;}
.ws11_c00071{word-spacing:0.288000px;}
.ws1d_c00071{word-spacing:0.648000px;}
.wsd_c00071{word-spacing:1.512000px;}
.ws22_c00071{word-spacing:1.872000px;}
.wsa_c00071{word-spacing:1.944000px;}
.wsc_c00071{word-spacing:2.088000px;}
.ws9_c00071{word-spacing:2.160000px;}
.ws1b_c00071{word-spacing:2.808000px;}
.ws1e_c00071{word-spacing:2.880000px;}
.ws2b_c00071{word-spacing:3.168000px;}
.ws28_c00071{word-spacing:3.456000px;}
.ws2c_c00071{word-spacing:3.504000px;}
.ws19_c00071{word-spacing:3.600000px;}
.wse_c00071{word-spacing:4.176000px;}
.wsf_c00071{word-spacing:4.392000px;}
.ws2a_c00071{word-spacing:4.800000px;}
.ws10_c00071{word-spacing:4.896000px;}
.ws24_c00071{word-spacing:6.192000px;}
.wsb_c00071{word-spacing:7.056000px;}
.ws18_c00071{word-spacing:7.200000px;}
.ws1f_c00071{word-spacing:9.576000px;}
.ws20_c00071{word-spacing:11.520000px;}
.ws1c_c00071{word-spacing:12.024000px;}
.ws1a_c00071{word-spacing:13.104000px;}
.ws16_c00071{word-spacing:16.272000px;}
.ws17_c00071{word-spacing:16.920000px;}
.ws23_c00071{word-spacing:17.568000px;}
.ws21_c00071{word-spacing:17.784000px;}
.ws0_c00071{word-spacing:1597.723200px;}
._3_c00071{margin-left:-7.536000px;}
._0_c00071{margin-left:-2.112000px;}
._1_c00071{margin-left:-1.104000px;}
._2_c00071{width:1.176000px;}
._4_c00071{width:3.163824px;}
._7_c00071{width:4.800000px;}
._5_c00071{width:18.096000px;}
._6_c00071{width:23.088000px;}
._8_c00071{width:30.015000px;}
.fc0_c00071{color:rgb(35,31,32);}
.fs2_c00071{font-size:41.976000px;}
.fs0_c00071{font-size:48.000000px;}
.fs3_c00071{font-size:60.000000px;}
.fs1_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y27_c00071{bottom:111.616200px;}
.y26_c00071{bottom:126.616200px;}
.y25_c00071{bottom:150.120150px;}
.y24_c00071{bottom:173.624100px;}
.y23_c00071{bottom:188.624100px;}
.y22_c00071{bottom:212.128050px;}
.y21_c00071{bottom:227.128050px;}
.y20_c00071{bottom:269.967450px;}
.y2a_c00071{bottom:270.265800px;}
.y29_c00071{bottom:288.865800px;}
.y1f_c00071{bottom:294.717450px;}
.y28_c00071{bottom:307.465800px;}
.y1e_c00071{bottom:319.467450px;}
.y1d_c00071{bottom:344.217450px;}
.y1c_c00071{bottom:368.967450px;}
.y1b_c00071{bottom:393.717450px;}
.y1a_c00071{bottom:418.467450px;}
.y19_c00071{bottom:443.217450px;}
.y18_c00071{bottom:467.973450px;}
.y17_c00071{bottom:492.723450px;}
.y16_c00071{bottom:517.473450px;}
.y15_c00071{bottom:542.223450px;}
.y14_c00071{bottom:566.973450px;}
.y13_c00071{bottom:591.723450px;}
.y12_c00071{bottom:616.473450px;}
.y11_c00071{bottom:641.223450px;}
.y10_c00071{bottom:680.967450px;}
.yf_c00071{bottom:705.717450px;}
.ye_c00071{bottom:730.467450px;}
.yd_c00071{bottom:755.217450px;}
.yc_c00071{bottom:779.967450px;}
.yb_c00071{bottom:804.717450px;}
.ya_c00071{bottom:829.467450px;}
.y9_c00071{bottom:869.217450px;}
.y8_c00071{bottom:893.967450px;}
.y7_c00071{bottom:918.717450px;}
.y6_c00071{bottom:943.467450px;}
.y5_c00071{bottom:968.217450px;}
.y4_c00071{bottom:992.967450px;}
.y3_c00071{bottom:1017.717450px;}
.y2_c00071{bottom:1042.467450px;}
.y1_c00071{bottom:1093.600950px;}
.h2_c00071{height:39.264000px;}
.h6_c00071{height:48.600000px;}
.h5_c00071{height:49.080000px;}
.h4_c00071{height:58.872000px;}
.h3_c00071{height:58.896000px;}
.h1_c00071{height:1135.500000px;}
.h0_c00071{height:1135.506150px;}
.w0_c00071{width:893.950200px;}
.w1_c00071{width:894.000000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:77.603100px;}
.x2_c00071{left:94.617600px;}
.x3_c00071{left:410.582550px;}
@media print{
.v2_c00071{vertical-align:-21.312000pt;}
.v0_c00071{vertical-align:0.000000pt;}
.v1_c00071{vertical-align:21.312000pt;}
.lsa_c00071{letter-spacing:-4.266667pt;}
.ls7_c00071{letter-spacing:-0.768000pt;}
.ls8_c00071{letter-spacing:-0.576000pt;}
.ls6_c00071{letter-spacing:-0.448000pt;}
.lsb_c00071{letter-spacing:-0.298667pt;}
.ls9_c00071{letter-spacing:-0.256000pt;}
.lsc_c00071{letter-spacing:-0.213333pt;}
.ls4_c00071{letter-spacing:-0.128000pt;}
.ls5_c00071{letter-spacing:0.000000pt;}
.ls1_c00071{letter-spacing:0.192000pt;}
.ls2_c00071{letter-spacing:0.320000pt;}
.ls0_c00071{letter-spacing:1.664000pt;}
.ls3_c00071{letter-spacing:10.368000pt;}
.ws1_c00071{word-spacing:-14.528000pt;}
.ws3_c00071{word-spacing:-13.760000pt;}
.ws6_c00071{word-spacing:-12.213333pt;}
.ws4_c00071{word-spacing:-9.770667pt;}
.ws5_c00071{word-spacing:-9.685333pt;}
.ws2_c00071{word-spacing:-8.469824pt;}
.ws29_c00071{word-spacing:-1.834667pt;}
.ws8_c00071{word-spacing:-1.280000pt;}
.ws15_c00071{word-spacing:-0.768000pt;}
.ws14_c00071{word-spacing:-0.640000pt;}
.ws25_c00071{word-spacing:-0.576000pt;}
.ws12_c00071{word-spacing:-0.384000pt;}
.ws27_c00071{word-spacing:-0.256000pt;}
.ws26_c00071{word-spacing:-0.213333pt;}
.ws13_c00071{word-spacing:-0.064000pt;}
.ws7_c00071{word-spacing:0.000000pt;}
.ws2d_c00071{word-spacing:0.213333pt;}
.ws11_c00071{word-spacing:0.256000pt;}
.ws1d_c00071{word-spacing:0.576000pt;}
.wsd_c00071{word-spacing:1.344000pt;}
.ws22_c00071{word-spacing:1.664000pt;}
.wsa_c00071{word-spacing:1.728000pt;}
.wsc_c00071{word-spacing:1.856000pt;}
.ws9_c00071{word-spacing:1.920000pt;}
.ws1b_c00071{word-spacing:2.496000pt;}
.ws1e_c00071{word-spacing:2.560000pt;}
.ws2b_c00071{word-spacing:2.816000pt;}
.ws28_c00071{word-spacing:3.072000pt;}
.ws2c_c00071{word-spacing:3.114667pt;}
.ws19_c00071{word-spacing:3.200000pt;}
.wse_c00071{word-spacing:3.712000pt;}
.wsf_c00071{word-spacing:3.904000pt;}
.ws2a_c00071{word-spacing:4.266667pt;}
.ws10_c00071{word-spacing:4.352000pt;}
.ws24_c00071{word-spacing:5.504000pt;}
.wsb_c00071{word-spacing:6.272000pt;}
.ws18_c00071{word-spacing:6.400000pt;}
.ws1f_c00071{word-spacing:8.512000pt;}
.ws20_c00071{word-spacing:10.240000pt;}
.ws1c_c00071{word-spacing:10.688000pt;}
.ws1a_c00071{word-spacing:11.648000pt;}
.ws16_c00071{word-spacing:14.464000pt;}
.ws17_c00071{word-spacing:15.040000pt;}
.ws23_c00071{word-spacing:15.616000pt;}
.ws21_c00071{word-spacing:15.808000pt;}
.ws0_c00071{word-spacing:1420.198400pt;}
._3_c00071{margin-left:-6.698667pt;}
._0_c00071{margin-left:-1.877333pt;}
._1_c00071{margin-left:-0.981333pt;}
._2_c00071{width:1.045333pt;}
._4_c00071{width:2.812288pt;}
._7_c00071{width:4.266667pt;}
._5_c00071{width:16.085333pt;}
._6_c00071{width:20.522667pt;}
._8_c00071{width:26.680000pt;}
.fs2_c00071{font-size:37.312000pt;}
.fs0_c00071{font-size:42.666667pt;}
.fs3_c00071{font-size:53.333333pt;}
.fs1_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y27_c00071{bottom:99.214400pt;}
.y26_c00071{bottom:112.547733pt;}
.y25_c00071{bottom:133.440133pt;}
.y24_c00071{bottom:154.332533pt;}
.y23_c00071{bottom:167.665867pt;}
.y22_c00071{bottom:188.558267pt;}
.y21_c00071{bottom:201.891600pt;}
.y20_c00071{bottom:239.971067pt;}
.y2a_c00071{bottom:240.236267pt;}
.y29_c00071{bottom:256.769600pt;}
.y1f_c00071{bottom:261.971067pt;}
.y28_c00071{bottom:273.302933pt;}
.y1e_c00071{bottom:283.971067pt;}
.y1d_c00071{bottom:305.971067pt;}
.y1c_c00071{bottom:327.971067pt;}
.y1b_c00071{bottom:349.971067pt;}
.y1a_c00071{bottom:371.971067pt;}
.y19_c00071{bottom:393.971067pt;}
.y18_c00071{bottom:415.976400pt;}
.y17_c00071{bottom:437.976400pt;}
.y16_c00071{bottom:459.976400pt;}
.y15_c00071{bottom:481.976400pt;}
.y14_c00071{bottom:503.976400pt;}
.y13_c00071{bottom:525.976400pt;}
.y12_c00071{bottom:547.976400pt;}
.y11_c00071{bottom:569.976400pt;}
.y10_c00071{bottom:605.304400pt;}
.yf_c00071{bottom:627.304400pt;}
.ye_c00071{bottom:649.304400pt;}
.yd_c00071{bottom:671.304400pt;}
.yc_c00071{bottom:693.304400pt;}
.yb_c00071{bottom:715.304400pt;}
.ya_c00071{bottom:737.304400pt;}
.y9_c00071{bottom:772.637733pt;}
.y8_c00071{bottom:794.637733pt;}
.y7_c00071{bottom:816.637733pt;}
.y6_c00071{bottom:838.637733pt;}
.y5_c00071{bottom:860.637733pt;}
.y4_c00071{bottom:882.637733pt;}
.y3_c00071{bottom:904.637733pt;}
.y2_c00071{bottom:926.637733pt;}
.y1_c00071{bottom:972.089733pt;}
.h2_c00071{height:34.901333pt;}
.h6_c00071{height:43.200000pt;}
.h5_c00071{height:43.626667pt;}
.h4_c00071{height:52.330667pt;}
.h3_c00071{height:52.352000pt;}
.h1_c00071{height:1009.333333pt;}
.h0_c00071{height:1009.338800pt;}
.w0_c00071{width:794.622400pt;}
.w1_c00071{width:794.666667pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:68.980533pt;}
.x2_c00071{left:84.104533pt;}
.x3_c00071{left:364.962267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffb0dd83a35302c747e996f5.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_f6729770213c024f9c943b5c.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.067000;font-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_c00072{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls3_c00072{letter-spacing:-0.420000px;}
.ls4_c00072{letter-spacing:-0.240000px;}
.ls2_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:0.480000px;}
.ls1_c00072{letter-spacing:1.584000px;}
.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;}
}
.ws2_c00072{word-spacing:-13.620000px;}
.ws1_c00072{word-spacing:-13.320000px;}
.ws0_c00072{word-spacing:-12.480000px;}
.ws3_c00072{word-spacing:0.000000px;}
.ws4_c00072{word-spacing:0.240000px;}
._0_c00072{margin-left:-2756.860200px;}
._3_c00072{margin-left:-2.352000px;}
._1_c00072{margin-left:-1.344000px;}
._2_c00072{width:1.104000px;}
.fc0_c00072{color:rgb(35,31,32);}
.fs0_c00072{font-size:48.000000px;}
.fs1_c00072{font-size:60.000000px;}
.y0_c00072{bottom:0.000000px;}
.y8_c00072{bottom:111.908250px;}
.y7_c00072{bottom:130.508250px;}
.y6_c00072{bottom:149.108250px;}
.y5_c00072{bottom:643.229550px;}
.y4_c00072{bottom:661.829550px;}
.y3_c00072{bottom:680.429550px;}
.y2_c00072{bottom:699.029550px;}
.y1_c00072{bottom:1093.600950px;}
.h2_c00072{height:39.264000px;}
.h3_c00072{height:39.984000px;}
.h5_c00072{height:48.600000px;}
.h4_c00072{height:49.080000px;}
.h1_c00072{height:1135.500000px;}
.h0_c00072{height:1135.506150px;}
.w0_c00072{width:893.950200px;}
.w1_c00072{width:894.000000px;}
.x0_c00072{left:0.000000px;}
.x4_c00072{left:128.647950px;}
.x2_c00072{left:188.061900px;}
.x3_c00072{left:190.513350px;}
.x6_c00072{left:390.718050px;}
.x5_c00072{left:488.570250px;}
.x1_c00072{left:807.725850px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls3_c00072{letter-spacing:-0.373333pt;}
.ls4_c00072{letter-spacing:-0.213333pt;}
.ls2_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.426667pt;}
.ls1_c00072{letter-spacing:1.408000pt;}
.ws2_c00072{word-spacing:-12.106667pt;}
.ws1_c00072{word-spacing:-11.840000pt;}
.ws0_c00072{word-spacing:-11.093333pt;}
.ws3_c00072{word-spacing:0.000000pt;}
.ws4_c00072{word-spacing:0.213333pt;}
._0_c00072{margin-left:-2450.542400pt;}
._3_c00072{margin-left:-2.090667pt;}
._1_c00072{margin-left:-1.194667pt;}
._2_c00072{width:0.981333pt;}
.fs0_c00072{font-size:42.666667pt;}
.fs1_c00072{font-size:53.333333pt;}
.y0_c00072{bottom:0.000000pt;}
.y8_c00072{bottom:99.474000pt;}
.y7_c00072{bottom:116.007333pt;}
.y6_c00072{bottom:132.540667pt;}
.y5_c00072{bottom:571.759600pt;}
.y4_c00072{bottom:588.292933pt;}
.y3_c00072{bottom:604.826267pt;}
.y2_c00072{bottom:621.359600pt;}
.y1_c00072{bottom:972.089733pt;}
.h2_c00072{height:34.901333pt;}
.h3_c00072{height:35.541333pt;}
.h5_c00072{height:43.200000pt;}
.h4_c00072{height:43.626667pt;}
.h1_c00072{height:1009.333333pt;}
.h0_c00072{height:1009.338800pt;}
.w0_c00072{width:794.622400pt;}
.w1_c00072{width:794.666667pt;}
.x0_c00072{left:0.000000pt;}
.x4_c00072{left:114.353733pt;}
.x2_c00072{left:167.166133pt;}
.x3_c00072{left:169.345200pt;}
.x6_c00072{left:347.304933pt;}
.x5_c00072{left:434.284667pt;}
.x1_c00072{left:717.978533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_972595a71dc676b555b7db2b.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.067000;font-style:normal;font-weight:normal;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_f006bb532d18552781f657c9.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.v1_c00073{vertical-align:23.976000px;}
.lsd_c00073{letter-spacing:-6.000000px;}
.lsa_c00073{letter-spacing:-0.864000px;}
.ls9_c00073{letter-spacing:-0.576000px;}
.lsb_c00073{letter-spacing:-0.288000px;}
.lse_c00073{letter-spacing:-0.240000px;}
.lsc_c00073{letter-spacing:-0.144000px;}
.ls7_c00073{letter-spacing:0.000000px;}
.ls6_c00073{letter-spacing:0.072000px;}
.ls1_c00073{letter-spacing:0.144000px;}
.ls5_c00073{letter-spacing:0.209184px;}
.ls0_c00073{letter-spacing:0.360000px;}
.ls4_c00073{letter-spacing:0.571800px;}
.ls2_c00073{letter-spacing:0.576000px;}
.ls3_c00073{letter-spacing:0.720000px;}
.ls8_c00073{letter-spacing:1.008000px;}
.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;}
}
.ws5_c00073{word-spacing:-16.704000px;}
.ws3_c00073{word-spacing:-16.344000px;}
.ws4_c00073{word-spacing:-16.200000px;}
.ws1_c00073{word-spacing:-15.768000px;}
.ws2_c00073{word-spacing:-15.624000px;}
.ws13_c00073{word-spacing:-4.248000px;}
.ws16_c00073{word-spacing:-3.096000px;}
.ws14_c00073{word-spacing:-2.232000px;}
.wse_c00073{word-spacing:-1.512000px;}
.wsc_c00073{word-spacing:-1.008000px;}
.wsf_c00073{word-spacing:-0.864000px;}
.ws12_c00073{word-spacing:-0.576000px;}
.ws18_c00073{word-spacing:-0.144000px;}
.ws6_c00073{word-spacing:0.000000px;}
.ws1a_c00073{word-spacing:0.240000px;}
.wsd_c00073{word-spacing:0.576000px;}
.ws7_c00073{word-spacing:0.792000px;}
.ws11_c00073{word-spacing:1.656000px;}
.ws9_c00073{word-spacing:1.728000px;}
.wsb_c00073{word-spacing:1.944000px;}
.wsa_c00073{word-spacing:2.304000px;}
.ws17_c00073{word-spacing:2.376000px;}
.ws15_c00073{word-spacing:2.664000px;}
.ws8_c00073{word-spacing:2.880000px;}
.ws19_c00073{word-spacing:6.000000px;}
.ws10_c00073{word-spacing:7.344000px;}
.ws0_c00073{word-spacing:1601.323200px;}
._3_c00073{margin-left:-7.680000px;}
._5_c00073{margin-left:-3.528000px;}
._0_c00073{margin-left:-2.112000px;}
._1_c00073{margin-left:-1.104000px;}
._2_c00073{width:1.200000px;}
._4_c00073{width:2.856000px;}
._7_c00073{width:6.972000px;}
._6_c00073{width:23.823600px;}
.fc0_c00073{color:rgb(35,31,32);}
.fs2_c00073{font-size:41.976000px;}
.fs0_c00073{font-size:48.000000px;}
.fs3_c00073{font-size:60.000000px;}
.fs1_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y17_c00073{bottom:111.616350px;}
.y19_c00073{bottom:198.445500px;}
.y18_c00073{bottom:217.045500px;}
.y16_c00073{bottom:517.479450px;}
.y15_c00073{bottom:542.229450px;}
.y14_c00073{bottom:566.979450px;}
.y13_c00073{bottom:591.729450px;}
.y12_c00073{bottom:616.479450px;}
.y11_c00073{bottom:641.229450px;}
.y10_c00073{bottom:665.979450px;}
.yf_c00073{bottom:690.729450px;}
.ye_c00073{bottom:715.479450px;}
.yd_c00073{bottom:740.229450px;}
.yc_c00073{bottom:779.973450px;}
.yb_c00073{bottom:804.723450px;}
.ya_c00073{bottom:829.473450px;}
.y9_c00073{bottom:869.217450px;}
.y8_c00073{bottom:893.967450px;}
.y7_c00073{bottom:918.717450px;}
.y6_c00073{bottom:943.467450px;}
.y5_c00073{bottom:968.217450px;}
.y4_c00073{bottom:992.967450px;}
.y3_c00073{bottom:1017.717450px;}
.y2_c00073{bottom:1042.467450px;}
.y1_c00073{bottom:1093.601100px;}
.h2_c00073{height:39.264000px;}
.h5_c00073{height:48.600000px;}
.h4_c00073{height:49.080000px;}
.h3_c00073{height:58.896000px;}
.h1_c00073{height:1135.500000px;}
.h0_c00073{height:1135.506150px;}
.w0_c00073{width:893.950200px;}
.w1_c00073{width:894.000000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:77.603100px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.v1_c00073{vertical-align:21.312000pt;}
.lsd_c00073{letter-spacing:-5.333333pt;}
.lsa_c00073{letter-spacing:-0.768000pt;}
.ls9_c00073{letter-spacing:-0.512000pt;}
.lsb_c00073{letter-spacing:-0.256000pt;}
.lse_c00073{letter-spacing:-0.213333pt;}
.lsc_c00073{letter-spacing:-0.128000pt;}
.ls7_c00073{letter-spacing:0.000000pt;}
.ls6_c00073{letter-spacing:0.064000pt;}
.ls1_c00073{letter-spacing:0.128000pt;}
.ls5_c00073{letter-spacing:0.185941pt;}
.ls0_c00073{letter-spacing:0.320000pt;}
.ls4_c00073{letter-spacing:0.508267pt;}
.ls2_c00073{letter-spacing:0.512000pt;}
.ls3_c00073{letter-spacing:0.640000pt;}
.ls8_c00073{letter-spacing:0.896000pt;}
.ws5_c00073{word-spacing:-14.848000pt;}
.ws3_c00073{word-spacing:-14.528000pt;}
.ws4_c00073{word-spacing:-14.400000pt;}
.ws1_c00073{word-spacing:-14.016000pt;}
.ws2_c00073{word-spacing:-13.888000pt;}
.ws13_c00073{word-spacing:-3.776000pt;}
.ws16_c00073{word-spacing:-2.752000pt;}
.ws14_c00073{word-spacing:-1.984000pt;}
.wse_c00073{word-spacing:-1.344000pt;}
.wsc_c00073{word-spacing:-0.896000pt;}
.wsf_c00073{word-spacing:-0.768000pt;}
.ws12_c00073{word-spacing:-0.512000pt;}
.ws18_c00073{word-spacing:-0.128000pt;}
.ws6_c00073{word-spacing:0.000000pt;}
.ws1a_c00073{word-spacing:0.213333pt;}
.wsd_c00073{word-spacing:0.512000pt;}
.ws7_c00073{word-spacing:0.704000pt;}
.ws11_c00073{word-spacing:1.472000pt;}
.ws9_c00073{word-spacing:1.536000pt;}
.wsb_c00073{word-spacing:1.728000pt;}
.wsa_c00073{word-spacing:2.048000pt;}
.ws17_c00073{word-spacing:2.112000pt;}
.ws15_c00073{word-spacing:2.368000pt;}
.ws8_c00073{word-spacing:2.560000pt;}
.ws19_c00073{word-spacing:5.333333pt;}
.ws10_c00073{word-spacing:6.528000pt;}
.ws0_c00073{word-spacing:1423.398400pt;}
._3_c00073{margin-left:-6.826667pt;}
._5_c00073{margin-left:-3.136000pt;}
._0_c00073{margin-left:-1.877333pt;}
._1_c00073{margin-left:-0.981333pt;}
._2_c00073{width:1.066667pt;}
._4_c00073{width:2.538667pt;}
._7_c00073{width:6.197333pt;}
._6_c00073{width:21.176533pt;}
.fs2_c00073{font-size:37.312000pt;}
.fs0_c00073{font-size:42.666667pt;}
.fs3_c00073{font-size:53.333333pt;}
.fs1_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y17_c00073{bottom:99.214533pt;}
.y19_c00073{bottom:176.396000pt;}
.y18_c00073{bottom:192.929333pt;}
.y16_c00073{bottom:459.981733pt;}
.y15_c00073{bottom:481.981733pt;}
.y14_c00073{bottom:503.981733pt;}
.y13_c00073{bottom:525.981733pt;}
.y12_c00073{bottom:547.981733pt;}
.y11_c00073{bottom:569.981733pt;}
.y10_c00073{bottom:591.981733pt;}
.yf_c00073{bottom:613.981733pt;}
.ye_c00073{bottom:635.981733pt;}
.yd_c00073{bottom:657.981733pt;}
.yc_c00073{bottom:693.309733pt;}
.yb_c00073{bottom:715.309733pt;}
.ya_c00073{bottom:737.309733pt;}
.y9_c00073{bottom:772.637733pt;}
.y8_c00073{bottom:794.637733pt;}
.y7_c00073{bottom:816.637733pt;}
.y6_c00073{bottom:838.637733pt;}
.y5_c00073{bottom:860.637733pt;}
.y4_c00073{bottom:882.637733pt;}
.y3_c00073{bottom:904.637733pt;}
.y2_c00073{bottom:926.637733pt;}
.y1_c00073{bottom:972.089867pt;}
.h2_c00073{height:34.901333pt;}
.h5_c00073{height:43.200000pt;}
.h4_c00073{height:43.626667pt;}
.h3_c00073{height:52.352000pt;}
.h1_c00073{height:1009.333333pt;}
.h0_c00073{height:1009.338800pt;}
.w0_c00073{width:794.622400pt;}
.w1_c00073{width:794.666667pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecf56fb973499afce9cf3c7c.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_bce45210e74648ef20ec430a.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.067000;font-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_c00074{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls4_c00074{letter-spacing:-0.648000px;}
.ls3_c00074{letter-spacing:-0.270000px;}
.ls5_c00074{letter-spacing:-0.240000px;}
.ls1_c00074{letter-spacing:0.000000px;}
.ls0_c00074{letter-spacing:0.480000px;}
.ls2_c00074{letter-spacing:0.540000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:-11.376000px;}
.ws7_c00074{word-spacing:-0.540000px;}
.ws6_c00074{word-spacing:0.000000px;}
.ws9_c00074{word-spacing:0.240000px;}
.ws8_c00074{word-spacing:0.270000px;}
.ws4_c00074{word-spacing:712.292400px;}
.ws2_c00074{word-spacing:715.268400px;}
.ws1_c00074{word-spacing:730.794000px;}
.ws5_c00074{word-spacing:862.777800px;}
.ws3_c00074{word-spacing:1132.947600px;}
._0_c00074{margin-left:-2755.756200px;}
._4_c00074{margin-left:-6.564000px;}
._1_c00074{margin-left:-1.344000px;}
._2_c00074{width:1.104000px;}
._5_c00074{width:729.174000px;}
._3_c00074{width:1242.432600px;}
.fc1_c00074{color:transparent;}
.fc0_c00074{color:rgb(35,31,32);}
.fs0_c00074{font-size:48.000000px;}
.fs1_c00074{font-size:54.000000px;}
.fs2_c00074{font-size:60.000000px;}
.y0_c00074{bottom:0.000000px;}
.y9_c00074{bottom:162.374550px;}
.y8_c00074{bottom:180.974550px;}
.y7_c00074{bottom:199.574550px;}
.y6_c00074{bottom:218.174550px;}
.y5_c00074{bottom:248.239050px;}
.yb_c00074{bottom:248.370900px;}
.y3_c00074{bottom:250.496850px;}
.ya_c00074{bottom:554.512500px;}
.y4_c00074{bottom:554.512650px;}
.y2_c00074{bottom:811.038150px;}
.y1_c00074{bottom:1093.601100px;}
.h2_c00074{height:39.264000px;}
.h3_c00074{height:39.984000px;}
.h4_c00074{height:44.172000px;}
.h6_c00074{height:48.600000px;}
.h5_c00074{height:49.080000px;}
.h1_c00074{height:1135.500000px;}
.h0_c00074{height:1135.506150px;}
.w0_c00074{width:893.950200px;}
.w1_c00074{width:894.000000px;}
.x0_c00074{left:0.000000px;}
.x8_c00074{left:128.949000px;}
.x5_c00074{left:139.991700px;}
.x6_c00074{left:141.366900px;}
.x4_c00074{left:142.489200px;}
.x2_c00074{left:188.061900px;}
.x3_c00074{left:190.513350px;}
.x7_c00074{left:370.306650px;}
.x1_c00074{left:807.209850px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls4_c00074{letter-spacing:-0.576000pt;}
.ls3_c00074{letter-spacing:-0.240000pt;}
.ls5_c00074{letter-spacing:-0.213333pt;}
.ls1_c00074{letter-spacing:0.000000pt;}
.ls0_c00074{letter-spacing:0.426667pt;}
.ls2_c00074{letter-spacing:0.480000pt;}
.ws0_c00074{word-spacing:-10.112000pt;}
.ws7_c00074{word-spacing:-0.480000pt;}
.ws6_c00074{word-spacing:0.000000pt;}
.ws9_c00074{word-spacing:0.213333pt;}
.ws8_c00074{word-spacing:0.240000pt;}
.ws4_c00074{word-spacing:633.148800pt;}
.ws2_c00074{word-spacing:635.794133pt;}
.ws1_c00074{word-spacing:649.594667pt;}
.ws5_c00074{word-spacing:766.913600pt;}
.ws3_c00074{word-spacing:1007.064533pt;}
._0_c00074{margin-left:-2449.561067pt;}
._4_c00074{margin-left:-5.834667pt;}
._1_c00074{margin-left:-1.194667pt;}
._2_c00074{width:0.981333pt;}
._5_c00074{width:648.154667pt;}
._3_c00074{width:1104.384533pt;}
.fs0_c00074{font-size:42.666667pt;}
.fs1_c00074{font-size:48.000000pt;}
.fs2_c00074{font-size:53.333333pt;}
.y0_c00074{bottom:0.000000pt;}
.y9_c00074{bottom:144.332933pt;}
.y8_c00074{bottom:160.866267pt;}
.y7_c00074{bottom:177.399600pt;}
.y6_c00074{bottom:193.932933pt;}
.y5_c00074{bottom:220.656933pt;}
.yb_c00074{bottom:220.774133pt;}
.y3_c00074{bottom:222.663867pt;}
.ya_c00074{bottom:492.900000pt;}
.y4_c00074{bottom:492.900133pt;}
.y2_c00074{bottom:720.922800pt;}
.y1_c00074{bottom:972.089867pt;}
.h2_c00074{height:34.901333pt;}
.h3_c00074{height:35.541333pt;}
.h4_c00074{height:39.264000pt;}
.h6_c00074{height:43.200000pt;}
.h5_c00074{height:43.626667pt;}
.h1_c00074{height:1009.333333pt;}
.h0_c00074{height:1009.338800pt;}
.w0_c00074{width:794.622400pt;}
.w1_c00074{width:794.666667pt;}
.x0_c00074{left:0.000000pt;}
.x8_c00074{left:114.621333pt;}
.x5_c00074{left:124.437067pt;}
.x6_c00074{left:125.659467pt;}
.x4_c00074{left:126.657067pt;}
.x2_c00074{left:167.166133pt;}
.x3_c00074{left:169.345200pt;}
.x7_c00074{left:329.161467pt;}
.x1_c00074{left:717.519867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5b82ac53d2e47bf98addb9c.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_478df8eeefd98416152935a5.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.v2_c00075{vertical-align:20.937000px;}
.v1_c00075{vertical-align:23.976600px;}
.ls10_c00075{letter-spacing:-6.000000px;}
.lsc_c00075{letter-spacing:-2.640000px;}
.ls11_c00075{letter-spacing:-1.080000px;}
.ls13_c00075{letter-spacing:-0.600000px;}
.ls14_c00075{letter-spacing:-0.420000px;}
.ls12_c00075{letter-spacing:-0.240000px;}
.lsd_c00075{letter-spacing:0.000000px;}
.ls1_c00075{letter-spacing:0.072000px;}
.ls2_c00075{letter-spacing:0.209664px;}
.ls0_c00075{letter-spacing:0.360000px;}
.lsf_c00075{letter-spacing:0.367290px;}
.ls9_c00075{letter-spacing:0.432000px;}
.ls3_c00075{letter-spacing:0.576000px;}
.lsa_c00075{letter-spacing:0.630000px;}
.ls6_c00075{letter-spacing:0.720000px;}
.ls5_c00075{letter-spacing:0.792000px;}
.ls8_c00075{letter-spacing:0.864000px;}
.lse_c00075{letter-spacing:1.008000px;}
.ls4_c00075{letter-spacing:1.080000px;}
.ls7_c00075{letter-spacing:1.296000px;}
.lsb_c00075{letter-spacing:4.432200px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00075{word-spacing:-16.704000px;}
.ws1_c00075{word-spacing:-16.344000px;}
.ws5_c00075{word-spacing:-13.740000px;}
.ws6_c00075{word-spacing:-13.320000px;}
.ws4_c00075{word-spacing:-12.540000px;}
.ws3_c00075{word-spacing:-10.896000px;}
.ws15_c00075{word-spacing:-3.168000px;}
.ws14_c00075{word-spacing:-2.880000px;}
.ws12_c00075{word-spacing:-1.512000px;}
.ws10_c00075{word-spacing:-1.080000px;}
.wsd_c00075{word-spacing:-1.008000px;}
.ws13_c00075{word-spacing:-0.864000px;}
.ws18_c00075{word-spacing:-0.367290px;}
.wsc_c00075{word-spacing:-0.360000px;}
.ws7_c00075{word-spacing:0.000000px;}
.ws1b_c00075{word-spacing:0.240000px;}
.ws19_c00075{word-spacing:0.384000px;}
.ws16_c00075{word-spacing:0.441000px;}
.ws11_c00075{word-spacing:2.736000px;}
.ws17_c00075{word-spacing:2.898000px;}
.wsb_c00075{word-spacing:4.536000px;}
.wse_c00075{word-spacing:5.616000px;}
.wsf_c00075{word-spacing:5.832000px;}
.ws1a_c00075{word-spacing:6.000000px;}
.ws8_c00075{word-spacing:6.048000px;}
.wsa_c00075{word-spacing:6.912000px;}
.ws9_c00075{word-spacing:7.056000px;}
.ws0_c00075{word-spacing:1607.323200px;}
._5_c00075{margin-left:-7.686000px;}
._4_c00075{margin-left:-5.400000px;}
._6_c00075{margin-left:-4.125000px;}
._0_c00075{margin-left:-2.112000px;}
._1_c00075{margin-left:-1.104000px;}
._3_c00075{width:1.224000px;}
._9_c00075{width:2.424000px;}
._8_c00075{width:5.820000px;}
._7_c00075{width:22.863600px;}
._2_c00075{width:64.296000px;}
.fc0_c00075{color:rgb(35,31,32);}
.fs4_c00075{font-size:36.729000px;}
.fs2_c00075{font-size:41.976000px;}
.fs0_c00075{font-size:48.000000px;}
.fs5_c00075{font-size:60.000000px;}
.fs3_c00075{font-size:63.000000px;}
.fs1_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y15_c00075{bottom:111.616350px;}
.y14_c00075{bottom:126.612300px;}
.y13_c00075{bottom:150.120300px;}
.y12_c00075{bottom:194.724000px;}
.y11_c00075{bottom:215.718750px;}
.y10_c00075{bottom:236.713500px;}
.yf_c00075{bottom:266.229450px;}
.ye_c00075{bottom:290.979450px;}
.yd_c00075{bottom:315.729450px;}
.yc_c00075{bottom:355.473450px;}
.yb_c00075{bottom:380.223450px;}
.ya_c00075{bottom:404.973450px;}
.y9_c00075{bottom:429.723450px;}
.y8_c00075{bottom:454.473450px;}
.y7_c00075{bottom:479.223450px;}
.y6_c00075{bottom:518.967450px;}
.y5_c00075{bottom:543.717450px;}
.y4_c00075{bottom:568.467450px;}
.y3_c00075{bottom:593.217450px;}
.y2_c00075{bottom:632.967450px;}
.y1a_c00075{bottom:671.018550px;}
.y19_c00075{bottom:689.618550px;}
.y18_c00075{bottom:708.218550px;}
.y17_c00075{bottom:726.818550px;}
.y16_c00075{bottom:745.418550px;}
.y1_c00075{bottom:1093.601100px;}
.h2_c00075{height:39.264000px;}
.h5_c00075{height:39.280200px;}
.h7_c00075{height:48.600000px;}
.h6_c00075{height:49.080000px;}
.h4_c00075{height:51.534000px;}
.h3_c00075{height:58.896000px;}
.h1_c00075{height:1135.500000px;}
.h0_c00075{height:1135.506150px;}
.w0_c00075{width:893.950200px;}
.w1_c00075{width:894.000000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:77.603100px;}
.x3_c00075{left:94.611000px;}
.x2_c00075{left:98.862900px;}
.x4_c00075{left:422.055000px;}
.x5_c00075{left:585.543300px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.v2_c00075{vertical-align:18.610667pt;}
.v1_c00075{vertical-align:21.312533pt;}
.ls10_c00075{letter-spacing:-5.333333pt;}
.lsc_c00075{letter-spacing:-2.346667pt;}
.ls11_c00075{letter-spacing:-0.960000pt;}
.ls13_c00075{letter-spacing:-0.533333pt;}
.ls14_c00075{letter-spacing:-0.373333pt;}
.ls12_c00075{letter-spacing:-0.213333pt;}
.lsd_c00075{letter-spacing:0.000000pt;}
.ls1_c00075{letter-spacing:0.064000pt;}
.ls2_c00075{letter-spacing:0.186368pt;}
.ls0_c00075{letter-spacing:0.320000pt;}
.lsf_c00075{letter-spacing:0.326480pt;}
.ls9_c00075{letter-spacing:0.384000pt;}
.ls3_c00075{letter-spacing:0.512000pt;}
.lsa_c00075{letter-spacing:0.560000pt;}
.ls6_c00075{letter-spacing:0.640000pt;}
.ls5_c00075{letter-spacing:0.704000pt;}
.ls8_c00075{letter-spacing:0.768000pt;}
.lse_c00075{letter-spacing:0.896000pt;}
.ls4_c00075{letter-spacing:0.960000pt;}
.ls7_c00075{letter-spacing:1.152000pt;}
.lsb_c00075{letter-spacing:3.939733pt;}
.ws2_c00075{word-spacing:-14.848000pt;}
.ws1_c00075{word-spacing:-14.528000pt;}
.ws5_c00075{word-spacing:-12.213333pt;}
.ws6_c00075{word-spacing:-11.840000pt;}
.ws4_c00075{word-spacing:-11.146667pt;}
.ws3_c00075{word-spacing:-9.685333pt;}
.ws15_c00075{word-spacing:-2.816000pt;}
.ws14_c00075{word-spacing:-2.560000pt;}
.ws12_c00075{word-spacing:-1.344000pt;}
.ws10_c00075{word-spacing:-0.960000pt;}
.wsd_c00075{word-spacing:-0.896000pt;}
.ws13_c00075{word-spacing:-0.768000pt;}
.ws18_c00075{word-spacing:-0.326480pt;}
.wsc_c00075{word-spacing:-0.320000pt;}
.ws7_c00075{word-spacing:0.000000pt;}
.ws1b_c00075{word-spacing:0.213333pt;}
.ws19_c00075{word-spacing:0.341333pt;}
.ws16_c00075{word-spacing:0.392000pt;}
.ws11_c00075{word-spacing:2.432000pt;}
.ws17_c00075{word-spacing:2.576000pt;}
.wsb_c00075{word-spacing:4.032000pt;}
.wse_c00075{word-spacing:4.992000pt;}
.wsf_c00075{word-spacing:5.184000pt;}
.ws1a_c00075{word-spacing:5.333333pt;}
.ws8_c00075{word-spacing:5.376000pt;}
.wsa_c00075{word-spacing:6.144000pt;}
.ws9_c00075{word-spacing:6.272000pt;}
.ws0_c00075{word-spacing:1428.731733pt;}
._5_c00075{margin-left:-6.832000pt;}
._4_c00075{margin-left:-4.800000pt;}
._6_c00075{margin-left:-3.666667pt;}
._0_c00075{margin-left:-1.877333pt;}
._1_c00075{margin-left:-0.981333pt;}
._3_c00075{width:1.088000pt;}
._9_c00075{width:2.154667pt;}
._8_c00075{width:5.173333pt;}
._7_c00075{width:20.323200pt;}
._2_c00075{width:57.152000pt;}
.fs4_c00075{font-size:32.648000pt;}
.fs2_c00075{font-size:37.312000pt;}
.fs0_c00075{font-size:42.666667pt;}
.fs5_c00075{font-size:53.333333pt;}
.fs3_c00075{font-size:56.000000pt;}
.fs1_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y15_c00075{bottom:99.214533pt;}
.y14_c00075{bottom:112.544267pt;}
.y13_c00075{bottom:133.440267pt;}
.y12_c00075{bottom:173.088000pt;}
.y11_c00075{bottom:191.750000pt;}
.y10_c00075{bottom:210.412000pt;}
.yf_c00075{bottom:236.648400pt;}
.ye_c00075{bottom:258.648400pt;}
.yd_c00075{bottom:280.648400pt;}
.yc_c00075{bottom:315.976400pt;}
.yb_c00075{bottom:337.976400pt;}
.ya_c00075{bottom:359.976400pt;}
.y9_c00075{bottom:381.976400pt;}
.y8_c00075{bottom:403.976400pt;}
.y7_c00075{bottom:425.976400pt;}
.y6_c00075{bottom:461.304400pt;}
.y5_c00075{bottom:483.304400pt;}
.y4_c00075{bottom:505.304400pt;}
.y3_c00075{bottom:527.304400pt;}
.y2_c00075{bottom:562.637733pt;}
.y1a_c00075{bottom:596.460933pt;}
.y19_c00075{bottom:612.994267pt;}
.y18_c00075{bottom:629.527600pt;}
.y17_c00075{bottom:646.060933pt;}
.y16_c00075{bottom:662.594267pt;}
.y1_c00075{bottom:972.089867pt;}
.h2_c00075{height:34.901333pt;}
.h5_c00075{height:34.915733pt;}
.h7_c00075{height:43.200000pt;}
.h6_c00075{height:43.626667pt;}
.h4_c00075{height:45.808000pt;}
.h3_c00075{height:52.352000pt;}
.h1_c00075{height:1009.333333pt;}
.h0_c00075{height:1009.338800pt;}
.w0_c00075{width:794.622400pt;}
.w1_c00075{width:794.666667pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:68.980533pt;}
.x3_c00075{left:84.098667pt;}
.x2_c00075{left:87.878133pt;}
.x4_c00075{left:375.160000pt;}
.x5_c00075{left:520.482933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1f1c6bbb1533de2bc1562e7.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.082000;font-style:normal;font-weight:normal;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_307356cfdc2be9aff69bf58e.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.067000;font-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_c00076{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.v1_c00076{vertical-align:23.952000px;}
.ls6_c00076{letter-spacing:-0.504000px;}
.ls8_c00076{letter-spacing:-0.240000px;}
.ls7_c00076{letter-spacing:-0.216000px;}
.ls4_c00076{letter-spacing:0.000000px;}
.ls3_c00076{letter-spacing:0.096000px;}
.ls1_c00076{letter-spacing:0.360000px;}
.ls0_c00076{letter-spacing:0.480000px;}
.ls5_c00076{letter-spacing:0.720000px;}
.ls2_c00076{letter-spacing:8.256000px;}
.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;}
}
.ws1_c00076{word-spacing:-17.064000px;}
.ws2_c00076{word-spacing:-16.344000px;}
.ws4_c00076{word-spacing:-15.984000px;}
.ws7_c00076{word-spacing:-13.740000px;}
.ws0_c00076{word-spacing:-11.376000px;}
.ws6_c00076{word-spacing:-10.992000px;}
.ws5_c00076{word-spacing:-10.896000px;}
.ws3_c00076{word-spacing:-9.528552px;}
.ws23_c00076{word-spacing:-2.520000px;}
.wse_c00076{word-spacing:-1.080000px;}
.ws22_c00076{word-spacing:-1.008000px;}
.ws12_c00076{word-spacing:-0.648000px;}
.ws21_c00076{word-spacing:-0.072000px;}
.ws8_c00076{word-spacing:0.000000px;}
.ws26_c00076{word-spacing:0.072000px;}
.ws11_c00076{word-spacing:0.216000px;}
.ws2d_c00076{word-spacing:0.240000px;}
.ws14_c00076{word-spacing:0.576000px;}
.ws24_c00076{word-spacing:0.648000px;}
.wsf_c00076{word-spacing:1.080000px;}
.ws25_c00076{word-spacing:2.088000px;}
.ws10_c00076{word-spacing:3.096000px;}
.wsc_c00076{word-spacing:3.240000px;}
.wsa_c00076{word-spacing:3.672000px;}
.ws20_c00076{word-spacing:3.888000px;}
.wsd_c00076{word-spacing:4.320000px;}
.ws17_c00076{word-spacing:4.536000px;}
.ws13_c00076{word-spacing:4.680000px;}
.ws2c_c00076{word-spacing:4.752000px;}
.ws16_c00076{word-spacing:5.184000px;}
.ws18_c00076{word-spacing:5.544000px;}
.ws2b_c00076{word-spacing:5.808000px;}
.ws9_c00076{word-spacing:5.904000px;}
.ws1c_c00076{word-spacing:6.552000px;}
.ws28_c00076{word-spacing:6.672000px;}
.ws15_c00076{word-spacing:7.272000px;}
.ws2a_c00076{word-spacing:7.584000px;}
.wsb_c00076{word-spacing:7.776000px;}
.ws29_c00076{word-spacing:8.208000px;}
.ws27_c00076{word-spacing:9.312000px;}
.ws1a_c00076{word-spacing:9.648000px;}
.ws1b_c00076{word-spacing:9.720000px;}
.ws1f_c00076{word-spacing:10.224000px;}
.ws1e_c00076{word-spacing:10.440000px;}
.ws1d_c00076{word-spacing:12.888000px;}
.ws19_c00076{word-spacing:14.544000px;}
._0_c00076{margin-left:-2755.755600px;}
._3_c00076{margin-left:-6.984000px;}
._8_c00076{margin-left:-4.175400px;}
._5_c00076{margin-left:-3.080280px;}
._1_c00076{margin-left:-1.344000px;}
._2_c00076{width:1.104000px;}
._4_c00076{width:2.256000px;}
._6_c00076{width:4.223400px;}
._7_c00076{width:6.192000px;}
.fc0_c00076{color:rgb(35,31,32);}
.fs2_c00076{font-size:41.976000px;}
.fs0_c00076{font-size:48.000000px;}
.fs3_c00076{font-size:60.000000px;}
.fs1_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y28_c00076{bottom:111.616350px;}
.y27_c00076{bottom:126.616350px;}
.y26_c00076{bottom:141.616350px;}
.y25_c00076{bottom:156.612300px;}
.y24_c00076{bottom:180.120300px;}
.y23_c00076{bottom:195.120300px;}
.y22_c00076{bottom:210.120300px;}
.y21_c00076{bottom:225.120300px;}
.y20_c00076{bottom:240.120300px;}
.y1f_c00076{bottom:294.717450px;}
.y2f_c00076{bottom:317.137650px;}
.y1e_c00076{bottom:319.467450px;}
.y2e_c00076{bottom:335.737650px;}
.y1d_c00076{bottom:344.217450px;}
.y2d_c00076{bottom:354.337650px;}
.y1c_c00076{bottom:368.967450px;}
.y2c_c00076{bottom:372.937650px;}
.y1b_c00076{bottom:393.717450px;}
.y1a_c00076{bottom:418.467450px;}
.y19_c00076{bottom:443.217450px;}
.y18_c00076{bottom:467.967450px;}
.y17_c00076{bottom:492.717450px;}
.y16_c00076{bottom:517.467450px;}
.y15_c00076{bottom:542.223450px;}
.y14_c00076{bottom:566.973450px;}
.y13_c00076{bottom:606.717450px;}
.y12_c00076{bottom:631.467450px;}
.y11_c00076{bottom:656.217450px;}
.y10_c00076{bottom:680.967450px;}
.yf_c00076{bottom:705.717450px;}
.y2b_c00076{bottom:708.847950px;}
.y2a_c00076{bottom:727.447950px;}
.ye_c00076{bottom:730.467450px;}
.y29_c00076{bottom:746.047950px;}
.yd_c00076{bottom:755.223450px;}
.yc_c00076{bottom:779.973450px;}
.yb_c00076{bottom:804.723450px;}
.ya_c00076{bottom:829.473450px;}
.y9_c00076{bottom:854.223450px;}
.y8_c00076{bottom:878.973450px;}
.y7_c00076{bottom:918.717450px;}
.y6_c00076{bottom:943.467450px;}
.y5_c00076{bottom:968.217450px;}
.y4_c00076{bottom:992.967450px;}
.y3_c00076{bottom:1017.717450px;}
.y2_c00076{bottom:1042.467450px;}
.y1_c00076{bottom:1093.601100px;}
.h2_c00076{height:39.264000px;}
.h5_c00076{height:39.280200px;}
.h3_c00076{height:39.984000px;}
.h7_c00076{height:48.600000px;}
.h6_c00076{height:49.080000px;}
.h4_c00076{height:58.896000px;}
.h1_c00076{height:1135.500000px;}
.h0_c00076{height:1135.506150px;}
.w0_c00076{width:893.950200px;}
.w1_c00076{width:894.000000px;}
.x0_c00076{left:0.000000px;}
.x4_c00076{left:128.626800px;}
.x5_c00076{left:145.631850px;}
.x2_c00076{left:188.061900px;}
.x3_c00076{left:190.513350px;}
.x6_c00076{left:534.845700px;}
.x1_c00076{left:807.245700px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.v1_c00076{vertical-align:21.290667pt;}
.ls6_c00076{letter-spacing:-0.448000pt;}
.ls8_c00076{letter-spacing:-0.213333pt;}
.ls7_c00076{letter-spacing:-0.192000pt;}
.ls4_c00076{letter-spacing:0.000000pt;}
.ls3_c00076{letter-spacing:0.085333pt;}
.ls1_c00076{letter-spacing:0.320000pt;}
.ls0_c00076{letter-spacing:0.426667pt;}
.ls5_c00076{letter-spacing:0.640000pt;}
.ls2_c00076{letter-spacing:7.338667pt;}
.ws1_c00076{word-spacing:-15.168000pt;}
.ws2_c00076{word-spacing:-14.528000pt;}
.ws4_c00076{word-spacing:-14.208000pt;}
.ws7_c00076{word-spacing:-12.213333pt;}
.ws0_c00076{word-spacing:-10.112000pt;}
.ws6_c00076{word-spacing:-9.770667pt;}
.ws5_c00076{word-spacing:-9.685333pt;}
.ws3_c00076{word-spacing:-8.469824pt;}
.ws23_c00076{word-spacing:-2.240000pt;}
.wse_c00076{word-spacing:-0.960000pt;}
.ws22_c00076{word-spacing:-0.896000pt;}
.ws12_c00076{word-spacing:-0.576000pt;}
.ws21_c00076{word-spacing:-0.064000pt;}
.ws8_c00076{word-spacing:0.000000pt;}
.ws26_c00076{word-spacing:0.064000pt;}
.ws11_c00076{word-spacing:0.192000pt;}
.ws2d_c00076{word-spacing:0.213333pt;}
.ws14_c00076{word-spacing:0.512000pt;}
.ws24_c00076{word-spacing:0.576000pt;}
.wsf_c00076{word-spacing:0.960000pt;}
.ws25_c00076{word-spacing:1.856000pt;}
.ws10_c00076{word-spacing:2.752000pt;}
.wsc_c00076{word-spacing:2.880000pt;}
.wsa_c00076{word-spacing:3.264000pt;}
.ws20_c00076{word-spacing:3.456000pt;}
.wsd_c00076{word-spacing:3.840000pt;}
.ws17_c00076{word-spacing:4.032000pt;}
.ws13_c00076{word-spacing:4.160000pt;}
.ws2c_c00076{word-spacing:4.224000pt;}
.ws16_c00076{word-spacing:4.608000pt;}
.ws18_c00076{word-spacing:4.928000pt;}
.ws2b_c00076{word-spacing:5.162667pt;}
.ws9_c00076{word-spacing:5.248000pt;}
.ws1c_c00076{word-spacing:5.824000pt;}
.ws28_c00076{word-spacing:5.930667pt;}
.ws15_c00076{word-spacing:6.464000pt;}
.ws2a_c00076{word-spacing:6.741333pt;}
.wsb_c00076{word-spacing:6.912000pt;}
.ws29_c00076{word-spacing:7.296000pt;}
.ws27_c00076{word-spacing:8.277333pt;}
.ws1a_c00076{word-spacing:8.576000pt;}
.ws1b_c00076{word-spacing:8.640000pt;}
.ws1f_c00076{word-spacing:9.088000pt;}
.ws1e_c00076{word-spacing:9.280000pt;}
.ws1d_c00076{word-spacing:11.456000pt;}
.ws19_c00076{word-spacing:12.928000pt;}
._0_c00076{margin-left:-2449.560533pt;}
._3_c00076{margin-left:-6.208000pt;}
._8_c00076{margin-left:-3.711467pt;}
._5_c00076{margin-left:-2.738027pt;}
._1_c00076{margin-left:-1.194667pt;}
._2_c00076{width:0.981333pt;}
._4_c00076{width:2.005333pt;}
._6_c00076{width:3.754133pt;}
._7_c00076{width:5.504000pt;}
.fs2_c00076{font-size:37.312000pt;}
.fs0_c00076{font-size:42.666667pt;}
.fs3_c00076{font-size:53.333333pt;}
.fs1_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y28_c00076{bottom:99.214533pt;}
.y27_c00076{bottom:112.547867pt;}
.y26_c00076{bottom:125.881200pt;}
.y25_c00076{bottom:139.210933pt;}
.y24_c00076{bottom:160.106933pt;}
.y23_c00076{bottom:173.440267pt;}
.y22_c00076{bottom:186.773600pt;}
.y21_c00076{bottom:200.106933pt;}
.y20_c00076{bottom:213.440267pt;}
.y1f_c00076{bottom:261.971067pt;}
.y2f_c00076{bottom:281.900133pt;}
.y1e_c00076{bottom:283.971067pt;}
.y2e_c00076{bottom:298.433467pt;}
.y1d_c00076{bottom:305.971067pt;}
.y2d_c00076{bottom:314.966800pt;}
.y1c_c00076{bottom:327.971067pt;}
.y2c_c00076{bottom:331.500133pt;}
.y1b_c00076{bottom:349.971067pt;}
.y1a_c00076{bottom:371.971067pt;}
.y19_c00076{bottom:393.971067pt;}
.y18_c00076{bottom:415.971067pt;}
.y17_c00076{bottom:437.971067pt;}
.y16_c00076{bottom:459.971067pt;}
.y15_c00076{bottom:481.976400pt;}
.y14_c00076{bottom:503.976400pt;}
.y13_c00076{bottom:539.304400pt;}
.y12_c00076{bottom:561.304400pt;}
.y11_c00076{bottom:583.304400pt;}
.y10_c00076{bottom:605.304400pt;}
.yf_c00076{bottom:627.304400pt;}
.y2b_c00076{bottom:630.087067pt;}
.y2a_c00076{bottom:646.620400pt;}
.ye_c00076{bottom:649.304400pt;}
.y29_c00076{bottom:663.153733pt;}
.yd_c00076{bottom:671.309733pt;}
.yc_c00076{bottom:693.309733pt;}
.yb_c00076{bottom:715.309733pt;}
.ya_c00076{bottom:737.309733pt;}
.y9_c00076{bottom:759.309733pt;}
.y8_c00076{bottom:781.309733pt;}
.y7_c00076{bottom:816.637733pt;}
.y6_c00076{bottom:838.637733pt;}
.y5_c00076{bottom:860.637733pt;}
.y4_c00076{bottom:882.637733pt;}
.y3_c00076{bottom:904.637733pt;}
.y2_c00076{bottom:926.637733pt;}
.y1_c00076{bottom:972.089867pt;}
.h2_c00076{height:34.901333pt;}
.h5_c00076{height:34.915733pt;}
.h3_c00076{height:35.541333pt;}
.h7_c00076{height:43.200000pt;}
.h6_c00076{height:43.626667pt;}
.h4_c00076{height:52.352000pt;}
.h1_c00076{height:1009.333333pt;}
.h0_c00076{height:1009.338800pt;}
.w0_c00076{width:794.622400pt;}
.w1_c00076{width:794.666667pt;}
.x0_c00076{left:0.000000pt;}
.x4_c00076{left:114.334933pt;}
.x5_c00076{left:129.450533pt;}
.x2_c00076{left:167.166133pt;}
.x3_c00076{left:169.345200pt;}
.x6_c00076{left:475.418400pt;}
.x1_c00076{left:717.551733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_076424289f40187e441e529c.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.067000;font-style:normal;font-weight:normal;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_9e33d07533132bc35f6bb2d0.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.v2_c00077{vertical-align:19.980000px;}
.v1_c00077{vertical-align:23.976000px;}
.lsd_c00077{letter-spacing:-5.904000px;}
.lsb_c00077{letter-spacing:-0.864000px;}
.ls13_c00077{letter-spacing:-0.576000px;}
.lsa_c00077{letter-spacing:-0.360000px;}
.ls12_c00077{letter-spacing:-0.240000px;}
.lsc_c00077{letter-spacing:-0.209880px;}
.ls14_c00077{letter-spacing:-0.180000px;}
.ls11_c00077{letter-spacing:-0.069960px;}
.ls9_c00077{letter-spacing:0.000000px;}
.ls2_c00077{letter-spacing:0.072000px;}
.ls10_c00077{letter-spacing:0.300000px;}
.ls8_c00077{letter-spacing:0.336000px;}
.ls6_c00077{letter-spacing:0.360000px;}
.ls7_c00077{letter-spacing:0.420000px;}
.ls4_c00077{letter-spacing:0.432000px;}
.ls1_c00077{letter-spacing:0.504000px;}
.ls5_c00077{letter-spacing:0.600000px;}
.ls0_c00077{letter-spacing:0.720000px;}
.lse_c00077{letter-spacing:0.839520px;}
.ls3_c00077{letter-spacing:0.936000px;}
.lsf_c00077{letter-spacing:1.368000px;}
.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;}
}
.ws7_c00077{word-spacing:-17.712000px;}
.ws2_c00077{word-spacing:-16.344000px;}
.ws1_c00077{word-spacing:-15.984000px;}
.ws3_c00077{word-spacing:-15.480000px;}
.ws8_c00077{word-spacing:-13.620000px;}
.wsc_c00077{word-spacing:-13.440000px;}
.wsa_c00077{word-spacing:-10.896000px;}
.ws9_c00077{word-spacing:-10.656000px;}
.ws5_c00077{word-spacing:-10.440000px;}
.ws6_c00077{word-spacing:-10.368072px;}
.wsb_c00077{word-spacing:-10.320000px;}
.ws4_c00077{word-spacing:-9.318672px;}
.ws30_c00077{word-spacing:-2.520000px;}
.ws12_c00077{word-spacing:-2.232000px;}
.ws31_c00077{word-spacing:-2.064000px;}
.ws25_c00077{word-spacing:-1.920000px;}
.ws32_c00077{word-spacing:-1.728000px;}
.ws24_c00077{word-spacing:-1.080000px;}
.ws1c_c00077{word-spacing:-0.720000px;}
.ws17_c00077{word-spacing:-0.072000px;}
.wsd_c00077{word-spacing:0.000000px;}
.ws2c_c00077{word-spacing:0.069960px;}
.ws15_c00077{word-spacing:0.288000px;}
.ws11_c00077{word-spacing:0.432000px;}
.ws10_c00077{word-spacing:0.504000px;}
.ws18_c00077{word-spacing:0.648000px;}
.ws2f_c00077{word-spacing:1.368000px;}
.ws16_c00077{word-spacing:1.944000px;}
.ws29_c00077{word-spacing:2.760000px;}
.ws2a_c00077{word-spacing:3.060000px;}
.ws1a_c00077{word-spacing:3.600000px;}
.ws2d_c00077{word-spacing:3.816000px;}
.ws14_c00077{word-spacing:4.032000px;}
.ws1f_c00077{word-spacing:4.608000px;}
.ws23_c00077{word-spacing:5.256000px;}
.ws21_c00077{word-spacing:5.328000px;}
.ws19_c00077{word-spacing:5.472000px;}
.ws20_c00077{word-spacing:5.544000px;}
.ws2b_c00077{word-spacing:6.420000px;}
.ws1b_c00077{word-spacing:7.272000px;}
.wsf_c00077{word-spacing:7.488000px;}
.ws13_c00077{word-spacing:7.704000px;}
.ws27_c00077{word-spacing:7.740000px;}
.ws1d_c00077{word-spacing:8.064000px;}
.ws26_c00077{word-spacing:8.280000px;}
.ws22_c00077{word-spacing:8.928000px;}
.ws2e_c00077{word-spacing:9.360000px;}
.ws28_c00077{word-spacing:10.620000px;}
.ws1e_c00077{word-spacing:11.448000px;}
.wse_c00077{word-spacing:18.216000px;}
.ws0_c00077{word-spacing:1597.771200px;}
._5_c00077{margin-left:-6.156000px;}
._4_c00077{margin-left:-4.800000px;}
._0_c00077{margin-left:-2.112000px;}
._1_c00077{margin-left:-1.104000px;}
._2_c00077{width:1.296000px;}
._3_c00077{width:5.976000px;}
.fc0_c00077{color:rgb(35,31,32);}
.fs4_c00077{font-size:34.980000px;}
.fs2_c00077{font-size:41.976000px;}
.fs0_c00077{font-size:48.000000px;}
.fs3_c00077{font-size:60.000000px;}
.fs1_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y27_c00077{bottom:111.612300px;}
.y2d_c00077{bottom:114.544650px;}
.y2c_c00077{bottom:133.144650px;}
.y26_c00077{bottom:135.116250px;}
.y2b_c00077{bottom:151.744650px;}
.y25_c00077{bottom:158.624250px;}
.y2a_c00077{bottom:170.344650px;}
.y24_c00077{bottom:173.624250px;}
.y29_c00077{bottom:188.944650px;}
.y28_c00077{bottom:207.544650px;}
.y23_c00077{bottom:217.213650px;}
.y22_c00077{bottom:241.963650px;}
.y21_c00077{bottom:266.713650px;}
.y20_c00077{bottom:291.463650px;}
.y1f_c00077{bottom:331.213650px;}
.y1e_c00077{bottom:352.213650px;}
.y1d_c00077{bottom:373.213650px;}
.y1c_c00077{bottom:394.213650px;}
.y1b_c00077{bottom:415.213650px;}
.y1a_c00077{bottom:436.213650px;}
.y19_c00077{bottom:457.213650px;}
.y18_c00077{bottom:478.213650px;}
.y17_c00077{bottom:507.717450px;}
.y16_c00077{bottom:532.467450px;}
.y15_c00077{bottom:557.217450px;}
.y14_c00077{bottom:581.967450px;}
.y13_c00077{bottom:606.717450px;}
.y12_c00077{bottom:631.467450px;}
.y11_c00077{bottom:656.223450px;}
.y10_c00077{bottom:680.973450px;}
.yf_c00077{bottom:705.723450px;}
.ye_c00077{bottom:730.473450px;}
.yd_c00077{bottom:755.223450px;}
.yc_c00077{bottom:779.973450px;}
.yb_c00077{bottom:804.723450px;}
.ya_c00077{bottom:829.473450px;}
.y9_c00077{bottom:854.223450px;}
.y8_c00077{bottom:893.967450px;}
.y7_c00077{bottom:918.717450px;}
.y6_c00077{bottom:943.467450px;}
.y5_c00077{bottom:968.217450px;}
.y4_c00077{bottom:992.967450px;}
.y3_c00077{bottom:1017.717450px;}
.y2_c00077{bottom:1042.467450px;}
.y1_c00077{bottom:1093.601100px;}
.h2_c00077{height:39.264000px;}
.h5_c00077{height:39.280200px;}
.h6_c00077{height:48.600000px;}
.h4_c00077{height:49.080000px;}
.h3_c00077{height:58.896000px;}
.h1_c00077{height:1135.500000px;}
.h0_c00077{height:1135.506150px;}
.w0_c00077{width:893.950200px;}
.w1_c00077{width:894.000000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:77.603100px;}
.x2_c00077{left:379.492800px;}
.x4_c00077{left:396.500700px;}
.x3_c00077{left:400.752750px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.v2_c00077{vertical-align:17.760000pt;}
.v1_c00077{vertical-align:21.312000pt;}
.lsd_c00077{letter-spacing:-5.248000pt;}
.lsb_c00077{letter-spacing:-0.768000pt;}
.ls13_c00077{letter-spacing:-0.512000pt;}
.lsa_c00077{letter-spacing:-0.320000pt;}
.ls12_c00077{letter-spacing:-0.213333pt;}
.lsc_c00077{letter-spacing:-0.186560pt;}
.ls14_c00077{letter-spacing:-0.160000pt;}
.ls11_c00077{letter-spacing:-0.062187pt;}
.ls9_c00077{letter-spacing:0.000000pt;}
.ls2_c00077{letter-spacing:0.064000pt;}
.ls10_c00077{letter-spacing:0.266667pt;}
.ls8_c00077{letter-spacing:0.298667pt;}
.ls6_c00077{letter-spacing:0.320000pt;}
.ls7_c00077{letter-spacing:0.373333pt;}
.ls4_c00077{letter-spacing:0.384000pt;}
.ls1_c00077{letter-spacing:0.448000pt;}
.ls5_c00077{letter-spacing:0.533333pt;}
.ls0_c00077{letter-spacing:0.640000pt;}
.lse_c00077{letter-spacing:0.746240pt;}
.ls3_c00077{letter-spacing:0.832000pt;}
.lsf_c00077{letter-spacing:1.216000pt;}
.ws7_c00077{word-spacing:-15.744000pt;}
.ws2_c00077{word-spacing:-14.528000pt;}
.ws1_c00077{word-spacing:-14.208000pt;}
.ws3_c00077{word-spacing:-13.760000pt;}
.ws8_c00077{word-spacing:-12.106667pt;}
.wsc_c00077{word-spacing:-11.946667pt;}
.wsa_c00077{word-spacing:-9.685333pt;}
.ws9_c00077{word-spacing:-9.472000pt;}
.ws5_c00077{word-spacing:-9.280000pt;}
.ws6_c00077{word-spacing:-9.216064pt;}
.wsb_c00077{word-spacing:-9.173333pt;}
.ws4_c00077{word-spacing:-8.283264pt;}
.ws30_c00077{word-spacing:-2.240000pt;}
.ws12_c00077{word-spacing:-1.984000pt;}
.ws31_c00077{word-spacing:-1.834667pt;}
.ws25_c00077{word-spacing:-1.706667pt;}
.ws32_c00077{word-spacing:-1.536000pt;}
.ws24_c00077{word-spacing:-0.960000pt;}
.ws1c_c00077{word-spacing:-0.640000pt;}
.ws17_c00077{word-spacing:-0.064000pt;}
.wsd_c00077{word-spacing:0.000000pt;}
.ws2c_c00077{word-spacing:0.062187pt;}
.ws15_c00077{word-spacing:0.256000pt;}
.ws11_c00077{word-spacing:0.384000pt;}
.ws10_c00077{word-spacing:0.448000pt;}
.ws18_c00077{word-spacing:0.576000pt;}
.ws2f_c00077{word-spacing:1.216000pt;}
.ws16_c00077{word-spacing:1.728000pt;}
.ws29_c00077{word-spacing:2.453333pt;}
.ws2a_c00077{word-spacing:2.720000pt;}
.ws1a_c00077{word-spacing:3.200000pt;}
.ws2d_c00077{word-spacing:3.392000pt;}
.ws14_c00077{word-spacing:3.584000pt;}
.ws1f_c00077{word-spacing:4.096000pt;}
.ws23_c00077{word-spacing:4.672000pt;}
.ws21_c00077{word-spacing:4.736000pt;}
.ws19_c00077{word-spacing:4.864000pt;}
.ws20_c00077{word-spacing:4.928000pt;}
.ws2b_c00077{word-spacing:5.706667pt;}
.ws1b_c00077{word-spacing:6.464000pt;}
.wsf_c00077{word-spacing:6.656000pt;}
.ws13_c00077{word-spacing:6.848000pt;}
.ws27_c00077{word-spacing:6.880000pt;}
.ws1d_c00077{word-spacing:7.168000pt;}
.ws26_c00077{word-spacing:7.360000pt;}
.ws22_c00077{word-spacing:7.936000pt;}
.ws2e_c00077{word-spacing:8.320000pt;}
.ws28_c00077{word-spacing:9.440000pt;}
.ws1e_c00077{word-spacing:10.176000pt;}
.wse_c00077{word-spacing:16.192000pt;}
.ws0_c00077{word-spacing:1420.241067pt;}
._5_c00077{margin-left:-5.472000pt;}
._4_c00077{margin-left:-4.266667pt;}
._0_c00077{margin-left:-1.877333pt;}
._1_c00077{margin-left:-0.981333pt;}
._2_c00077{width:1.152000pt;}
._3_c00077{width:5.312000pt;}
.fs4_c00077{font-size:31.093333pt;}
.fs2_c00077{font-size:37.312000pt;}
.fs0_c00077{font-size:42.666667pt;}
.fs3_c00077{font-size:53.333333pt;}
.fs1_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y27_c00077{bottom:99.210933pt;}
.y2d_c00077{bottom:101.817467pt;}
.y2c_c00077{bottom:118.350800pt;}
.y26_c00077{bottom:120.103333pt;}
.y2b_c00077{bottom:134.884133pt;}
.y25_c00077{bottom:140.999333pt;}
.y2a_c00077{bottom:151.417467pt;}
.y24_c00077{bottom:154.332667pt;}
.y29_c00077{bottom:167.950800pt;}
.y28_c00077{bottom:184.484133pt;}
.y23_c00077{bottom:193.078800pt;}
.y22_c00077{bottom:215.078800pt;}
.y21_c00077{bottom:237.078800pt;}
.y20_c00077{bottom:259.078800pt;}
.y1f_c00077{bottom:294.412133pt;}
.y1e_c00077{bottom:313.078800pt;}
.y1d_c00077{bottom:331.745467pt;}
.y1c_c00077{bottom:350.412133pt;}
.y1b_c00077{bottom:369.078800pt;}
.y1a_c00077{bottom:387.745467pt;}
.y19_c00077{bottom:406.412133pt;}
.y18_c00077{bottom:425.078800pt;}
.y17_c00077{bottom:451.304400pt;}
.y16_c00077{bottom:473.304400pt;}
.y15_c00077{bottom:495.304400pt;}
.y14_c00077{bottom:517.304400pt;}
.y13_c00077{bottom:539.304400pt;}
.y12_c00077{bottom:561.304400pt;}
.y11_c00077{bottom:583.309733pt;}
.y10_c00077{bottom:605.309733pt;}
.yf_c00077{bottom:627.309733pt;}
.ye_c00077{bottom:649.309733pt;}
.yd_c00077{bottom:671.309733pt;}
.yc_c00077{bottom:693.309733pt;}
.yb_c00077{bottom:715.309733pt;}
.ya_c00077{bottom:737.309733pt;}
.y9_c00077{bottom:759.309733pt;}
.y8_c00077{bottom:794.637733pt;}
.y7_c00077{bottom:816.637733pt;}
.y6_c00077{bottom:838.637733pt;}
.y5_c00077{bottom:860.637733pt;}
.y4_c00077{bottom:882.637733pt;}
.y3_c00077{bottom:904.637733pt;}
.y2_c00077{bottom:926.637733pt;}
.y1_c00077{bottom:972.089867pt;}
.h2_c00077{height:34.901333pt;}
.h5_c00077{height:34.915733pt;}
.h6_c00077{height:43.200000pt;}
.h4_c00077{height:43.626667pt;}
.h3_c00077{height:52.352000pt;}
.h1_c00077{height:1009.333333pt;}
.h0_c00077{height:1009.338800pt;}
.w0_c00077{width:794.622400pt;}
.w1_c00077{width:794.666667pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:68.980533pt;}
.x2_c00077{left:337.326933pt;}
.x4_c00077{left:352.445067pt;}
.x3_c00077{left:356.224667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19850423944eeb55e078c157.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.082000;font-style:normal;font-weight:normal;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_8bc4212fd921cabc19811f3f.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.067000;font-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_c00078{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.v2_c00078{vertical-align:20.937000px;}
.v1_c00078{vertical-align:23.976000px;}
.lsd_c00078{letter-spacing:-4.800000px;}
.lsa_c00078{letter-spacing:-0.648000px;}
.ls6_c00078{letter-spacing:-0.360000px;}
.ls9_c00078{letter-spacing:-0.288000px;}
.lsb_c00078{letter-spacing:-0.251856px;}
.ls7_c00078{letter-spacing:-0.209880px;}
.ls5_c00078{letter-spacing:0.000000px;}
.ls8_c00078{letter-spacing:0.167904px;}
.ls2_c00078{letter-spacing:0.288000px;}
.ls3_c00078{letter-spacing:0.360000px;}
.lsc_c00078{letter-spacing:0.367290px;}
.ls0_c00078{letter-spacing:0.480000px;}
.ls1_c00078{letter-spacing:0.630000px;}
.ls4_c00078{letter-spacing:1.152000px;}
.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;}
}
.ws7_c00078{word-spacing:-16.704000px;}
.ws6_c00078{word-spacing:-16.344000px;}
.ws2_c00078{word-spacing:-16.200000px;}
.ws5_c00078{word-spacing:-14.301000px;}
.ws0_c00078{word-spacing:-12.048000px;}
.ws9_c00078{word-spacing:-10.896000px;}
.wsa_c00078{word-spacing:-10.608000px;}
.ws1_c00078{word-spacing:-9.696456px;}
.ws3_c00078{word-spacing:-9.528552px;}
.ws4_c00078{word-spacing:-9.276696px;}
.ws8_c00078{word-spacing:-6.096000px;}
.ws16_c00078{word-spacing:-2.592000px;}
.ws1d_c00078{word-spacing:-2.376000px;}
.ws14_c00078{word-spacing:-2.304000px;}
.ws25_c00078{word-spacing:-0.912000px;}
.ws24_c00078{word-spacing:-0.864000px;}
.ws19_c00078{word-spacing:-0.720000px;}
.ws10_c00078{word-spacing:-0.432000px;}
.ws22_c00078{word-spacing:-0.367290px;}
.ws21_c00078{word-spacing:-0.252000px;}
.wsb_c00078{word-spacing:0.000000px;}
.wsf_c00078{word-spacing:0.209880px;}
.ws15_c00078{word-spacing:0.288000px;}
.wse_c00078{word-spacing:0.360000px;}
.ws13_c00078{word-spacing:0.432000px;}
.ws1e_c00078{word-spacing:0.936000px;}
.ws1a_c00078{word-spacing:1.584000px;}
.ws1f_c00078{word-spacing:1.656000px;}
.ws18_c00078{word-spacing:2.016000px;}
.ws23_c00078{word-spacing:2.160000px;}
.ws1b_c00078{word-spacing:2.232000px;}
.ws20_c00078{word-spacing:2.520000px;}
.ws1c_c00078{word-spacing:3.384000px;}
.wsd_c00078{word-spacing:4.176000px;}
.ws17_c00078{word-spacing:4.896000px;}
.ws11_c00078{word-spacing:6.696000px;}
.wsc_c00078{word-spacing:7.128000px;}
.ws12_c00078{word-spacing:7.704000px;}
._0_c00078{margin-left:-2756.428200px;}
._3_c00078{margin-left:-4.512000px;}
._4_c00078{margin-left:-2.472000px;}
._1_c00078{margin-left:-1.344000px;}
._2_c00078{width:1.104000px;}
._5_c00078{width:2.146944px;}
._7_c00078{width:3.856800px;}
._6_c00078{width:5.919600px;}
._9_c00078{width:7.488000px;}
._8_c00078{width:13.503600px;}
.fc0_c00078{color:rgb(35,31,32);}
.fs4_c00078{font-size:36.729000px;}
.fs2_c00078{font-size:41.976000px;}
.fs0_c00078{font-size:48.000000px;}
.fs3_c00078{font-size:63.000000px;}
.fs1_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.y25_c00078{bottom:111.612300px;}
.y24_c00078{bottom:135.116100px;}
.y23_c00078{bottom:158.620050px;}
.y22_c00078{bottom:182.124000px;}
.y21_c00078{bottom:205.632000px;}
.y20_c00078{bottom:220.632000px;}
.y1f_c00078{bottom:267.463650px;}
.y1e_c00078{bottom:292.213650px;}
.y1d_c00078{bottom:316.963650px;}
.y1c_c00078{bottom:356.724150px;}
.y1b_c00078{bottom:377.718900px;}
.y1a_c00078{bottom:398.713650px;}
.y19_c00078{bottom:428.223450px;}
.y18_c00078{bottom:452.973450px;}
.y17_c00078{bottom:477.723450px;}
.y16_c00078{bottom:502.473450px;}
.y15_c00078{bottom:542.217450px;}
.y14_c00078{bottom:566.967450px;}
.y13_c00078{bottom:591.717450px;}
.y12_c00078{bottom:616.473450px;}
.y11_c00078{bottom:641.223450px;}
.y10_c00078{bottom:665.973450px;}
.yf_c00078{bottom:690.723450px;}
.ye_c00078{bottom:715.473450px;}
.yd_c00078{bottom:740.223450px;}
.yc_c00078{bottom:764.973450px;}
.yb_c00078{bottom:789.723450px;}
.ya_c00078{bottom:829.467450px;}
.y9_c00078{bottom:854.217450px;}
.y8_c00078{bottom:878.967450px;}
.y7_c00078{bottom:903.717450px;}
.y6_c00078{bottom:928.467450px;}
.y5_c00078{bottom:968.217450px;}
.y4_c00078{bottom:992.967450px;}
.y3_c00078{bottom:1017.717450px;}
.y2_c00078{bottom:1042.467450px;}
.y1_c00078{bottom:1093.601100px;}
.h2_c00078{height:39.264000px;}
.h6_c00078{height:39.280200px;}
.h7_c00078{height:39.280800px;}
.h3_c00078{height:39.984000px;}
.h5_c00078{height:51.534000px;}
.h4_c00078{height:58.896000px;}
.h1_c00078{height:1135.500000px;}
.h0_c00078{height:1135.506150px;}
.w0_c00078{width:893.950200px;}
.w1_c00078{width:894.000000px;}
.x0_c00078{left:0.000000px;}
.x4_c00078{left:128.626800px;}
.x6_c00078{left:145.634550px;}
.x5_c00078{left:149.886600px;}
.x2_c00078{left:188.061900px;}
.x3_c00078{left:190.513350px;}
.x1_c00078{left:806.669850px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.v2_c00078{vertical-align:18.610667pt;}
.v1_c00078{vertical-align:21.312000pt;}
.lsd_c00078{letter-spacing:-4.266667pt;}
.lsa_c00078{letter-spacing:-0.576000pt;}
.ls6_c00078{letter-spacing:-0.320000pt;}
.ls9_c00078{letter-spacing:-0.256000pt;}
.lsb_c00078{letter-spacing:-0.223872pt;}
.ls7_c00078{letter-spacing:-0.186560pt;}
.ls5_c00078{letter-spacing:0.000000pt;}
.ls8_c00078{letter-spacing:0.149248pt;}
.ls2_c00078{letter-spacing:0.256000pt;}
.ls3_c00078{letter-spacing:0.320000pt;}
.lsc_c00078{letter-spacing:0.326480pt;}
.ls0_c00078{letter-spacing:0.426667pt;}
.ls1_c00078{letter-spacing:0.560000pt;}
.ls4_c00078{letter-spacing:1.024000pt;}
.ws7_c00078{word-spacing:-14.848000pt;}
.ws6_c00078{word-spacing:-14.528000pt;}
.ws2_c00078{word-spacing:-14.400000pt;}
.ws5_c00078{word-spacing:-12.712000pt;}
.ws0_c00078{word-spacing:-10.709333pt;}
.ws9_c00078{word-spacing:-9.685333pt;}
.wsa_c00078{word-spacing:-9.429333pt;}
.ws1_c00078{word-spacing:-8.619072pt;}
.ws3_c00078{word-spacing:-8.469824pt;}
.ws4_c00078{word-spacing:-8.245952pt;}
.ws8_c00078{word-spacing:-5.418667pt;}
.ws16_c00078{word-spacing:-2.304000pt;}
.ws1d_c00078{word-spacing:-2.112000pt;}
.ws14_c00078{word-spacing:-2.048000pt;}
.ws25_c00078{word-spacing:-0.810667pt;}
.ws24_c00078{word-spacing:-0.768000pt;}
.ws19_c00078{word-spacing:-0.640000pt;}
.ws10_c00078{word-spacing:-0.384000pt;}
.ws22_c00078{word-spacing:-0.326480pt;}
.ws21_c00078{word-spacing:-0.224000pt;}
.wsb_c00078{word-spacing:0.000000pt;}
.wsf_c00078{word-spacing:0.186560pt;}
.ws15_c00078{word-spacing:0.256000pt;}
.wse_c00078{word-spacing:0.320000pt;}
.ws13_c00078{word-spacing:0.384000pt;}
.ws1e_c00078{word-spacing:0.832000pt;}
.ws1a_c00078{word-spacing:1.408000pt;}
.ws1f_c00078{word-spacing:1.472000pt;}
.ws18_c00078{word-spacing:1.792000pt;}
.ws23_c00078{word-spacing:1.920000pt;}
.ws1b_c00078{word-spacing:1.984000pt;}
.ws20_c00078{word-spacing:2.240000pt;}
.ws1c_c00078{word-spacing:3.008000pt;}
.wsd_c00078{word-spacing:3.712000pt;}
.ws17_c00078{word-spacing:4.352000pt;}
.ws11_c00078{word-spacing:5.952000pt;}
.wsc_c00078{word-spacing:6.336000pt;}
.ws12_c00078{word-spacing:6.848000pt;}
._0_c00078{margin-left:-2450.158400pt;}
._3_c00078{margin-left:-4.010667pt;}
._4_c00078{margin-left:-2.197333pt;}
._1_c00078{margin-left:-1.194667pt;}
._2_c00078{width:0.981333pt;}
._5_c00078{width:1.908395pt;}
._7_c00078{width:3.428267pt;}
._6_c00078{width:5.261867pt;}
._9_c00078{width:6.656000pt;}
._8_c00078{width:12.003200pt;}
.fs4_c00078{font-size:32.648000pt;}
.fs2_c00078{font-size:37.312000pt;}
.fs0_c00078{font-size:42.666667pt;}
.fs3_c00078{font-size:56.000000pt;}
.fs1_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y25_c00078{bottom:99.210933pt;}
.y24_c00078{bottom:120.103200pt;}
.y23_c00078{bottom:140.995600pt;}
.y22_c00078{bottom:161.888000pt;}
.y21_c00078{bottom:182.784000pt;}
.y20_c00078{bottom:196.117333pt;}
.y1f_c00078{bottom:237.745467pt;}
.y1e_c00078{bottom:259.745467pt;}
.y1d_c00078{bottom:281.745467pt;}
.y1c_c00078{bottom:317.088133pt;}
.y1b_c00078{bottom:335.750133pt;}
.y1a_c00078{bottom:354.412133pt;}
.y19_c00078{bottom:380.643067pt;}
.y18_c00078{bottom:402.643067pt;}
.y17_c00078{bottom:424.643067pt;}
.y16_c00078{bottom:446.643067pt;}
.y15_c00078{bottom:481.971067pt;}
.y14_c00078{bottom:503.971067pt;}
.y13_c00078{bottom:525.971067pt;}
.y12_c00078{bottom:547.976400pt;}
.y11_c00078{bottom:569.976400pt;}
.y10_c00078{bottom:591.976400pt;}
.yf_c00078{bottom:613.976400pt;}
.ye_c00078{bottom:635.976400pt;}
.yd_c00078{bottom:657.976400pt;}
.yc_c00078{bottom:679.976400pt;}
.yb_c00078{bottom:701.976400pt;}
.ya_c00078{bottom:737.304400pt;}
.y9_c00078{bottom:759.304400pt;}
.y8_c00078{bottom:781.304400pt;}
.y7_c00078{bottom:803.304400pt;}
.y6_c00078{bottom:825.304400pt;}
.y5_c00078{bottom:860.637733pt;}
.y4_c00078{bottom:882.637733pt;}
.y3_c00078{bottom:904.637733pt;}
.y2_c00078{bottom:926.637733pt;}
.y1_c00078{bottom:972.089867pt;}
.h2_c00078{height:34.901333pt;}
.h6_c00078{height:34.915733pt;}
.h7_c00078{height:34.916267pt;}
.h3_c00078{height:35.541333pt;}
.h5_c00078{height:45.808000pt;}
.h4_c00078{height:52.352000pt;}
.h1_c00078{height:1009.333333pt;}
.h0_c00078{height:1009.338800pt;}
.w0_c00078{width:794.622400pt;}
.w1_c00078{width:794.666667pt;}
.x0_c00078{left:0.000000pt;}
.x4_c00078{left:114.334933pt;}
.x6_c00078{left:129.452933pt;}
.x5_c00078{left:133.232533pt;}
.x2_c00078{left:167.166133pt;}
.x3_c00078{left:169.345200pt;}
.x1_c00078{left:717.039867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b0ad6c4c73fa4d38bd7d06a.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_8bc4212fd921cabc19811f3f.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:20.916000px;}
.v2_c00079{vertical-align:23.976000px;}
.lse_c00079{letter-spacing:-4.800000px;}
.lsd_c00079{letter-spacing:-0.936000px;}
.lsc_c00079{letter-spacing:-0.864000px;}
.ls8_c00079{letter-spacing:-0.360000px;}
.ls5_c00079{letter-spacing:-0.315000px;}
.lsb_c00079{letter-spacing:-0.216000px;}
.lsa_c00079{letter-spacing:-0.209880px;}
.ls4_c00079{letter-spacing:0.000000px;}
.ls9_c00079{letter-spacing:0.144000px;}
.ls6_c00079{letter-spacing:0.183645px;}
.ls2_c00079{letter-spacing:0.216000px;}
.ls0_c00079{letter-spacing:0.315000px;}
.ls1_c00079{letter-spacing:0.360000px;}
.ls7_c00079{letter-spacing:0.671616px;}
.ls3_c00079{letter-spacing:0.768000px;}
.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;}
}
.ws4_c00079{word-spacing:-16.488000px;}
.ws2_c00079{word-spacing:-16.344000px;}
.ws6_c00079{word-spacing:-16.128000px;}
.ws5_c00079{word-spacing:-15.984000px;}
.ws8_c00079{word-spacing:-15.552000px;}
.ws7_c00079{word-spacing:-15.480000px;}
.ws1_c00079{word-spacing:-14.301000px;}
.ws9_c00079{word-spacing:-10.896000px;}
.ws3_c00079{word-spacing:-9.528552px;}
.wsa_c00079{word-spacing:-6.096000px;}
.ws21_c00079{word-spacing:-3.024000px;}
.ws1a_c00079{word-spacing:-2.880000px;}
.wsc_c00079{word-spacing:-2.583000px;}
.ws24_c00079{word-spacing:-2.160000px;}
.ws16_c00079{word-spacing:-2.016000px;}
.ws20_c00079{word-spacing:-1.872000px;}
.ws12_c00079{word-spacing:-1.764000px;}
.ws11_c00079{word-spacing:-1.197000px;}
.wsd_c00079{word-spacing:-0.945000px;}
.ws1c_c00079{word-spacing:-0.864000px;}
.ws17_c00079{word-spacing:-0.671616px;}
.wsf_c00079{word-spacing:-0.630000px;}
.wse_c00079{word-spacing:-0.441000px;}
.ws10_c00079{word-spacing:-0.183645px;}
.wsb_c00079{word-spacing:0.000000px;}
.ws1b_c00079{word-spacing:0.209880px;}
.ws13_c00079{word-spacing:1.440000px;}
.ws22_c00079{word-spacing:1.800000px;}
.ws1f_c00079{word-spacing:1.944000px;}
.ws1d_c00079{word-spacing:2.160000px;}
.ws14_c00079{word-spacing:2.304000px;}
.ws18_c00079{word-spacing:2.808000px;}
.ws1e_c00079{word-spacing:3.672000px;}
.ws15_c00079{word-spacing:6.696000px;}
.ws23_c00079{word-spacing:7.200000px;}
.ws19_c00079{word-spacing:7.344000px;}
.ws0_c00079{word-spacing:1598.059200px;}
._6_c00079{margin-left:-6.504408px;}
._5_c00079{margin-left:-5.158200px;}
._3_c00079{margin-left:-3.369000px;}
._0_c00079{margin-left:-2.112000px;}
._1_c00079{margin-left:-1.104000px;}
._2_c00079{width:1.047000px;}
._4_c00079{width:2.454000px;}
._9_c00079{width:4.278000px;}
._8_c00079{width:5.307000px;}
._7_c00079{width:8.463600px;}
.fc0_c00079{color:rgb(35,31,32);}
.fs2_c00079{font-size:36.729000px;}
.fs4_c00079{font-size:41.976000px;}
.fs0_c00079{font-size:48.000000px;}
.fs1_c00079{font-size:63.000000px;}
.fs3_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y24_c00079{bottom:111.612300px;}
.y23_c00079{bottom:135.116250px;}
.y22_c00079{bottom:158.620200px;}
.y21_c00079{bottom:182.124150px;}
.y20_c00079{bottom:205.628100px;}
.y1f_c00079{bottom:229.132050px;}
.y1e_c00079{bottom:252.640050px;}
.y1d_c00079{bottom:303.605400px;}
.y1c_c00079{bottom:328.355400px;}
.y1b_c00079{bottom:368.099400px;}
.y1a_c00079{bottom:392.849400px;}
.y19_c00079{bottom:417.599400px;}
.y18_c00079{bottom:442.349400px;}
.y17_c00079{bottom:482.099400px;}
.y16_c00079{bottom:506.849400px;}
.y15_c00079{bottom:531.599400px;}
.y14_c00079{bottom:556.349400px;}
.y13_c00079{bottom:581.099400px;}
.y12_c00079{bottom:620.849400px;}
.y11_c00079{bottom:645.599400px;}
.y10_c00079{bottom:670.349400px;}
.yf_c00079{bottom:710.099400px;}
.ye_c00079{bottom:734.849400px;}
.yd_c00079{bottom:759.599400px;}
.yc_c00079{bottom:784.349400px;}
.yb_c00079{bottom:809.099400px;}
.ya_c00079{bottom:848.865150px;}
.y9_c00079{bottom:869.859900px;}
.y8_c00079{bottom:890.854650px;}
.y7_c00079{bottom:911.849400px;}
.y6_c00079{bottom:941.353350px;}
.y5_c00079{bottom:981.119100px;}
.y4_c00079{bottom:1002.113850px;}
.y3_c00079{bottom:1023.108600px;}
.y2_c00079{bottom:1044.103350px;}
.y1_c00079{bottom:1093.601100px;}
.h2_c00079{height:39.264000px;}
.h5_c00079{height:39.280200px;}
.h3_c00079{height:51.534000px;}
.h4_c00079{height:58.896000px;}
.h1_c00079{height:1135.500000px;}
.h0_c00079{height:1135.506150px;}
.w0_c00079{width:893.950200px;}
.w1_c00079{width:894.000000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:77.603100px;}
.x2_c00079{left:98.862900px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:18.592000pt;}
.v2_c00079{vertical-align:21.312000pt;}
.lse_c00079{letter-spacing:-4.266667pt;}
.lsd_c00079{letter-spacing:-0.832000pt;}
.lsc_c00079{letter-spacing:-0.768000pt;}
.ls8_c00079{letter-spacing:-0.320000pt;}
.ls5_c00079{letter-spacing:-0.280000pt;}
.lsb_c00079{letter-spacing:-0.192000pt;}
.lsa_c00079{letter-spacing:-0.186560pt;}
.ls4_c00079{letter-spacing:0.000000pt;}
.ls9_c00079{letter-spacing:0.128000pt;}
.ls6_c00079{letter-spacing:0.163240pt;}
.ls2_c00079{letter-spacing:0.192000pt;}
.ls0_c00079{letter-spacing:0.280000pt;}
.ls1_c00079{letter-spacing:0.320000pt;}
.ls7_c00079{letter-spacing:0.596992pt;}
.ls3_c00079{letter-spacing:0.682667pt;}
.ws4_c00079{word-spacing:-14.656000pt;}
.ws2_c00079{word-spacing:-14.528000pt;}
.ws6_c00079{word-spacing:-14.336000pt;}
.ws5_c00079{word-spacing:-14.208000pt;}
.ws8_c00079{word-spacing:-13.824000pt;}
.ws7_c00079{word-spacing:-13.760000pt;}
.ws1_c00079{word-spacing:-12.712000pt;}
.ws9_c00079{word-spacing:-9.685333pt;}
.ws3_c00079{word-spacing:-8.469824pt;}
.wsa_c00079{word-spacing:-5.418667pt;}
.ws21_c00079{word-spacing:-2.688000pt;}
.ws1a_c00079{word-spacing:-2.560000pt;}
.wsc_c00079{word-spacing:-2.296000pt;}
.ws24_c00079{word-spacing:-1.920000pt;}
.ws16_c00079{word-spacing:-1.792000pt;}
.ws20_c00079{word-spacing:-1.664000pt;}
.ws12_c00079{word-spacing:-1.568000pt;}
.ws11_c00079{word-spacing:-1.064000pt;}
.wsd_c00079{word-spacing:-0.840000pt;}
.ws1c_c00079{word-spacing:-0.768000pt;}
.ws17_c00079{word-spacing:-0.596992pt;}
.wsf_c00079{word-spacing:-0.560000pt;}
.wse_c00079{word-spacing:-0.392000pt;}
.ws10_c00079{word-spacing:-0.163240pt;}
.wsb_c00079{word-spacing:0.000000pt;}
.ws1b_c00079{word-spacing:0.186560pt;}
.ws13_c00079{word-spacing:1.280000pt;}
.ws22_c00079{word-spacing:1.600000pt;}
.ws1f_c00079{word-spacing:1.728000pt;}
.ws1d_c00079{word-spacing:1.920000pt;}
.ws14_c00079{word-spacing:2.048000pt;}
.ws18_c00079{word-spacing:2.496000pt;}
.ws1e_c00079{word-spacing:3.264000pt;}
.ws15_c00079{word-spacing:5.952000pt;}
.ws23_c00079{word-spacing:6.400000pt;}
.ws19_c00079{word-spacing:6.528000pt;}
.ws0_c00079{word-spacing:1420.497067pt;}
._6_c00079{margin-left:-5.781696pt;}
._5_c00079{margin-left:-4.585067pt;}
._3_c00079{margin-left:-2.994667pt;}
._0_c00079{margin-left:-1.877333pt;}
._1_c00079{margin-left:-0.981333pt;}
._2_c00079{width:0.930667pt;}
._4_c00079{width:2.181333pt;}
._9_c00079{width:3.802667pt;}
._8_c00079{width:4.717333pt;}
._7_c00079{width:7.523200pt;}
.fs2_c00079{font-size:32.648000pt;}
.fs4_c00079{font-size:37.312000pt;}
.fs0_c00079{font-size:42.666667pt;}
.fs1_c00079{font-size:56.000000pt;}
.fs3_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y24_c00079{bottom:99.210933pt;}
.y23_c00079{bottom:120.103333pt;}
.y22_c00079{bottom:140.995733pt;}
.y21_c00079{bottom:161.888133pt;}
.y20_c00079{bottom:182.780533pt;}
.y1f_c00079{bottom:203.672933pt;}
.y1e_c00079{bottom:224.568933pt;}
.y1d_c00079{bottom:269.871467pt;}
.y1c_c00079{bottom:291.871467pt;}
.y1b_c00079{bottom:327.199467pt;}
.y1a_c00079{bottom:349.199467pt;}
.y19_c00079{bottom:371.199467pt;}
.y18_c00079{bottom:393.199467pt;}
.y17_c00079{bottom:428.532800pt;}
.y16_c00079{bottom:450.532800pt;}
.y15_c00079{bottom:472.532800pt;}
.y14_c00079{bottom:494.532800pt;}
.y13_c00079{bottom:516.532800pt;}
.y12_c00079{bottom:551.866133pt;}
.y11_c00079{bottom:573.866133pt;}
.y10_c00079{bottom:595.866133pt;}
.yf_c00079{bottom:631.199467pt;}
.ye_c00079{bottom:653.199467pt;}
.yd_c00079{bottom:675.199467pt;}
.yc_c00079{bottom:697.199467pt;}
.yb_c00079{bottom:719.199467pt;}
.ya_c00079{bottom:754.546800pt;}
.y9_c00079{bottom:773.208800pt;}
.y8_c00079{bottom:791.870800pt;}
.y7_c00079{bottom:810.532800pt;}
.y6_c00079{bottom:836.758533pt;}
.y5_c00079{bottom:872.105867pt;}
.y4_c00079{bottom:890.767867pt;}
.y3_c00079{bottom:909.429867pt;}
.y2_c00079{bottom:928.091867pt;}
.y1_c00079{bottom:972.089867pt;}
.h2_c00079{height:34.901333pt;}
.h5_c00079{height:34.915733pt;}
.h3_c00079{height:45.808000pt;}
.h4_c00079{height:52.352000pt;}
.h1_c00079{height:1009.333333pt;}
.h0_c00079{height:1009.338800pt;}
.w0_c00079{width:794.622400pt;}
.w1_c00079{width:794.666667pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:68.980533pt;}
.x2_c00079{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5b4261d4622adaea40a55c6.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_f210c490c27fcc3ea1c6b999.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.067000;font-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_c00080{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.v1_c00080{vertical-align:23.976000px;}
.ls10_c00080{letter-spacing:-2.160000px;}
.ls12_c00080{letter-spacing:-1.440000px;}
.ls11_c00080{letter-spacing:-1.200000px;}
.ls13_c00080{letter-spacing:-0.240000px;}
.lsf_c00080{letter-spacing:-0.192000px;}
.lsd_c00080{letter-spacing:-0.144000px;}
.ls9_c00080{letter-spacing:0.000000px;}
.ls4_c00080{letter-spacing:0.144000px;}
.ls6_c00080{letter-spacing:0.216000px;}
.ls8_c00080{letter-spacing:0.288000px;}
.lsb_c00080{letter-spacing:0.360000px;}
.lsa_c00080{letter-spacing:0.377784px;}
.ls3_c00080{letter-spacing:0.432000px;}
.lse_c00080{letter-spacing:0.461736px;}
.ls0_c00080{letter-spacing:0.480000px;}
.lsc_c00080{letter-spacing:0.629640px;}
.ls2_c00080{letter-spacing:0.792000px;}
.ls1_c00080{letter-spacing:1.080000px;}
.ls5_c00080{letter-spacing:1.296000px;}
.ls7_c00080{letter-spacing:1.440000px;}
.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;}
}
.ws2_c00080{word-spacing:-17.424000px;}
.ws3_c00080{word-spacing:-16.632000px;}
.ws1_c00080{word-spacing:-16.344000px;}
.ws0_c00080{word-spacing:-10.896000px;}
.ws6_c00080{word-spacing:-10.704000px;}
.ws4_c00080{word-spacing:-10.242144px;}
.ws5_c00080{word-spacing:-9.990288px;}
.ws1e_c00080{word-spacing:-3.168000px;}
.ws8_c00080{word-spacing:-3.024000px;}
.ws28_c00080{word-spacing:-2.016000px;}
.ws17_c00080{word-spacing:-1.728000px;}
.ws27_c00080{word-spacing:-1.368000px;}
.ws29_c00080{word-spacing:-1.344000px;}
.ws1a_c00080{word-spacing:-1.080000px;}
.wsf_c00080{word-spacing:-0.936000px;}
.ws2a_c00080{word-spacing:-0.624000px;}
.ws11_c00080{word-spacing:-0.504000px;}
.ws12_c00080{word-spacing:-0.377784px;}
.ws7_c00080{word-spacing:0.000000px;}
.ws2c_c00080{word-spacing:0.240000px;}
.ws21_c00080{word-spacing:0.792000px;}
.ws2b_c00080{word-spacing:0.960000px;}
.wsc_c00080{word-spacing:1.296000px;}
.ws13_c00080{word-spacing:1.872000px;}
.wsa_c00080{word-spacing:2.232000px;}
.ws1d_c00080{word-spacing:2.880000px;}
.ws1c_c00080{word-spacing:3.024000px;}
.ws9_c00080{word-spacing:3.600000px;}
.ws1b_c00080{word-spacing:3.744000px;}
.wsd_c00080{word-spacing:4.680000px;}
.wsb_c00080{word-spacing:4.896000px;}
.ws14_c00080{word-spacing:5.184000px;}
.ws10_c00080{word-spacing:5.256000px;}
.ws15_c00080{word-spacing:5.904000px;}
.ws18_c00080{word-spacing:6.264000px;}
.wse_c00080{word-spacing:6.840000px;}
.ws16_c00080{word-spacing:6.912000px;}
.ws25_c00080{word-spacing:7.200000px;}
.ws24_c00080{word-spacing:7.560000px;}
.ws26_c00080{word-spacing:8.640000px;}
.ws1f_c00080{word-spacing:8.784000px;}
.ws19_c00080{word-spacing:9.648000px;}
.ws20_c00080{word-spacing:10.152000px;}
.ws22_c00080{word-spacing:12.168000px;}
.ws23_c00080{word-spacing:13.392000px;}
._0_c00080{margin-left:-2755.275600px;}
._7_c00080{margin-left:-7.128000px;}
._8_c00080{margin-left:-5.412000px;}
._6_c00080{margin-left:-4.272000px;}
._3_c00080{margin-left:-2.376000px;}
._1_c00080{margin-left:-1.344000px;}
._2_c00080{width:1.104000px;}
._4_c00080{width:2.160000px;}
._5_c00080{width:4.104000px;}
.fc0_c00080{color:rgb(35,31,32);}
.fs2_c00080{font-size:41.976000px;}
.fs0_c00080{font-size:48.000000px;}
.fs3_c00080{font-size:60.000000px;}
.fs1_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y2f_c00080{bottom:111.261600px;}
.y27_c00080{bottom:111.616350px;}
.y26_c00080{bottom:126.608250px;}
.y2e_c00080{bottom:129.861600px;}
.y2d_c00080{bottom:148.461600px;}
.y25_c00080{bottom:150.116250px;}
.y24_c00080{bottom:165.116250px;}
.y2c_c00080{bottom:167.061600px;}
.y23_c00080{bottom:180.116250px;}
.y22_c00080{bottom:195.116250px;}
.y21_c00080{bottom:218.624250px;}
.y20_c00080{bottom:284.967450px;}
.y1f_c00080{bottom:309.717450px;}
.y1e_c00080{bottom:334.467450px;}
.y1d_c00080{bottom:359.217450px;}
.y1c_c00080{bottom:383.967450px;}
.y1b_c00080{bottom:408.717450px;}
.y1a_c00080{bottom:433.467450px;}
.y19_c00080{bottom:458.217450px;}
.y18_c00080{bottom:482.967450px;}
.y17_c00080{bottom:507.717450px;}
.y16_c00080{bottom:532.467450px;}
.y15_c00080{bottom:557.217450px;}
.y14_c00080{bottom:581.967450px;}
.y13_c00080{bottom:606.717450px;}
.y2b_c00080{bottom:607.980750px;}
.y2a_c00080{bottom:626.580750px;}
.y12_c00080{bottom:631.467450px;}
.y29_c00080{bottom:645.180750px;}
.y11_c00080{bottom:656.217450px;}
.y28_c00080{bottom:663.780750px;}
.y10_c00080{bottom:680.967450px;}
.yf_c00080{bottom:705.717450px;}
.ye_c00080{bottom:730.467450px;}
.yd_c00080{bottom:755.217450px;}
.yc_c00080{bottom:794.967450px;}
.yb_c00080{bottom:819.717450px;}
.ya_c00080{bottom:844.467450px;}
.y9_c00080{bottom:869.217450px;}
.y8_c00080{bottom:893.967450px;}
.y7_c00080{bottom:918.717450px;}
.y6_c00080{bottom:943.467450px;}
.y5_c00080{bottom:968.217450px;}
.y4_c00080{bottom:992.967450px;}
.y3_c00080{bottom:1017.717450px;}
.y2_c00080{bottom:1042.467450px;}
.y1_c00080{bottom:1093.601100px;}
.h2_c00080{height:39.264000px;}
.h5_c00080{height:39.296400px;}
.h3_c00080{height:39.984000px;}
.h7_c00080{height:48.600000px;}
.h6_c00080{height:49.080000px;}
.h4_c00080{height:58.896000px;}
.h1_c00080{height:1135.500000px;}
.h0_c00080{height:1135.506150px;}
.w0_c00080{width:893.950200px;}
.w1_c00080{width:894.000000px;}
.x0_c00080{left:0.000000px;}
.x4_c00080{left:128.626800px;}
.x5_c00080{left:145.634550px;}
.x2_c00080{left:188.061900px;}
.x3_c00080{left:190.513350px;}
.x6_c00080{left:559.188900px;}
.x1_c00080{left:806.369700px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.v1_c00080{vertical-align:21.312000pt;}
.ls10_c00080{letter-spacing:-1.920000pt;}
.ls12_c00080{letter-spacing:-1.280000pt;}
.ls11_c00080{letter-spacing:-1.066667pt;}
.ls13_c00080{letter-spacing:-0.213333pt;}
.lsf_c00080{letter-spacing:-0.170667pt;}
.lsd_c00080{letter-spacing:-0.128000pt;}
.ls9_c00080{letter-spacing:0.000000pt;}
.ls4_c00080{letter-spacing:0.128000pt;}
.ls6_c00080{letter-spacing:0.192000pt;}
.ls8_c00080{letter-spacing:0.256000pt;}
.lsb_c00080{letter-spacing:0.320000pt;}
.lsa_c00080{letter-spacing:0.335808pt;}
.ls3_c00080{letter-spacing:0.384000pt;}
.lse_c00080{letter-spacing:0.410432pt;}
.ls0_c00080{letter-spacing:0.426667pt;}
.lsc_c00080{letter-spacing:0.559680pt;}
.ls2_c00080{letter-spacing:0.704000pt;}
.ls1_c00080{letter-spacing:0.960000pt;}
.ls5_c00080{letter-spacing:1.152000pt;}
.ls7_c00080{letter-spacing:1.280000pt;}
.ws2_c00080{word-spacing:-15.488000pt;}
.ws3_c00080{word-spacing:-14.784000pt;}
.ws1_c00080{word-spacing:-14.528000pt;}
.ws0_c00080{word-spacing:-9.685333pt;}
.ws6_c00080{word-spacing:-9.514667pt;}
.ws4_c00080{word-spacing:-9.104128pt;}
.ws5_c00080{word-spacing:-8.880256pt;}
.ws1e_c00080{word-spacing:-2.816000pt;}
.ws8_c00080{word-spacing:-2.688000pt;}
.ws28_c00080{word-spacing:-1.792000pt;}
.ws17_c00080{word-spacing:-1.536000pt;}
.ws27_c00080{word-spacing:-1.216000pt;}
.ws29_c00080{word-spacing:-1.194667pt;}
.ws1a_c00080{word-spacing:-0.960000pt;}
.wsf_c00080{word-spacing:-0.832000pt;}
.ws2a_c00080{word-spacing:-0.554667pt;}
.ws11_c00080{word-spacing:-0.448000pt;}
.ws12_c00080{word-spacing:-0.335808pt;}
.ws7_c00080{word-spacing:0.000000pt;}
.ws2c_c00080{word-spacing:0.213333pt;}
.ws21_c00080{word-spacing:0.704000pt;}
.ws2b_c00080{word-spacing:0.853333pt;}
.wsc_c00080{word-spacing:1.152000pt;}
.ws13_c00080{word-spacing:1.664000pt;}
.wsa_c00080{word-spacing:1.984000pt;}
.ws1d_c00080{word-spacing:2.560000pt;}
.ws1c_c00080{word-spacing:2.688000pt;}
.ws9_c00080{word-spacing:3.200000pt;}
.ws1b_c00080{word-spacing:3.328000pt;}
.wsd_c00080{word-spacing:4.160000pt;}
.wsb_c00080{word-spacing:4.352000pt;}
.ws14_c00080{word-spacing:4.608000pt;}
.ws10_c00080{word-spacing:4.672000pt;}
.ws15_c00080{word-spacing:5.248000pt;}
.ws18_c00080{word-spacing:5.568000pt;}
.wse_c00080{word-spacing:6.080000pt;}
.ws16_c00080{word-spacing:6.144000pt;}
.ws25_c00080{word-spacing:6.400000pt;}
.ws24_c00080{word-spacing:6.720000pt;}
.ws26_c00080{word-spacing:7.680000pt;}
.ws1f_c00080{word-spacing:7.808000pt;}
.ws19_c00080{word-spacing:8.576000pt;}
.ws20_c00080{word-spacing:9.024000pt;}
.ws22_c00080{word-spacing:10.816000pt;}
.ws23_c00080{word-spacing:11.904000pt;}
._0_c00080{margin-left:-2449.133867pt;}
._7_c00080{margin-left:-6.336000pt;}
._8_c00080{margin-left:-4.810667pt;}
._6_c00080{margin-left:-3.797333pt;}
._3_c00080{margin-left:-2.112000pt;}
._1_c00080{margin-left:-1.194667pt;}
._2_c00080{width:0.981333pt;}
._4_c00080{width:1.920000pt;}
._5_c00080{width:3.648000pt;}
.fs2_c00080{font-size:37.312000pt;}
.fs0_c00080{font-size:42.666667pt;}
.fs3_c00080{font-size:53.333333pt;}
.fs1_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y2f_c00080{bottom:98.899200pt;}
.y27_c00080{bottom:99.214533pt;}
.y26_c00080{bottom:112.540667pt;}
.y2e_c00080{bottom:115.432533pt;}
.y2d_c00080{bottom:131.965867pt;}
.y25_c00080{bottom:133.436667pt;}
.y24_c00080{bottom:146.770000pt;}
.y2c_c00080{bottom:148.499200pt;}
.y23_c00080{bottom:160.103333pt;}
.y22_c00080{bottom:173.436667pt;}
.y21_c00080{bottom:194.332667pt;}
.y20_c00080{bottom:253.304400pt;}
.y1f_c00080{bottom:275.304400pt;}
.y1e_c00080{bottom:297.304400pt;}
.y1d_c00080{bottom:319.304400pt;}
.y1c_c00080{bottom:341.304400pt;}
.y1b_c00080{bottom:363.304400pt;}
.y1a_c00080{bottom:385.304400pt;}
.y19_c00080{bottom:407.304400pt;}
.y18_c00080{bottom:429.304400pt;}
.y17_c00080{bottom:451.304400pt;}
.y16_c00080{bottom:473.304400pt;}
.y15_c00080{bottom:495.304400pt;}
.y14_c00080{bottom:517.304400pt;}
.y13_c00080{bottom:539.304400pt;}
.y2b_c00080{bottom:540.427333pt;}
.y2a_c00080{bottom:556.960667pt;}
.y12_c00080{bottom:561.304400pt;}
.y29_c00080{bottom:573.494000pt;}
.y11_c00080{bottom:583.304400pt;}
.y28_c00080{bottom:590.027333pt;}
.y10_c00080{bottom:605.304400pt;}
.yf_c00080{bottom:627.304400pt;}
.ye_c00080{bottom:649.304400pt;}
.yd_c00080{bottom:671.304400pt;}
.yc_c00080{bottom:706.637733pt;}
.yb_c00080{bottom:728.637733pt;}
.ya_c00080{bottom:750.637733pt;}
.y9_c00080{bottom:772.637733pt;}
.y8_c00080{bottom:794.637733pt;}
.y7_c00080{bottom:816.637733pt;}
.y6_c00080{bottom:838.637733pt;}
.y5_c00080{bottom:860.637733pt;}
.y4_c00080{bottom:882.637733pt;}
.y3_c00080{bottom:904.637733pt;}
.y2_c00080{bottom:926.637733pt;}
.y1_c00080{bottom:972.089867pt;}
.h2_c00080{height:34.901333pt;}
.h5_c00080{height:34.930133pt;}
.h3_c00080{height:35.541333pt;}
.h7_c00080{height:43.200000pt;}
.h6_c00080{height:43.626667pt;}
.h4_c00080{height:52.352000pt;}
.h1_c00080{height:1009.333333pt;}
.h0_c00080{height:1009.338800pt;}
.w0_c00080{width:794.622400pt;}
.w1_c00080{width:794.666667pt;}
.x0_c00080{left:0.000000pt;}
.x4_c00080{left:114.334933pt;}
.x5_c00080{left:129.452933pt;}
.x2_c00080{left:167.166133pt;}
.x3_c00080{left:169.345200pt;}
.x6_c00080{left:497.056800pt;}
.x1_c00080{left:716.773067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_112833fc6c9757faeaf9cb06.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.067000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.v1_c00081{vertical-align:20.937000px;}
.ls6_c00081{letter-spacing:-0.936000px;}
.ls4_c00081{letter-spacing:-0.756000px;}
.ls5_c00081{letter-spacing:-0.693000px;}
.ls9_c00081{letter-spacing:-0.672000px;}
.ls8_c00081{letter-spacing:-0.514206px;}
.ls7_c00081{letter-spacing:-0.288000px;}
.ls3_c00081{letter-spacing:-0.189000px;}
.ls2_c00081{letter-spacing:0.000000px;}
.ls1_c00081{letter-spacing:0.360000px;}
.ls0_c00081{letter-spacing:0.432000px;}
.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;}
}
.ws6_c00081{word-spacing:-16.488000px;}
.ws1_c00081{word-spacing:-16.344000px;}
.ws7_c00081{word-spacing:-16.056000px;}
.ws5_c00081{word-spacing:-15.552000px;}
.ws3_c00081{word-spacing:-14.301000px;}
.ws2_c00081{word-spacing:-14.112000px;}
.ws4_c00081{word-spacing:-13.608000px;}
.wsa_c00081{word-spacing:-10.896000px;}
.ws9_c00081{word-spacing:-10.224000px;}
.ws8_c00081{word-spacing:-7.823277px;}
.ws15_c00081{word-spacing:-2.592000px;}
.ws13_c00081{word-spacing:-2.079000px;}
.ws14_c00081{word-spacing:-1.638000px;}
.ws16_c00081{word-spacing:-1.224000px;}
.wsd_c00081{word-spacing:-0.378000px;}
.wsb_c00081{word-spacing:0.000000px;}
.ws11_c00081{word-spacing:0.360000px;}
.wse_c00081{word-spacing:0.756000px;}
.ws18_c00081{word-spacing:0.792000px;}
.wsc_c00081{word-spacing:1.584000px;}
.wsf_c00081{word-spacing:1.890000px;}
.ws17_c00081{word-spacing:1.944000px;}
.ws12_c00081{word-spacing:3.024000px;}
.ws1a_c00081{word-spacing:6.120000px;}
.ws10_c00081{word-spacing:6.336000px;}
.ws19_c00081{word-spacing:6.984000px;}
.ws0_c00081{word-spacing:1595.899200px;}
._3_c00081{margin-left:-6.174000px;}
._4_c00081{margin-left:-4.365000px;}
._5_c00081{margin-left:-3.296400px;}
._0_c00081{margin-left:-2.112000px;}
._1_c00081{margin-left:-1.104000px;}
._2_c00081{width:1.128000px;}
._6_c00081{width:6.624000px;}
.fc0_c00081{color:rgb(35,31,32);}
.fs3_c00081{font-size:36.729000px;}
.fs0_c00081{font-size:48.000000px;}
.fs2_c00081{font-size:63.000000px;}
.fs1_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y24_c00081{bottom:111.612150px;}
.y23_c00081{bottom:135.120150px;}
.y22_c00081{bottom:227.706750px;}
.y21_c00081{bottom:252.456750px;}
.y20_c00081{bottom:277.206750px;}
.y1f_c00081{bottom:316.950750px;}
.y1e_c00081{bottom:341.700750px;}
.y1d_c00081{bottom:366.450750px;}
.y1c_c00081{bottom:391.200750px;}
.y1b_c00081{bottom:415.950750px;}
.y1a_c00081{bottom:455.711250px;}
.y19_c00081{bottom:476.706000px;}
.y18_c00081{bottom:497.700750px;}
.y17_c00081{bottom:527.204700px;}
.y16_c00081{bottom:566.965200px;}
.y15_c00081{bottom:587.959950px;}
.y14_c00081{bottom:608.954700px;}
.y13_c00081{bottom:638.458650px;}
.y12_c00081{bottom:663.208650px;}
.y11_c00081{bottom:687.958650px;}
.y10_c00081{bottom:727.771500px;}
.yf_c00081{bottom:748.766250px;}
.ye_c00081{bottom:769.761000px;}
.yd_c00081{bottom:790.755750px;}
.yc_c00081{bottom:811.750500px;}
.yb_c00081{bottom:832.745250px;}
.ya_c00081{bottom:853.740000px;}
.y9_c00081{bottom:874.734750px;}
.y8_c00081{bottom:895.729500px;}
.y7_c00081{bottom:916.724250px;}
.y6_c00081{bottom:937.719000px;}
.y5_c00081{bottom:962.966250px;}
.y4_c00081{bottom:988.213500px;}
.y3_c00081{bottom:1017.717450px;}
.y2_c00081{bottom:1042.467450px;}
.y1_c00081{bottom:1093.601100px;}
.h2_c00081{height:39.264000px;}
.h5_c00081{height:39.280200px;}
.h4_c00081{height:51.534000px;}
.h3_c00081{height:58.896000px;}
.h1_c00081{height:1135.500000px;}
.h0_c00081{height:1135.506150px;}
.w0_c00081{width:893.950200px;}
.w1_c00081{width:894.000000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:77.603100px;}
.x2_c00081{left:98.862900px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.v1_c00081{vertical-align:18.610667pt;}
.ls6_c00081{letter-spacing:-0.832000pt;}
.ls4_c00081{letter-spacing:-0.672000pt;}
.ls5_c00081{letter-spacing:-0.616000pt;}
.ls9_c00081{letter-spacing:-0.597333pt;}
.ls8_c00081{letter-spacing:-0.457072pt;}
.ls7_c00081{letter-spacing:-0.256000pt;}
.ls3_c00081{letter-spacing:-0.168000pt;}
.ls2_c00081{letter-spacing:0.000000pt;}
.ls1_c00081{letter-spacing:0.320000pt;}
.ls0_c00081{letter-spacing:0.384000pt;}
.ws6_c00081{word-spacing:-14.656000pt;}
.ws1_c00081{word-spacing:-14.528000pt;}
.ws7_c00081{word-spacing:-14.272000pt;}
.ws5_c00081{word-spacing:-13.824000pt;}
.ws3_c00081{word-spacing:-12.712000pt;}
.ws2_c00081{word-spacing:-12.544000pt;}
.ws4_c00081{word-spacing:-12.096000pt;}
.wsa_c00081{word-spacing:-9.685333pt;}
.ws9_c00081{word-spacing:-9.088000pt;}
.ws8_c00081{word-spacing:-6.954024pt;}
.ws15_c00081{word-spacing:-2.304000pt;}
.ws13_c00081{word-spacing:-1.848000pt;}
.ws14_c00081{word-spacing:-1.456000pt;}
.ws16_c00081{word-spacing:-1.088000pt;}
.wsd_c00081{word-spacing:-0.336000pt;}
.wsb_c00081{word-spacing:0.000000pt;}
.ws11_c00081{word-spacing:0.320000pt;}
.wse_c00081{word-spacing:0.672000pt;}
.ws18_c00081{word-spacing:0.704000pt;}
.wsc_c00081{word-spacing:1.408000pt;}
.wsf_c00081{word-spacing:1.680000pt;}
.ws17_c00081{word-spacing:1.728000pt;}
.ws12_c00081{word-spacing:2.688000pt;}
.ws1a_c00081{word-spacing:5.440000pt;}
.ws10_c00081{word-spacing:5.632000pt;}
.ws19_c00081{word-spacing:6.208000pt;}
.ws0_c00081{word-spacing:1418.577067pt;}
._3_c00081{margin-left:-5.488000pt;}
._4_c00081{margin-left:-3.880000pt;}
._5_c00081{margin-left:-2.930133pt;}
._0_c00081{margin-left:-1.877333pt;}
._1_c00081{margin-left:-0.981333pt;}
._2_c00081{width:1.002667pt;}
._6_c00081{width:5.888000pt;}
.fs3_c00081{font-size:32.648000pt;}
.fs0_c00081{font-size:42.666667pt;}
.fs2_c00081{font-size:56.000000pt;}
.fs1_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y24_c00081{bottom:99.210800pt;}
.y23_c00081{bottom:120.106800pt;}
.y22_c00081{bottom:202.406000pt;}
.y21_c00081{bottom:224.406000pt;}
.y20_c00081{bottom:246.406000pt;}
.y1f_c00081{bottom:281.734000pt;}
.y1e_c00081{bottom:303.734000pt;}
.y1d_c00081{bottom:325.734000pt;}
.y1c_c00081{bottom:347.734000pt;}
.y1b_c00081{bottom:369.734000pt;}
.y1a_c00081{bottom:405.076667pt;}
.y19_c00081{bottom:423.738667pt;}
.y18_c00081{bottom:442.400667pt;}
.y17_c00081{bottom:468.626400pt;}
.y16_c00081{bottom:503.969067pt;}
.y15_c00081{bottom:522.631067pt;}
.y14_c00081{bottom:541.293067pt;}
.y13_c00081{bottom:567.518800pt;}
.y12_c00081{bottom:589.518800pt;}
.y11_c00081{bottom:611.518800pt;}
.y10_c00081{bottom:646.908000pt;}
.yf_c00081{bottom:665.570000pt;}
.ye_c00081{bottom:684.232000pt;}
.yd_c00081{bottom:702.894000pt;}
.yc_c00081{bottom:721.556000pt;}
.yb_c00081{bottom:740.218000pt;}
.ya_c00081{bottom:758.880000pt;}
.y9_c00081{bottom:777.542000pt;}
.y8_c00081{bottom:796.204000pt;}
.y7_c00081{bottom:814.866000pt;}
.y6_c00081{bottom:833.528000pt;}
.y5_c00081{bottom:855.970000pt;}
.y4_c00081{bottom:878.412000pt;}
.y3_c00081{bottom:904.637733pt;}
.y2_c00081{bottom:926.637733pt;}
.y1_c00081{bottom:972.089867pt;}
.h2_c00081{height:34.901333pt;}
.h5_c00081{height:34.915733pt;}
.h4_c00081{height:45.808000pt;}
.h3_c00081{height:52.352000pt;}
.h1_c00081{height:1009.333333pt;}
.h0_c00081{height:1009.338800pt;}
.w0_c00081{width:794.622400pt;}
.w1_c00081{width:794.666667pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:68.980533pt;}
.x2_c00081{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d32ef16574e7d0ed702785a.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.082000;font-style:normal;font-weight:normal;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_0a24e1fec0ae9a14376415ef.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.067000;font-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_c00082{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.v1_c00082{vertical-align:54.870600px;}
.ls2_c00082{letter-spacing:-1.080000px;}
.ls6_c00082{letter-spacing:-0.864000px;}
.ls3_c00082{letter-spacing:-0.648000px;}
.ls4_c00082{letter-spacing:-0.504000px;}
.ls5_c00082{letter-spacing:-0.378000px;}
.ls7_c00082{letter-spacing:-0.216000px;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:0.480000px;}
.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:-12.258000px;}
.ws0_c00082{word-spacing:-10.896000px;}
.ws3_c00082{word-spacing:-2.952000px;}
.ws5_c00082{word-spacing:-2.808000px;}
.ws2_c00082{word-spacing:0.000000px;}
.ws9_c00082{word-spacing:0.144000px;}
.ws13_c00082{word-spacing:0.216000px;}
.ws11_c00082{word-spacing:0.378000px;}
.ws6_c00082{word-spacing:0.432000px;}
.wsd_c00082{word-spacing:0.648000px;}
.ws12_c00082{word-spacing:0.864000px;}
.wsf_c00082{word-spacing:2.592000px;}
.wse_c00082{word-spacing:3.168000px;}
.ws7_c00082{word-spacing:6.408000px;}
.ws4_c00082{word-spacing:7.200000px;}
.wsa_c00082{word-spacing:8.064000px;}
.wsb_c00082{word-spacing:10.656000px;}
.ws8_c00082{word-spacing:17.280000px;}
.ws10_c00082{word-spacing:19.224000px;}
.wsc_c00082{word-spacing:24.480000px;}
._0_c00082{margin-left:-2755.276200px;}
._5_c00082{margin-left:-6.000000px;}
._7_c00082{margin-left:-4.968000px;}
._3_c00082{margin-left:-2.352000px;}
._1_c00082{margin-left:-1.344000px;}
._2_c00082{width:1.104000px;}
._4_c00082{width:2.232000px;}
._6_c00082{width:1382.247600px;}
.fc0_c00082{color:rgb(35,31,32);}
.fs0_c00082{font-size:48.000000px;}
.fs2_c00082{font-size:54.000000px;}
.fs1_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y19_c00082{bottom:139.603200px;}
.y18_c00082{bottom:154.601700px;}
.y17_c00082{bottom:169.600200px;}
.y16_c00082{bottom:184.598700px;}
.y15_c00082{bottom:199.597200px;}
.y10_c00082{bottom:274.065450px;}
.yf_c00082{bottom:295.665450px;}
.ye_c00082{bottom:317.265450px;}
.yd_c00082{bottom:338.865450px;}
.yc_c00082{bottom:360.465450px;}
.yb_c00082{bottom:382.065450px;}
.ya_c00082{bottom:403.665450px;}
.y9_c00082{bottom:425.265450px;}
.y8_c00082{bottom:446.865450px;}
.y7_c00082{bottom:468.465450px;}
.y14_c00082{bottom:516.709650px;}
.y13_c00082{bottom:531.708150px;}
.y12_c00082{bottom:532.989000px;}
.y11_c00082{bottom:547.987500px;}
.y6_c00082{bottom:913.479450px;}
.y5_c00082{bottom:938.229450px;}
.y4_c00082{bottom:977.973450px;}
.y3_c00082{bottom:1002.723450px;}
.y2_c00082{bottom:1042.467450px;}
.y1_c00082{bottom:1093.601100px;}
.h2_c00082{height:39.264000px;}
.h3_c00082{height:39.984000px;}
.h7_c00082{height:43.740000px;}
.h5_c00082{height:44.172000px;}
.h4_c00082{height:58.896000px;}
.h6_c00082{height:98.610600px;}
.h1_c00082{height:1135.500000px;}
.h0_c00082{height:1135.506150px;}
.w0_c00082{width:893.950200px;}
.w1_c00082{width:894.000000px;}
.x0_c00082{left:0.000000px;}
.x4_c00082{left:128.626800px;}
.x2_c00082{left:188.061900px;}
.x3_c00082{left:190.513350px;}
.x5_c00082{left:603.862800px;}
.x6_c00082{left:609.221700px;}
.x1_c00082{left:807.773850px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.v1_c00082{vertical-align:48.773867pt;}
.ls2_c00082{letter-spacing:-0.960000pt;}
.ls6_c00082{letter-spacing:-0.768000pt;}
.ls3_c00082{letter-spacing:-0.576000pt;}
.ls4_c00082{letter-spacing:-0.448000pt;}
.ls5_c00082{letter-spacing:-0.336000pt;}
.ls7_c00082{letter-spacing:-0.192000pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:0.426667pt;}
.ws1_c00082{word-spacing:-10.896000pt;}
.ws0_c00082{word-spacing:-9.685333pt;}
.ws3_c00082{word-spacing:-2.624000pt;}
.ws5_c00082{word-spacing:-2.496000pt;}
.ws2_c00082{word-spacing:0.000000pt;}
.ws9_c00082{word-spacing:0.128000pt;}
.ws13_c00082{word-spacing:0.192000pt;}
.ws11_c00082{word-spacing:0.336000pt;}
.ws6_c00082{word-spacing:0.384000pt;}
.wsd_c00082{word-spacing:0.576000pt;}
.ws12_c00082{word-spacing:0.768000pt;}
.wsf_c00082{word-spacing:2.304000pt;}
.wse_c00082{word-spacing:2.816000pt;}
.ws7_c00082{word-spacing:5.696000pt;}
.ws4_c00082{word-spacing:6.400000pt;}
.wsa_c00082{word-spacing:7.168000pt;}
.wsb_c00082{word-spacing:9.472000pt;}
.ws8_c00082{word-spacing:15.360000pt;}
.ws10_c00082{word-spacing:17.088000pt;}
.wsc_c00082{word-spacing:21.760000pt;}
._0_c00082{margin-left:-2449.134400pt;}
._5_c00082{margin-left:-5.333333pt;}
._7_c00082{margin-left:-4.416000pt;}
._3_c00082{margin-left:-2.090667pt;}
._1_c00082{margin-left:-1.194667pt;}
._2_c00082{width:0.981333pt;}
._4_c00082{width:1.984000pt;}
._6_c00082{width:1228.664533pt;}
.fs0_c00082{font-size:42.666667pt;}
.fs2_c00082{font-size:48.000000pt;}
.fs1_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y19_c00082{bottom:124.091733pt;}
.y18_c00082{bottom:137.423733pt;}
.y17_c00082{bottom:150.755733pt;}
.y16_c00082{bottom:164.087733pt;}
.y15_c00082{bottom:177.419733pt;}
.y10_c00082{bottom:243.613733pt;}
.yf_c00082{bottom:262.813733pt;}
.ye_c00082{bottom:282.013733pt;}
.yd_c00082{bottom:301.213733pt;}
.yc_c00082{bottom:320.413733pt;}
.yb_c00082{bottom:339.613733pt;}
.ya_c00082{bottom:358.813733pt;}
.y9_c00082{bottom:378.013733pt;}
.y8_c00082{bottom:397.213733pt;}
.y7_c00082{bottom:416.413733pt;}
.y14_c00082{bottom:459.297467pt;}
.y13_c00082{bottom:472.629467pt;}
.y12_c00082{bottom:473.768000pt;}
.y11_c00082{bottom:487.100000pt;}
.y6_c00082{bottom:811.981733pt;}
.y5_c00082{bottom:833.981733pt;}
.y4_c00082{bottom:869.309733pt;}
.y3_c00082{bottom:891.309733pt;}
.y2_c00082{bottom:926.637733pt;}
.y1_c00082{bottom:972.089867pt;}
.h2_c00082{height:34.901333pt;}
.h3_c00082{height:35.541333pt;}
.h7_c00082{height:38.880000pt;}
.h5_c00082{height:39.264000pt;}
.h4_c00082{height:52.352000pt;}
.h6_c00082{height:87.653867pt;}
.h1_c00082{height:1009.333333pt;}
.h0_c00082{height:1009.338800pt;}
.w0_c00082{width:794.622400pt;}
.w1_c00082{width:794.666667pt;}
.x0_c00082{left:0.000000pt;}
.x4_c00082{left:114.334933pt;}
.x2_c00082{left:167.166133pt;}
.x3_c00082{left:169.345200pt;}
.x5_c00082{left:536.766933pt;}
.x6_c00082{left:541.530400pt;}
.x1_c00082{left:718.021200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea7496ca7b27498257027e1d.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_50149650b5a8d742d3c84e1d.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls2_c00083{letter-spacing:-7.560000px;}
.ls5_c00083{letter-spacing:-4.860000px;}
.ls0_c00083{letter-spacing:-1.152000px;}
.ls6_c00083{letter-spacing:-0.864000px;}
.ls3_c00083{letter-spacing:-0.720000px;}
.ls4_c00083{letter-spacing:-0.378000px;}
.ls1_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;}
}
.ws2_c00083{word-spacing:-15.768000px;}
.ws1_c00083{word-spacing:-8.784000px;}
.ws3_c00083{word-spacing:-7.506000px;}
.ws9_c00083{word-spacing:-2.664000px;}
.ws4_c00083{word-spacing:0.000000px;}
.ws12_c00083{word-spacing:0.378000px;}
.ws11_c00083{word-spacing:0.432000px;}
.ws10_c00083{word-spacing:0.648000px;}
.ws13_c00083{word-spacing:0.864000px;}
.wsb_c00083{word-spacing:2.160000px;}
.ws6_c00083{word-spacing:2.232000px;}
.ws7_c00083{word-spacing:2.376000px;}
.ws8_c00083{word-spacing:4.536000px;}
.ws5_c00083{word-spacing:7.488000px;}
.wse_c00083{word-spacing:7.560000px;}
.wsf_c00083{word-spacing:7.632000px;}
.wsa_c00083{word-spacing:8.136000px;}
.wsd_c00083{word-spacing:13.176000px;}
.wsc_c00083{word-spacing:14.184000px;}
.ws0_c00083{word-spacing:1603.387200px;}
._5_c00083{margin-left:-4.752000px;}
._0_c00083{margin-left:-2.112000px;}
._1_c00083{margin-left:-1.104000px;}
._2_c00083{width:1.104000px;}
._8_c00083{width:2.202000px;}
._7_c00083{width:4.860000px;}
._6_c00083{width:5.940000px;}
._4_c00083{width:7.560000px;}
._3_c00083{width:9.720000px;}
.fc0_c00083{color:rgb(35,31,32);}
.fs0_c00083{font-size:48.000000px;}
.fs2_c00083{font-size:54.000000px;}
.fs1_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y17_c00083{bottom:112.790550px;}
.y16_c00083{bottom:127.789050px;}
.y15_c00083{bottom:142.787550px;}
.yf_c00083{bottom:210.921450px;}
.ye_c00083{bottom:235.671450px;}
.yd_c00083{bottom:260.421450px;}
.yc_c00083{bottom:285.171450px;}
.yb_c00083{bottom:309.921450px;}
.ya_c00083{bottom:334.671450px;}
.y9_c00083{bottom:359.421450px;}
.y8_c00083{bottom:384.171450px;}
.y7_c00083{bottom:408.921450px;}
.y14_c00083{bottom:446.961900px;}
.y13_c00083{bottom:461.960400px;}
.y12_c00083{bottom:476.958900px;}
.y11_c00083{bottom:491.957400px;}
.y10_c00083{bottom:506.955900px;}
.y6_c00083{bottom:943.467450px;}
.y5_c00083{bottom:968.217450px;}
.y4_c00083{bottom:992.967450px;}
.y3_c00083{bottom:1017.717450px;}
.y2_c00083{bottom:1042.467450px;}
.y1_c00083{bottom:1093.600950px;}
.h2_c00083{height:39.264000px;}
.h4_c00083{height:43.740000px;}
.h5_c00083{height:44.172000px;}
.h3_c00083{height:58.896000px;}
.h1_c00083{height:1135.500000px;}
.h0_c00083{height:1135.506150px;}
.w0_c00083{width:893.950200px;}
.w1_c00083{width:894.000000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:77.603100px;}
.x3_c00083{left:254.507850px;}
.x2_c00083{left:395.650350px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls2_c00083{letter-spacing:-6.720000pt;}
.ls5_c00083{letter-spacing:-4.320000pt;}
.ls0_c00083{letter-spacing:-1.024000pt;}
.ls6_c00083{letter-spacing:-0.768000pt;}
.ls3_c00083{letter-spacing:-0.640000pt;}
.ls4_c00083{letter-spacing:-0.336000pt;}
.ls1_c00083{letter-spacing:0.000000pt;}
.ws2_c00083{word-spacing:-14.016000pt;}
.ws1_c00083{word-spacing:-7.808000pt;}
.ws3_c00083{word-spacing:-6.672000pt;}
.ws9_c00083{word-spacing:-2.368000pt;}
.ws4_c00083{word-spacing:0.000000pt;}
.ws12_c00083{word-spacing:0.336000pt;}
.ws11_c00083{word-spacing:0.384000pt;}
.ws10_c00083{word-spacing:0.576000pt;}
.ws13_c00083{word-spacing:0.768000pt;}
.wsb_c00083{word-spacing:1.920000pt;}
.ws6_c00083{word-spacing:1.984000pt;}
.ws7_c00083{word-spacing:2.112000pt;}
.ws8_c00083{word-spacing:4.032000pt;}
.ws5_c00083{word-spacing:6.656000pt;}
.wse_c00083{word-spacing:6.720000pt;}
.wsf_c00083{word-spacing:6.784000pt;}
.wsa_c00083{word-spacing:7.232000pt;}
.wsd_c00083{word-spacing:11.712000pt;}
.wsc_c00083{word-spacing:12.608000pt;}
.ws0_c00083{word-spacing:1425.233067pt;}
._5_c00083{margin-left:-4.224000pt;}
._0_c00083{margin-left:-1.877333pt;}
._1_c00083{margin-left:-0.981333pt;}
._2_c00083{width:0.981333pt;}
._8_c00083{width:1.957333pt;}
._7_c00083{width:4.320000pt;}
._6_c00083{width:5.280000pt;}
._4_c00083{width:6.720000pt;}
._3_c00083{width:8.640000pt;}
.fs0_c00083{font-size:42.666667pt;}
.fs2_c00083{font-size:48.000000pt;}
.fs1_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y17_c00083{bottom:100.258267pt;}
.y16_c00083{bottom:113.590267pt;}
.y15_c00083{bottom:126.922267pt;}
.yf_c00083{bottom:187.485733pt;}
.ye_c00083{bottom:209.485733pt;}
.yd_c00083{bottom:231.485733pt;}
.yc_c00083{bottom:253.485733pt;}
.yb_c00083{bottom:275.485733pt;}
.ya_c00083{bottom:297.485733pt;}
.y9_c00083{bottom:319.485733pt;}
.y8_c00083{bottom:341.485733pt;}
.y7_c00083{bottom:363.485733pt;}
.y14_c00083{bottom:397.299467pt;}
.y13_c00083{bottom:410.631467pt;}
.y12_c00083{bottom:423.963467pt;}
.y11_c00083{bottom:437.295467pt;}
.y10_c00083{bottom:450.627467pt;}
.y6_c00083{bottom:838.637733pt;}
.y5_c00083{bottom:860.637733pt;}
.y4_c00083{bottom:882.637733pt;}
.y3_c00083{bottom:904.637733pt;}
.y2_c00083{bottom:926.637733pt;}
.y1_c00083{bottom:972.089733pt;}
.h2_c00083{height:34.901333pt;}
.h4_c00083{height:38.880000pt;}
.h5_c00083{height:39.264000pt;}
.h3_c00083{height:52.352000pt;}
.h1_c00083{height:1009.333333pt;}
.h0_c00083{height:1009.338800pt;}
.w0_c00083{width:794.622400pt;}
.w1_c00083{width:794.666667pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:68.980533pt;}
.x3_c00083{left:226.229200pt;}
.x2_c00083{left:351.689200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5af197d7219afac4d091d5cc.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.082000;font-style:normal;font-weight:normal;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_e1a8d90c0fceaa015dc0356d.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.067000;font-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_c00084{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls1_c00084{letter-spacing:-1.008000px;}
.ls3_c00084{letter-spacing:-0.864000px;}
.ls4_c00084{letter-spacing:-0.216000px;}
.ls2_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00084{word-spacing:-9.888000px;}
.ws5_c00084{word-spacing:-2.736000px;}
.ws1_c00084{word-spacing:0.000000px;}
.wsa_c00084{word-spacing:0.216000px;}
.ws9_c00084{word-spacing:0.864000px;}
.ws3_c00084{word-spacing:0.936000px;}
.ws2_c00084{word-spacing:2.232000px;}
.ws4_c00084{word-spacing:4.176000px;}
.ws6_c00084{word-spacing:6.048000px;}
.ws7_c00084{word-spacing:6.984000px;}
.ws8_c00084{word-spacing:7.056000px;}
._0_c00084{margin-left:-2754.268200px;}
._4_c00084{margin-left:-5.148000px;}
._3_c00084{margin-left:-2.760000px;}
._1_c00084{margin-left:-1.344000px;}
._2_c00084{width:1.104000px;}
.fc0_c00084{color:rgb(35,31,32);}
.fs0_c00084{font-size:48.000000px;}
.fs2_c00084{font-size:54.000000px;}
.fs1_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y12_c00084{bottom:127.552050px;}
.y11_c00084{bottom:142.550550px;}
.ya_c00084{bottom:487.742850px;}
.y9_c00084{bottom:512.492850px;}
.y8_c00084{bottom:537.242850px;}
.y7_c00084{bottom:561.992850px;}
.y10_c00084{bottom:612.389400px;}
.yf_c00084{bottom:627.387900px;}
.ye_c00084{bottom:642.386400px;}
.yd_c00084{bottom:657.384900px;}
.yc_c00084{bottom:676.635900px;}
.yb_c00084{bottom:691.634400px;}
.y6_c00084{bottom:942.836850px;}
.y5_c00084{bottom:967.586850px;}
.y4_c00084{bottom:992.336850px;}
.y3_c00084{bottom:1017.086850px;}
.y2_c00084{bottom:1041.836850px;}
.y1_c00084{bottom:1093.600950px;}
.h2_c00084{height:39.264000px;}
.h3_c00084{height:39.984000px;}
.h6_c00084{height:43.740000px;}
.h5_c00084{height:44.172000px;}
.h4_c00084{height:58.896000px;}
.h1_c00084{height:1135.500000px;}
.h0_c00084{height:1135.506150px;}
.w0_c00084{width:893.950200px;}
.w1_c00084{width:894.000000px;}
.x0_c00084{left:0.000000px;}
.x4_c00084{left:128.626800px;}
.x2_c00084{left:188.061900px;}
.x3_c00084{left:190.513350px;}
.x5_c00084{left:618.392700px;}
.x1_c00084{left:807.233850px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls1_c00084{letter-spacing:-0.896000pt;}
.ls3_c00084{letter-spacing:-0.768000pt;}
.ls4_c00084{letter-spacing:-0.192000pt;}
.ls2_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.426667pt;}
.ws0_c00084{word-spacing:-8.789333pt;}
.ws5_c00084{word-spacing:-2.432000pt;}
.ws1_c00084{word-spacing:0.000000pt;}
.wsa_c00084{word-spacing:0.192000pt;}
.ws9_c00084{word-spacing:0.768000pt;}
.ws3_c00084{word-spacing:0.832000pt;}
.ws2_c00084{word-spacing:1.984000pt;}
.ws4_c00084{word-spacing:3.712000pt;}
.ws6_c00084{word-spacing:5.376000pt;}
.ws7_c00084{word-spacing:6.208000pt;}
.ws8_c00084{word-spacing:6.272000pt;}
._0_c00084{margin-left:-2448.238400pt;}
._4_c00084{margin-left:-4.576000pt;}
._3_c00084{margin-left:-2.453333pt;}
._1_c00084{margin-left:-1.194667pt;}
._2_c00084{width:0.981333pt;}
.fs0_c00084{font-size:42.666667pt;}
.fs2_c00084{font-size:48.000000pt;}
.fs1_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y12_c00084{bottom:113.379600pt;}
.y11_c00084{bottom:126.711600pt;}
.ya_c00084{bottom:433.549200pt;}
.y9_c00084{bottom:455.549200pt;}
.y8_c00084{bottom:477.549200pt;}
.y7_c00084{bottom:499.549200pt;}
.y10_c00084{bottom:544.346133pt;}
.yf_c00084{bottom:557.678133pt;}
.ye_c00084{bottom:571.010133pt;}
.yd_c00084{bottom:584.342133pt;}
.yc_c00084{bottom:601.454133pt;}
.yb_c00084{bottom:614.786133pt;}
.y6_c00084{bottom:838.077200pt;}
.y5_c00084{bottom:860.077200pt;}
.y4_c00084{bottom:882.077200pt;}
.y3_c00084{bottom:904.077200pt;}
.y2_c00084{bottom:926.077200pt;}
.y1_c00084{bottom:972.089733pt;}
.h2_c00084{height:34.901333pt;}
.h3_c00084{height:35.541333pt;}
.h6_c00084{height:38.880000pt;}
.h5_c00084{height:39.264000pt;}
.h4_c00084{height:52.352000pt;}
.h1_c00084{height:1009.333333pt;}
.h0_c00084{height:1009.338800pt;}
.w0_c00084{width:794.622400pt;}
.w1_c00084{width:794.666667pt;}
.x0_c00084{left:0.000000pt;}
.x4_c00084{left:114.334933pt;}
.x2_c00084{left:167.166133pt;}
.x3_c00084{left:169.345200pt;}
.x5_c00084{left:549.682400pt;}
.x1_c00084{left:717.541200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcbbcf7d7e13e7517607508b.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.067000;font-style:normal;font-weight:normal;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_f6729770213c024f9c943b5c.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls6_c00085{letter-spacing:-1.998000px;}
.ls7_c00085{letter-spacing:-1.782000px;}
.ls8_c00085{letter-spacing:-1.620000px;}
.ls3_c00085{letter-spacing:-0.972000px;}
.ls9_c00085{letter-spacing:-0.864000px;}
.ls2_c00085{letter-spacing:-0.360000px;}
.ls0_c00085{letter-spacing:-0.288000px;}
.ls5_c00085{letter-spacing:-0.216000px;}
.ls4_c00085{letter-spacing:-0.162000px;}
.ls1_c00085{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00085{word-spacing:-12.096000px;}
.ws1_c00085{word-spacing:-11.286000px;}
.ws8_c00085{word-spacing:-1.944000px;}
.wsa_c00085{word-spacing:-1.080000px;}
.ws3_c00085{word-spacing:0.000000px;}
.wsb_c00085{word-spacing:0.162000px;}
.wsc_c00085{word-spacing:0.216000px;}
.wsd_c00085{word-spacing:0.378000px;}
.wse_c00085{word-spacing:0.864000px;}
.ws9_c00085{word-spacing:1.224000px;}
.ws5_c00085{word-spacing:5.400000px;}
.ws7_c00085{word-spacing:7.488000px;}
.ws4_c00085{word-spacing:8.280000px;}
.ws6_c00085{word-spacing:11.232000px;}
.ws0_c00085{word-spacing:1598.875200px;}
._3_c00085{margin-left:-5.232000px;}
._0_c00085{margin-left:-2.112000px;}
._1_c00085{margin-left:-1.104000px;}
._2_c00085{width:1.608000px;}
.fc0_c00085{color:rgb(35,31,32);}
.fs0_c00085{font-size:48.000000px;}
.fs2_c00085{font-size:54.000000px;}
.fs1_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y11_c00085{bottom:116.519700px;}
.y10_c00085{bottom:131.518200px;}
.yf_c00085{bottom:146.516700px;}
.ya_c00085{bottom:444.470250px;}
.y9_c00085{bottom:469.220250px;}
.y8_c00085{bottom:493.970250px;}
.ye_c00085{bottom:534.205050px;}
.yd_c00085{bottom:549.203550px;}
.yc_c00085{bottom:843.010350px;}
.yb_c00085{bottom:858.008850px;}
.y7_c00085{bottom:918.428250px;}
.y6_c00085{bottom:943.178250px;}
.y5_c00085{bottom:967.928250px;}
.y4_c00085{bottom:992.678250px;}
.y3_c00085{bottom:1017.428250px;}
.y2_c00085{bottom:1042.178250px;}
.y1_c00085{bottom:1093.601100px;}
.h2_c00085{height:39.264000px;}
.h5_c00085{height:43.740000px;}
.h4_c00085{height:44.172000px;}
.h3_c00085{height:58.896000px;}
.h1_c00085{height:1135.500000px;}
.h0_c00085{height:1135.506150px;}
.w0_c00085{width:893.950200px;}
.w1_c00085{width:894.000000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:77.603100px;}
.x2_c00085{left:182.466750px;}
.x3_c00085{left:383.680650px;}
.x4_c00085{left:582.768750px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls6_c00085{letter-spacing:-1.776000pt;}
.ls7_c00085{letter-spacing:-1.584000pt;}
.ls8_c00085{letter-spacing:-1.440000pt;}
.ls3_c00085{letter-spacing:-0.864000pt;}
.ls9_c00085{letter-spacing:-0.768000pt;}
.ls2_c00085{letter-spacing:-0.320000pt;}
.ls0_c00085{letter-spacing:-0.256000pt;}
.ls5_c00085{letter-spacing:-0.192000pt;}
.ls4_c00085{letter-spacing:-0.144000pt;}
.ls1_c00085{letter-spacing:0.000000pt;}
.ws2_c00085{word-spacing:-10.752000pt;}
.ws1_c00085{word-spacing:-10.032000pt;}
.ws8_c00085{word-spacing:-1.728000pt;}
.wsa_c00085{word-spacing:-0.960000pt;}
.ws3_c00085{word-spacing:0.000000pt;}
.wsb_c00085{word-spacing:0.144000pt;}
.wsc_c00085{word-spacing:0.192000pt;}
.wsd_c00085{word-spacing:0.336000pt;}
.wse_c00085{word-spacing:0.768000pt;}
.ws9_c00085{word-spacing:1.088000pt;}
.ws5_c00085{word-spacing:4.800000pt;}
.ws7_c00085{word-spacing:6.656000pt;}
.ws4_c00085{word-spacing:7.360000pt;}
.ws6_c00085{word-spacing:9.984000pt;}
.ws0_c00085{word-spacing:1421.222400pt;}
._3_c00085{margin-left:-4.650667pt;}
._0_c00085{margin-left:-1.877333pt;}
._1_c00085{margin-left:-0.981333pt;}
._2_c00085{width:1.429333pt;}
.fs0_c00085{font-size:42.666667pt;}
.fs2_c00085{font-size:48.000000pt;}
.fs1_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y11_c00085{bottom:103.573067pt;}
.y10_c00085{bottom:116.905067pt;}
.yf_c00085{bottom:130.237067pt;}
.ya_c00085{bottom:395.084667pt;}
.y9_c00085{bottom:417.084667pt;}
.y8_c00085{bottom:439.084667pt;}
.ye_c00085{bottom:474.848933pt;}
.yd_c00085{bottom:488.180933pt;}
.yc_c00085{bottom:749.342533pt;}
.yb_c00085{bottom:762.674533pt;}
.y7_c00085{bottom:816.380667pt;}
.y6_c00085{bottom:838.380667pt;}
.y5_c00085{bottom:860.380667pt;}
.y4_c00085{bottom:882.380667pt;}
.y3_c00085{bottom:904.380667pt;}
.y2_c00085{bottom:926.380667pt;}
.y1_c00085{bottom:972.089867pt;}
.h2_c00085{height:34.901333pt;}
.h5_c00085{height:38.880000pt;}
.h4_c00085{height:39.264000pt;}
.h3_c00085{height:52.352000pt;}
.h1_c00085{height:1009.333333pt;}
.h0_c00085{height:1009.338800pt;}
.w0_c00085{width:794.622400pt;}
.w1_c00085{width:794.666667pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:68.980533pt;}
.x2_c00085{left:162.192667pt;}
.x3_c00085{left:341.049467pt;}
.x4_c00085{left:518.016667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6128c92803e82759ec4433a4.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_15544f8e620a26ad6ca642ce.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.067000;font-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_c00086{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls3_c00086{letter-spacing:-1.152000px;}
.ls4_c00086{letter-spacing:-0.720000px;}
.ls1_c00086{letter-spacing:-0.480000px;}
.ls2_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00086{word-spacing:-15.336000px;}
.ws0_c00086{word-spacing:-10.416000px;}
.wsc_c00086{word-spacing:-2.232000px;}
.ws12_c00086{word-spacing:-1.512000px;}
.ws10_c00086{word-spacing:-0.432000px;}
.ws11_c00086{word-spacing:-0.072000px;}
.ws2_c00086{word-spacing:0.000000px;}
.wsa_c00086{word-spacing:0.720000px;}
.wsd_c00086{word-spacing:1.584000px;}
.wsb_c00086{word-spacing:1.656000px;}
.ws6_c00086{word-spacing:2.016000px;}
.wse_c00086{word-spacing:3.600000px;}
.wsf_c00086{word-spacing:6.552000px;}
.ws3_c00086{word-spacing:7.200000px;}
.ws9_c00086{word-spacing:7.920000px;}
.ws8_c00086{word-spacing:14.184000px;}
.ws4_c00086{word-spacing:19.512000px;}
.ws5_c00086{word-spacing:19.656000px;}
.ws7_c00086{word-spacing:28.584000px;}
._0_c00086{margin-left:-2754.795600px;}
._3_c00086{margin-left:-4.440000px;}
._1_c00086{margin-left:-1.344000px;}
._2_c00086{width:1.104000px;}
.fc0_c00086{color:rgb(35,31,32);}
.fs0_c00086{font-size:48.000000px;}
.fs2_c00086{font-size:54.000000px;}
.fs1_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y17_c00086{bottom:114.439800px;}
.y14_c00086{bottom:553.245450px;}
.y13_c00086{bottom:577.995450px;}
.y12_c00086{bottom:617.739450px;}
.y11_c00086{bottom:642.489450px;}
.y10_c00086{bottom:667.239450px;}
.y16_c00086{bottom:702.170550px;}
.y15_c00086{bottom:717.169050px;}
.yf_c00086{bottom:720.717450px;}
.ye_c00086{bottom:745.467450px;}
.yd_c00086{bottom:770.217450px;}
.yc_c00086{bottom:794.967450px;}
.yb_c00086{bottom:819.717450px;}
.ya_c00086{bottom:844.467450px;}
.y9_c00086{bottom:869.217450px;}
.y8_c00086{bottom:893.967450px;}
.y7_c00086{bottom:918.717450px;}
.y6_c00086{bottom:943.467450px;}
.y5_c00086{bottom:968.217450px;}
.y4_c00086{bottom:992.967450px;}
.y3_c00086{bottom:1017.717450px;}
.y2_c00086{bottom:1042.467450px;}
.y1_c00086{bottom:1093.601100px;}
.h2_c00086{height:39.264000px;}
.h3_c00086{height:39.984000px;}
.h6_c00086{height:43.740000px;}
.h5_c00086{height:44.172000px;}
.h4_c00086{height:58.896000px;}
.h1_c00086{height:1135.500000px;}
.h0_c00086{height:1135.506150px;}
.w0_c00086{width:893.950200px;}
.w1_c00086{width:894.000000px;}
.x0_c00086{left:0.000000px;}
.x5_c00086{left:128.633550px;}
.x2_c00086{left:188.061900px;}
.x3_c00086{left:190.513350px;}
.x4_c00086{left:602.915550px;}
.x1_c00086{left:807.137700px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls3_c00086{letter-spacing:-1.024000pt;}
.ls4_c00086{letter-spacing:-0.640000pt;}
.ls1_c00086{letter-spacing:-0.426667pt;}
.ls2_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.426667pt;}
.ws1_c00086{word-spacing:-13.632000pt;}
.ws0_c00086{word-spacing:-9.258667pt;}
.wsc_c00086{word-spacing:-1.984000pt;}
.ws12_c00086{word-spacing:-1.344000pt;}
.ws10_c00086{word-spacing:-0.384000pt;}
.ws11_c00086{word-spacing:-0.064000pt;}
.ws2_c00086{word-spacing:0.000000pt;}
.wsa_c00086{word-spacing:0.640000pt;}
.wsd_c00086{word-spacing:1.408000pt;}
.wsb_c00086{word-spacing:1.472000pt;}
.ws6_c00086{word-spacing:1.792000pt;}
.wse_c00086{word-spacing:3.200000pt;}
.wsf_c00086{word-spacing:5.824000pt;}
.ws3_c00086{word-spacing:6.400000pt;}
.ws9_c00086{word-spacing:7.040000pt;}
.ws8_c00086{word-spacing:12.608000pt;}
.ws4_c00086{word-spacing:17.344000pt;}
.ws5_c00086{word-spacing:17.472000pt;}
.ws7_c00086{word-spacing:25.408000pt;}
._0_c00086{margin-left:-2448.707200pt;}
._3_c00086{margin-left:-3.946667pt;}
._1_c00086{margin-left:-1.194667pt;}
._2_c00086{width:0.981333pt;}
.fs0_c00086{font-size:42.666667pt;}
.fs2_c00086{font-size:48.000000pt;}
.fs1_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y17_c00086{bottom:101.724267pt;}
.y14_c00086{bottom:491.773733pt;}
.y13_c00086{bottom:513.773733pt;}
.y12_c00086{bottom:549.101733pt;}
.y11_c00086{bottom:571.101733pt;}
.y10_c00086{bottom:593.101733pt;}
.y16_c00086{bottom:624.151600pt;}
.y15_c00086{bottom:637.483600pt;}
.yf_c00086{bottom:640.637733pt;}
.ye_c00086{bottom:662.637733pt;}
.yd_c00086{bottom:684.637733pt;}
.yc_c00086{bottom:706.637733pt;}
.yb_c00086{bottom:728.637733pt;}
.ya_c00086{bottom:750.637733pt;}
.y9_c00086{bottom:772.637733pt;}
.y8_c00086{bottom:794.637733pt;}
.y7_c00086{bottom:816.637733pt;}
.y6_c00086{bottom:838.637733pt;}
.y5_c00086{bottom:860.637733pt;}
.y4_c00086{bottom:882.637733pt;}
.y3_c00086{bottom:904.637733pt;}
.y2_c00086{bottom:926.637733pt;}
.y1_c00086{bottom:972.089867pt;}
.h2_c00086{height:34.901333pt;}
.h3_c00086{height:35.541333pt;}
.h6_c00086{height:38.880000pt;}
.h5_c00086{height:39.264000pt;}
.h4_c00086{height:52.352000pt;}
.h1_c00086{height:1009.333333pt;}
.h0_c00086{height:1009.338800pt;}
.w0_c00086{width:794.622400pt;}
.w1_c00086{width:794.666667pt;}
.x0_c00086{left:0.000000pt;}
.x5_c00086{left:114.340933pt;}
.x2_c00086{left:167.166133pt;}
.x3_c00086{left:169.345200pt;}
.x4_c00086{left:535.924933pt;}
.x1_c00086{left:717.455733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f40377c812c44691709b56e5.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_90bdc283a4c5a8ea914892fc.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.v1_c00087{vertical-align:23.976000px;}
.ls11_c00087{letter-spacing:-1.512000px;}
.lse_c00087{letter-spacing:-1.008000px;}
.lsc_c00087{letter-spacing:-0.965448px;}
.lsa_c00087{letter-spacing:-0.720000px;}
.ls13_c00087{letter-spacing:-0.672000px;}
.ls9_c00087{letter-spacing:-0.648000px;}
.ls12_c00087{letter-spacing:-0.624000px;}
.lsf_c00087{letter-spacing:-0.576000px;}
.lsb_c00087{letter-spacing:-0.360000px;}
.ls10_c00087{letter-spacing:-0.251856px;}
.ls6_c00087{letter-spacing:-0.240000px;}
.lsd_c00087{letter-spacing:-0.144000px;}
.ls7_c00087{letter-spacing:0.000000px;}
.ls4_c00087{letter-spacing:0.072000px;}
.ls2_c00087{letter-spacing:0.216000px;}
.ls8_c00087{letter-spacing:0.419760px;}
.ls3_c00087{letter-spacing:0.432000px;}
.ls1_c00087{letter-spacing:0.720000px;}
.ls5_c00087{letter-spacing:0.847800px;}
.ls0_c00087{letter-spacing:0.936000px;}
.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;}
}
.ws1_c00087{word-spacing:-16.344000px;}
.ws5_c00087{word-spacing:-15.984000px;}
.ws8_c00087{word-spacing:-15.912000px;}
.ws2_c00087{word-spacing:-15.696000px;}
.ws4_c00087{word-spacing:-15.624000px;}
.ws7_c00087{word-spacing:-15.336000px;}
.wsa_c00087{word-spacing:-14.976000px;}
.wsb_c00087{word-spacing:-10.896000px;}
.wsc_c00087{word-spacing:-10.272000px;}
.wsd_c00087{word-spacing:-10.224000px;}
.ws3_c00087{word-spacing:-9.948312px;}
.ws9_c00087{word-spacing:-9.276696px;}
.ws6_c00087{word-spacing:-8.563104px;}
.ws1b_c00087{word-spacing:-2.808000px;}
.ws25_c00087{word-spacing:-2.736000px;}
.ws1a_c00087{word-spacing:-2.304000px;}
.ws21_c00087{word-spacing:-2.088000px;}
.ws14_c00087{word-spacing:-1.800000px;}
.ws1f_c00087{word-spacing:-1.368000px;}
.ws19_c00087{word-spacing:-0.864000px;}
.ws11_c00087{word-spacing:-0.720000px;}
.ws15_c00087{word-spacing:-0.419760px;}
.ws20_c00087{word-spacing:-0.288000px;}
.ws24_c00087{word-spacing:-0.144000px;}
.wse_c00087{word-spacing:0.000000px;}
.ws29_c00087{word-spacing:0.144000px;}
.ws1d_c00087{word-spacing:0.648000px;}
.ws23_c00087{word-spacing:0.720000px;}
.ws27_c00087{word-spacing:0.936000px;}
.ws1e_c00087{word-spacing:1.008000px;}
.ws18_c00087{word-spacing:1.080000px;}
.ws22_c00087{word-spacing:1.872000px;}
.ws26_c00087{word-spacing:2.304000px;}
.ws12_c00087{word-spacing:2.736000px;}
.ws17_c00087{word-spacing:2.952000px;}
.ws13_c00087{word-spacing:3.456000px;}
.ws16_c00087{word-spacing:3.672000px;}
.ws1c_c00087{word-spacing:4.104000px;}
.wsf_c00087{word-spacing:4.680000px;}
.ws10_c00087{word-spacing:5.040000px;}
.ws28_c00087{word-spacing:6.048000px;}
.ws0_c00087{word-spacing:1598.107200px;}
._8_c00087{margin-left:-6.420000px;}
._3_c00087{margin-left:-4.368000px;}
._0_c00087{margin-left:-2.112000px;}
._1_c00087{margin-left:-1.104000px;}
._4_c00087{width:1.176000px;}
._6_c00087{width:3.360000px;}
._7_c00087{width:4.735200px;}
._5_c00087{width:7.215000px;}
._2_c00087{width:56.664000px;}
.fc0_c00087{color:rgb(35,31,32);}
.fs2_c00087{font-size:41.976000px;}
.fs0_c00087{font-size:48.000000px;}
.fs3_c00087{font-size:60.000000px;}
.fs1_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y24_c00087{bottom:111.612300px;}
.y23_c00087{bottom:135.116250px;}
.y22_c00087{bottom:158.620200px;}
.y21_c00087{bottom:182.128200px;}
.y20_c00087{bottom:239.967450px;}
.y1f_c00087{bottom:264.717450px;}
.y1e_c00087{bottom:289.473450px;}
.y1d_c00087{bottom:314.223450px;}
.y1c_c00087{bottom:338.973450px;}
.y1b_c00087{bottom:378.717450px;}
.y1a_c00087{bottom:403.467450px;}
.y19_c00087{bottom:428.223450px;}
.y18_c00087{bottom:452.973450px;}
.y17_c00087{bottom:477.723450px;}
.y16_c00087{bottom:502.473450px;}
.y15_c00087{bottom:527.223450px;}
.y14_c00087{bottom:551.973450px;}
.y13_c00087{bottom:576.723450px;}
.y27_c00087{bottom:593.898000px;}
.y12_c00087{bottom:601.473450px;}
.y26_c00087{bottom:612.498000px;}
.y25_c00087{bottom:631.098000px;}
.y11_c00087{bottom:641.217450px;}
.y10_c00087{bottom:665.967450px;}
.yf_c00087{bottom:690.717450px;}
.ye_c00087{bottom:715.467450px;}
.yd_c00087{bottom:740.217450px;}
.yc_c00087{bottom:764.967450px;}
.yb_c00087{bottom:789.717450px;}
.ya_c00087{bottom:814.467450px;}
.y9_c00087{bottom:839.217450px;}
.y8_c00087{bottom:863.967450px;}
.y7_c00087{bottom:888.717450px;}
.y6_c00087{bottom:928.467450px;}
.y5_c00087{bottom:953.217450px;}
.y4_c00087{bottom:977.967450px;}
.y3_c00087{bottom:1002.717450px;}
.y2_c00087{bottom:1042.467450px;}
.y1_c00087{bottom:1093.601100px;}
.h2_c00087{height:39.264000px;}
.h4_c00087{height:39.280200px;}
.h6_c00087{height:48.600000px;}
.h5_c00087{height:49.080000px;}
.h3_c00087{height:58.896000px;}
.h1_c00087{height:1135.500000px;}
.h0_c00087{height:1135.506150px;}
.w0_c00087{width:893.950200px;}
.w1_c00087{width:894.000000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:77.603100px;}
.x2_c00087{left:391.264350px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.v1_c00087{vertical-align:21.312000pt;}
.ls11_c00087{letter-spacing:-1.344000pt;}
.lse_c00087{letter-spacing:-0.896000pt;}
.lsc_c00087{letter-spacing:-0.858176pt;}
.lsa_c00087{letter-spacing:-0.640000pt;}
.ls13_c00087{letter-spacing:-0.597333pt;}
.ls9_c00087{letter-spacing:-0.576000pt;}
.ls12_c00087{letter-spacing:-0.554667pt;}
.lsf_c00087{letter-spacing:-0.512000pt;}
.lsb_c00087{letter-spacing:-0.320000pt;}
.ls10_c00087{letter-spacing:-0.223872pt;}
.ls6_c00087{letter-spacing:-0.213333pt;}
.lsd_c00087{letter-spacing:-0.128000pt;}
.ls7_c00087{letter-spacing:0.000000pt;}
.ls4_c00087{letter-spacing:0.064000pt;}
.ls2_c00087{letter-spacing:0.192000pt;}
.ls8_c00087{letter-spacing:0.373120pt;}
.ls3_c00087{letter-spacing:0.384000pt;}
.ls1_c00087{letter-spacing:0.640000pt;}
.ls5_c00087{letter-spacing:0.753600pt;}
.ls0_c00087{letter-spacing:0.832000pt;}
.ws1_c00087{word-spacing:-14.528000pt;}
.ws5_c00087{word-spacing:-14.208000pt;}
.ws8_c00087{word-spacing:-14.144000pt;}
.ws2_c00087{word-spacing:-13.952000pt;}
.ws4_c00087{word-spacing:-13.888000pt;}
.ws7_c00087{word-spacing:-13.632000pt;}
.wsa_c00087{word-spacing:-13.312000pt;}
.wsb_c00087{word-spacing:-9.685333pt;}
.wsc_c00087{word-spacing:-9.130667pt;}
.wsd_c00087{word-spacing:-9.088000pt;}
.ws3_c00087{word-spacing:-8.842944pt;}
.ws9_c00087{word-spacing:-8.245952pt;}
.ws6_c00087{word-spacing:-7.611648pt;}
.ws1b_c00087{word-spacing:-2.496000pt;}
.ws25_c00087{word-spacing:-2.432000pt;}
.ws1a_c00087{word-spacing:-2.048000pt;}
.ws21_c00087{word-spacing:-1.856000pt;}
.ws14_c00087{word-spacing:-1.600000pt;}
.ws1f_c00087{word-spacing:-1.216000pt;}
.ws19_c00087{word-spacing:-0.768000pt;}
.ws11_c00087{word-spacing:-0.640000pt;}
.ws15_c00087{word-spacing:-0.373120pt;}
.ws20_c00087{word-spacing:-0.256000pt;}
.ws24_c00087{word-spacing:-0.128000pt;}
.wse_c00087{word-spacing:0.000000pt;}
.ws29_c00087{word-spacing:0.128000pt;}
.ws1d_c00087{word-spacing:0.576000pt;}
.ws23_c00087{word-spacing:0.640000pt;}
.ws27_c00087{word-spacing:0.832000pt;}
.ws1e_c00087{word-spacing:0.896000pt;}
.ws18_c00087{word-spacing:0.960000pt;}
.ws22_c00087{word-spacing:1.664000pt;}
.ws26_c00087{word-spacing:2.048000pt;}
.ws12_c00087{word-spacing:2.432000pt;}
.ws17_c00087{word-spacing:2.624000pt;}
.ws13_c00087{word-spacing:3.072000pt;}
.ws16_c00087{word-spacing:3.264000pt;}
.ws1c_c00087{word-spacing:3.648000pt;}
.wsf_c00087{word-spacing:4.160000pt;}
.ws10_c00087{word-spacing:4.480000pt;}
.ws28_c00087{word-spacing:5.376000pt;}
.ws0_c00087{word-spacing:1420.539733pt;}
._8_c00087{margin-left:-5.706667pt;}
._3_c00087{margin-left:-3.882667pt;}
._0_c00087{margin-left:-1.877333pt;}
._1_c00087{margin-left:-0.981333pt;}
._4_c00087{width:1.045333pt;}
._6_c00087{width:2.986667pt;}
._7_c00087{width:4.209067pt;}
._5_c00087{width:6.413333pt;}
._2_c00087{width:50.368000pt;}
.fs2_c00087{font-size:37.312000pt;}
.fs0_c00087{font-size:42.666667pt;}
.fs3_c00087{font-size:53.333333pt;}
.fs1_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y24_c00087{bottom:99.210933pt;}
.y23_c00087{bottom:120.103333pt;}
.y22_c00087{bottom:140.995733pt;}
.y21_c00087{bottom:161.891733pt;}
.y20_c00087{bottom:213.304400pt;}
.y1f_c00087{bottom:235.304400pt;}
.y1e_c00087{bottom:257.309733pt;}
.y1d_c00087{bottom:279.309733pt;}
.y1c_c00087{bottom:301.309733pt;}
.y1b_c00087{bottom:336.637733pt;}
.y1a_c00087{bottom:358.637733pt;}
.y19_c00087{bottom:380.643067pt;}
.y18_c00087{bottom:402.643067pt;}
.y17_c00087{bottom:424.643067pt;}
.y16_c00087{bottom:446.643067pt;}
.y15_c00087{bottom:468.643067pt;}
.y14_c00087{bottom:490.643067pt;}
.y13_c00087{bottom:512.643067pt;}
.y27_c00087{bottom:527.909333pt;}
.y12_c00087{bottom:534.643067pt;}
.y26_c00087{bottom:544.442667pt;}
.y25_c00087{bottom:560.976000pt;}
.y11_c00087{bottom:569.971067pt;}
.y10_c00087{bottom:591.971067pt;}
.yf_c00087{bottom:613.971067pt;}
.ye_c00087{bottom:635.971067pt;}
.yd_c00087{bottom:657.971067pt;}
.yc_c00087{bottom:679.971067pt;}
.yb_c00087{bottom:701.971067pt;}
.ya_c00087{bottom:723.971067pt;}
.y9_c00087{bottom:745.971067pt;}
.y8_c00087{bottom:767.971067pt;}
.y7_c00087{bottom:789.971067pt;}
.y6_c00087{bottom:825.304400pt;}
.y5_c00087{bottom:847.304400pt;}
.y4_c00087{bottom:869.304400pt;}
.y3_c00087{bottom:891.304400pt;}
.y2_c00087{bottom:926.637733pt;}
.y1_c00087{bottom:972.089867pt;}
.h2_c00087{height:34.901333pt;}
.h4_c00087{height:34.915733pt;}
.h6_c00087{height:43.200000pt;}
.h5_c00087{height:43.626667pt;}
.h3_c00087{height:52.352000pt;}
.h1_c00087{height:1009.333333pt;}
.h0_c00087{height:1009.338800pt;}
.w0_c00087{width:794.622400pt;}
.w1_c00087{width:794.666667pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:68.980533pt;}
.x2_c00087{left:347.790533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df9a061b616a3246b72be803.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_48d04290c8caabda15f3657d.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.067000;font-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_c00088{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.v1_c00088{vertical-align:23.952600px;}
.lsc_c00088{letter-spacing:-4.800000px;}
.ls8_c00088{letter-spacing:-1.080000px;}
.ls10_c00088{letter-spacing:-0.780000px;}
.lsa_c00088{letter-spacing:-0.648000px;}
.lse_c00088{letter-spacing:-0.480000px;}
.ls7_c00088{letter-spacing:-0.360000px;}
.lsf_c00088{letter-spacing:-0.240000px;}
.ls9_c00088{letter-spacing:-0.209880px;}
.lsd_c00088{letter-spacing:-0.192000px;}
.lsb_c00088{letter-spacing:-0.041976px;}
.ls6_c00088{letter-spacing:0.000000px;}
.ls4_c00088{letter-spacing:0.072000px;}
.ls1_c00088{letter-spacing:0.360000px;}
.ls0_c00088{letter-spacing:0.480000px;}
.ls5_c00088{letter-spacing:0.504000px;}
.ls3_c00088{letter-spacing:0.720000px;}
.ls2_c00088{letter-spacing:2.520000px;}
.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;}
}
.ws8_c00088{word-spacing:-17.064000px;}
.ws3_c00088{word-spacing:-16.488000px;}
.ws1_c00088{word-spacing:-16.344000px;}
.ws6_c00088{word-spacing:-16.128000px;}
.ws2_c00088{word-spacing:-15.984000px;}
.ws5_c00088{word-spacing:-15.408000px;}
.wsc_c00088{word-spacing:-13.740000px;}
.wsb_c00088{word-spacing:-13.620000px;}
.wsa_c00088{word-spacing:-12.960000px;}
.ws0_c00088{word-spacing:-10.896000px;}
.ws7_c00088{word-spacing:-9.486576px;}
.ws4_c00088{word-spacing:-9.402624px;}
.ws25_c00088{word-spacing:-6.336000px;}
.ws9_c00088{word-spacing:-6.096000px;}
.ws11_c00088{word-spacing:-2.376000px;}
.ws12_c00088{word-spacing:-1.584000px;}
.ws2d_c00088{word-spacing:-1.440000px;}
.ws2b_c00088{word-spacing:-0.720000px;}
.wsd_c00088{word-spacing:0.000000px;}
.ws31_c00088{word-spacing:0.192000px;}
.ws35_c00088{word-spacing:0.240000px;}
.ws1a_c00088{word-spacing:0.360000px;}
.ws34_c00088{word-spacing:0.480000px;}
.ws26_c00088{word-spacing:1.512000px;}
.wse_c00088{word-spacing:2.664000px;}
.ws22_c00088{word-spacing:2.880000px;}
.ws32_c00088{word-spacing:2.976000px;}
.ws33_c00088{word-spacing:3.024000px;}
.ws1e_c00088{word-spacing:3.096000px;}
.wsf_c00088{word-spacing:3.168000px;}
.ws2f_c00088{word-spacing:3.504000px;}
.ws2e_c00088{word-spacing:3.792000px;}
.ws30_c00088{word-spacing:3.840000px;}
.ws20_c00088{word-spacing:3.960000px;}
.ws21_c00088{word-spacing:4.248000px;}
.ws14_c00088{word-spacing:4.752000px;}
.ws15_c00088{word-spacing:5.904000px;}
.ws17_c00088{word-spacing:6.048000px;}
.ws13_c00088{word-spacing:7.632000px;}
.ws1f_c00088{word-spacing:9.216000px;}
.ws23_c00088{word-spacing:9.432000px;}
.ws1c_c00088{word-spacing:10.656000px;}
.ws2c_c00088{word-spacing:11.232000px;}
.ws1b_c00088{word-spacing:11.520000px;}
.ws29_c00088{word-spacing:12.024000px;}
.ws18_c00088{word-spacing:12.096000px;}
.ws27_c00088{word-spacing:12.240000px;}
.ws10_c00088{word-spacing:13.680000px;}
.ws16_c00088{word-spacing:14.616000px;}
.ws1d_c00088{word-spacing:15.624000px;}
.ws19_c00088{word-spacing:19.368000px;}
.ws24_c00088{word-spacing:20.736000px;}
.ws28_c00088{word-spacing:22.896000px;}
.ws2a_c00088{word-spacing:28.584000px;}
._0_c00088{margin-left:-2755.276200px;}
._4_c00088{margin-left:-6.624000px;}
._9_c00088{margin-left:-3.936000px;}
._3_c00088{margin-left:-2.760000px;}
._1_c00088{margin-left:-1.344000px;}
._2_c00088{width:1.104000px;}
._5_c00088{width:2.664000px;}
._a_c00088{width:3.696000px;}
._7_c00088{width:4.800000px;}
._8_c00088{width:6.720000px;}
._6_c00088{width:10.416000px;}
.fc0_c00088{color:rgb(35,31,32);}
.fs2_c00088{font-size:41.976000px;}
.fs0_c00088{font-size:48.000000px;}
.fs3_c00088{font-size:60.000000px;}
.fs1_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y33_c00088{bottom:111.350850px;}
.y27_c00088{bottom:111.616350px;}
.y26_c00088{bottom:126.612300px;}
.y32_c00088{bottom:129.950850px;}
.y31_c00088{bottom:148.550850px;}
.y25_c00088{bottom:150.120300px;}
.y24_c00088{bottom:165.120300px;}
.y30_c00088{bottom:167.150850px;}
.y23_c00088{bottom:180.120300px;}
.y22_c00088{bottom:195.120300px;}
.y21_c00088{bottom:245.223450px;}
.y20_c00088{bottom:269.973450px;}
.y1f_c00088{bottom:294.723450px;}
.y1e_c00088{bottom:319.473450px;}
.y1d_c00088{bottom:359.217450px;}
.y1c_c00088{bottom:383.967450px;}
.y1b_c00088{bottom:408.717450px;}
.y1a_c00088{bottom:433.467450px;}
.y19_c00088{bottom:458.217450px;}
.y18_c00088{bottom:482.967450px;}
.y17_c00088{bottom:507.717450px;}
.y16_c00088{bottom:532.467450px;}
.y15_c00088{bottom:557.217450px;}
.y14_c00088{bottom:581.967450px;}
.y13_c00088{bottom:606.717450px;}
.y12_c00088{bottom:631.467450px;}
.y11_c00088{bottom:656.217450px;}
.y10_c00088{bottom:680.967450px;}
.y2f_c00088{bottom:696.747750px;}
.yf_c00088{bottom:705.723450px;}
.y2e_c00088{bottom:715.347750px;}
.ye_c00088{bottom:730.473450px;}
.y2d_c00088{bottom:733.947750px;}
.y2c_c00088{bottom:752.547750px;}
.yd_c00088{bottom:755.223450px;}
.y2b_c00088{bottom:771.147750px;}
.yc_c00088{bottom:779.973450px;}
.y2a_c00088{bottom:789.747750px;}
.yb_c00088{bottom:804.723450px;}
.y29_c00088{bottom:808.347750px;}
.y28_c00088{bottom:826.947750px;}
.ya_c00088{bottom:829.473450px;}
.y9_c00088{bottom:854.223450px;}
.y8_c00088{bottom:878.973450px;}
.y7_c00088{bottom:918.717450px;}
.y6_c00088{bottom:943.467450px;}
.y5_c00088{bottom:968.217450px;}
.y4_c00088{bottom:992.967450px;}
.y3_c00088{bottom:1017.717450px;}
.y2_c00088{bottom:1042.467450px;}
.y1_c00088{bottom:1093.601100px;}
.h2_c00088{height:39.264000px;}
.h5_c00088{height:39.280200px;}
.h3_c00088{height:39.984000px;}
.h7_c00088{height:48.600000px;}
.h6_c00088{height:49.080000px;}
.h4_c00088{height:58.896000px;}
.h1_c00088{height:1135.500000px;}
.h0_c00088{height:1135.506150px;}
.w0_c00088{width:893.950200px;}
.w1_c00088{width:894.000000px;}
.x0_c00088{left:0.000000px;}
.x4_c00088{left:128.626800px;}
.x5_c00088{left:145.636500px;}
.x2_c00088{left:188.061900px;}
.x3_c00088{left:190.513350px;}
.x7_c00088{left:477.543150px;}
.x6_c00088{left:675.429900px;}
.x1_c00088{left:806.609850px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.v1_c00088{vertical-align:21.291200pt;}
.lsc_c00088{letter-spacing:-4.266667pt;}
.ls8_c00088{letter-spacing:-0.960000pt;}
.ls10_c00088{letter-spacing:-0.693333pt;}
.lsa_c00088{letter-spacing:-0.576000pt;}
.lse_c00088{letter-spacing:-0.426667pt;}
.ls7_c00088{letter-spacing:-0.320000pt;}
.lsf_c00088{letter-spacing:-0.213333pt;}
.ls9_c00088{letter-spacing:-0.186560pt;}
.lsd_c00088{letter-spacing:-0.170667pt;}
.lsb_c00088{letter-spacing:-0.037312pt;}
.ls6_c00088{letter-spacing:0.000000pt;}
.ls4_c00088{letter-spacing:0.064000pt;}
.ls1_c00088{letter-spacing:0.320000pt;}
.ls0_c00088{letter-spacing:0.426667pt;}
.ls5_c00088{letter-spacing:0.448000pt;}
.ls3_c00088{letter-spacing:0.640000pt;}
.ls2_c00088{letter-spacing:2.240000pt;}
.ws8_c00088{word-spacing:-15.168000pt;}
.ws3_c00088{word-spacing:-14.656000pt;}
.ws1_c00088{word-spacing:-14.528000pt;}
.ws6_c00088{word-spacing:-14.336000pt;}
.ws2_c00088{word-spacing:-14.208000pt;}
.ws5_c00088{word-spacing:-13.696000pt;}
.wsc_c00088{word-spacing:-12.213333pt;}
.wsb_c00088{word-spacing:-12.106667pt;}
.wsa_c00088{word-spacing:-11.520000pt;}
.ws0_c00088{word-spacing:-9.685333pt;}
.ws7_c00088{word-spacing:-8.432512pt;}
.ws4_c00088{word-spacing:-8.357888pt;}
.ws25_c00088{word-spacing:-5.632000pt;}
.ws9_c00088{word-spacing:-5.418667pt;}
.ws11_c00088{word-spacing:-2.112000pt;}
.ws12_c00088{word-spacing:-1.408000pt;}
.ws2d_c00088{word-spacing:-1.280000pt;}
.ws2b_c00088{word-spacing:-0.640000pt;}
.wsd_c00088{word-spacing:0.000000pt;}
.ws31_c00088{word-spacing:0.170667pt;}
.ws35_c00088{word-spacing:0.213333pt;}
.ws1a_c00088{word-spacing:0.320000pt;}
.ws34_c00088{word-spacing:0.426667pt;}
.ws26_c00088{word-spacing:1.344000pt;}
.wse_c00088{word-spacing:2.368000pt;}
.ws22_c00088{word-spacing:2.560000pt;}
.ws32_c00088{word-spacing:2.645333pt;}
.ws33_c00088{word-spacing:2.688000pt;}
.ws1e_c00088{word-spacing:2.752000pt;}
.wsf_c00088{word-spacing:2.816000pt;}
.ws2f_c00088{word-spacing:3.114667pt;}
.ws2e_c00088{word-spacing:3.370667pt;}
.ws30_c00088{word-spacing:3.413333pt;}
.ws20_c00088{word-spacing:3.520000pt;}
.ws21_c00088{word-spacing:3.776000pt;}
.ws14_c00088{word-spacing:4.224000pt;}
.ws15_c00088{word-spacing:5.248000pt;}
.ws17_c00088{word-spacing:5.376000pt;}
.ws13_c00088{word-spacing:6.784000pt;}
.ws1f_c00088{word-spacing:8.192000pt;}
.ws23_c00088{word-spacing:8.384000pt;}
.ws1c_c00088{word-spacing:9.472000pt;}
.ws2c_c00088{word-spacing:9.984000pt;}
.ws1b_c00088{word-spacing:10.240000pt;}
.ws29_c00088{word-spacing:10.688000pt;}
.ws18_c00088{word-spacing:10.752000pt;}
.ws27_c00088{word-spacing:10.880000pt;}
.ws10_c00088{word-spacing:12.160000pt;}
.ws16_c00088{word-spacing:12.992000pt;}
.ws1d_c00088{word-spacing:13.888000pt;}
.ws19_c00088{word-spacing:17.216000pt;}
.ws24_c00088{word-spacing:18.432000pt;}
.ws28_c00088{word-spacing:20.352000pt;}
.ws2a_c00088{word-spacing:25.408000pt;}
._0_c00088{margin-left:-2449.134400pt;}
._4_c00088{margin-left:-5.888000pt;}
._9_c00088{margin-left:-3.498667pt;}
._3_c00088{margin-left:-2.453333pt;}
._1_c00088{margin-left:-1.194667pt;}
._2_c00088{width:0.981333pt;}
._5_c00088{width:2.368000pt;}
._a_c00088{width:3.285333pt;}
._7_c00088{width:4.266667pt;}
._8_c00088{width:5.973333pt;}
._6_c00088{width:9.258667pt;}
.fs2_c00088{font-size:37.312000pt;}
.fs0_c00088{font-size:42.666667pt;}
.fs3_c00088{font-size:53.333333pt;}
.fs1_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y33_c00088{bottom:98.978533pt;}
.y27_c00088{bottom:99.214533pt;}
.y26_c00088{bottom:112.544267pt;}
.y32_c00088{bottom:115.511867pt;}
.y31_c00088{bottom:132.045200pt;}
.y25_c00088{bottom:133.440267pt;}
.y24_c00088{bottom:146.773600pt;}
.y30_c00088{bottom:148.578533pt;}
.y23_c00088{bottom:160.106933pt;}
.y22_c00088{bottom:173.440267pt;}
.y21_c00088{bottom:217.976400pt;}
.y20_c00088{bottom:239.976400pt;}
.y1f_c00088{bottom:261.976400pt;}
.y1e_c00088{bottom:283.976400pt;}
.y1d_c00088{bottom:319.304400pt;}
.y1c_c00088{bottom:341.304400pt;}
.y1b_c00088{bottom:363.304400pt;}
.y1a_c00088{bottom:385.304400pt;}
.y19_c00088{bottom:407.304400pt;}
.y18_c00088{bottom:429.304400pt;}
.y17_c00088{bottom:451.304400pt;}
.y16_c00088{bottom:473.304400pt;}
.y15_c00088{bottom:495.304400pt;}
.y14_c00088{bottom:517.304400pt;}
.y13_c00088{bottom:539.304400pt;}
.y12_c00088{bottom:561.304400pt;}
.y11_c00088{bottom:583.304400pt;}
.y10_c00088{bottom:605.304400pt;}
.y2f_c00088{bottom:619.331333pt;}
.yf_c00088{bottom:627.309733pt;}
.y2e_c00088{bottom:635.864667pt;}
.ye_c00088{bottom:649.309733pt;}
.y2d_c00088{bottom:652.398000pt;}
.y2c_c00088{bottom:668.931333pt;}
.yd_c00088{bottom:671.309733pt;}
.y2b_c00088{bottom:685.464667pt;}
.yc_c00088{bottom:693.309733pt;}
.y2a_c00088{bottom:701.998000pt;}
.yb_c00088{bottom:715.309733pt;}
.y29_c00088{bottom:718.531333pt;}
.y28_c00088{bottom:735.064667pt;}
.ya_c00088{bottom:737.309733pt;}
.y9_c00088{bottom:759.309733pt;}
.y8_c00088{bottom:781.309733pt;}
.y7_c00088{bottom:816.637733pt;}
.y6_c00088{bottom:838.637733pt;}
.y5_c00088{bottom:860.637733pt;}
.y4_c00088{bottom:882.637733pt;}
.y3_c00088{bottom:904.637733pt;}
.y2_c00088{bottom:926.637733pt;}
.y1_c00088{bottom:972.089867pt;}
.h2_c00088{height:34.901333pt;}
.h5_c00088{height:34.915733pt;}
.h3_c00088{height:35.541333pt;}
.h7_c00088{height:43.200000pt;}
.h6_c00088{height:43.626667pt;}
.h4_c00088{height:52.352000pt;}
.h1_c00088{height:1009.333333pt;}
.h0_c00088{height:1009.338800pt;}
.w0_c00088{width:794.622400pt;}
.w1_c00088{width:794.666667pt;}
.x0_c00088{left:0.000000pt;}
.x4_c00088{left:114.334933pt;}
.x5_c00088{left:129.454667pt;}
.x2_c00088{left:167.166133pt;}
.x3_c00088{left:169.345200pt;}
.x7_c00088{left:424.482800pt;}
.x6_c00088{left:600.382133pt;}
.x1_c00088{left:716.986533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_639e1769f5bef2972f281c41.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_6939db3a58d8f75adc2cedb6.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:23.928000px;}
.lsa_c00089{letter-spacing:-2.088000px;}
.ls9_c00089{letter-spacing:-0.432000px;}
.ls8_c00089{letter-spacing:-0.360000px;}
.lsd_c00089{letter-spacing:-0.240000px;}
.lsc_c00089{letter-spacing:-0.144000px;}
.lsb_c00089{letter-spacing:-0.125928px;}
.ls5_c00089{letter-spacing:0.000000px;}
.ls3_c00089{letter-spacing:0.072000px;}
.ls2_c00089{letter-spacing:0.360000px;}
.ls7_c00089{letter-spacing:0.432000px;}
.ls1_c00089{letter-spacing:0.504000px;}
.ls4_c00089{letter-spacing:0.576000px;}
.ls0_c00089{letter-spacing:0.720000px;}
.ls6_c00089{letter-spacing:1.224000px;}
.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;}
}
.ws2_c00089{word-spacing:-17.568000px;}
.ws3_c00089{word-spacing:-16.704000px;}
.ws4_c00089{word-spacing:-16.488000px;}
.ws1_c00089{word-spacing:-16.344000px;}
.ws5_c00089{word-spacing:-14.256000px;}
.ws6_c00089{word-spacing:-10.752000px;}
.ws1b_c00089{word-spacing:-3.168000px;}
.ws18_c00089{word-spacing:-1.728000px;}
.wsa_c00089{word-spacing:-1.008000px;}
.wsb_c00089{word-spacing:-0.720000px;}
.ws15_c00089{word-spacing:-0.648000px;}
.ws12_c00089{word-spacing:-0.360000px;}
.ws17_c00089{word-spacing:-0.216000px;}
.ws7_c00089{word-spacing:0.000000px;}
.ws1e_c00089{word-spacing:0.125928px;}
.ws1f_c00089{word-spacing:0.240000px;}
.ws19_c00089{word-spacing:0.432000px;}
.wse_c00089{word-spacing:0.504000px;}
.ws8_c00089{word-spacing:0.792000px;}
.ws9_c00089{word-spacing:1.440000px;}
.ws1a_c00089{word-spacing:1.512000px;}
.ws1c_c00089{word-spacing:2.160000px;}
.wsd_c00089{word-spacing:2.520000px;}
.ws1d_c00089{word-spacing:3.888000px;}
.ws14_c00089{word-spacing:3.960000px;}
.ws13_c00089{word-spacing:4.680000px;}
.ws16_c00089{word-spacing:5.688000px;}
.wsc_c00089{word-spacing:5.976000px;}
.wsf_c00089{word-spacing:8.064000px;}
.ws10_c00089{word-spacing:8.208000px;}
.ws11_c00089{word-spacing:8.280000px;}
.ws0_c00089{word-spacing:1598.971200px;}
._6_c00089{margin-left:-6.480000px;}
._4_c00089{margin-left:-3.120000px;}
._0_c00089{margin-left:-2.112000px;}
._1_c00089{margin-left:-1.104000px;}
._3_c00089{width:1.224000px;}
._2_c00089{width:2.304000px;}
._7_c00089{width:3.480000px;}
._5_c00089{width:4.536000px;}
.fc0_c00089{color:rgb(35,31,32);}
.fs2_c00089{font-size:41.976000px;}
.fs0_c00089{font-size:48.000000px;}
.fs3_c00089{font-size:60.000000px;}
.fs1_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y17_c00089{bottom:111.616350px;}
.y16_c00089{bottom:186.676350px;}
.y15_c00089{bottom:211.426350px;}
.y14_c00089{bottom:236.176350px;}
.y13_c00089{bottom:260.926350px;}
.y12_c00089{bottom:285.676350px;}
.y11_c00089{bottom:310.426350px;}
.y10_c00089{bottom:335.176350px;}
.yf_c00089{bottom:359.926350px;}
.ye_c00089{bottom:384.676350px;}
.yd_c00089{bottom:424.420350px;}
.yc_c00089{bottom:449.170350px;}
.yb_c00089{bottom:473.920350px;}
.ya_c00089{bottom:498.670350px;}
.y9_c00089{bottom:523.420350px;}
.y8_c00089{bottom:548.170350px;}
.y7_c00089{bottom:572.920350px;}
.y6_c00089{bottom:597.670350px;}
.y5_c00089{bottom:622.420350px;}
.y4_c00089{bottom:662.164350px;}
.y3_c00089{bottom:686.914350px;}
.y2_c00089{bottom:711.664350px;}
.y1a_c00089{bottom:756.087300px;}
.y19_c00089{bottom:774.687300px;}
.y18_c00089{bottom:793.287300px;}
.y1_c00089{bottom:1093.601100px;}
.h2_c00089{height:39.264000px;}
.h5_c00089{height:48.600000px;}
.h4_c00089{height:49.080000px;}
.h3_c00089{height:58.896000px;}
.h1_c00089{height:1135.500000px;}
.h0_c00089{height:1135.506150px;}
.w0_c00089{width:893.950200px;}
.w1_c00089{width:894.000000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:77.603100px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:21.269333pt;}
.lsa_c00089{letter-spacing:-1.856000pt;}
.ls9_c00089{letter-spacing:-0.384000pt;}
.ls8_c00089{letter-spacing:-0.320000pt;}
.lsd_c00089{letter-spacing:-0.213333pt;}
.lsc_c00089{letter-spacing:-0.128000pt;}
.lsb_c00089{letter-spacing:-0.111936pt;}
.ls5_c00089{letter-spacing:0.000000pt;}
.ls3_c00089{letter-spacing:0.064000pt;}
.ls2_c00089{letter-spacing:0.320000pt;}
.ls7_c00089{letter-spacing:0.384000pt;}
.ls1_c00089{letter-spacing:0.448000pt;}
.ls4_c00089{letter-spacing:0.512000pt;}
.ls0_c00089{letter-spacing:0.640000pt;}
.ls6_c00089{letter-spacing:1.088000pt;}
.ws2_c00089{word-spacing:-15.616000pt;}
.ws3_c00089{word-spacing:-14.848000pt;}
.ws4_c00089{word-spacing:-14.656000pt;}
.ws1_c00089{word-spacing:-14.528000pt;}
.ws5_c00089{word-spacing:-12.672000pt;}
.ws6_c00089{word-spacing:-9.557333pt;}
.ws1b_c00089{word-spacing:-2.816000pt;}
.ws18_c00089{word-spacing:-1.536000pt;}
.wsa_c00089{word-spacing:-0.896000pt;}
.wsb_c00089{word-spacing:-0.640000pt;}
.ws15_c00089{word-spacing:-0.576000pt;}
.ws12_c00089{word-spacing:-0.320000pt;}
.ws17_c00089{word-spacing:-0.192000pt;}
.ws7_c00089{word-spacing:0.000000pt;}
.ws1e_c00089{word-spacing:0.111936pt;}
.ws1f_c00089{word-spacing:0.213333pt;}
.ws19_c00089{word-spacing:0.384000pt;}
.wse_c00089{word-spacing:0.448000pt;}
.ws8_c00089{word-spacing:0.704000pt;}
.ws9_c00089{word-spacing:1.280000pt;}
.ws1a_c00089{word-spacing:1.344000pt;}
.ws1c_c00089{word-spacing:1.920000pt;}
.wsd_c00089{word-spacing:2.240000pt;}
.ws1d_c00089{word-spacing:3.456000pt;}
.ws14_c00089{word-spacing:3.520000pt;}
.ws13_c00089{word-spacing:4.160000pt;}
.ws16_c00089{word-spacing:5.056000pt;}
.wsc_c00089{word-spacing:5.312000pt;}
.wsf_c00089{word-spacing:7.168000pt;}
.ws10_c00089{word-spacing:7.296000pt;}
.ws11_c00089{word-spacing:7.360000pt;}
.ws0_c00089{word-spacing:1421.307733pt;}
._6_c00089{margin-left:-5.760000pt;}
._4_c00089{margin-left:-2.773333pt;}
._0_c00089{margin-left:-1.877333pt;}
._1_c00089{margin-left:-0.981333pt;}
._3_c00089{width:1.088000pt;}
._2_c00089{width:2.048000pt;}
._7_c00089{width:3.093333pt;}
._5_c00089{width:4.032000pt;}
.fs2_c00089{font-size:37.312000pt;}
.fs0_c00089{font-size:42.666667pt;}
.fs3_c00089{font-size:53.333333pt;}
.fs1_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y17_c00089{bottom:99.214533pt;}
.y16_c00089{bottom:165.934533pt;}
.y15_c00089{bottom:187.934533pt;}
.y14_c00089{bottom:209.934533pt;}
.y13_c00089{bottom:231.934533pt;}
.y12_c00089{bottom:253.934533pt;}
.y11_c00089{bottom:275.934533pt;}
.y10_c00089{bottom:297.934533pt;}
.yf_c00089{bottom:319.934533pt;}
.ye_c00089{bottom:341.934533pt;}
.yd_c00089{bottom:377.262533pt;}
.yc_c00089{bottom:399.262533pt;}
.yb_c00089{bottom:421.262533pt;}
.ya_c00089{bottom:443.262533pt;}
.y9_c00089{bottom:465.262533pt;}
.y8_c00089{bottom:487.262533pt;}
.y7_c00089{bottom:509.262533pt;}
.y6_c00089{bottom:531.262533pt;}
.y5_c00089{bottom:553.262533pt;}
.y4_c00089{bottom:588.590533pt;}
.y3_c00089{bottom:610.590533pt;}
.y2_c00089{bottom:632.590533pt;}
.y1a_c00089{bottom:672.077600pt;}
.y19_c00089{bottom:688.610933pt;}
.y18_c00089{bottom:705.144267pt;}
.y1_c00089{bottom:972.089867pt;}
.h2_c00089{height:34.901333pt;}
.h5_c00089{height:43.200000pt;}
.h4_c00089{height:43.626667pt;}
.h3_c00089{height:52.352000pt;}
.h1_c00089{height:1009.333333pt;}
.h0_c00089{height:1009.338800pt;}
.w0_c00089{width:794.622400pt;}
.w1_c00089{width:794.666667pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63ccb77c8802f2ef4d5dcde9.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_d991f21efa142ff0ffe8d626.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.067000;font-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_c00090{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.v1_c00090{vertical-align:20.916000px;}
.ls6_c00090{letter-spacing:-1.440000px;}
.ls5_c00090{letter-spacing:-1.200000px;}
.ls2_c00090{letter-spacing:-0.288000px;}
.ls4_c00090{letter-spacing:-0.240000px;}
.ls3_c00090{letter-spacing:-0.183645px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00090{word-spacing:0.000000px;}
.ws4_c00090{word-spacing:0.183645px;}
.ws5_c00090{word-spacing:0.240000px;}
.ws3_c00090{word-spacing:0.288000px;}
.ws2_c00090{word-spacing:3.816000px;}
._0_c00090{margin-left:-2755.276200px;}
._4_c00090{margin-left:-8.568000px;}
._5_c00090{margin-left:-5.880000px;}
._6_c00090{margin-left:-4.704000px;}
._3_c00090{margin-left:-2.352000px;}
._1_c00090{margin-left:-1.344000px;}
._2_c00090{width:1.104000px;}
.fc0_c00090{color:rgb(35,31,32);}
.fs3_c00090{font-size:36.729000px;}
.fs0_c00090{font-size:48.000000px;}
.fs5_c00090{font-size:55.505400px;}
.fs4_c00090{font-size:60.000000px;}
.fs2_c00090{font-size:63.000000px;}
.fs1_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y8_c00090{bottom:98.860350px;}
.y7_c00090{bottom:146.872500px;}
.y6_c00090{bottom:167.867250px;}
.y5_c00090{bottom:188.862000px;}
.y4_c00090{bottom:209.856750px;}
.y3_c00090{bottom:239.360700px;}
.y2_c00090{bottom:264.110700px;}
.yb_c00090{bottom:304.281600px;}
.ya_c00090{bottom:322.881600px;}
.y9_c00090{bottom:341.481600px;}
.y15_c00090{bottom:688.026450px;}
.y10_c00090{bottom:690.236550px;}
.y14_c00090{bottom:706.626450px;}
.yf_c00090{bottom:708.836550px;}
.y13_c00090{bottom:725.226450px;}
.ye_c00090{bottom:727.436550px;}
.y12_c00090{bottom:743.826450px;}
.yd_c00090{bottom:746.036550px;}
.y11_c00090{bottom:762.426450px;}
.yc_c00090{bottom:764.636550px;}
.y1_c00090{bottom:1093.601100px;}
.h2_c00090{height:39.264000px;}
.h3_c00090{height:39.984000px;}
.h9_c00090{height:45.403417px;}
.h8_c00090{height:48.600000px;}
.h7_c00090{height:49.080000px;}
.h6_c00090{height:51.030000px;}
.h5_c00090{height:51.534000px;}
.h4_c00090{height:58.896000px;}
.h1_c00090{height:1135.500000px;}
.h0_c00090{height:1135.506150px;}
.w0_c00090{width:893.950200px;}
.w1_c00090{width:894.000000px;}
.x0_c00090{left:0.000000px;}
.x4_c00090{left:128.626800px;}
.x5_c00090{left:149.886600px;}
.x2_c00090{left:188.061900px;}
.x3_c00090{left:190.513350px;}
.x6_c00090{left:328.329750px;}
.x1_c00090{left:806.021850px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.v1_c00090{vertical-align:18.592000pt;}
.ls6_c00090{letter-spacing:-1.280000pt;}
.ls5_c00090{letter-spacing:-1.066667pt;}
.ls2_c00090{letter-spacing:-0.256000pt;}
.ls4_c00090{letter-spacing:-0.213333pt;}
.ls3_c00090{letter-spacing:-0.163240pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:0.426667pt;}
.ws0_c00090{word-spacing:-9.685333pt;}
.ws1_c00090{word-spacing:0.000000pt;}
.ws4_c00090{word-spacing:0.163240pt;}
.ws5_c00090{word-spacing:0.213333pt;}
.ws3_c00090{word-spacing:0.256000pt;}
.ws2_c00090{word-spacing:3.392000pt;}
._0_c00090{margin-left:-2449.134400pt;}
._4_c00090{margin-left:-7.616000pt;}
._5_c00090{margin-left:-5.226667pt;}
._6_c00090{margin-left:-4.181333pt;}
._3_c00090{margin-left:-2.090667pt;}
._1_c00090{margin-left:-1.194667pt;}
._2_c00090{width:0.981333pt;}
.fs3_c00090{font-size:32.648000pt;}
.fs0_c00090{font-size:42.666667pt;}
.fs5_c00090{font-size:49.338133pt;}
.fs4_c00090{font-size:53.333333pt;}
.fs2_c00090{font-size:56.000000pt;}
.fs1_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y8_c00090{bottom:87.875867pt;}
.y7_c00090{bottom:130.553333pt;}
.y6_c00090{bottom:149.215333pt;}
.y5_c00090{bottom:167.877333pt;}
.y4_c00090{bottom:186.539333pt;}
.y3_c00090{bottom:212.765067pt;}
.y2_c00090{bottom:234.765067pt;}
.yb_c00090{bottom:270.472533pt;}
.ya_c00090{bottom:287.005867pt;}
.y9_c00090{bottom:303.539200pt;}
.y15_c00090{bottom:611.579067pt;}
.y10_c00090{bottom:613.543600pt;}
.y14_c00090{bottom:628.112400pt;}
.yf_c00090{bottom:630.076933pt;}
.y13_c00090{bottom:644.645733pt;}
.ye_c00090{bottom:646.610267pt;}
.y12_c00090{bottom:661.179067pt;}
.yd_c00090{bottom:663.143600pt;}
.y11_c00090{bottom:677.712400pt;}
.yc_c00090{bottom:679.676933pt;}
.y1_c00090{bottom:972.089867pt;}
.h2_c00090{height:34.901333pt;}
.h3_c00090{height:35.541333pt;}
.h9_c00090{height:40.358593pt;}
.h8_c00090{height:43.200000pt;}
.h7_c00090{height:43.626667pt;}
.h6_c00090{height:45.360000pt;}
.h5_c00090{height:45.808000pt;}
.h4_c00090{height:52.352000pt;}
.h1_c00090{height:1009.333333pt;}
.h0_c00090{height:1009.338800pt;}
.w0_c00090{width:794.622400pt;}
.w1_c00090{width:794.666667pt;}
.x0_c00090{left:0.000000pt;}
.x4_c00090{left:114.334933pt;}
.x5_c00090{left:133.232533pt;}
.x2_c00090{left:167.166133pt;}
.x3_c00090{left:169.345200pt;}
.x6_c00090{left:291.848667pt;}
.x1_c00090{left:716.463867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a126ca433450b65469a05bf.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_85e1c41877804ce11a73b4f0.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.v1_c00091{vertical-align:23.976600px;}
.ls10_c00091{letter-spacing:-6.900000px;}
.ls5_c00091{letter-spacing:-2.088000px;}
.ls7_c00091{letter-spacing:-1.944000px;}
.ls6_c00091{letter-spacing:-1.440000px;}
.ls4_c00091{letter-spacing:-1.008000px;}
.lse_c00091{letter-spacing:-0.960000px;}
.ls9_c00091{letter-spacing:-0.936000px;}
.ls3_c00091{letter-spacing:-0.720000px;}
.ls1_c00091{letter-spacing:-0.504000px;}
.lsc_c00091{letter-spacing:-0.360000px;}
.lsa_c00091{letter-spacing:-0.288000px;}
.lsf_c00091{letter-spacing:-0.240000px;}
.ls2_c00091{letter-spacing:-0.144000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.lsb_c00091{letter-spacing:0.360000px;}
.ls8_c00091{letter-spacing:0.419760px;}
.lsd_c00091{letter-spacing:0.960000px;}
.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;}
}
.ws8_c00091{word-spacing:-16.488000px;}
.ws1_c00091{word-spacing:-16.344000px;}
.ws3_c00091{word-spacing:-16.200000px;}
.ws9_c00091{word-spacing:-15.984000px;}
.ws2_c00091{word-spacing:-15.840000px;}
.ws5_c00091{word-spacing:-15.048000px;}
.ws6_c00091{word-spacing:-14.544000px;}
.ws4_c00091{word-spacing:-14.256000px;}
.wsb_c00091{word-spacing:-13.500000px;}
.wsa_c00091{word-spacing:-11.856000px;}
.ws7_c00091{word-spacing:-9.948312px;}
.ws29_c00091{word-spacing:-2.736000px;}
.ws1d_c00091{word-spacing:-1.656000px;}
.ws25_c00091{word-spacing:-1.296000px;}
.wsc_c00091{word-spacing:0.000000px;}
.ws23_c00091{word-spacing:0.360000px;}
.ws2e_c00091{word-spacing:0.648000px;}
.wsf_c00091{word-spacing:0.720000px;}
.ws24_c00091{word-spacing:0.792000px;}
.ws1e_c00091{word-spacing:0.936000px;}
.ws31_c00091{word-spacing:0.960000px;}
.ws14_c00091{word-spacing:1.008000px;}
.ws2f_c00091{word-spacing:1.152000px;}
.ws2b_c00091{word-spacing:1.440000px;}
.ws1f_c00091{word-spacing:1.512000px;}
.ws18_c00091{word-spacing:4.248000px;}
.ws19_c00091{word-spacing:4.536000px;}
.ws30_c00091{word-spacing:5.136000px;}
.ws11_c00091{word-spacing:5.256000px;}
.ws21_c00091{word-spacing:5.472000px;}
.ws2c_c00091{word-spacing:5.688000px;}
.ws10_c00091{word-spacing:5.904000px;}
.ws32_c00091{word-spacing:6.900000px;}
.wse_c00091{word-spacing:8.208000px;}
.ws13_c00091{word-spacing:8.568000px;}
.ws26_c00091{word-spacing:8.856000px;}
.ws27_c00091{word-spacing:9.216000px;}
.ws2d_c00091{word-spacing:9.648000px;}
.ws12_c00091{word-spacing:10.296000px;}
.ws16_c00091{word-spacing:11.880000px;}
.ws2a_c00091{word-spacing:12.096000px;}
.ws15_c00091{word-spacing:12.168000px;}
.ws17_c00091{word-spacing:15.336000px;}
.ws28_c00091{word-spacing:16.128000px;}
.ws20_c00091{word-spacing:17.136000px;}
.wsd_c00091{word-spacing:18.360000px;}
.ws1b_c00091{word-spacing:18.648000px;}
.ws22_c00091{word-spacing:19.728000px;}
.ws1c_c00091{word-spacing:20.376000px;}
.ws1a_c00091{word-spacing:20.520000px;}
.ws0_c00091{word-spacing:1594.939200px;}
._3_c00091{margin-left:-6.168000px;}
._6_c00091{margin-left:-4.992000px;}
._5_c00091{margin-left:-3.816000px;}
._0_c00091{margin-left:-2.112000px;}
._1_c00091{margin-left:-1.104000px;}
._2_c00091{width:1.224000px;}
._4_c00091{width:2.664000px;}
._7_c00091{width:6.216000px;}
.fc0_c00091{color:rgb(35,31,32);}
.fs2_c00091{font-size:41.976000px;}
.fs0_c00091{font-size:48.000000px;}
.fs3_c00091{font-size:60.000000px;}
.fs1_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y26_c00091{bottom:111.616350px;}
.y2c_c00091{bottom:111.666000px;}
.y25_c00091{bottom:126.616350px;}
.y2b_c00091{bottom:130.266000px;}
.y24_c00091{bottom:141.616350px;}
.y2a_c00091{bottom:148.866000px;}
.y29_c00091{bottom:167.466000px;}
.y28_c00091{bottom:186.066000px;}
.y23_c00091{bottom:195.729450px;}
.y27_c00091{bottom:204.666000px;}
.y22_c00091{bottom:220.479450px;}
.y21_c00091{bottom:245.229450px;}
.y20_c00091{bottom:269.979450px;}
.y1f_c00091{bottom:294.729450px;}
.y1e_c00091{bottom:334.473450px;}
.y1d_c00091{bottom:359.223450px;}
.y1c_c00091{bottom:383.973450px;}
.y1b_c00091{bottom:408.723450px;}
.y1a_c00091{bottom:433.473450px;}
.y19_c00091{bottom:458.223450px;}
.y18_c00091{bottom:482.973450px;}
.y17_c00091{bottom:507.723450px;}
.y16_c00091{bottom:532.473450px;}
.y15_c00091{bottom:557.223450px;}
.y14_c00091{bottom:581.973450px;}
.y13_c00091{bottom:606.723450px;}
.y12_c00091{bottom:646.467450px;}
.y11_c00091{bottom:671.217450px;}
.y10_c00091{bottom:695.967450px;}
.yf_c00091{bottom:720.717450px;}
.ye_c00091{bottom:745.467450px;}
.yd_c00091{bottom:770.217450px;}
.yc_c00091{bottom:794.967450px;}
.yb_c00091{bottom:819.717450px;}
.ya_c00091{bottom:844.467450px;}
.y9_c00091{bottom:869.217450px;}
.y8_c00091{bottom:893.967450px;}
.y7_c00091{bottom:918.717450px;}
.y6_c00091{bottom:943.467450px;}
.y5_c00091{bottom:968.217450px;}
.y4_c00091{bottom:992.967450px;}
.y3_c00091{bottom:1017.717450px;}
.y2_c00091{bottom:1042.467450px;}
.y1_c00091{bottom:1093.601100px;}
.h2_c00091{height:39.264000px;}
.h5_c00091{height:48.600000px;}
.h4_c00091{height:49.080000px;}
.h3_c00091{height:58.896000px;}
.h1_c00091{height:1135.500000px;}
.h0_c00091{height:1135.506150px;}
.w0_c00091{width:893.950200px;}
.w1_c00091{width:894.000000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:77.603100px;}
.x2_c00091{left:94.607550px;}
.x3_c00091{left:420.476850px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.v1_c00091{vertical-align:21.312533pt;}
.ls10_c00091{letter-spacing:-6.133333pt;}
.ls5_c00091{letter-spacing:-1.856000pt;}
.ls7_c00091{letter-spacing:-1.728000pt;}
.ls6_c00091{letter-spacing:-1.280000pt;}
.ls4_c00091{letter-spacing:-0.896000pt;}
.lse_c00091{letter-spacing:-0.853333pt;}
.ls9_c00091{letter-spacing:-0.832000pt;}
.ls3_c00091{letter-spacing:-0.640000pt;}
.ls1_c00091{letter-spacing:-0.448000pt;}
.lsc_c00091{letter-spacing:-0.320000pt;}
.lsa_c00091{letter-spacing:-0.256000pt;}
.lsf_c00091{letter-spacing:-0.213333pt;}
.ls2_c00091{letter-spacing:-0.128000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.lsb_c00091{letter-spacing:0.320000pt;}
.ls8_c00091{letter-spacing:0.373120pt;}
.lsd_c00091{letter-spacing:0.853333pt;}
.ws8_c00091{word-spacing:-14.656000pt;}
.ws1_c00091{word-spacing:-14.528000pt;}
.ws3_c00091{word-spacing:-14.400000pt;}
.ws9_c00091{word-spacing:-14.208000pt;}
.ws2_c00091{word-spacing:-14.080000pt;}
.ws5_c00091{word-spacing:-13.376000pt;}
.ws6_c00091{word-spacing:-12.928000pt;}
.ws4_c00091{word-spacing:-12.672000pt;}
.wsb_c00091{word-spacing:-12.000000pt;}
.wsa_c00091{word-spacing:-10.538667pt;}
.ws7_c00091{word-spacing:-8.842944pt;}
.ws29_c00091{word-spacing:-2.432000pt;}
.ws1d_c00091{word-spacing:-1.472000pt;}
.ws25_c00091{word-spacing:-1.152000pt;}
.wsc_c00091{word-spacing:0.000000pt;}
.ws23_c00091{word-spacing:0.320000pt;}
.ws2e_c00091{word-spacing:0.576000pt;}
.wsf_c00091{word-spacing:0.640000pt;}
.ws24_c00091{word-spacing:0.704000pt;}
.ws1e_c00091{word-spacing:0.832000pt;}
.ws31_c00091{word-spacing:0.853333pt;}
.ws14_c00091{word-spacing:0.896000pt;}
.ws2f_c00091{word-spacing:1.024000pt;}
.ws2b_c00091{word-spacing:1.280000pt;}
.ws1f_c00091{word-spacing:1.344000pt;}
.ws18_c00091{word-spacing:3.776000pt;}
.ws19_c00091{word-spacing:4.032000pt;}
.ws30_c00091{word-spacing:4.565333pt;}
.ws11_c00091{word-spacing:4.672000pt;}
.ws21_c00091{word-spacing:4.864000pt;}
.ws2c_c00091{word-spacing:5.056000pt;}
.ws10_c00091{word-spacing:5.248000pt;}
.ws32_c00091{word-spacing:6.133333pt;}
.wse_c00091{word-spacing:7.296000pt;}
.ws13_c00091{word-spacing:7.616000pt;}
.ws26_c00091{word-spacing:7.872000pt;}
.ws27_c00091{word-spacing:8.192000pt;}
.ws2d_c00091{word-spacing:8.576000pt;}
.ws12_c00091{word-spacing:9.152000pt;}
.ws16_c00091{word-spacing:10.560000pt;}
.ws2a_c00091{word-spacing:10.752000pt;}
.ws15_c00091{word-spacing:10.816000pt;}
.ws17_c00091{word-spacing:13.632000pt;}
.ws28_c00091{word-spacing:14.336000pt;}
.ws20_c00091{word-spacing:15.232000pt;}
.wsd_c00091{word-spacing:16.320000pt;}
.ws1b_c00091{word-spacing:16.576000pt;}
.ws22_c00091{word-spacing:17.536000pt;}
.ws1c_c00091{word-spacing:18.112000pt;}
.ws1a_c00091{word-spacing:18.240000pt;}
.ws0_c00091{word-spacing:1417.723733pt;}
._3_c00091{margin-left:-5.482667pt;}
._6_c00091{margin-left:-4.437333pt;}
._5_c00091{margin-left:-3.392000pt;}
._0_c00091{margin-left:-1.877333pt;}
._1_c00091{margin-left:-0.981333pt;}
._2_c00091{width:1.088000pt;}
._4_c00091{width:2.368000pt;}
._7_c00091{width:5.525333pt;}
.fs2_c00091{font-size:37.312000pt;}
.fs0_c00091{font-size:42.666667pt;}
.fs3_c00091{font-size:53.333333pt;}
.fs1_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y26_c00091{bottom:99.214533pt;}
.y2c_c00091{bottom:99.258667pt;}
.y25_c00091{bottom:112.547867pt;}
.y2b_c00091{bottom:115.792000pt;}
.y24_c00091{bottom:125.881200pt;}
.y2a_c00091{bottom:132.325333pt;}
.y29_c00091{bottom:148.858667pt;}
.y28_c00091{bottom:165.392000pt;}
.y23_c00091{bottom:173.981733pt;}
.y27_c00091{bottom:181.925333pt;}
.y22_c00091{bottom:195.981733pt;}
.y21_c00091{bottom:217.981733pt;}
.y20_c00091{bottom:239.981733pt;}
.y1f_c00091{bottom:261.981733pt;}
.y1e_c00091{bottom:297.309733pt;}
.y1d_c00091{bottom:319.309733pt;}
.y1c_c00091{bottom:341.309733pt;}
.y1b_c00091{bottom:363.309733pt;}
.y1a_c00091{bottom:385.309733pt;}
.y19_c00091{bottom:407.309733pt;}
.y18_c00091{bottom:429.309733pt;}
.y17_c00091{bottom:451.309733pt;}
.y16_c00091{bottom:473.309733pt;}
.y15_c00091{bottom:495.309733pt;}
.y14_c00091{bottom:517.309733pt;}
.y13_c00091{bottom:539.309733pt;}
.y12_c00091{bottom:574.637733pt;}
.y11_c00091{bottom:596.637733pt;}
.y10_c00091{bottom:618.637733pt;}
.yf_c00091{bottom:640.637733pt;}
.ye_c00091{bottom:662.637733pt;}
.yd_c00091{bottom:684.637733pt;}
.yc_c00091{bottom:706.637733pt;}
.yb_c00091{bottom:728.637733pt;}
.ya_c00091{bottom:750.637733pt;}
.y9_c00091{bottom:772.637733pt;}
.y8_c00091{bottom:794.637733pt;}
.y7_c00091{bottom:816.637733pt;}
.y6_c00091{bottom:838.637733pt;}
.y5_c00091{bottom:860.637733pt;}
.y4_c00091{bottom:882.637733pt;}
.y3_c00091{bottom:904.637733pt;}
.y2_c00091{bottom:926.637733pt;}
.y1_c00091{bottom:972.089867pt;}
.h2_c00091{height:34.901333pt;}
.h5_c00091{height:43.200000pt;}
.h4_c00091{height:43.626667pt;}
.h3_c00091{height:52.352000pt;}
.h1_c00091{height:1009.333333pt;}
.h0_c00091{height:1009.338800pt;}
.w0_c00091{width:794.622400pt;}
.w1_c00091{width:794.666667pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:68.980533pt;}
.x2_c00091{left:84.095600pt;}
.x3_c00091{left:373.757200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f93a6d2a33430a471441a2d.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.082000;font-style:normal;font-weight:normal;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_b3e52172774577baa6ce5a35.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.067000;font-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_c00092{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00092{vertical-align:-23.976000px;}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:23.976000px;}
.ls5_c00092{letter-spacing:-1.080000px;}
.ls3_c00092{letter-spacing:-0.360000px;}
.ls6_c00092{letter-spacing:-0.216000px;}
.ls2_c00092{letter-spacing:0.000000px;}
.ls4_c00092{letter-spacing:0.041976px;}
.ls0_c00092{letter-spacing:0.480000px;}
.ls1_c00092{letter-spacing:1.872000px;}
.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;}
}
.ws3_c00092{word-spacing:-16.488000px;}
.ws1_c00092{word-spacing:-16.344000px;}
.ws0_c00092{word-spacing:-10.896000px;}
.ws2_c00092{word-spacing:-9.570528px;}
.ws4_c00092{word-spacing:-9.528552px;}
.ws10_c00092{word-spacing:-2.592000px;}
.wsd_c00092{word-spacing:-2.016000px;}
.ws6_c00092{word-spacing:-1.224000px;}
.ws5_c00092{word-spacing:0.000000px;}
.ws12_c00092{word-spacing:0.072000px;}
.ws15_c00092{word-spacing:0.216000px;}
.ws9_c00092{word-spacing:0.360000px;}
.wse_c00092{word-spacing:0.504000px;}
.wsa_c00092{word-spacing:1.872000px;}
.ws7_c00092{word-spacing:2.592000px;}
.wsb_c00092{word-spacing:2.736000px;}
.ws8_c00092{word-spacing:2.880000px;}
.ws11_c00092{word-spacing:3.096000px;}
.wsf_c00092{word-spacing:3.528000px;}
.wsc_c00092{word-spacing:4.176000px;}
.ws14_c00092{word-spacing:5.040000px;}
.ws13_c00092{word-spacing:8.136000px;}
._0_c00092{margin-left:-2755.275600px;}
._7_c00092{margin-left:-7.056000px;}
._4_c00092{margin-left:-4.512000px;}
._5_c00092{margin-left:-2.832000px;}
._1_c00092{margin-left:-1.344000px;}
._2_c00092{width:1.104000px;}
._3_c00092{width:2.232000px;}
._6_c00092{width:3.360000px;}
.fc0_c00092{color:rgb(35,31,32);}
.fs2_c00092{font-size:41.976000px;}
.fs0_c00092{font-size:48.000000px;}
.fs3_c00092{font-size:54.000000px;}
.fs1_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y10_c00092{bottom:111.612150px;}
.yf_c00092{bottom:135.120150px;}
.y1a_c00092{bottom:172.983000px;}
.y19_c00092{bottom:187.981500px;}
.y1c_c00092{bottom:202.223100px;}
.y18_c00092{bottom:202.980000px;}
.y1b_c00092{bottom:217.221600px;}
.y17_c00092{bottom:217.978500px;}
.y16_c00092{bottom:532.739250px;}
.y15_c00092{bottom:557.489250px;}
.y14_c00092{bottom:582.239250px;}
.y13_c00092{bottom:606.989250px;}
.y12_c00092{bottom:631.739250px;}
.y11_c00092{bottom:671.483250px;}
.ye_c00092{bottom:715.473450px;}
.yd_c00092{bottom:740.223450px;}
.yc_c00092{bottom:764.973450px;}
.yb_c00092{bottom:789.723450px;}
.ya_c00092{bottom:829.467450px;}
.y9_c00092{bottom:854.223450px;}
.y8_c00092{bottom:878.973450px;}
.y7_c00092{bottom:903.723450px;}
.y6_c00092{bottom:928.473450px;}
.y5_c00092{bottom:968.217450px;}
.y4_c00092{bottom:992.967450px;}
.y3_c00092{bottom:1017.717450px;}
.y2_c00092{bottom:1042.467450px;}
.y1_c00092{bottom:1093.600950px;}
.h2_c00092{height:39.264000px;}
.h5_c00092{height:39.280200px;}
.h3_c00092{height:39.984000px;}
.h6_c00092{height:43.740000px;}
.h4_c00092{height:58.896000px;}
.h1_c00092{height:1135.500000px;}
.h0_c00092{height:1135.506150px;}
.w0_c00092{width:893.950200px;}
.w1_c00092{width:894.000000px;}
.x0_c00092{left:0.000000px;}
.x4_c00092{left:128.626800px;}
.x2_c00092{left:188.061900px;}
.x3_c00092{left:190.513350px;}
.x5_c00092{left:603.075600px;}
.x1_c00092{left:807.533700px;}
@media print{
.v2_c00092{vertical-align:-21.312000pt;}
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:21.312000pt;}
.ls5_c00092{letter-spacing:-0.960000pt;}
.ls3_c00092{letter-spacing:-0.320000pt;}
.ls6_c00092{letter-spacing:-0.192000pt;}
.ls2_c00092{letter-spacing:0.000000pt;}
.ls4_c00092{letter-spacing:0.037312pt;}
.ls0_c00092{letter-spacing:0.426667pt;}
.ls1_c00092{letter-spacing:1.664000pt;}
.ws3_c00092{word-spacing:-14.656000pt;}
.ws1_c00092{word-spacing:-14.528000pt;}
.ws0_c00092{word-spacing:-9.685333pt;}
.ws2_c00092{word-spacing:-8.507136pt;}
.ws4_c00092{word-spacing:-8.469824pt;}
.ws10_c00092{word-spacing:-2.304000pt;}
.wsd_c00092{word-spacing:-1.792000pt;}
.ws6_c00092{word-spacing:-1.088000pt;}
.ws5_c00092{word-spacing:0.000000pt;}
.ws12_c00092{word-spacing:0.064000pt;}
.ws15_c00092{word-spacing:0.192000pt;}
.ws9_c00092{word-spacing:0.320000pt;}
.wse_c00092{word-spacing:0.448000pt;}
.wsa_c00092{word-spacing:1.664000pt;}
.ws7_c00092{word-spacing:2.304000pt;}
.wsb_c00092{word-spacing:2.432000pt;}
.ws8_c00092{word-spacing:2.560000pt;}
.ws11_c00092{word-spacing:2.752000pt;}
.wsf_c00092{word-spacing:3.136000pt;}
.wsc_c00092{word-spacing:3.712000pt;}
.ws14_c00092{word-spacing:4.480000pt;}
.ws13_c00092{word-spacing:7.232000pt;}
._0_c00092{margin-left:-2449.133867pt;}
._7_c00092{margin-left:-6.272000pt;}
._4_c00092{margin-left:-4.010667pt;}
._5_c00092{margin-left:-2.517333pt;}
._1_c00092{margin-left:-1.194667pt;}
._2_c00092{width:0.981333pt;}
._3_c00092{width:1.984000pt;}
._6_c00092{width:2.986667pt;}
.fs2_c00092{font-size:37.312000pt;}
.fs0_c00092{font-size:42.666667pt;}
.fs3_c00092{font-size:48.000000pt;}
.fs1_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y10_c00092{bottom:99.210800pt;}
.yf_c00092{bottom:120.106800pt;}
.y1a_c00092{bottom:153.762667pt;}
.y19_c00092{bottom:167.094667pt;}
.y1c_c00092{bottom:179.753867pt;}
.y18_c00092{bottom:180.426667pt;}
.y1b_c00092{bottom:193.085867pt;}
.y17_c00092{bottom:193.758667pt;}
.y16_c00092{bottom:473.546000pt;}
.y15_c00092{bottom:495.546000pt;}
.y14_c00092{bottom:517.546000pt;}
.y13_c00092{bottom:539.546000pt;}
.y12_c00092{bottom:561.546000pt;}
.y11_c00092{bottom:596.874000pt;}
.ye_c00092{bottom:635.976400pt;}
.yd_c00092{bottom:657.976400pt;}
.yc_c00092{bottom:679.976400pt;}
.yb_c00092{bottom:701.976400pt;}
.ya_c00092{bottom:737.304400pt;}
.y9_c00092{bottom:759.309733pt;}
.y8_c00092{bottom:781.309733pt;}
.y7_c00092{bottom:803.309733pt;}
.y6_c00092{bottom:825.309733pt;}
.y5_c00092{bottom:860.637733pt;}
.y4_c00092{bottom:882.637733pt;}
.y3_c00092{bottom:904.637733pt;}
.y2_c00092{bottom:926.637733pt;}
.y1_c00092{bottom:972.089733pt;}
.h2_c00092{height:34.901333pt;}
.h5_c00092{height:34.915733pt;}
.h3_c00092{height:35.541333pt;}
.h6_c00092{height:38.880000pt;}
.h4_c00092{height:52.352000pt;}
.h1_c00092{height:1009.333333pt;}
.h0_c00092{height:1009.338800pt;}
.w0_c00092{width:794.622400pt;}
.w1_c00092{width:794.666667pt;}
.x0_c00092{left:0.000000pt;}
.x4_c00092{left:114.334933pt;}
.x2_c00092{left:167.166133pt;}
.x3_c00092{left:169.345200pt;}
.x5_c00092{left:536.067200pt;}
.x1_c00092{left:717.807733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17080c4b567af63ea96c27fd.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_b45ab3264b5b91b2a76b44a0.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls2_c00093{letter-spacing:-0.720000px;}
.ls0_c00093{letter-spacing:-0.288000px;}
.ls3_c00093{letter-spacing:-0.216000px;}
.ls1_c00093{letter-spacing:0.000000px;}
.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;}
}
.ws6_c00093{word-spacing:-2.376000px;}
.ws3_c00093{word-spacing:-1.944000px;}
.wsa_c00093{word-spacing:-0.792000px;}
.ws1_c00093{word-spacing:0.000000px;}
.ws12_c00093{word-spacing:0.216000px;}
.ws4_c00093{word-spacing:0.432000px;}
.wsc_c00093{word-spacing:0.720000px;}
.ws11_c00093{word-spacing:0.936000px;}
.ws9_c00093{word-spacing:3.240000px;}
.ws2_c00093{word-spacing:4.176000px;}
.ws5_c00093{word-spacing:4.536000px;}
.ws10_c00093{word-spacing:5.472000px;}
.ws7_c00093{word-spacing:7.056000px;}
.wsb_c00093{word-spacing:9.648000px;}
.wsf_c00093{word-spacing:14.040000px;}
.ws8_c00093{word-spacing:16.632000px;}
.wsd_c00093{word-spacing:32.832000px;}
.wse_c00093{word-spacing:32.976000px;}
.ws0_c00093{word-spacing:1599.835200px;}
._2_c00093{margin-left:-7.128000px;}
._5_c00093{margin-left:-3.390000px;}
._0_c00093{margin-left:-2.112000px;}
._1_c00093{margin-left:-1.104000px;}
._3_c00093{width:1.080000px;}
._4_c00093{width:31.536000px;}
.fc0_c00093{color:rgb(35,31,32);}
.fs0_c00093{font-size:48.000000px;}
.fs2_c00093{font-size:54.000000px;}
.fs1_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1e_c00093{bottom:114.986400px;}
.y1d_c00093{bottom:129.984900px;}
.y1c_c00093{bottom:144.983400px;}
.y13_c00093{bottom:212.325450px;}
.y12_c00093{bottom:237.075450px;}
.y11_c00093{bottom:261.825450px;}
.y10_c00093{bottom:286.575450px;}
.yf_c00093{bottom:311.325450px;}
.ye_c00093{bottom:336.075450px;}
.yd_c00093{bottom:360.825450px;}
.yc_c00093{bottom:385.575450px;}
.yb_c00093{bottom:410.325450px;}
.ya_c00093{bottom:435.075450px;}
.y9_c00093{bottom:459.825450px;}
.y19_c00093{bottom:497.191950px;}
.y1b_c00093{bottom:508.288350px;}
.y18_c00093{bottom:512.190450px;}
.y1a_c00093{bottom:523.286850px;}
.y17_c00093{bottom:527.188950px;}
.y16_c00093{bottom:542.187450px;}
.y15_c00093{bottom:557.185950px;}
.y14_c00093{bottom:572.184450px;}
.y8_c00093{bottom:878.973450px;}
.y7_c00093{bottom:903.723450px;}
.y6_c00093{bottom:928.473450px;}
.y5_c00093{bottom:953.223450px;}
.y4_c00093{bottom:992.967450px;}
.y3_c00093{bottom:1017.717450px;}
.y2_c00093{bottom:1042.467450px;}
.y1_c00093{bottom:1093.600950px;}
.h2_c00093{height:39.264000px;}
.h4_c00093{height:43.740000px;}
.h3_c00093{height:58.896000px;}
.h1_c00093{height:1135.500000px;}
.h0_c00093{height:1135.506150px;}
.w0_c00093{width:893.950200px;}
.w1_c00093{width:894.000000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:77.603100px;}
.x2_c00093{left:284.876250px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls2_c00093{letter-spacing:-0.640000pt;}
.ls0_c00093{letter-spacing:-0.256000pt;}
.ls3_c00093{letter-spacing:-0.192000pt;}
.ls1_c00093{letter-spacing:0.000000pt;}
.ws6_c00093{word-spacing:-2.112000pt;}
.ws3_c00093{word-spacing:-1.728000pt;}
.wsa_c00093{word-spacing:-0.704000pt;}
.ws1_c00093{word-spacing:0.000000pt;}
.ws12_c00093{word-spacing:0.192000pt;}
.ws4_c00093{word-spacing:0.384000pt;}
.wsc_c00093{word-spacing:0.640000pt;}
.ws11_c00093{word-spacing:0.832000pt;}
.ws9_c00093{word-spacing:2.880000pt;}
.ws2_c00093{word-spacing:3.712000pt;}
.ws5_c00093{word-spacing:4.032000pt;}
.ws10_c00093{word-spacing:4.864000pt;}
.ws7_c00093{word-spacing:6.272000pt;}
.wsb_c00093{word-spacing:8.576000pt;}
.wsf_c00093{word-spacing:12.480000pt;}
.ws8_c00093{word-spacing:14.784000pt;}
.wsd_c00093{word-spacing:29.184000pt;}
.wse_c00093{word-spacing:29.312000pt;}
.ws0_c00093{word-spacing:1422.075733pt;}
._2_c00093{margin-left:-6.336000pt;}
._5_c00093{margin-left:-3.013333pt;}
._0_c00093{margin-left:-1.877333pt;}
._1_c00093{margin-left:-0.981333pt;}
._3_c00093{width:0.960000pt;}
._4_c00093{width:28.032000pt;}
.fs0_c00093{font-size:42.666667pt;}
.fs2_c00093{font-size:48.000000pt;}
.fs1_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y1e_c00093{bottom:102.210133pt;}
.y1d_c00093{bottom:115.542133pt;}
.y1c_c00093{bottom:128.874133pt;}
.y13_c00093{bottom:188.733733pt;}
.y12_c00093{bottom:210.733733pt;}
.y11_c00093{bottom:232.733733pt;}
.y10_c00093{bottom:254.733733pt;}
.yf_c00093{bottom:276.733733pt;}
.ye_c00093{bottom:298.733733pt;}
.yd_c00093{bottom:320.733733pt;}
.yc_c00093{bottom:342.733733pt;}
.yb_c00093{bottom:364.733733pt;}
.ya_c00093{bottom:386.733733pt;}
.y9_c00093{bottom:408.733733pt;}
.y19_c00093{bottom:441.948400pt;}
.y1b_c00093{bottom:451.811867pt;}
.y18_c00093{bottom:455.280400pt;}
.y1a_c00093{bottom:465.143867pt;}
.y17_c00093{bottom:468.612400pt;}
.y16_c00093{bottom:481.944400pt;}
.y15_c00093{bottom:495.276400pt;}
.y14_c00093{bottom:508.608400pt;}
.y8_c00093{bottom:781.309733pt;}
.y7_c00093{bottom:803.309733pt;}
.y6_c00093{bottom:825.309733pt;}
.y5_c00093{bottom:847.309733pt;}
.y4_c00093{bottom:882.637733pt;}
.y3_c00093{bottom:904.637733pt;}
.y2_c00093{bottom:926.637733pt;}
.y1_c00093{bottom:972.089733pt;}
.h2_c00093{height:34.901333pt;}
.h4_c00093{height:38.880000pt;}
.h3_c00093{height:52.352000pt;}
.h1_c00093{height:1009.333333pt;}
.h0_c00093{height:1009.338800pt;}
.w0_c00093{width:794.622400pt;}
.w1_c00093{width:794.666667pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:68.980533pt;}
.x2_c00093{left:253.223333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe999e5b439dc1366e1e0590.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_f6729770213c024f9c943b5c.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.067000;font-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_c00094{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls3_c00094{letter-spacing:-1.080000px;}
.ls1_c00094{letter-spacing:-0.336000px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.480000px;}
.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:-10.560000px;}
.ws7_c00094{word-spacing:-2.520000px;}
.wsf_c00094{word-spacing:-1.512000px;}
.ws6_c00094{word-spacing:-0.936000px;}
.ws1_c00094{word-spacing:0.000000px;}
.ws4_c00094{word-spacing:0.864000px;}
.ws8_c00094{word-spacing:2.808000px;}
.ws5_c00094{word-spacing:3.744000px;}
.ws9_c00094{word-spacing:4.752000px;}
.ws3_c00094{word-spacing:4.896000px;}
.wsb_c00094{word-spacing:8.352000px;}
.ws2_c00094{word-spacing:8.640000px;}
.ws10_c00094{word-spacing:10.152000px;}
.wsa_c00094{word-spacing:13.896000px;}
.wsd_c00094{word-spacing:18.000000px;}
.wse_c00094{word-spacing:18.936000px;}
.wsc_c00094{word-spacing:24.408000px;}
._0_c00094{margin-left:-2754.939600px;}
._3_c00094{margin-left:-7.128000px;}
._5_c00094{margin-left:-6.114000px;}
._4_c00094{margin-left:-3.924000px;}
._1_c00094{margin-left:-1.344000px;}
._2_c00094{width:1.104000px;}
.fc0_c00094{color:rgb(35,31,32);}
.fs0_c00094{font-size:48.000000px;}
.fs2_c00094{font-size:54.000000px;}
.fs1_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y14_c00094{bottom:116.142000px;}
.y13_c00094{bottom:131.140500px;}
.y12_c00094{bottom:235.833450px;}
.y11_c00094{bottom:260.583450px;}
.y10_c00094{bottom:285.333450px;}
.yf_c00094{bottom:310.083450px;}
.ye_c00094{bottom:334.833450px;}
.yd_c00094{bottom:359.583450px;}
.yc_c00094{bottom:384.333450px;}
.yb_c00094{bottom:409.083450px;}
.ya_c00094{bottom:433.833450px;}
.y16_c00094{bottom:477.343500px;}
.y15_c00094{bottom:492.342000px;}
.y9_c00094{bottom:854.223450px;}
.y8_c00094{bottom:878.973450px;}
.y7_c00094{bottom:903.723450px;}
.y6_c00094{bottom:943.467450px;}
.y5_c00094{bottom:968.217450px;}
.y4_c00094{bottom:992.967450px;}
.y3_c00094{bottom:1017.717450px;}
.y2_c00094{bottom:1042.467450px;}
.y1_c00094{bottom:1093.600950px;}
.h2_c00094{height:39.264000px;}
.h3_c00094{height:39.984000px;}
.h5_c00094{height:43.740000px;}
.h4_c00094{height:58.896000px;}
.h1_c00094{height:1135.500000px;}
.h0_c00094{height:1135.506150px;}
.w0_c00094{width:893.950200px;}
.w1_c00094{width:894.000000px;}
.x0_c00094{left:0.000000px;}
.x6_c00094{left:128.626800px;}
.x2_c00094{left:188.061900px;}
.x3_c00094{left:190.513350px;}
.x4_c00094{left:312.878700px;}
.x5_c00094{left:473.042700px;}
.x1_c00094{left:806.825700px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls3_c00094{letter-spacing:-0.960000pt;}
.ls1_c00094{letter-spacing:-0.298667pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.426667pt;}
.ws0_c00094{word-spacing:-9.386667pt;}
.ws7_c00094{word-spacing:-2.240000pt;}
.wsf_c00094{word-spacing:-1.344000pt;}
.ws6_c00094{word-spacing:-0.832000pt;}
.ws1_c00094{word-spacing:0.000000pt;}
.ws4_c00094{word-spacing:0.768000pt;}
.ws8_c00094{word-spacing:2.496000pt;}
.ws5_c00094{word-spacing:3.328000pt;}
.ws9_c00094{word-spacing:4.224000pt;}
.ws3_c00094{word-spacing:4.352000pt;}
.wsb_c00094{word-spacing:7.424000pt;}
.ws2_c00094{word-spacing:7.680000pt;}
.ws10_c00094{word-spacing:9.024000pt;}
.wsa_c00094{word-spacing:12.352000pt;}
.wsd_c00094{word-spacing:16.000000pt;}
.wse_c00094{word-spacing:16.832000pt;}
.wsc_c00094{word-spacing:21.696000pt;}
._0_c00094{margin-left:-2448.835200pt;}
._3_c00094{margin-left:-6.336000pt;}
._5_c00094{margin-left:-5.434667pt;}
._4_c00094{margin-left:-3.488000pt;}
._1_c00094{margin-left:-1.194667pt;}
._2_c00094{width:0.981333pt;}
.fs0_c00094{font-size:42.666667pt;}
.fs2_c00094{font-size:48.000000pt;}
.fs1_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y14_c00094{bottom:103.237333pt;}
.y13_c00094{bottom:116.569333pt;}
.y12_c00094{bottom:209.629733pt;}
.y11_c00094{bottom:231.629733pt;}
.y10_c00094{bottom:253.629733pt;}
.yf_c00094{bottom:275.629733pt;}
.ye_c00094{bottom:297.629733pt;}
.yd_c00094{bottom:319.629733pt;}
.yc_c00094{bottom:341.629733pt;}
.yb_c00094{bottom:363.629733pt;}
.ya_c00094{bottom:385.629733pt;}
.y16_c00094{bottom:424.305333pt;}
.y15_c00094{bottom:437.637333pt;}
.y9_c00094{bottom:759.309733pt;}
.y8_c00094{bottom:781.309733pt;}
.y7_c00094{bottom:803.309733pt;}
.y6_c00094{bottom:838.637733pt;}
.y5_c00094{bottom:860.637733pt;}
.y4_c00094{bottom:882.637733pt;}
.y3_c00094{bottom:904.637733pt;}
.y2_c00094{bottom:926.637733pt;}
.y1_c00094{bottom:972.089733pt;}
.h2_c00094{height:34.901333pt;}
.h3_c00094{height:35.541333pt;}
.h5_c00094{height:38.880000pt;}
.h4_c00094{height:52.352000pt;}
.h1_c00094{height:1009.333333pt;}
.h0_c00094{height:1009.338800pt;}
.w0_c00094{width:794.622400pt;}
.w1_c00094{width:794.666667pt;}
.x0_c00094{left:0.000000pt;}
.x6_c00094{left:114.334933pt;}
.x2_c00094{left:167.166133pt;}
.x3_c00094{left:169.345200pt;}
.x4_c00094{left:278.114400pt;}
.x5_c00094{left:420.482400pt;}
.x1_c00094{left:717.178400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7b4b5f3a065e716b1e2d2b5.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.067000;font-style:normal;font-weight:normal;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_0a1d527b71c899e70ba5e727.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.v2_c00095{vertical-align:20.859000px;}
.v1_c00095{vertical-align:23.952000px;}
.ls13_c00095{letter-spacing:-1.440000px;}
.lsf_c00095{letter-spacing:-1.320000px;}
.ls12_c00095{letter-spacing:-1.200000px;}
.ls11_c00095{letter-spacing:-1.140000px;}
.ls10_c00095{letter-spacing:-0.900000px;}
.ls9_c00095{letter-spacing:-0.648000px;}
.lsb_c00095{letter-spacing:-0.576000px;}
.lse_c00095{letter-spacing:-0.420000px;}
.lsa_c00095{letter-spacing:-0.315000px;}
.lsc_c00095{letter-spacing:-0.270000px;}
.ls6_c00095{letter-spacing:-0.240000px;}
.ls7_c00095{letter-spacing:0.000000px;}
.ls1_c00095{letter-spacing:0.072000px;}
.ls2_c00095{letter-spacing:0.144000px;}
.ls5_c00095{letter-spacing:0.189000px;}
.ls4_c00095{letter-spacing:0.216000px;}
.ls14_c00095{letter-spacing:0.324000px;}
.ls0_c00095{letter-spacing:0.360000px;}
.ls8_c00095{letter-spacing:0.713592px;}
.ls3_c00095{letter-spacing:0.720000px;}
.lsd_c00095{letter-spacing:1.080000px;}
.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;}
}
.ws1_c00095{word-spacing:-16.704000px;}
.ws2_c00095{word-spacing:-16.344000px;}
.ws4_c00095{word-spacing:-15.696000px;}
.ws5_c00095{word-spacing:-14.301000px;}
.ws7_c00095{word-spacing:-13.620000px;}
.ws8_c00095{word-spacing:-12.720000px;}
.ws6_c00095{word-spacing:-10.896000px;}
.ws3_c00095{word-spacing:-10.242144px;}
.ws1f_c00095{word-spacing:-5.040000px;}
.ws1a_c00095{word-spacing:-2.088000px;}
.wse_c00095{word-spacing:-1.800000px;}
.ws16_c00095{word-spacing:-1.728000px;}
.ws1d_c00095{word-spacing:-1.575000px;}
.ws26_c00095{word-spacing:-1.080000px;}
.ws29_c00095{word-spacing:-0.324000px;}
.ws20_c00095{word-spacing:-0.216000px;}
.ws9_c00095{word-spacing:0.000000px;}
.ws1e_c00095{word-spacing:0.063000px;}
.ws28_c00095{word-spacing:0.240000px;}
.ws25_c00095{word-spacing:0.270000px;}
.ws19_c00095{word-spacing:0.288000px;}
.ws27_c00095{word-spacing:0.420000px;}
.ws12_c00095{word-spacing:0.864000px;}
.ws13_c00095{word-spacing:0.882000px;}
.ws23_c00095{word-spacing:1.152000px;}
.ws18_c00095{word-spacing:1.440000px;}
.ws22_c00095{word-spacing:1.728000px;}
.ws14_c00095{word-spacing:2.268000px;}
.wsf_c00095{word-spacing:4.104000px;}
.ws17_c00095{word-spacing:4.320000px;}
.ws10_c00095{word-spacing:4.464000px;}
.ws24_c00095{word-spacing:4.704000px;}
.ws1c_c00095{word-spacing:4.725000px;}
.ws1b_c00095{word-spacing:5.040000px;}
.ws15_c00095{word-spacing:5.733000px;}
.wsb_c00095{word-spacing:6.192000px;}
.ws21_c00095{word-spacing:6.984000px;}
.ws11_c00095{word-spacing:7.848000px;}
.wsd_c00095{word-spacing:9.288000px;}
.wsc_c00095{word-spacing:9.360000px;}
.wsa_c00095{word-spacing:59.544000px;}
.ws0_c00095{word-spacing:1597.771200px;}
._3_c00095{margin-left:-5.733000px;}
._4_c00095{margin-left:-4.218000px;}
._5_c00095{margin-left:-3.186000px;}
._0_c00095{margin-left:-2.112000px;}
._1_c00095{margin-left:-1.104000px;}
._2_c00095{width:1.080000px;}
._6_c00095{width:2.232000px;}
._7_c00095{width:3.488400px;}
.fc1_c00095{color:transparent;}
.fc0_c00095{color:rgb(35,31,32);}
.fs4_c00095{font-size:36.729000px;}
.fs2_c00095{font-size:41.976000px;}
.fs0_c00095{font-size:48.000000px;}
.fs5_c00095{font-size:54.000000px;}
.fs6_c00095{font-size:60.000000px;}
.fs3_c00095{font-size:63.000000px;}
.fs1_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y26_c00095{bottom:111.612150px;}
.y34_c00095{bottom:111.974250px;}
.y33_c00095{bottom:130.574250px;}
.y25_c00095{bottom:135.120150px;}
.y32_c00095{bottom:149.174250px;}
.y24_c00095{bottom:150.120150px;}
.y23_c00095{bottom:165.120150px;}
.y31_c00095{bottom:167.774250px;}
.y30_c00095{bottom:204.974250px;}
.y22_c00095{bottom:215.446800px;}
.y2f_c00095{bottom:223.574250px;}
.y21_c00095{bottom:240.196800px;}
.y2e_c00095{bottom:242.174250px;}
.y2d_c00095{bottom:260.774250px;}
.y20_c00095{bottom:264.946800px;}
.y2c_c00095{bottom:297.374250px;}
.y1f_c00095{bottom:304.727700px;}
.y2b_c00095{bottom:315.974250px;}
.y1e_c00095{bottom:325.722450px;}
.y2a_c00095{bottom:334.574250px;}
.y1d_c00095{bottom:346.717200px;}
.y29_c00095{bottom:353.174250px;}
.y1c_c00095{bottom:371.964450px;}
.y35_c00095{bottom:382.307700px;}
.y1b_c00095{bottom:392.959200px;}
.y1a_c00095{bottom:418.206450px;}
.y19_c00095{bottom:443.453700px;}
.y18_c00095{bottom:472.957650px;}
.y17_c00095{bottom:497.707650px;}
.y16_c00095{bottom:522.457650px;}
.y15_c00095{bottom:547.207650px;}
.y14_c00095{bottom:571.957650px;}
.y13_c00095{bottom:596.707650px;}
.y28_c00095{bottom:600.929850px;}
.y36_c00095{bottom:601.284150px;}
.y12_c00095{bottom:621.457650px;}
.y11_c00095{bottom:661.237500px;}
.y10_c00095{bottom:682.232250px;}
.yf_c00095{bottom:703.227000px;}
.ye_c00095{bottom:728.474250px;}
.yd_c00095{bottom:749.469000px;}
.yc_c00095{bottom:774.716250px;}
.yb_c00095{bottom:799.963500px;}
.y27_c00095{bottom:818.134650px;}
.y37_c00095{bottom:819.947550px;}
.ya_c00095{bottom:829.467450px;}
.y9_c00095{bottom:854.217450px;}
.y8_c00095{bottom:878.967450px;}
.y7_c00095{bottom:903.723450px;}
.y6_c00095{bottom:928.473450px;}
.y5_c00095{bottom:953.223450px;}
.y4_c00095{bottom:977.973450px;}
.y3_c00095{bottom:1002.723450px;}
.y2_c00095{bottom:1042.467450px;}
.y1_c00095{bottom:1093.600950px;}
.h2_c00095{height:39.264000px;}
.h5_c00095{height:39.280200px;}
.h6_c00095{height:44.172000px;}
.h8_c00095{height:48.600000px;}
.h7_c00095{height:49.080000px;}
.h4_c00095{height:51.534000px;}
.h3_c00095{height:58.896000px;}
.h1_c00095{height:1135.500000px;}
.h0_c00095{height:1135.506150px;}
.w0_c00095{width:893.950200px;}
.w1_c00095{width:894.000000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:77.603100px;}
.x5_c00095{left:87.786750px;}
.x6_c00095{left:88.900650px;}
.x2_c00095{left:302.957400px;}
.x4_c00095{left:319.965300px;}
.x3_c00095{left:324.217350px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.v2_c00095{vertical-align:18.541333pt;}
.v1_c00095{vertical-align:21.290667pt;}
.ls13_c00095{letter-spacing:-1.280000pt;}
.lsf_c00095{letter-spacing:-1.173333pt;}
.ls12_c00095{letter-spacing:-1.066667pt;}
.ls11_c00095{letter-spacing:-1.013333pt;}
.ls10_c00095{letter-spacing:-0.800000pt;}
.ls9_c00095{letter-spacing:-0.576000pt;}
.lsb_c00095{letter-spacing:-0.512000pt;}
.lse_c00095{letter-spacing:-0.373333pt;}
.lsa_c00095{letter-spacing:-0.280000pt;}
.lsc_c00095{letter-spacing:-0.240000pt;}
.ls6_c00095{letter-spacing:-0.213333pt;}
.ls7_c00095{letter-spacing:0.000000pt;}
.ls1_c00095{letter-spacing:0.064000pt;}
.ls2_c00095{letter-spacing:0.128000pt;}
.ls5_c00095{letter-spacing:0.168000pt;}
.ls4_c00095{letter-spacing:0.192000pt;}
.ls14_c00095{letter-spacing:0.288000pt;}
.ls0_c00095{letter-spacing:0.320000pt;}
.ls8_c00095{letter-spacing:0.634304pt;}
.ls3_c00095{letter-spacing:0.640000pt;}
.lsd_c00095{letter-spacing:0.960000pt;}
.ws1_c00095{word-spacing:-14.848000pt;}
.ws2_c00095{word-spacing:-14.528000pt;}
.ws4_c00095{word-spacing:-13.952000pt;}
.ws5_c00095{word-spacing:-12.712000pt;}
.ws7_c00095{word-spacing:-12.106667pt;}
.ws8_c00095{word-spacing:-11.306667pt;}
.ws6_c00095{word-spacing:-9.685333pt;}
.ws3_c00095{word-spacing:-9.104128pt;}
.ws1f_c00095{word-spacing:-4.480000pt;}
.ws1a_c00095{word-spacing:-1.856000pt;}
.wse_c00095{word-spacing:-1.600000pt;}
.ws16_c00095{word-spacing:-1.536000pt;}
.ws1d_c00095{word-spacing:-1.400000pt;}
.ws26_c00095{word-spacing:-0.960000pt;}
.ws29_c00095{word-spacing:-0.288000pt;}
.ws20_c00095{word-spacing:-0.192000pt;}
.ws9_c00095{word-spacing:0.000000pt;}
.ws1e_c00095{word-spacing:0.056000pt;}
.ws28_c00095{word-spacing:0.213333pt;}
.ws25_c00095{word-spacing:0.240000pt;}
.ws19_c00095{word-spacing:0.256000pt;}
.ws27_c00095{word-spacing:0.373333pt;}
.ws12_c00095{word-spacing:0.768000pt;}
.ws13_c00095{word-spacing:0.784000pt;}
.ws23_c00095{word-spacing:1.024000pt;}
.ws18_c00095{word-spacing:1.280000pt;}
.ws22_c00095{word-spacing:1.536000pt;}
.ws14_c00095{word-spacing:2.016000pt;}
.wsf_c00095{word-spacing:3.648000pt;}
.ws17_c00095{word-spacing:3.840000pt;}
.ws10_c00095{word-spacing:3.968000pt;}
.ws24_c00095{word-spacing:4.181333pt;}
.ws1c_c00095{word-spacing:4.200000pt;}
.ws1b_c00095{word-spacing:4.480000pt;}
.ws15_c00095{word-spacing:5.096000pt;}
.wsb_c00095{word-spacing:5.504000pt;}
.ws21_c00095{word-spacing:6.208000pt;}
.ws11_c00095{word-spacing:6.976000pt;}
.wsd_c00095{word-spacing:8.256000pt;}
.wsc_c00095{word-spacing:8.320000pt;}
.wsa_c00095{word-spacing:52.928000pt;}
.ws0_c00095{word-spacing:1420.241067pt;}
._3_c00095{margin-left:-5.096000pt;}
._4_c00095{margin-left:-3.749333pt;}
._5_c00095{margin-left:-2.832000pt;}
._0_c00095{margin-left:-1.877333pt;}
._1_c00095{margin-left:-0.981333pt;}
._2_c00095{width:0.960000pt;}
._6_c00095{width:1.984000pt;}
._7_c00095{width:3.100800pt;}
.fs4_c00095{font-size:32.648000pt;}
.fs2_c00095{font-size:37.312000pt;}
.fs0_c00095{font-size:42.666667pt;}
.fs5_c00095{font-size:48.000000pt;}
.fs6_c00095{font-size:53.333333pt;}
.fs3_c00095{font-size:56.000000pt;}
.fs1_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y26_c00095{bottom:99.210800pt;}
.y34_c00095{bottom:99.532667pt;}
.y33_c00095{bottom:116.066000pt;}
.y25_c00095{bottom:120.106800pt;}
.y32_c00095{bottom:132.599333pt;}
.y24_c00095{bottom:133.440133pt;}
.y23_c00095{bottom:146.773467pt;}
.y31_c00095{bottom:149.132667pt;}
.y30_c00095{bottom:182.199333pt;}
.y22_c00095{bottom:191.508267pt;}
.y2f_c00095{bottom:198.732667pt;}
.y21_c00095{bottom:213.508267pt;}
.y2e_c00095{bottom:215.266000pt;}
.y2d_c00095{bottom:231.799333pt;}
.y20_c00095{bottom:235.508267pt;}
.y2c_c00095{bottom:264.332667pt;}
.y1f_c00095{bottom:270.869067pt;}
.y2b_c00095{bottom:280.866000pt;}
.y1e_c00095{bottom:289.531067pt;}
.y2a_c00095{bottom:297.399333pt;}
.y1d_c00095{bottom:308.193067pt;}
.y29_c00095{bottom:313.932667pt;}
.y1c_c00095{bottom:330.635067pt;}
.y35_c00095{bottom:339.829067pt;}
.y1b_c00095{bottom:349.297067pt;}
.y1a_c00095{bottom:371.739067pt;}
.y19_c00095{bottom:394.181067pt;}
.y18_c00095{bottom:420.406800pt;}
.y17_c00095{bottom:442.406800pt;}
.y16_c00095{bottom:464.406800pt;}
.y15_c00095{bottom:486.406800pt;}
.y14_c00095{bottom:508.406800pt;}
.y13_c00095{bottom:530.406800pt;}
.y28_c00095{bottom:534.159867pt;}
.y36_c00095{bottom:534.474800pt;}
.y12_c00095{bottom:552.406800pt;}
.y11_c00095{bottom:587.766667pt;}
.y10_c00095{bottom:606.428667pt;}
.yf_c00095{bottom:625.090667pt;}
.ye_c00095{bottom:647.532667pt;}
.yd_c00095{bottom:666.194667pt;}
.yc_c00095{bottom:688.636667pt;}
.yb_c00095{bottom:711.078667pt;}
.y27_c00095{bottom:727.230800pt;}
.y37_c00095{bottom:728.842267pt;}
.ya_c00095{bottom:737.304400pt;}
.y9_c00095{bottom:759.304400pt;}
.y8_c00095{bottom:781.304400pt;}
.y7_c00095{bottom:803.309733pt;}
.y6_c00095{bottom:825.309733pt;}
.y5_c00095{bottom:847.309733pt;}
.y4_c00095{bottom:869.309733pt;}
.y3_c00095{bottom:891.309733pt;}
.y2_c00095{bottom:926.637733pt;}
.y1_c00095{bottom:972.089733pt;}
.h2_c00095{height:34.901333pt;}
.h5_c00095{height:34.915733pt;}
.h6_c00095{height:39.264000pt;}
.h8_c00095{height:43.200000pt;}
.h7_c00095{height:43.626667pt;}
.h4_c00095{height:45.808000pt;}
.h3_c00095{height:52.352000pt;}
.h1_c00095{height:1009.333333pt;}
.h0_c00095{height:1009.338800pt;}
.w0_c00095{width:794.622400pt;}
.w1_c00095{width:794.666667pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:68.980533pt;}
.x5_c00095{left:78.032667pt;}
.x6_c00095{left:79.022800pt;}
.x2_c00095{left:269.295467pt;}
.x4_c00095{left:284.413600pt;}
.x3_c00095{left:288.193200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7df6df9f6d270cd629d2aeee.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.067000;font-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_c00096{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:23.928000px;}
.lsa_c00096{letter-spacing:-6.000000px;}
.ls7_c00096{letter-spacing:-0.648000px;}
.ls8_c00096{letter-spacing:-0.576000px;}
.lsc_c00096{letter-spacing:-0.540000px;}
.lsb_c00096{letter-spacing:-0.300000px;}
.ls6_c00096{letter-spacing:0.000000px;}
.ls4_c00096{letter-spacing:0.072000px;}
.ls9_c00096{letter-spacing:0.209880px;}
.ls1_c00096{letter-spacing:0.360000px;}
.ls0_c00096{letter-spacing:0.480000px;}
.ls2_c00096{letter-spacing:0.576000px;}
.ls3_c00096{letter-spacing:0.720000px;}
.ls5_c00096{letter-spacing:1.728000px;}
.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;}
}
.ws3_c00096{word-spacing:-16.848000px;}
.ws1_c00096{word-spacing:-16.344000px;}
.ws2_c00096{word-spacing:-15.912000px;}
.ws0_c00096{word-spacing:-10.896000px;}
.ws4_c00096{word-spacing:-9.738432px;}
.ws5_c00096{word-spacing:-7.620000px;}
.ws17_c00096{word-spacing:-2.448000px;}
.wse_c00096{word-spacing:-2.376000px;}
.ws13_c00096{word-spacing:-2.232000px;}
.ws23_c00096{word-spacing:-1.080000px;}
.ws1b_c00096{word-spacing:-1.008000px;}
.ws12_c00096{word-spacing:-0.360000px;}
.ws1e_c00096{word-spacing:-0.216000px;}
.ws6_c00096{word-spacing:0.000000px;}
.ws9_c00096{word-spacing:0.216000px;}
.ws28_c00096{word-spacing:0.240000px;}
.ws27_c00096{word-spacing:0.300000px;}
.wsa_c00096{word-spacing:0.504000px;}
.ws14_c00096{word-spacing:0.720000px;}
.wsd_c00096{word-spacing:1.224000px;}
.ws21_c00096{word-spacing:1.368000px;}
.ws16_c00096{word-spacing:1.656000px;}
.ws11_c00096{word-spacing:2.160000px;}
.ws1f_c00096{word-spacing:2.592000px;}
.ws24_c00096{word-spacing:2.736000px;}
.ws25_c00096{word-spacing:2.784000px;}
.ws1a_c00096{word-spacing:3.096000px;}
.wsc_c00096{word-spacing:3.456000px;}
.ws22_c00096{word-spacing:3.600000px;}
.ws1c_c00096{word-spacing:4.176000px;}
.wsf_c00096{word-spacing:5.472000px;}
.ws26_c00096{word-spacing:5.520000px;}
.ws18_c00096{word-spacing:5.544000px;}
.ws1d_c00096{word-spacing:6.048000px;}
.ws15_c00096{word-spacing:6.264000px;}
.ws10_c00096{word-spacing:8.208000px;}
.wsb_c00096{word-spacing:9.000000px;}
.ws7_c00096{word-spacing:9.792000px;}
.ws20_c00096{word-spacing:10.368000px;}
.ws8_c00096{word-spacing:10.440000px;}
.ws19_c00096{word-spacing:12.528000px;}
._0_c00096{margin-left:-2755.275600px;}
._5_c00096{margin-left:-4.512000px;}
._3_c00096{margin-left:-2.400000px;}
._1_c00096{margin-left:-1.344000px;}
._2_c00096{width:1.104000px;}
._4_c00096{width:6.192000px;}
.fc0_c00096{color:rgb(35,31,32);}
.fs2_c00096{font-size:41.976000px;}
.fs0_c00096{font-size:48.000000px;}
.fs3_c00096{font-size:60.000000px;}
.fs1_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y26_c00096{bottom:111.616200px;}
.y29_c00096{bottom:114.358800px;}
.y25_c00096{bottom:126.616200px;}
.y28_c00096{bottom:132.958800px;}
.y24_c00096{bottom:141.616200px;}
.y27_c00096{bottom:151.558800px;}
.y23_c00096{bottom:195.717450px;}
.y22_c00096{bottom:220.479450px;}
.y21_c00096{bottom:245.229450px;}
.y20_c00096{bottom:269.979450px;}
.y1f_c00096{bottom:294.729450px;}
.y1e_c00096{bottom:319.479450px;}
.y1d_c00096{bottom:344.229450px;}
.y1c_c00096{bottom:368.979450px;}
.y1b_c00096{bottom:393.729450px;}
.y1a_c00096{bottom:433.473450px;}
.y19_c00096{bottom:458.223450px;}
.y18_c00096{bottom:482.973450px;}
.y17_c00096{bottom:507.723450px;}
.y16_c00096{bottom:532.473450px;}
.y15_c00096{bottom:557.223450px;}
.y14_c00096{bottom:581.973450px;}
.y13_c00096{bottom:606.723450px;}
.y12_c00096{bottom:631.473450px;}
.y11_c00096{bottom:656.223450px;}
.y10_c00096{bottom:680.973450px;}
.yf_c00096{bottom:705.723450px;}
.ye_c00096{bottom:730.473450px;}
.yd_c00096{bottom:755.223450px;}
.yc_c00096{bottom:779.973450px;}
.yb_c00096{bottom:804.723450px;}
.ya_c00096{bottom:844.467450px;}
.y9_c00096{bottom:869.217450px;}
.y8_c00096{bottom:893.967450px;}
.y7_c00096{bottom:918.717450px;}
.y6_c00096{bottom:943.467450px;}
.y5_c00096{bottom:968.217450px;}
.y4_c00096{bottom:992.967450px;}
.y3_c00096{bottom:1017.717450px;}
.y2_c00096{bottom:1042.467450px;}
.y1_c00096{bottom:1093.600950px;}
.h2_c00096{height:39.264000px;}
.h3_c00096{height:39.984000px;}
.h5_c00096{height:49.080000px;}
.h4_c00096{height:58.896000px;}
.h1_c00096{height:1135.500000px;}
.h0_c00096{height:1135.506150px;}
.w0_c00096{width:893.950200px;}
.w1_c00096{width:894.000000px;}
.x0_c00096{left:0.000000px;}
.x4_c00096{left:128.626800px;}
.x5_c00096{left:145.636650px;}
.x2_c00096{left:188.061900px;}
.x3_c00096{left:190.513350px;}
.x6_c00096{left:531.286950px;}
.x1_c00096{left:806.777700px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:21.269333pt;}
.lsa_c00096{letter-spacing:-5.333333pt;}
.ls7_c00096{letter-spacing:-0.576000pt;}
.ls8_c00096{letter-spacing:-0.512000pt;}
.lsc_c00096{letter-spacing:-0.480000pt;}
.lsb_c00096{letter-spacing:-0.266667pt;}
.ls6_c00096{letter-spacing:0.000000pt;}
.ls4_c00096{letter-spacing:0.064000pt;}
.ls9_c00096{letter-spacing:0.186560pt;}
.ls1_c00096{letter-spacing:0.320000pt;}
.ls0_c00096{letter-spacing:0.426667pt;}
.ls2_c00096{letter-spacing:0.512000pt;}
.ls3_c00096{letter-spacing:0.640000pt;}
.ls5_c00096{letter-spacing:1.536000pt;}
.ws3_c00096{word-spacing:-14.976000pt;}
.ws1_c00096{word-spacing:-14.528000pt;}
.ws2_c00096{word-spacing:-14.144000pt;}
.ws0_c00096{word-spacing:-9.685333pt;}
.ws4_c00096{word-spacing:-8.656384pt;}
.ws5_c00096{word-spacing:-6.773333pt;}
.ws17_c00096{word-spacing:-2.176000pt;}
.wse_c00096{word-spacing:-2.112000pt;}
.ws13_c00096{word-spacing:-1.984000pt;}
.ws23_c00096{word-spacing:-0.960000pt;}
.ws1b_c00096{word-spacing:-0.896000pt;}
.ws12_c00096{word-spacing:-0.320000pt;}
.ws1e_c00096{word-spacing:-0.192000pt;}
.ws6_c00096{word-spacing:0.000000pt;}
.ws9_c00096{word-spacing:0.192000pt;}
.ws28_c00096{word-spacing:0.213333pt;}
.ws27_c00096{word-spacing:0.266667pt;}
.wsa_c00096{word-spacing:0.448000pt;}
.ws14_c00096{word-spacing:0.640000pt;}
.wsd_c00096{word-spacing:1.088000pt;}
.ws21_c00096{word-spacing:1.216000pt;}
.ws16_c00096{word-spacing:1.472000pt;}
.ws11_c00096{word-spacing:1.920000pt;}
.ws1f_c00096{word-spacing:2.304000pt;}
.ws24_c00096{word-spacing:2.432000pt;}
.ws25_c00096{word-spacing:2.474667pt;}
.ws1a_c00096{word-spacing:2.752000pt;}
.wsc_c00096{word-spacing:3.072000pt;}
.ws22_c00096{word-spacing:3.200000pt;}
.ws1c_c00096{word-spacing:3.712000pt;}
.wsf_c00096{word-spacing:4.864000pt;}
.ws26_c00096{word-spacing:4.906667pt;}
.ws18_c00096{word-spacing:4.928000pt;}
.ws1d_c00096{word-spacing:5.376000pt;}
.ws15_c00096{word-spacing:5.568000pt;}
.ws10_c00096{word-spacing:7.296000pt;}
.wsb_c00096{word-spacing:8.000000pt;}
.ws7_c00096{word-spacing:8.704000pt;}
.ws20_c00096{word-spacing:9.216000pt;}
.ws8_c00096{word-spacing:9.280000pt;}
.ws19_c00096{word-spacing:11.136000pt;}
._0_c00096{margin-left:-2449.133867pt;}
._5_c00096{margin-left:-4.010667pt;}
._3_c00096{margin-left:-2.133333pt;}
._1_c00096{margin-left:-1.194667pt;}
._2_c00096{width:0.981333pt;}
._4_c00096{width:5.504000pt;}
.fs2_c00096{font-size:37.312000pt;}
.fs0_c00096{font-size:42.666667pt;}
.fs3_c00096{font-size:53.333333pt;}
.fs1_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y26_c00096{bottom:99.214400pt;}
.y29_c00096{bottom:101.652267pt;}
.y25_c00096{bottom:112.547733pt;}
.y28_c00096{bottom:118.185600pt;}
.y24_c00096{bottom:125.881067pt;}
.y27_c00096{bottom:134.718933pt;}
.y23_c00096{bottom:173.971067pt;}
.y22_c00096{bottom:195.981733pt;}
.y21_c00096{bottom:217.981733pt;}
.y20_c00096{bottom:239.981733pt;}
.y1f_c00096{bottom:261.981733pt;}
.y1e_c00096{bottom:283.981733pt;}
.y1d_c00096{bottom:305.981733pt;}
.y1c_c00096{bottom:327.981733pt;}
.y1b_c00096{bottom:349.981733pt;}
.y1a_c00096{bottom:385.309733pt;}
.y19_c00096{bottom:407.309733pt;}
.y18_c00096{bottom:429.309733pt;}
.y17_c00096{bottom:451.309733pt;}
.y16_c00096{bottom:473.309733pt;}
.y15_c00096{bottom:495.309733pt;}
.y14_c00096{bottom:517.309733pt;}
.y13_c00096{bottom:539.309733pt;}
.y12_c00096{bottom:561.309733pt;}
.y11_c00096{bottom:583.309733pt;}
.y10_c00096{bottom:605.309733pt;}
.yf_c00096{bottom:627.309733pt;}
.ye_c00096{bottom:649.309733pt;}
.yd_c00096{bottom:671.309733pt;}
.yc_c00096{bottom:693.309733pt;}
.yb_c00096{bottom:715.309733pt;}
.ya_c00096{bottom:750.637733pt;}
.y9_c00096{bottom:772.637733pt;}
.y8_c00096{bottom:794.637733pt;}
.y7_c00096{bottom:816.637733pt;}
.y6_c00096{bottom:838.637733pt;}
.y5_c00096{bottom:860.637733pt;}
.y4_c00096{bottom:882.637733pt;}
.y3_c00096{bottom:904.637733pt;}
.y2_c00096{bottom:926.637733pt;}
.y1_c00096{bottom:972.089733pt;}
.h2_c00096{height:34.901333pt;}
.h3_c00096{height:35.541333pt;}
.h5_c00096{height:43.626667pt;}
.h4_c00096{height:52.352000pt;}
.h1_c00096{height:1009.333333pt;}
.h0_c00096{height:1009.338800pt;}
.w0_c00096{width:794.622400pt;}
.w1_c00096{width:794.666667pt;}
.x0_c00096{left:0.000000pt;}
.x4_c00096{left:114.334933pt;}
.x5_c00096{left:129.454800pt;}
.x2_c00096{left:167.166133pt;}
.x3_c00096{left:169.345200pt;}
.x6_c00096{left:472.255067pt;}
.x1_c00096{left:717.135733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d195c84f6d7b4a6e1dc566a7.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.067000;font-style:normal;font-weight:normal;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_60bbda206595b8e04c2f72a9.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00097{vertical-align:-23.976000px;}
.v0_c00097{vertical-align:0.000000px;}
.v1_c00097{vertical-align:23.928000px;}
.ls3_c00097{letter-spacing:-1.944000px;}
.ls5_c00097{letter-spacing:-1.656000px;}
.ls6_c00097{letter-spacing:-1.224000px;}
.lsc_c00097{letter-spacing:-1.200000px;}
.ls8_c00097{letter-spacing:-1.152000px;}
.ls2_c00097{letter-spacing:-1.080000px;}
.ls7_c00097{letter-spacing:-1.008000px;}
.lse_c00097{letter-spacing:-0.840000px;}
.ls4_c00097{letter-spacing:-0.720000px;}
.lsd_c00097{letter-spacing:-0.600000px;}
.lsa_c00097{letter-spacing:-0.360000px;}
.lsf_c00097{letter-spacing:-0.240000px;}
.ls1_c00097{letter-spacing:0.000000px;}
.ls0_c00097{letter-spacing:0.216000px;}
.ls9_c00097{letter-spacing:0.545688px;}
.lsb_c00097{letter-spacing:0.624000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00097{word-spacing:-16.488000px;}
.ws1_c00097{word-spacing:-16.344000px;}
.ws7_c00097{word-spacing:-16.128000px;}
.ws5_c00097{word-spacing:-15.336000px;}
.ws4_c00097{word-spacing:-15.120000px;}
.ws3_c00097{word-spacing:-14.688000px;}
.ws2_c00097{word-spacing:-14.400000px;}
.wsb_c00097{word-spacing:-13.740000px;}
.ws9_c00097{word-spacing:-11.520000px;}
.wsa_c00097{word-spacing:-10.896000px;}
.ws6_c00097{word-spacing:-10.074240px;}
.ws10_c00097{word-spacing:-2.592000px;}
.wsf_c00097{word-spacing:-2.376000px;}
.ws1d_c00097{word-spacing:-1.656000px;}
.ws26_c00097{word-spacing:-1.440000px;}
.ws1c_c00097{word-spacing:-1.296000px;}
.ws16_c00097{word-spacing:-0.792000px;}
.ws13_c00097{word-spacing:-0.648000px;}
.wsc_c00097{word-spacing:0.000000px;}
.ws27_c00097{word-spacing:0.216000px;}
.ws30_c00097{word-spacing:0.240000px;}
.ws17_c00097{word-spacing:0.288000px;}
.ws15_c00097{word-spacing:0.504000px;}
.ws2f_c00097{word-spacing:0.600000px;}
.ws18_c00097{word-spacing:0.720000px;}
.ws11_c00097{word-spacing:1.080000px;}
.wse_c00097{word-spacing:1.368000px;}
.ws2c_c00097{word-spacing:1.872000px;}
.ws1e_c00097{word-spacing:1.944000px;}
.ws24_c00097{word-spacing:2.016000px;}
.ws25_c00097{word-spacing:3.096000px;}
.ws1b_c00097{word-spacing:3.816000px;}
.ws1f_c00097{word-spacing:3.888000px;}
.ws22_c00097{word-spacing:4.320000px;}
.ws1a_c00097{word-spacing:4.536000px;}
.ws2d_c00097{word-spacing:5.184000px;}
.ws2e_c00097{word-spacing:5.232000px;}
.ws12_c00097{word-spacing:5.328000px;}
.ws23_c00097{word-spacing:5.472000px;}
.ws28_c00097{word-spacing:5.832000px;}
.ws2a_c00097{word-spacing:7.128000px;}
.ws29_c00097{word-spacing:7.416000px;}
.ws14_c00097{word-spacing:7.488000px;}
.ws19_c00097{word-spacing:8.784000px;}
.wsd_c00097{word-spacing:9.000000px;}
.ws21_c00097{word-spacing:11.016000px;}
.ws2b_c00097{word-spacing:12.528000px;}
.ws20_c00097{word-spacing:13.464000px;}
.ws0_c00097{word-spacing:1596.427200px;}
._5_c00097{margin-left:-6.360000px;}
._6_c00097{margin-left:-5.328000px;}
._4_c00097{margin-left:-3.168000px;}
._0_c00097{margin-left:-2.112000px;}
._1_c00097{margin-left:-1.104000px;}
._2_c00097{width:1.200000px;}
._3_c00097{width:2.328000px;}
.fc0_c00097{color:rgb(35,31,32);}
.fs2_c00097{font-size:41.976000px;}
.fs0_c00097{font-size:48.000000px;}
.fs3_c00097{font-size:60.000000px;}
.fs1_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y25_c00097{bottom:111.616200px;}
.y24_c00097{bottom:126.616200px;}
.y23_c00097{bottom:180.723450px;}
.y2c_c00097{bottom:182.016900px;}
.y2b_c00097{bottom:200.616900px;}
.y22_c00097{bottom:205.473450px;}
.y2a_c00097{bottom:219.216900px;}
.y21_c00097{bottom:230.223450px;}
.y20_c00097{bottom:254.973450px;}
.y1f_c00097{bottom:279.723450px;}
.y1e_c00097{bottom:304.473450px;}
.y1d_c00097{bottom:329.223450px;}
.y1c_c00097{bottom:353.973450px;}
.y1b_c00097{bottom:393.729450px;}
.y1a_c00097{bottom:418.479450px;}
.y19_c00097{bottom:443.229450px;}
.y18_c00097{bottom:467.979450px;}
.y17_c00097{bottom:492.729450px;}
.y29_c00097{bottom:510.019950px;}
.y28_c00097{bottom:528.619950px;}
.y16_c00097{bottom:532.473450px;}
.y27_c00097{bottom:547.219950px;}
.y15_c00097{bottom:557.223450px;}
.y26_c00097{bottom:565.819950px;}
.y14_c00097{bottom:581.973450px;}
.y13_c00097{bottom:606.723450px;}
.y12_c00097{bottom:631.473450px;}
.y11_c00097{bottom:656.223450px;}
.y10_c00097{bottom:680.973450px;}
.yf_c00097{bottom:705.723450px;}
.ye_c00097{bottom:730.473450px;}
.yd_c00097{bottom:755.223450px;}
.yc_c00097{bottom:779.973450px;}
.yb_c00097{bottom:804.723450px;}
.ya_c00097{bottom:829.473450px;}
.y9_c00097{bottom:854.223450px;}
.y8_c00097{bottom:878.973450px;}
.y7_c00097{bottom:918.717450px;}
.y6_c00097{bottom:943.467450px;}
.y5_c00097{bottom:968.217450px;}
.y4_c00097{bottom:992.967450px;}
.y3_c00097{bottom:1017.717450px;}
.y2_c00097{bottom:1042.467450px;}
.y1_c00097{bottom:1093.600950px;}
.h2_c00097{height:39.264000px;}
.h5_c00097{height:48.600000px;}
.h4_c00097{height:49.080000px;}
.h3_c00097{height:58.896000px;}
.h1_c00097{height:1135.500000px;}
.h0_c00097{height:1135.506150px;}
.w0_c00097{width:893.950200px;}
.w1_c00097{width:894.000000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:77.603100px;}
.x2_c00097{left:94.611000px;}
.x3_c00097{left:485.792100px;}
@media print{
.v2_c00097{vertical-align:-21.312000pt;}
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:21.269333pt;}
.ls3_c00097{letter-spacing:-1.728000pt;}
.ls5_c00097{letter-spacing:-1.472000pt;}
.ls6_c00097{letter-spacing:-1.088000pt;}
.lsc_c00097{letter-spacing:-1.066667pt;}
.ls8_c00097{letter-spacing:-1.024000pt;}
.ls2_c00097{letter-spacing:-0.960000pt;}
.ls7_c00097{letter-spacing:-0.896000pt;}
.lse_c00097{letter-spacing:-0.746667pt;}
.ls4_c00097{letter-spacing:-0.640000pt;}
.lsd_c00097{letter-spacing:-0.533333pt;}
.lsa_c00097{letter-spacing:-0.320000pt;}
.lsf_c00097{letter-spacing:-0.213333pt;}
.ls1_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:0.192000pt;}
.ls9_c00097{letter-spacing:0.485056pt;}
.lsb_c00097{letter-spacing:0.554667pt;}
.ws8_c00097{word-spacing:-14.656000pt;}
.ws1_c00097{word-spacing:-14.528000pt;}
.ws7_c00097{word-spacing:-14.336000pt;}
.ws5_c00097{word-spacing:-13.632000pt;}
.ws4_c00097{word-spacing:-13.440000pt;}
.ws3_c00097{word-spacing:-13.056000pt;}
.ws2_c00097{word-spacing:-12.800000pt;}
.wsb_c00097{word-spacing:-12.213333pt;}
.ws9_c00097{word-spacing:-10.240000pt;}
.wsa_c00097{word-spacing:-9.685333pt;}
.ws6_c00097{word-spacing:-8.954880pt;}
.ws10_c00097{word-spacing:-2.304000pt;}
.wsf_c00097{word-spacing:-2.112000pt;}
.ws1d_c00097{word-spacing:-1.472000pt;}
.ws26_c00097{word-spacing:-1.280000pt;}
.ws1c_c00097{word-spacing:-1.152000pt;}
.ws16_c00097{word-spacing:-0.704000pt;}
.ws13_c00097{word-spacing:-0.576000pt;}
.wsc_c00097{word-spacing:0.000000pt;}
.ws27_c00097{word-spacing:0.192000pt;}
.ws30_c00097{word-spacing:0.213333pt;}
.ws17_c00097{word-spacing:0.256000pt;}
.ws15_c00097{word-spacing:0.448000pt;}
.ws2f_c00097{word-spacing:0.533333pt;}
.ws18_c00097{word-spacing:0.640000pt;}
.ws11_c00097{word-spacing:0.960000pt;}
.wse_c00097{word-spacing:1.216000pt;}
.ws2c_c00097{word-spacing:1.664000pt;}
.ws1e_c00097{word-spacing:1.728000pt;}
.ws24_c00097{word-spacing:1.792000pt;}
.ws25_c00097{word-spacing:2.752000pt;}
.ws1b_c00097{word-spacing:3.392000pt;}
.ws1f_c00097{word-spacing:3.456000pt;}
.ws22_c00097{word-spacing:3.840000pt;}
.ws1a_c00097{word-spacing:4.032000pt;}
.ws2d_c00097{word-spacing:4.608000pt;}
.ws2e_c00097{word-spacing:4.650667pt;}
.ws12_c00097{word-spacing:4.736000pt;}
.ws23_c00097{word-spacing:4.864000pt;}
.ws28_c00097{word-spacing:5.184000pt;}
.ws2a_c00097{word-spacing:6.336000pt;}
.ws29_c00097{word-spacing:6.592000pt;}
.ws14_c00097{word-spacing:6.656000pt;}
.ws19_c00097{word-spacing:7.808000pt;}
.wsd_c00097{word-spacing:8.000000pt;}
.ws21_c00097{word-spacing:9.792000pt;}
.ws2b_c00097{word-spacing:11.136000pt;}
.ws20_c00097{word-spacing:11.968000pt;}
.ws0_c00097{word-spacing:1419.046400pt;}
._5_c00097{margin-left:-5.653333pt;}
._6_c00097{margin-left:-4.736000pt;}
._4_c00097{margin-left:-2.816000pt;}
._0_c00097{margin-left:-1.877333pt;}
._1_c00097{margin-left:-0.981333pt;}
._2_c00097{width:1.066667pt;}
._3_c00097{width:2.069333pt;}
.fs2_c00097{font-size:37.312000pt;}
.fs0_c00097{font-size:42.666667pt;}
.fs3_c00097{font-size:53.333333pt;}
.fs1_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y25_c00097{bottom:99.214400pt;}
.y24_c00097{bottom:112.547733pt;}
.y23_c00097{bottom:160.643067pt;}
.y2c_c00097{bottom:161.792800pt;}
.y2b_c00097{bottom:178.326133pt;}
.y22_c00097{bottom:182.643067pt;}
.y2a_c00097{bottom:194.859467pt;}
.y21_c00097{bottom:204.643067pt;}
.y20_c00097{bottom:226.643067pt;}
.y1f_c00097{bottom:248.643067pt;}
.y1e_c00097{bottom:270.643067pt;}
.y1d_c00097{bottom:292.643067pt;}
.y1c_c00097{bottom:314.643067pt;}
.y1b_c00097{bottom:349.981733pt;}
.y1a_c00097{bottom:371.981733pt;}
.y19_c00097{bottom:393.981733pt;}
.y18_c00097{bottom:415.981733pt;}
.y17_c00097{bottom:437.981733pt;}
.y29_c00097{bottom:453.351067pt;}
.y28_c00097{bottom:469.884400pt;}
.y16_c00097{bottom:473.309733pt;}
.y27_c00097{bottom:486.417733pt;}
.y15_c00097{bottom:495.309733pt;}
.y26_c00097{bottom:502.951067pt;}
.y14_c00097{bottom:517.309733pt;}
.y13_c00097{bottom:539.309733pt;}
.y12_c00097{bottom:561.309733pt;}
.y11_c00097{bottom:583.309733pt;}
.y10_c00097{bottom:605.309733pt;}
.yf_c00097{bottom:627.309733pt;}
.ye_c00097{bottom:649.309733pt;}
.yd_c00097{bottom:671.309733pt;}
.yc_c00097{bottom:693.309733pt;}
.yb_c00097{bottom:715.309733pt;}
.ya_c00097{bottom:737.309733pt;}
.y9_c00097{bottom:759.309733pt;}
.y8_c00097{bottom:781.309733pt;}
.y7_c00097{bottom:816.637733pt;}
.y6_c00097{bottom:838.637733pt;}
.y5_c00097{bottom:860.637733pt;}
.y4_c00097{bottom:882.637733pt;}
.y3_c00097{bottom:904.637733pt;}
.y2_c00097{bottom:926.637733pt;}
.y1_c00097{bottom:972.089733pt;}
.h2_c00097{height:34.901333pt;}
.h5_c00097{height:43.200000pt;}
.h4_c00097{height:43.626667pt;}
.h3_c00097{height:52.352000pt;}
.h1_c00097{height:1009.333333pt;}
.h0_c00097{height:1009.338800pt;}
.w0_c00097{width:794.622400pt;}
.w1_c00097{width:794.666667pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:68.980533pt;}
.x2_c00097{left:84.098667pt;}
.x3_c00097{left:431.815200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a9bfd0181464ff51efc8b96.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.082000;font-style:normal;font-weight:normal;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_e1a8d90c0fceaa015dc0356d.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.067000;font-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_c00098{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.v1_c00098{vertical-align:23.976000px;}
.ls4_c00098{letter-spacing:-0.648000px;}
.ls2_c00098{letter-spacing:-0.432000px;}
.ls7_c00098{letter-spacing:-0.378000px;}
.ls8_c00098{letter-spacing:-0.216000px;}
.ls3_c00098{letter-spacing:0.000000px;}
.ls5_c00098{letter-spacing:0.125928px;}
.ls6_c00098{letter-spacing:0.144000px;}
.ls1_c00098{letter-spacing:0.360000px;}
.ls0_c00098{letter-spacing:0.480000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00098{word-spacing:-16.344000px;}
.ws2_c00098{word-spacing:-15.696000px;}
.ws4_c00098{word-spacing:-12.258000px;}
.ws3_c00098{word-spacing:-11.040000px;}
.ws0_c00098{word-spacing:-10.464000px;}
.wsd_c00098{word-spacing:-3.600000px;}
.ws9_c00098{word-spacing:-2.448000px;}
.wsa_c00098{word-spacing:-2.088000px;}
.ws7_c00098{word-spacing:-0.125928px;}
.ws5_c00098{word-spacing:0.000000px;}
.wsf_c00098{word-spacing:0.216000px;}
.wse_c00098{word-spacing:0.378000px;}
.wsc_c00098{word-spacing:1.512000px;}
.ws6_c00098{word-spacing:3.240000px;}
.ws8_c00098{word-spacing:3.744000px;}
.wsb_c00098{word-spacing:8.208000px;}
._0_c00098{margin-left:-2754.843000px;}
._3_c00098{margin-left:-7.560000px;}
._5_c00098{margin-left:-5.976000px;}
._6_c00098{margin-left:-4.177200px;}
._4_c00098{margin-left:-2.352000px;}
._1_c00098{margin-left:-1.344000px;}
._2_c00098{width:1.104000px;}
.fc0_c00098{color:rgb(35,31,32);}
.fs2_c00098{font-size:41.976000px;}
.fs0_c00098{font-size:48.000000px;}
.fs3_c00098{font-size:54.000000px;}
.fs1_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.yd_c00098{bottom:111.616200px;}
.y16_c00098{bottom:220.971750px;}
.y15_c00098{bottom:235.970250px;}
.y14_c00098{bottom:250.968750px;}
.y13_c00098{bottom:265.967250px;}
.y12_c00098{bottom:280.965750px;}
.y11_c00098{bottom:373.454250px;}
.y10_c00098{bottom:388.452750px;}
.ye_c00098{bottom:411.352350px;}
.yf_c00098{bottom:452.701200px;}
.yc_c00098{bottom:734.985450px;}
.yb_c00098{bottom:759.735450px;}
.ya_c00098{bottom:784.485450px;}
.y9_c00098{bottom:824.229450px;}
.y8_c00098{bottom:863.973450px;}
.y7_c00098{bottom:888.723450px;}
.y6_c00098{bottom:928.467450px;}
.y5_c00098{bottom:953.217450px;}
.y4_c00098{bottom:977.967450px;}
.y3_c00098{bottom:1017.717450px;}
.y2_c00098{bottom:1042.467450px;}
.y1_c00098{bottom:1093.600950px;}
.h2_c00098{height:39.264000px;}
.h3_c00098{height:39.984000px;}
.h6_c00098{height:43.740000px;}
.h5_c00098{height:44.172000px;}
.h4_c00098{height:58.896000px;}
.h1_c00098{height:1135.500000px;}
.h0_c00098{height:1135.506150px;}
.w0_c00098{width:893.950200px;}
.w1_c00098{width:894.000000px;}
.x0_c00098{left:0.000000px;}
.x4_c00098{left:128.626800px;}
.x2_c00098{left:188.061900px;}
.x3_c00098{left:190.513350px;}
.x5_c00098{left:549.129300px;}
.x6_c00098{left:638.229300px;}
.x1_c00098{left:806.477550px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.v1_c00098{vertical-align:21.312000pt;}
.ls4_c00098{letter-spacing:-0.576000pt;}
.ls2_c00098{letter-spacing:-0.384000pt;}
.ls7_c00098{letter-spacing:-0.336000pt;}
.ls8_c00098{letter-spacing:-0.192000pt;}
.ls3_c00098{letter-spacing:0.000000pt;}
.ls5_c00098{letter-spacing:0.111936pt;}
.ls6_c00098{letter-spacing:0.128000pt;}
.ls1_c00098{letter-spacing:0.320000pt;}
.ls0_c00098{letter-spacing:0.426667pt;}
.ws1_c00098{word-spacing:-14.528000pt;}
.ws2_c00098{word-spacing:-13.952000pt;}
.ws4_c00098{word-spacing:-10.896000pt;}
.ws3_c00098{word-spacing:-9.813333pt;}
.ws0_c00098{word-spacing:-9.301333pt;}
.wsd_c00098{word-spacing:-3.200000pt;}
.ws9_c00098{word-spacing:-2.176000pt;}
.wsa_c00098{word-spacing:-1.856000pt;}
.ws7_c00098{word-spacing:-0.111936pt;}
.ws5_c00098{word-spacing:0.000000pt;}
.wsf_c00098{word-spacing:0.192000pt;}
.wse_c00098{word-spacing:0.336000pt;}
.wsc_c00098{word-spacing:1.344000pt;}
.ws6_c00098{word-spacing:2.880000pt;}
.ws8_c00098{word-spacing:3.328000pt;}
.wsb_c00098{word-spacing:7.296000pt;}
._0_c00098{margin-left:-2448.749333pt;}
._3_c00098{margin-left:-6.720000pt;}
._5_c00098{margin-left:-5.312000pt;}
._6_c00098{margin-left:-3.713067pt;}
._4_c00098{margin-left:-2.090667pt;}
._1_c00098{margin-left:-1.194667pt;}
._2_c00098{width:0.981333pt;}
.fs2_c00098{font-size:37.312000pt;}
.fs0_c00098{font-size:42.666667pt;}
.fs3_c00098{font-size:48.000000pt;}
.fs1_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.yd_c00098{bottom:99.214400pt;}
.y16_c00098{bottom:196.419333pt;}
.y15_c00098{bottom:209.751333pt;}
.y14_c00098{bottom:223.083333pt;}
.y13_c00098{bottom:236.415333pt;}
.y12_c00098{bottom:249.747333pt;}
.y11_c00098{bottom:331.959333pt;}
.y10_c00098{bottom:345.291333pt;}
.ye_c00098{bottom:365.646533pt;}
.yf_c00098{bottom:402.401067pt;}
.yc_c00098{bottom:653.320400pt;}
.yb_c00098{bottom:675.320400pt;}
.ya_c00098{bottom:697.320400pt;}
.y9_c00098{bottom:732.648400pt;}
.y8_c00098{bottom:767.976400pt;}
.y7_c00098{bottom:789.976400pt;}
.y6_c00098{bottom:825.304400pt;}
.y5_c00098{bottom:847.304400pt;}
.y4_c00098{bottom:869.304400pt;}
.y3_c00098{bottom:904.637733pt;}
.y2_c00098{bottom:926.637733pt;}
.y1_c00098{bottom:972.089733pt;}
.h2_c00098{height:34.901333pt;}
.h3_c00098{height:35.541333pt;}
.h6_c00098{height:38.880000pt;}
.h5_c00098{height:39.264000pt;}
.h4_c00098{height:52.352000pt;}
.h1_c00098{height:1009.333333pt;}
.h0_c00098{height:1009.338800pt;}
.w0_c00098{width:794.622400pt;}
.w1_c00098{width:794.666667pt;}
.x0_c00098{left:0.000000pt;}
.x4_c00098{left:114.334933pt;}
.x2_c00098{left:167.166133pt;}
.x3_c00098{left:169.345200pt;}
.x5_c00098{left:488.114933pt;}
.x6_c00098{left:567.314933pt;}
.x1_c00098{left:716.868933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9cf2773a9eb2aae0a51b8c9.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_587d176ce3c048b7f5d6e14c.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls2_c00099{letter-spacing:-7.344000px;}
.ls3_c00099{letter-spacing:-0.864000px;}
.ls5_c00099{letter-spacing:-0.702000px;}
.ls7_c00099{letter-spacing:-0.648000px;}
.ls8_c00099{letter-spacing:-0.432000px;}
.ls6_c00099{letter-spacing:-0.378000px;}
.ls1_c00099{letter-spacing:-0.360000px;}
.ls4_c00099{letter-spacing:-0.216000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00099{word-spacing:-15.624000px;}
.ws4_c00099{word-spacing:-11.988000px;}
.ws3_c00099{word-spacing:-11.556000px;}
.ws1_c00099{word-spacing:-9.144000px;}
.ws8_c00099{word-spacing:-2.880000px;}
.wsa_c00099{word-spacing:-1.944000px;}
.wse_c00099{word-spacing:-1.296000px;}
.ws5_c00099{word-spacing:0.000000px;}
.wsf_c00099{word-spacing:0.216000px;}
.ws7_c00099{word-spacing:0.432000px;}
.ws9_c00099{word-spacing:1.008000px;}
.wsd_c00099{word-spacing:1.872000px;}
.wsb_c00099{word-spacing:3.240000px;}
.wsc_c00099{word-spacing:3.312000px;}
.ws6_c00099{word-spacing:28.440000px;}
.ws0_c00099{word-spacing:1598.011200px;}
._5_c00099{margin-left:-5.340000px;}
._0_c00099{margin-left:-2.112000px;}
._1_c00099{margin-left:-1.104000px;}
._2_c00099{width:1.368000px;}
._3_c00099{width:5.136000px;}
._4_c00099{width:6.984000px;}
.fc0_c00099{color:rgb(35,31,32);}
.fs0_c00099{font-size:48.000000px;}
.fs2_c00099{font-size:54.000000px;}
.fs1_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y17_c00099{bottom:111.413850px;}
.yd_c00099{bottom:359.259450px;}
.y16_c00099{bottom:437.614350px;}
.y15_c00099{bottom:452.612850px;}
.y14_c00099{bottom:467.611350px;}
.y13_c00099{bottom:482.609850px;}
.y12_c00099{bottom:512.606850px;}
.y11_c00099{bottom:527.605350px;}
.y10_c00099{bottom:542.603850px;}
.yc_c00099{bottom:744.207450px;}
.yb_c00099{bottom:765.807450px;}
.ya_c00099{bottom:787.407450px;}
.yf_c00099{bottom:849.917850px;}
.ye_c00099{bottom:864.916350px;}
.y9_c00099{bottom:891.267450px;}
.y8_c00099{bottom:912.867450px;}
.y7_c00099{bottom:934.467450px;}
.y6_c00099{bottom:956.067450px;}
.y5_c00099{bottom:977.667450px;}
.y4_c00099{bottom:999.267450px;}
.y3_c00099{bottom:1020.867450px;}
.y2_c00099{bottom:1042.467450px;}
.y1_c00099{bottom:1093.600950px;}
.h2_c00099{height:39.264000px;}
.h4_c00099{height:43.740000px;}
.h5_c00099{height:44.172000px;}
.h3_c00099{height:58.896000px;}
.h1_c00099{height:1135.500000px;}
.h0_c00099{height:1135.506150px;}
.w0_c00099{width:893.950200px;}
.w1_c00099{width:894.000000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:77.603100px;}
.x2_c00099{left:139.541100px;}
.x3_c00099{left:369.560400px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls2_c00099{letter-spacing:-6.528000pt;}
.ls3_c00099{letter-spacing:-0.768000pt;}
.ls5_c00099{letter-spacing:-0.624000pt;}
.ls7_c00099{letter-spacing:-0.576000pt;}
.ls8_c00099{letter-spacing:-0.384000pt;}
.ls6_c00099{letter-spacing:-0.336000pt;}
.ls1_c00099{letter-spacing:-0.320000pt;}
.ls4_c00099{letter-spacing:-0.192000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws2_c00099{word-spacing:-13.888000pt;}
.ws4_c00099{word-spacing:-10.656000pt;}
.ws3_c00099{word-spacing:-10.272000pt;}
.ws1_c00099{word-spacing:-8.128000pt;}
.ws8_c00099{word-spacing:-2.560000pt;}
.wsa_c00099{word-spacing:-1.728000pt;}
.wse_c00099{word-spacing:-1.152000pt;}
.ws5_c00099{word-spacing:0.000000pt;}
.wsf_c00099{word-spacing:0.192000pt;}
.ws7_c00099{word-spacing:0.384000pt;}
.ws9_c00099{word-spacing:0.896000pt;}
.wsd_c00099{word-spacing:1.664000pt;}
.wsb_c00099{word-spacing:2.880000pt;}
.wsc_c00099{word-spacing:2.944000pt;}
.ws6_c00099{word-spacing:25.280000pt;}
.ws0_c00099{word-spacing:1420.454400pt;}
._5_c00099{margin-left:-4.746667pt;}
._0_c00099{margin-left:-1.877333pt;}
._1_c00099{margin-left:-0.981333pt;}
._2_c00099{width:1.216000pt;}
._3_c00099{width:4.565333pt;}
._4_c00099{width:6.208000pt;}
.fs0_c00099{font-size:42.666667pt;}
.fs2_c00099{font-size:48.000000pt;}
.fs1_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y17_c00099{bottom:99.034533pt;}
.yd_c00099{bottom:319.341733pt;}
.y16_c00099{bottom:388.990533pt;}
.y15_c00099{bottom:402.322533pt;}
.y14_c00099{bottom:415.654533pt;}
.y13_c00099{bottom:428.986533pt;}
.y12_c00099{bottom:455.650533pt;}
.y11_c00099{bottom:468.982533pt;}
.y10_c00099{bottom:482.314533pt;}
.yc_c00099{bottom:661.517733pt;}
.yb_c00099{bottom:680.717733pt;}
.ya_c00099{bottom:699.917733pt;}
.yf_c00099{bottom:755.482533pt;}
.ye_c00099{bottom:768.814533pt;}
.y9_c00099{bottom:792.237733pt;}
.y8_c00099{bottom:811.437733pt;}
.y7_c00099{bottom:830.637733pt;}
.y6_c00099{bottom:849.837733pt;}
.y5_c00099{bottom:869.037733pt;}
.y4_c00099{bottom:888.237733pt;}
.y3_c00099{bottom:907.437733pt;}
.y2_c00099{bottom:926.637733pt;}
.y1_c00099{bottom:972.089733pt;}
.h2_c00099{height:34.901333pt;}
.h4_c00099{height:38.880000pt;}
.h5_c00099{height:39.264000pt;}
.h3_c00099{height:52.352000pt;}
.h1_c00099{height:1009.333333pt;}
.h0_c00099{height:1009.338800pt;}
.w0_c00099{width:794.622400pt;}
.w1_c00099{width:794.666667pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:68.980533pt;}
.x2_c00099{left:124.036533pt;}
.x3_c00099{left:328.498133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8804e65775992da97f993392.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_942ead515f8a584117138175.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.067000;font-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_c00100{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.v1_c00100{vertical-align:23.952600px;}
.ls7_c00100{letter-spacing:-0.480000px;}
.ls4_c00100{letter-spacing:-0.288000px;}
.ls6_c00100{letter-spacing:-0.216000px;}
.ls3_c00100{letter-spacing:0.000000px;}
.ls5_c00100{letter-spacing:0.293832px;}
.ls1_c00100{letter-spacing:0.360000px;}
.ls0_c00100{letter-spacing:0.480000px;}
.ls2_c00100{letter-spacing:0.641400px;}
.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;}
}
.ws1_c00100{word-spacing:-16.344000px;}
.ws2_c00100{word-spacing:-16.200000px;}
.ws0_c00100{word-spacing:-10.896000px;}
.ws4_c00100{word-spacing:-10.416000px;}
.ws3_c00100{word-spacing:-9.822384px;}
.wse_c00100{word-spacing:-2.952000px;}
.ws11_c00100{word-spacing:-2.376000px;}
.wsa_c00100{word-spacing:-1.872000px;}
.ws10_c00100{word-spacing:-1.368000px;}
.wsd_c00100{word-spacing:-1.008000px;}
.ws9_c00100{word-spacing:-0.432000px;}
.ws15_c00100{word-spacing:-0.384000px;}
.ws6_c00100{word-spacing:-0.216000px;}
.ws5_c00100{word-spacing:0.000000px;}
.wsf_c00100{word-spacing:0.504000px;}
.wsc_c00100{word-spacing:0.792000px;}
.ws7_c00100{word-spacing:2.448000px;}
.wsb_c00100{word-spacing:2.520000px;}
.ws8_c00100{word-spacing:3.312000px;}
.ws12_c00100{word-spacing:4.248000px;}
.ws13_c00100{word-spacing:4.752000px;}
.ws14_c00100{word-spacing:5.688000px;}
._0_c00100{margin-left:-2755.276200px;}
._4_c00100{margin-left:-8.280000px;}
._6_c00100{margin-left:-7.032000px;}
._7_c00100{margin-left:-4.417800px;}
._5_c00100{margin-left:-2.616000px;}
._1_c00100{margin-left:-1.344000px;}
._2_c00100{width:1.104000px;}
._3_c00100{width:53.784000px;}
.fc0_c00100{color:rgb(35,31,32);}
.fs2_c00100{font-size:41.976000px;}
.fs0_c00100{font-size:48.000000px;}
.fs3_c00100{font-size:60.000000px;}
.fs1_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y15_c00100{bottom:111.616350px;}
.y14_c00100{bottom:180.723450px;}
.y13_c00100{bottom:205.473450px;}
.y12_c00100{bottom:245.223450px;}
.y11_c00100{bottom:269.973450px;}
.y10_c00100{bottom:294.723450px;}
.yf_c00100{bottom:319.473450px;}
.ye_c00100{bottom:344.223450px;}
.yd_c00100{bottom:368.973450px;}
.yc_c00100{bottom:393.723450px;}
.y19_c00100{bottom:442.441950px;}
.y1d_c00100{bottom:443.131950px;}
.y18_c00100{bottom:461.041950px;}
.y1c_c00100{bottom:461.731950px;}
.y17_c00100{bottom:479.641950px;}
.y1b_c00100{bottom:480.331950px;}
.y16_c00100{bottom:498.241950px;}
.y1a_c00100{bottom:498.931950px;}
.yb_c00100{bottom:804.717450px;}
.ya_c00100{bottom:829.467450px;}
.y9_c00100{bottom:854.217450px;}
.y8_c00100{bottom:878.967450px;}
.y7_c00100{bottom:903.717450px;}
.y6_c00100{bottom:928.467450px;}
.y5_c00100{bottom:953.217450px;}
.y4_c00100{bottom:977.967450px;}
.y3_c00100{bottom:1002.717450px;}
.y2_c00100{bottom:1042.467450px;}
.y1_c00100{bottom:1093.600950px;}
.h2_c00100{height:39.264000px;}
.h3_c00100{height:39.984000px;}
.h6_c00100{height:48.600000px;}
.h5_c00100{height:49.080000px;}
.h4_c00100{height:58.896000px;}
.h1_c00100{height:1135.500000px;}
.h0_c00100{height:1135.506150px;}
.w0_c00100{width:893.950200px;}
.w1_c00100{width:894.000000px;}
.x0_c00100{left:0.000000px;}
.x4_c00100{left:128.626800px;}
.x2_c00100{left:188.061900px;}
.x3_c00100{left:190.513350px;}
.x5_c00100{left:490.044150px;}
.x1_c00100{left:805.781850px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:21.291200pt;}
.ls7_c00100{letter-spacing:-0.426667pt;}
.ls4_c00100{letter-spacing:-0.256000pt;}
.ls6_c00100{letter-spacing:-0.192000pt;}
.ls3_c00100{letter-spacing:0.000000pt;}
.ls5_c00100{letter-spacing:0.261184pt;}
.ls1_c00100{letter-spacing:0.320000pt;}
.ls0_c00100{letter-spacing:0.426667pt;}
.ls2_c00100{letter-spacing:0.570133pt;}
.ws1_c00100{word-spacing:-14.528000pt;}
.ws2_c00100{word-spacing:-14.400000pt;}
.ws0_c00100{word-spacing:-9.685333pt;}
.ws4_c00100{word-spacing:-9.258667pt;}
.ws3_c00100{word-spacing:-8.731008pt;}
.wse_c00100{word-spacing:-2.624000pt;}
.ws11_c00100{word-spacing:-2.112000pt;}
.wsa_c00100{word-spacing:-1.664000pt;}
.ws10_c00100{word-spacing:-1.216000pt;}
.wsd_c00100{word-spacing:-0.896000pt;}
.ws9_c00100{word-spacing:-0.384000pt;}
.ws15_c00100{word-spacing:-0.341333pt;}
.ws6_c00100{word-spacing:-0.192000pt;}
.ws5_c00100{word-spacing:0.000000pt;}
.wsf_c00100{word-spacing:0.448000pt;}
.wsc_c00100{word-spacing:0.704000pt;}
.ws7_c00100{word-spacing:2.176000pt;}
.wsb_c00100{word-spacing:2.240000pt;}
.ws8_c00100{word-spacing:2.944000pt;}
.ws12_c00100{word-spacing:3.776000pt;}
.ws13_c00100{word-spacing:4.224000pt;}
.ws14_c00100{word-spacing:5.056000pt;}
._0_c00100{margin-left:-2449.134400pt;}
._4_c00100{margin-left:-7.360000pt;}
._6_c00100{margin-left:-6.250667pt;}
._7_c00100{margin-left:-3.926933pt;}
._5_c00100{margin-left:-2.325333pt;}
._1_c00100{margin-left:-1.194667pt;}
._2_c00100{width:0.981333pt;}
._3_c00100{width:47.808000pt;}
.fs2_c00100{font-size:37.312000pt;}
.fs0_c00100{font-size:42.666667pt;}
.fs3_c00100{font-size:53.333333pt;}
.fs1_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y15_c00100{bottom:99.214533pt;}
.y14_c00100{bottom:160.643067pt;}
.y13_c00100{bottom:182.643067pt;}
.y12_c00100{bottom:217.976400pt;}
.y11_c00100{bottom:239.976400pt;}
.y10_c00100{bottom:261.976400pt;}
.yf_c00100{bottom:283.976400pt;}
.ye_c00100{bottom:305.976400pt;}
.yd_c00100{bottom:327.976400pt;}
.yc_c00100{bottom:349.976400pt;}
.y19_c00100{bottom:393.281733pt;}
.y1d_c00100{bottom:393.895067pt;}
.y18_c00100{bottom:409.815067pt;}
.y1c_c00100{bottom:410.428400pt;}
.y17_c00100{bottom:426.348400pt;}
.y1b_c00100{bottom:426.961733pt;}
.y16_c00100{bottom:442.881733pt;}
.y1a_c00100{bottom:443.495067pt;}
.yb_c00100{bottom:715.304400pt;}
.ya_c00100{bottom:737.304400pt;}
.y9_c00100{bottom:759.304400pt;}
.y8_c00100{bottom:781.304400pt;}
.y7_c00100{bottom:803.304400pt;}
.y6_c00100{bottom:825.304400pt;}
.y5_c00100{bottom:847.304400pt;}
.y4_c00100{bottom:869.304400pt;}
.y3_c00100{bottom:891.304400pt;}
.y2_c00100{bottom:926.637733pt;}
.y1_c00100{bottom:972.089733pt;}
.h2_c00100{height:34.901333pt;}
.h3_c00100{height:35.541333pt;}
.h6_c00100{height:43.200000pt;}
.h5_c00100{height:43.626667pt;}
.h4_c00100{height:52.352000pt;}
.h1_c00100{height:1009.333333pt;}
.h0_c00100{height:1009.338800pt;}
.w0_c00100{width:794.622400pt;}
.w1_c00100{width:794.666667pt;}
.x0_c00100{left:0.000000pt;}
.x4_c00100{left:114.334933pt;}
.x2_c00100{left:167.166133pt;}
.x3_c00100{left:169.345200pt;}
.x5_c00100{left:435.594800pt;}
.x1_c00100{left:716.250533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_115bda2da408a9bf4d886034.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_0a1d527b71c899e70ba5e727.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_4821386b5a980fa8921d98bf.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:0.848145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_cc0e023c486daddd8d207657.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.v1_c00101{vertical-align:23.952000px;}
.ls9_c00101{letter-spacing:-7.560000px;}
.lsf_c00101{letter-spacing:-1.680000px;}
.ls13_c00101{letter-spacing:-0.660000px;}
.ls10_c00101{letter-spacing:-0.576000px;}
.ls7_c00101{letter-spacing:-0.504000px;}
.lsd_c00101{letter-spacing:-0.480000px;}
.ls8_c00101{letter-spacing:-0.419760px;}
.ls12_c00101{letter-spacing:-0.300000px;}
.lse_c00101{letter-spacing:-0.288000px;}
.lsb_c00101{letter-spacing:-0.251856px;}
.ls11_c00101{letter-spacing:-0.240000px;}
.ls6_c00101{letter-spacing:-0.216000px;}
.ls5_c00101{letter-spacing:0.000000px;}
.ls1_c00101{letter-spacing:0.021000px;}
.ls4_c00101{letter-spacing:0.300000px;}
.lsc_c00101{letter-spacing:0.419760px;}
.lsa_c00101{letter-spacing:0.587664px;}
.ls2_c00101{letter-spacing:0.720000px;}
.ls3_c00101{letter-spacing:5.727600px;}
.ls0_c00101{letter-spacing:5.760000px;}
.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;}
}
.ws3_c00101{word-spacing:-60.000000px;}
.ws1_c00101{word-spacing:-16.344000px;}
.wsa_c00101{word-spacing:-13.740000px;}
.ws7_c00101{word-spacing:-10.896000px;}
.ws8_c00101{word-spacing:-10.608000px;}
.ws6_c00101{word-spacing:-10.416000px;}
.ws5_c00101{word-spacing:-9.948312px;}
.ws4_c00101{word-spacing:-9.276696px;}
.ws9_c00101{word-spacing:-9.216000px;}
.ws2_c00101{word-spacing:-9.108792px;}
.ws15_c00101{word-spacing:-3.096000px;}
.ws12_c00101{word-spacing:-2.880000px;}
.ws16_c00101{word-spacing:-2.376000px;}
.ws17_c00101{word-spacing:-2.160000px;}
.ws11_c00101{word-spacing:-1.800000px;}
.ws14_c00101{word-spacing:-1.728000px;}
.ws28_c00101{word-spacing:-1.584000px;}
.ws24_c00101{word-spacing:-1.440000px;}
.ws1e_c00101{word-spacing:-0.720000px;}
.ws23_c00101{word-spacing:-0.587664px;}
.ws1d_c00101{word-spacing:-0.360000px;}
.ws2a_c00101{word-spacing:-0.240000px;}
.ws29_c00101{word-spacing:-0.096000px;}
.wsb_c00101{word-spacing:0.000000px;}
.ws10_c00101{word-spacing:0.216000px;}
.ws31_c00101{word-spacing:0.240000px;}
.ws2f_c00101{word-spacing:1.104000px;}
.ws2e_c00101{word-spacing:1.296000px;}
.ws25_c00101{word-spacing:1.368000px;}
.ws2b_c00101{word-spacing:1.824000px;}
.ws21_c00101{word-spacing:2.160000px;}
.ws2c_c00101{word-spacing:2.400000px;}
.ws20_c00101{word-spacing:3.024000px;}
.ws1f_c00101{word-spacing:3.240000px;}
.ws2d_c00101{word-spacing:3.504000px;}
.ws13_c00101{word-spacing:3.528000px;}
.ws19_c00101{word-spacing:3.816000px;}
.ws18_c00101{word-spacing:4.752000px;}
.wse_c00101{word-spacing:5.976000px;}
.wsf_c00101{word-spacing:6.048000px;}
.ws1b_c00101{word-spacing:6.768000px;}
.ws1c_c00101{word-spacing:6.840000px;}
.ws33_c00101{word-spacing:6.960000px;}
.ws1a_c00101{word-spacing:7.056000px;}
.ws22_c00101{word-spacing:7.560000px;}
.ws32_c00101{word-spacing:7.680000px;}
.wsc_c00101{word-spacing:7.848000px;}
.ws34_c00101{word-spacing:8.040000px;}
.ws27_c00101{word-spacing:8.640000px;}
.ws26_c00101{word-spacing:9.432000px;}
.wsd_c00101{word-spacing:9.792000px;}
.ws30_c00101{word-spacing:17.040000px;}
.ws0_c00101{word-spacing:1576.507200px;}
._3_c00101{margin-left:-7.056000px;}
._5_c00101{margin-left:-4.368000px;}
._9_c00101{margin-left:-3.262800px;}
._0_c00101{margin-left:-2.112000px;}
._1_c00101{margin-left:-1.104000px;}
._2_c00101{width:1.056000px;}
._8_c00101{width:2.847600px;}
._4_c00101{width:5.040000px;}
._7_c00101{width:6.129000px;}
._6_c00101{width:8.271000px;}
._a_c00101{width:18.000000px;}
.fc0_c00101{color:rgb(35,31,32);}
.fs2_c00101{font-size:41.976000px;}
.fs0_c00101{font-size:48.000000px;}
.fs3_c00101{font-size:60.000000px;}
.fs1_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y28_c00101{bottom:111.616200px;}
.y31_c00101{bottom:113.329950px;}
.y27_c00101{bottom:126.616200px;}
.y30_c00101{bottom:131.929950px;}
.y26_c00101{bottom:141.616200px;}
.y2f_c00101{bottom:150.529950px;}
.y25_c00101{bottom:156.616200px;}
.y24_c00101{bottom:171.616200px;}
.y23_c00101{bottom:186.612150px;}
.y22_c00101{bottom:210.120150px;}
.y21_c00101{bottom:225.116100px;}
.y20_c00101{bottom:248.620050px;}
.y1f_c00101{bottom:272.128050px;}
.y1e_c00101{bottom:287.128050px;}
.y1d_c00101{bottom:329.217450px;}
.y1c_c00101{bottom:353.973450px;}
.y1b_c00101{bottom:378.723450px;}
.y1a_c00101{bottom:418.467450px;}
.y19_c00101{bottom:443.217450px;}
.y18_c00101{bottom:467.967450px;}
.y17_c00101{bottom:492.717450px;}
.y16_c00101{bottom:517.467450px;}
.y2e_c00101{bottom:525.188250px;}
.y2d_c00101{bottom:543.788250px;}
.y15_c00101{bottom:557.217450px;}
.y2c_c00101{bottom:562.388250px;}
.y14_c00101{bottom:581.967450px;}
.y13_c00101{bottom:606.717450px;}
.y12_c00101{bottom:631.467450px;}
.y11_c00101{bottom:656.217450px;}
.y10_c00101{bottom:680.973450px;}
.yf_c00101{bottom:705.723450px;}
.ye_c00101{bottom:730.473450px;}
.yd_c00101{bottom:770.217450px;}
.yc_c00101{bottom:794.967450px;}
.y2b_c00101{bottom:796.217250px;}
.y2a_c00101{bottom:814.817250px;}
.yb_c00101{bottom:819.717450px;}
.y29_c00101{bottom:833.417250px;}
.ya_c00101{bottom:844.467450px;}
.y9_c00101{bottom:869.217450px;}
.y8_c00101{bottom:893.967450px;}
.y7_c00101{bottom:918.717450px;}
.y6_c00101{bottom:943.467450px;}
.y5_c00101{bottom:968.217450px;}
.y4_c00101{bottom:992.967450px;}
.y3_c00101{bottom:1017.717450px;}
.y2_c00101{bottom:1042.467450px;}
.y1_c00101{bottom:1093.600950px;}
.h2_c00101{height:39.264000px;}
.h4_c00101{height:39.280200px;}
.h6_c00101{height:48.600000px;}
.h5_c00101{height:49.080000px;}
.h3_c00101{height:58.896000px;}
.h1_c00101{height:1135.500000px;}
.h0_c00101{height:1135.506150px;}
.w0_c00101{width:893.950200px;}
.w1_c00101{width:894.000000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:77.603100px;}
.x2_c00101{left:369.571650px;}
.x3_c00101{left:386.579550px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.v1_c00101{vertical-align:21.290667pt;}
.ls9_c00101{letter-spacing:-6.720000pt;}
.lsf_c00101{letter-spacing:-1.493333pt;}
.ls13_c00101{letter-spacing:-0.586667pt;}
.ls10_c00101{letter-spacing:-0.512000pt;}
.ls7_c00101{letter-spacing:-0.448000pt;}
.lsd_c00101{letter-spacing:-0.426667pt;}
.ls8_c00101{letter-spacing:-0.373120pt;}
.ls12_c00101{letter-spacing:-0.266667pt;}
.lse_c00101{letter-spacing:-0.256000pt;}
.lsb_c00101{letter-spacing:-0.223872pt;}
.ls11_c00101{letter-spacing:-0.213333pt;}
.ls6_c00101{letter-spacing:-0.192000pt;}
.ls5_c00101{letter-spacing:0.000000pt;}
.ls1_c00101{letter-spacing:0.018667pt;}
.ls4_c00101{letter-spacing:0.266667pt;}
.lsc_c00101{letter-spacing:0.373120pt;}
.lsa_c00101{letter-spacing:0.522368pt;}
.ls2_c00101{letter-spacing:0.640000pt;}
.ls3_c00101{letter-spacing:5.091200pt;}
.ls0_c00101{letter-spacing:5.120000pt;}
.ws3_c00101{word-spacing:-53.333333pt;}
.ws1_c00101{word-spacing:-14.528000pt;}
.wsa_c00101{word-spacing:-12.213333pt;}
.ws7_c00101{word-spacing:-9.685333pt;}
.ws8_c00101{word-spacing:-9.429333pt;}
.ws6_c00101{word-spacing:-9.258667pt;}
.ws5_c00101{word-spacing:-8.842944pt;}
.ws4_c00101{word-spacing:-8.245952pt;}
.ws9_c00101{word-spacing:-8.192000pt;}
.ws2_c00101{word-spacing:-8.096704pt;}
.ws15_c00101{word-spacing:-2.752000pt;}
.ws12_c00101{word-spacing:-2.560000pt;}
.ws16_c00101{word-spacing:-2.112000pt;}
.ws17_c00101{word-spacing:-1.920000pt;}
.ws11_c00101{word-spacing:-1.600000pt;}
.ws14_c00101{word-spacing:-1.536000pt;}
.ws28_c00101{word-spacing:-1.408000pt;}
.ws24_c00101{word-spacing:-1.280000pt;}
.ws1e_c00101{word-spacing:-0.640000pt;}
.ws23_c00101{word-spacing:-0.522368pt;}
.ws1d_c00101{word-spacing:-0.320000pt;}
.ws2a_c00101{word-spacing:-0.213333pt;}
.ws29_c00101{word-spacing:-0.085333pt;}
.wsb_c00101{word-spacing:0.000000pt;}
.ws10_c00101{word-spacing:0.192000pt;}
.ws31_c00101{word-spacing:0.213333pt;}
.ws2f_c00101{word-spacing:0.981333pt;}
.ws2e_c00101{word-spacing:1.152000pt;}
.ws25_c00101{word-spacing:1.216000pt;}
.ws2b_c00101{word-spacing:1.621333pt;}
.ws21_c00101{word-spacing:1.920000pt;}
.ws2c_c00101{word-spacing:2.133333pt;}
.ws20_c00101{word-spacing:2.688000pt;}
.ws1f_c00101{word-spacing:2.880000pt;}
.ws2d_c00101{word-spacing:3.114667pt;}
.ws13_c00101{word-spacing:3.136000pt;}
.ws19_c00101{word-spacing:3.392000pt;}
.ws18_c00101{word-spacing:4.224000pt;}
.wse_c00101{word-spacing:5.312000pt;}
.wsf_c00101{word-spacing:5.376000pt;}
.ws1b_c00101{word-spacing:6.016000pt;}
.ws1c_c00101{word-spacing:6.080000pt;}
.ws33_c00101{word-spacing:6.186667pt;}
.ws1a_c00101{word-spacing:6.272000pt;}
.ws22_c00101{word-spacing:6.720000pt;}
.ws32_c00101{word-spacing:6.826667pt;}
.wsc_c00101{word-spacing:6.976000pt;}
.ws34_c00101{word-spacing:7.146667pt;}
.ws27_c00101{word-spacing:7.680000pt;}
.ws26_c00101{word-spacing:8.384000pt;}
.wsd_c00101{word-spacing:8.704000pt;}
.ws30_c00101{word-spacing:15.146667pt;}
.ws0_c00101{word-spacing:1401.339733pt;}
._3_c00101{margin-left:-6.272000pt;}
._5_c00101{margin-left:-3.882667pt;}
._9_c00101{margin-left:-2.900267pt;}
._0_c00101{margin-left:-1.877333pt;}
._1_c00101{margin-left:-0.981333pt;}
._2_c00101{width:0.938667pt;}
._8_c00101{width:2.531200pt;}
._4_c00101{width:4.480000pt;}
._7_c00101{width:5.448000pt;}
._6_c00101{width:7.352000pt;}
._a_c00101{width:16.000000pt;}
.fs2_c00101{font-size:37.312000pt;}
.fs0_c00101{font-size:42.666667pt;}
.fs3_c00101{font-size:53.333333pt;}
.fs1_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y28_c00101{bottom:99.214400pt;}
.y31_c00101{bottom:100.737733pt;}
.y27_c00101{bottom:112.547733pt;}
.y30_c00101{bottom:117.271067pt;}
.y26_c00101{bottom:125.881067pt;}
.y2f_c00101{bottom:133.804400pt;}
.y25_c00101{bottom:139.214400pt;}
.y24_c00101{bottom:152.547733pt;}
.y23_c00101{bottom:165.877467pt;}
.y22_c00101{bottom:186.773467pt;}
.y21_c00101{bottom:200.103200pt;}
.y20_c00101{bottom:220.995600pt;}
.y1f_c00101{bottom:241.891600pt;}
.y1e_c00101{bottom:255.224933pt;}
.y1d_c00101{bottom:292.637733pt;}
.y1c_c00101{bottom:314.643067pt;}
.y1b_c00101{bottom:336.643067pt;}
.y1a_c00101{bottom:371.971067pt;}
.y19_c00101{bottom:393.971067pt;}
.y18_c00101{bottom:415.971067pt;}
.y17_c00101{bottom:437.971067pt;}
.y16_c00101{bottom:459.971067pt;}
.y2e_c00101{bottom:466.834000pt;}
.y2d_c00101{bottom:483.367333pt;}
.y15_c00101{bottom:495.304400pt;}
.y2c_c00101{bottom:499.900667pt;}
.y14_c00101{bottom:517.304400pt;}
.y13_c00101{bottom:539.304400pt;}
.y12_c00101{bottom:561.304400pt;}
.y11_c00101{bottom:583.304400pt;}
.y10_c00101{bottom:605.309733pt;}
.yf_c00101{bottom:627.309733pt;}
.ye_c00101{bottom:649.309733pt;}
.yd_c00101{bottom:684.637733pt;}
.yc_c00101{bottom:706.637733pt;}
.y2b_c00101{bottom:707.748667pt;}
.y2a_c00101{bottom:724.282000pt;}
.yb_c00101{bottom:728.637733pt;}
.y29_c00101{bottom:740.815333pt;}
.ya_c00101{bottom:750.637733pt;}
.y9_c00101{bottom:772.637733pt;}
.y8_c00101{bottom:794.637733pt;}
.y7_c00101{bottom:816.637733pt;}
.y6_c00101{bottom:838.637733pt;}
.y5_c00101{bottom:860.637733pt;}
.y4_c00101{bottom:882.637733pt;}
.y3_c00101{bottom:904.637733pt;}
.y2_c00101{bottom:926.637733pt;}
.y1_c00101{bottom:972.089733pt;}
.h2_c00101{height:34.901333pt;}
.h4_c00101{height:34.915733pt;}
.h6_c00101{height:43.200000pt;}
.h5_c00101{height:43.626667pt;}
.h3_c00101{height:52.352000pt;}
.h1_c00101{height:1009.333333pt;}
.h0_c00101{height:1009.338800pt;}
.w0_c00101{width:794.622400pt;}
.w1_c00101{width:794.666667pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:68.980533pt;}
.x2_c00101{left:328.508133pt;}
.x3_c00101{left:343.626267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_298dfa684903792d1dccef5f.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_075a92a92a8f3ef54c10c490.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.067000;font-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_c00102{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:23.976000px;}
.lsb_c00102{letter-spacing:-0.288000px;}
.ls8_c00102{letter-spacing:-0.240000px;}
.ls9_c00102{letter-spacing:0.000000px;}
.ls6_c00102{letter-spacing:0.216000px;}
.lsc_c00102{letter-spacing:0.240000px;}
.ls5_c00102{letter-spacing:0.360000px;}
.lsa_c00102{letter-spacing:0.419760px;}
.ls0_c00102{letter-spacing:0.480000px;}
.ls1_c00102{letter-spacing:0.504000px;}
.ls2_c00102{letter-spacing:0.720000px;}
.ls3_c00102{letter-spacing:0.936000px;}
.ls4_c00102{letter-spacing:1.080000px;}
.ls7_c00102{letter-spacing:7.503600px;}
.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:-16.704000px;}
.ws2_c00102{word-spacing:-16.488000px;}
.ws3_c00102{word-spacing:-16.344000px;}
.ws7_c00102{word-spacing:-11.136000px;}
.ws5_c00102{word-spacing:-10.896000px;}
.ws0_c00102{word-spacing:-10.656000px;}
.ws6_c00102{word-spacing:-10.608000px;}
.ws4_c00102{word-spacing:-9.528552px;}
.wsa_c00102{word-spacing:-0.720000px;}
.ws13_c00102{word-spacing:-0.419760px;}
.ws8_c00102{word-spacing:0.000000px;}
.ws17_c00102{word-spacing:0.528000px;}
.ws10_c00102{word-spacing:1.296000px;}
.ws16_c00102{word-spacing:1.488000px;}
.ws12_c00102{word-spacing:1.584000px;}
.ws11_c00102{word-spacing:1.872000px;}
.ws18_c00102{word-spacing:1.980000px;}
.wsf_c00102{word-spacing:2.448000px;}
.ws14_c00102{word-spacing:3.240000px;}
.ws15_c00102{word-spacing:4.392000px;}
.ws9_c00102{word-spacing:5.688000px;}
.wsc_c00102{word-spacing:6.120000px;}
.wsb_c00102{word-spacing:6.408000px;}
.wsd_c00102{word-spacing:7.776000px;}
.wse_c00102{word-spacing:7.848000px;}
._0_c00102{margin-left:-2754.795000px;}
._4_c00102{margin-left:-6.192000px;}
._5_c00102{margin-left:-4.848000px;}
._7_c00102{margin-left:-3.283800px;}
._1_c00102{margin-left:-1.344000px;}
._2_c00102{width:1.104000px;}
._6_c00102{width:2.664000px;}
._3_c00102{width:6.000000px;}
.fc0_c00102{color:rgb(35,31,32);}
.fs2_c00102{font-size:41.976000px;}
.fs0_c00102{font-size:48.000000px;}
.fs3_c00102{font-size:60.000000px;}
.fs1_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y10_c00102{bottom:111.616200px;}
.yf_c00102{bottom:126.612150px;}
.ye_c00102{bottom:150.120150px;}
.yd_c00102{bottom:165.120150px;}
.yc_c00102{bottom:225.241650px;}
.yb_c00102{bottom:249.991650px;}
.ya_c00102{bottom:274.741650px;}
.y9_c00102{bottom:314.491650px;}
.y8_c00102{bottom:339.241650px;}
.y7_c00102{bottom:363.991650px;}
.y6_c00102{bottom:388.741650px;}
.y5_c00102{bottom:413.491650px;}
.y4_c00102{bottom:438.241650px;}
.y3_c00102{bottom:462.991650px;}
.y2_c00102{bottom:487.741650px;}
.y13_c00102{bottom:536.556900px;}
.y12_c00102{bottom:555.156900px;}
.y11_c00102{bottom:573.756900px;}
.y1_c00102{bottom:1093.600950px;}
.h2_c00102{height:39.264000px;}
.h5_c00102{height:39.280200px;}
.h3_c00102{height:39.984000px;}
.h7_c00102{height:48.600000px;}
.h6_c00102{height:49.080000px;}
.h4_c00102{height:58.896000px;}
.h1_c00102{height:1135.500000px;}
.h0_c00102{height:1135.506150px;}
.w0_c00102{width:893.950200px;}
.w1_c00102{width:894.000000px;}
.x0_c00102{left:0.000000px;}
.x4_c00102{left:128.626800px;}
.x5_c00102{left:145.635600px;}
.x2_c00102{left:188.061900px;}
.x3_c00102{left:190.513350px;}
.x1_c00102{left:802.985550px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:21.312000pt;}
.lsb_c00102{letter-spacing:-0.256000pt;}
.ls8_c00102{letter-spacing:-0.213333pt;}
.ls9_c00102{letter-spacing:0.000000pt;}
.ls6_c00102{letter-spacing:0.192000pt;}
.lsc_c00102{letter-spacing:0.213333pt;}
.ls5_c00102{letter-spacing:0.320000pt;}
.lsa_c00102{letter-spacing:0.373120pt;}
.ls0_c00102{letter-spacing:0.426667pt;}
.ls1_c00102{letter-spacing:0.448000pt;}
.ls2_c00102{letter-spacing:0.640000pt;}
.ls3_c00102{letter-spacing:0.832000pt;}
.ls4_c00102{letter-spacing:0.960000pt;}
.ls7_c00102{letter-spacing:6.669867pt;}
.ws1_c00102{word-spacing:-14.848000pt;}
.ws2_c00102{word-spacing:-14.656000pt;}
.ws3_c00102{word-spacing:-14.528000pt;}
.ws7_c00102{word-spacing:-9.898667pt;}
.ws5_c00102{word-spacing:-9.685333pt;}
.ws0_c00102{word-spacing:-9.472000pt;}
.ws6_c00102{word-spacing:-9.429333pt;}
.ws4_c00102{word-spacing:-8.469824pt;}
.wsa_c00102{word-spacing:-0.640000pt;}
.ws13_c00102{word-spacing:-0.373120pt;}
.ws8_c00102{word-spacing:0.000000pt;}
.ws17_c00102{word-spacing:0.469333pt;}
.ws10_c00102{word-spacing:1.152000pt;}
.ws16_c00102{word-spacing:1.322667pt;}
.ws12_c00102{word-spacing:1.408000pt;}
.ws11_c00102{word-spacing:1.664000pt;}
.ws18_c00102{word-spacing:1.760000pt;}
.wsf_c00102{word-spacing:2.176000pt;}
.ws14_c00102{word-spacing:2.880000pt;}
.ws15_c00102{word-spacing:3.904000pt;}
.ws9_c00102{word-spacing:5.056000pt;}
.wsc_c00102{word-spacing:5.440000pt;}
.wsb_c00102{word-spacing:5.696000pt;}
.wsd_c00102{word-spacing:6.912000pt;}
.wse_c00102{word-spacing:6.976000pt;}
._0_c00102{margin-left:-2448.706667pt;}
._4_c00102{margin-left:-5.504000pt;}
._5_c00102{margin-left:-4.309333pt;}
._7_c00102{margin-left:-2.918933pt;}
._1_c00102{margin-left:-1.194667pt;}
._2_c00102{width:0.981333pt;}
._6_c00102{width:2.368000pt;}
._3_c00102{width:5.333333pt;}
.fs2_c00102{font-size:37.312000pt;}
.fs0_c00102{font-size:42.666667pt;}
.fs3_c00102{font-size:53.333333pt;}
.fs1_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y10_c00102{bottom:99.214400pt;}
.yf_c00102{bottom:112.544133pt;}
.ye_c00102{bottom:133.440133pt;}
.yd_c00102{bottom:146.773467pt;}
.yc_c00102{bottom:200.214800pt;}
.yb_c00102{bottom:222.214800pt;}
.ya_c00102{bottom:244.214800pt;}
.y9_c00102{bottom:279.548133pt;}
.y8_c00102{bottom:301.548133pt;}
.y7_c00102{bottom:323.548133pt;}
.y6_c00102{bottom:345.548133pt;}
.y5_c00102{bottom:367.548133pt;}
.y4_c00102{bottom:389.548133pt;}
.y3_c00102{bottom:411.548133pt;}
.y2_c00102{bottom:433.548133pt;}
.y13_c00102{bottom:476.939467pt;}
.y12_c00102{bottom:493.472800pt;}
.y11_c00102{bottom:510.006133pt;}
.y1_c00102{bottom:972.089733pt;}
.h2_c00102{height:34.901333pt;}
.h5_c00102{height:34.915733pt;}
.h3_c00102{height:35.541333pt;}
.h7_c00102{height:43.200000pt;}
.h6_c00102{height:43.626667pt;}
.h4_c00102{height:52.352000pt;}
.h1_c00102{height:1009.333333pt;}
.h0_c00102{height:1009.338800pt;}
.w0_c00102{width:794.622400pt;}
.w1_c00102{width:794.666667pt;}
.x0_c00102{left:0.000000pt;}
.x4_c00102{left:114.334933pt;}
.x5_c00102{left:129.453867pt;}
.x2_c00102{left:167.166133pt;}
.x3_c00102{left:169.345200pt;}
.x1_c00102{left:713.764933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a4cf1322175ce7f1c85c989.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.067000;font-style:normal;font-weight:normal;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_baf38bd2a784835dfc0c5065.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls8_c00103{letter-spacing:-2.088000px;}
.ls2_c00103{letter-spacing:-1.008000px;}
.ls4_c00103{letter-spacing:-0.936000px;}
.ls6_c00103{letter-spacing:-0.864000px;}
.ls5_c00103{letter-spacing:-0.720000px;}
.ls7_c00103{letter-spacing:-0.648000px;}
.ls9_c00103{letter-spacing:-0.360000px;}
.lsa_c00103{letter-spacing:-0.216000px;}
.ls3_c00103{letter-spacing:0.000000px;}
.ls1_c00103{letter-spacing:0.216000px;}
.ls0_c00103{letter-spacing:0.360000px;}
.lsb_c00103{letter-spacing:0.810000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-16.344000px;}
.ws5_c00103{word-spacing:-16.128000px;}
.ws6_c00103{word-spacing:-15.984000px;}
.ws2_c00103{word-spacing:-15.768000px;}
.ws3_c00103{word-spacing:-15.480000px;}
.ws4_c00103{word-spacing:-14.256000px;}
.ws1a_c00103{word-spacing:-3.240000px;}
.ws1b_c00103{word-spacing:-2.520000px;}
.ws11_c00103{word-spacing:-2.232000px;}
.ws9_c00103{word-spacing:-1.872000px;}
.wsc_c00103{word-spacing:-0.864000px;}
.ws1c_c00103{word-spacing:-0.810000px;}
.ws13_c00103{word-spacing:-0.504000px;}
.wsa_c00103{word-spacing:-0.432000px;}
.ws15_c00103{word-spacing:-0.288000px;}
.wsf_c00103{word-spacing:-0.144000px;}
.wsb_c00103{word-spacing:-0.072000px;}
.ws8_c00103{word-spacing:0.000000px;}
.wsd_c00103{word-spacing:0.072000px;}
.ws12_c00103{word-spacing:0.648000px;}
.ws17_c00103{word-spacing:0.936000px;}
.ws10_c00103{word-spacing:1.656000px;}
.ws19_c00103{word-spacing:2.664000px;}
.wse_c00103{word-spacing:2.880000px;}
.ws16_c00103{word-spacing:3.456000px;}
.ws18_c00103{word-spacing:5.040000px;}
.ws14_c00103{word-spacing:5.472000px;}
.ws7_c00103{word-spacing:1423.929600px;}
.ws0_c00103{word-spacing:1583.563200px;}
._6_c00103{margin-left:-7.392000px;}
._3_c00103{margin-left:-3.648000px;}
._1_c00103{margin-left:-2.112000px;}
._2_c00103{margin-left:-1.104000px;}
._0_c00103{width:1.008000px;}
._4_c00103{width:2.016000px;}
._5_c00103{width:4.224000px;}
.fc0_c00103{color:rgb(35,31,32);}
.fs0_c00103{font-size:48.000000px;}
.fs2_c00103{font-size:54.000000px;}
.fs1_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y16_c00103{bottom:113.542500px;}
.y15_c00103{bottom:138.292500px;}
.y14_c00103{bottom:163.042500px;}
.y13_c00103{bottom:187.792500px;}
.y12_c00103{bottom:212.542500px;}
.y11_c00103{bottom:252.286500px;}
.y10_c00103{bottom:277.036500px;}
.yf_c00103{bottom:301.786500px;}
.ye_c00103{bottom:326.536500px;}
.yd_c00103{bottom:351.286500px;}
.yc_c00103{bottom:376.036500px;}
.yb_c00103{bottom:400.786500px;}
.ya_c00103{bottom:425.536500px;}
.y9_c00103{bottom:450.286500px;}
.y8_c00103{bottom:475.036500px;}
.y7_c00103{bottom:499.786500px;}
.y6_c00103{bottom:524.536500px;}
.y5_c00103{bottom:549.286500px;}
.y4_c00103{bottom:589.030500px;}
.y3_c00103{bottom:613.780500px;}
.y2_c00103{bottom:638.530500px;}
.y17_c00103{bottom:707.689200px;}
.y1_c00103{bottom:1093.600950px;}
.h2_c00103{height:39.264000px;}
.h4_c00103{height:44.172000px;}
.h3_c00103{height:58.896000px;}
.h1_c00103{height:1135.500000px;}
.h0_c00103{height:1135.506150px;}
.w0_c00103{width:893.950200px;}
.w1_c00103{width:894.000000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:77.603100px;}
.x2_c00103{left:88.549500px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls8_c00103{letter-spacing:-1.856000pt;}
.ls2_c00103{letter-spacing:-0.896000pt;}
.ls4_c00103{letter-spacing:-0.832000pt;}
.ls6_c00103{letter-spacing:-0.768000pt;}
.ls5_c00103{letter-spacing:-0.640000pt;}
.ls7_c00103{letter-spacing:-0.576000pt;}
.ls9_c00103{letter-spacing:-0.320000pt;}
.lsa_c00103{letter-spacing:-0.192000pt;}
.ls3_c00103{letter-spacing:0.000000pt;}
.ls1_c00103{letter-spacing:0.192000pt;}
.ls0_c00103{letter-spacing:0.320000pt;}
.lsb_c00103{letter-spacing:0.720000pt;}
.ws1_c00103{word-spacing:-14.528000pt;}
.ws5_c00103{word-spacing:-14.336000pt;}
.ws6_c00103{word-spacing:-14.208000pt;}
.ws2_c00103{word-spacing:-14.016000pt;}
.ws3_c00103{word-spacing:-13.760000pt;}
.ws4_c00103{word-spacing:-12.672000pt;}
.ws1a_c00103{word-spacing:-2.880000pt;}
.ws1b_c00103{word-spacing:-2.240000pt;}
.ws11_c00103{word-spacing:-1.984000pt;}
.ws9_c00103{word-spacing:-1.664000pt;}
.wsc_c00103{word-spacing:-0.768000pt;}
.ws1c_c00103{word-spacing:-0.720000pt;}
.ws13_c00103{word-spacing:-0.448000pt;}
.wsa_c00103{word-spacing:-0.384000pt;}
.ws15_c00103{word-spacing:-0.256000pt;}
.wsf_c00103{word-spacing:-0.128000pt;}
.wsb_c00103{word-spacing:-0.064000pt;}
.ws8_c00103{word-spacing:0.000000pt;}
.wsd_c00103{word-spacing:0.064000pt;}
.ws12_c00103{word-spacing:0.576000pt;}
.ws17_c00103{word-spacing:0.832000pt;}
.ws10_c00103{word-spacing:1.472000pt;}
.ws19_c00103{word-spacing:2.368000pt;}
.wse_c00103{word-spacing:2.560000pt;}
.ws16_c00103{word-spacing:3.072000pt;}
.ws18_c00103{word-spacing:4.480000pt;}
.ws14_c00103{word-spacing:4.864000pt;}
.ws7_c00103{word-spacing:1265.715200pt;}
.ws0_c00103{word-spacing:1407.611733pt;}
._6_c00103{margin-left:-6.570667pt;}
._3_c00103{margin-left:-3.242667pt;}
._1_c00103{margin-left:-1.877333pt;}
._2_c00103{margin-left:-0.981333pt;}
._0_c00103{width:0.896000pt;}
._4_c00103{width:1.792000pt;}
._5_c00103{width:3.754667pt;}
.fs0_c00103{font-size:42.666667pt;}
.fs2_c00103{font-size:48.000000pt;}
.fs1_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y16_c00103{bottom:100.926667pt;}
.y15_c00103{bottom:122.926667pt;}
.y14_c00103{bottom:144.926667pt;}
.y13_c00103{bottom:166.926667pt;}
.y12_c00103{bottom:188.926667pt;}
.y11_c00103{bottom:224.254667pt;}
.y10_c00103{bottom:246.254667pt;}
.yf_c00103{bottom:268.254667pt;}
.ye_c00103{bottom:290.254667pt;}
.yd_c00103{bottom:312.254667pt;}
.yc_c00103{bottom:334.254667pt;}
.yb_c00103{bottom:356.254667pt;}
.ya_c00103{bottom:378.254667pt;}
.y9_c00103{bottom:400.254667pt;}
.y8_c00103{bottom:422.254667pt;}
.y7_c00103{bottom:444.254667pt;}
.y6_c00103{bottom:466.254667pt;}
.y5_c00103{bottom:488.254667pt;}
.y4_c00103{bottom:523.582667pt;}
.y3_c00103{bottom:545.582667pt;}
.y2_c00103{bottom:567.582667pt;}
.y17_c00103{bottom:629.057067pt;}
.y1_c00103{bottom:972.089733pt;}
.h2_c00103{height:34.901333pt;}
.h4_c00103{height:39.264000pt;}
.h3_c00103{height:52.352000pt;}
.h1_c00103{height:1009.333333pt;}
.h0_c00103{height:1009.338800pt;}
.w0_c00103{width:794.622400pt;}
.w1_c00103{width:794.666667pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:68.980533pt;}
.x2_c00103{left:78.710667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_797ed8e1b1c560f149abd972.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_30d12553fee2acdc56462f13.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.067000;font-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_c00104{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.v1_c00104{vertical-align:20.895000px;}
.v2_c00104{vertical-align:23.976000px;}
.lse_c00104{letter-spacing:-4.800000px;}
.ls7_c00104{letter-spacing:-1.008000px;}
.lsc_c00104{letter-spacing:-0.819000px;}
.ls5_c00104{letter-spacing:-0.816000px;}
.lsb_c00104{letter-spacing:-0.720000px;}
.ls8_c00104{letter-spacing:-0.648000px;}
.lsf_c00104{letter-spacing:-0.420000px;}
.lsd_c00104{letter-spacing:-0.192000px;}
.ls6_c00104{letter-spacing:0.000000px;}
.ls4_c00104{letter-spacing:0.189000px;}
.ls3_c00104{letter-spacing:0.216000px;}
.ls9_c00104{letter-spacing:0.220374px;}
.ls0_c00104{letter-spacing:0.480000px;}
.lsa_c00104{letter-spacing:0.629640px;}
.ls1_c00104{letter-spacing:0.630000px;}
.ls2_c00104{letter-spacing:0.819000px;}
.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:-16.344000px;}
.ws2_c00104{word-spacing:-15.696000px;}
.ws3_c00104{word-spacing:-14.931000px;}
.ws4_c00104{word-spacing:-14.301000px;}
.ws6_c00104{word-spacing:-13.482000px;}
.wsa_c00104{word-spacing:-13.320000px;}
.ws9_c00104{word-spacing:-10.896000px;}
.ws7_c00104{word-spacing:-10.704000px;}
.ws5_c00104{word-spacing:-10.158192px;}
.ws0_c00104{word-spacing:-10.080000px;}
.ws8_c00104{word-spacing:-6.096000px;}
.wsf_c00104{word-spacing:-2.646000px;}
.ws1a_c00104{word-spacing:-1.449000px;}
.ws17_c00104{word-spacing:-1.152000px;}
.ws10_c00104{word-spacing:-0.756000px;}
.ws13_c00104{word-spacing:-0.720000px;}
.ws12_c00104{word-spacing:-0.220374px;}
.wsb_c00104{word-spacing:0.000000px;}
.wse_c00104{word-spacing:1.386000px;}
.ws14_c00104{word-spacing:1.512000px;}
.ws11_c00104{word-spacing:1.575000px;}
.wsc_c00104{word-spacing:2.376000px;}
.wsd_c00104{word-spacing:3.456000px;}
.ws19_c00104{word-spacing:4.032000px;}
.ws16_c00104{word-spacing:4.104000px;}
.ws18_c00104{word-spacing:4.599000px;}
.ws15_c00104{word-spacing:7.632000px;}
._0_c00104{margin-left:-2753.644200px;}
._3_c00104{margin-left:-6.174000px;}
._4_c00104{margin-left:-4.728000px;}
._9_c00104{margin-left:-2.592000px;}
._1_c00104{margin-left:-1.344000px;}
._2_c00104{width:1.104000px;}
._5_c00104{width:2.268000px;}
._6_c00104{width:3.471000px;}
._7_c00104{width:5.520000px;}
._8_c00104{width:9.216000px;}
.fc0_c00104{color:rgb(35,31,32);}
.fs3_c00104{font-size:36.729000px;}
.fs4_c00104{font-size:41.976000px;}
.fs0_c00104{font-size:48.000000px;}
.fs6_c00104{font-size:54.000000px;}
.fs5_c00104{font-size:60.000000px;}
.fs2_c00104{font-size:63.000000px;}
.fs1_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y16_c00104{bottom:111.612150px;}
.y15_c00104{bottom:135.116100px;}
.y14_c00104{bottom:158.624100px;}
.y13_c00104{bottom:204.538350px;}
.y12_c00104{bottom:225.533100px;}
.y11_c00104{bottom:246.527850px;}
.y10_c00104{bottom:267.522600px;}
.yf_c00104{bottom:297.032550px;}
.ye_c00104{bottom:321.782550px;}
.yd_c00104{bottom:361.526550px;}
.yc_c00104{bottom:386.276550px;}
.yb_c00104{bottom:411.026550px;}
.ya_c00104{bottom:435.776550px;}
.y9_c00104{bottom:460.526550px;}
.y8_c00104{bottom:500.297550px;}
.y7_c00104{bottom:521.292300px;}
.y6_c00104{bottom:542.287050px;}
.y5_c00104{bottom:563.281800px;}
.y4_c00104{bottom:584.276550px;}
.y3_c00104{bottom:613.780500px;}
.y2_c00104{bottom:638.530500px;}
.y21_c00104{bottom:702.393300px;}
.y22_c00104{bottom:707.689200px;}
.y20_c00104{bottom:720.993300px;}
.y1f_c00104{bottom:739.593300px;}
.y1e_c00104{bottom:776.793300px;}
.y1d_c00104{bottom:795.393300px;}
.y1c_c00104{bottom:813.993300px;}
.y1b_c00104{bottom:832.593300px;}
.y1a_c00104{bottom:869.793300px;}
.y19_c00104{bottom:888.393300px;}
.y18_c00104{bottom:906.993300px;}
.y17_c00104{bottom:925.593300px;}
.y1_c00104{bottom:1093.600950px;}
.h2_c00104{height:39.264000px;}
.h6_c00104{height:39.280200px;}
.h7_c00104{height:39.280800px;}
.h3_c00104{height:39.984000px;}
.ha_c00104{height:44.172000px;}
.h9_c00104{height:48.600000px;}
.h8_c00104{height:49.080000px;}
.h5_c00104{height:51.534000px;}
.h4_c00104{height:58.896000px;}
.h1_c00104{height:1135.500000px;}
.h0_c00104{height:1135.506150px;}
.w0_c00104{width:893.950200px;}
.w1_c00104{width:894.000000px;}
.x0_c00104{left:0.000000px;}
.x4_c00104{left:128.688750px;}
.x7_c00104{left:139.830900px;}
.x5_c00104{left:149.948550px;}
.x2_c00104{left:188.061900px;}
.x3_c00104{left:190.513350px;}
.x6_c00104{left:529.162200px;}
.x1_c00104{left:802.337850px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.v1_c00104{vertical-align:18.573333pt;}
.v2_c00104{vertical-align:21.312000pt;}
.lse_c00104{letter-spacing:-4.266667pt;}
.ls7_c00104{letter-spacing:-0.896000pt;}
.lsc_c00104{letter-spacing:-0.728000pt;}
.ls5_c00104{letter-spacing:-0.725333pt;}
.lsb_c00104{letter-spacing:-0.640000pt;}
.ls8_c00104{letter-spacing:-0.576000pt;}
.lsf_c00104{letter-spacing:-0.373333pt;}
.lsd_c00104{letter-spacing:-0.170667pt;}
.ls6_c00104{letter-spacing:0.000000pt;}
.ls4_c00104{letter-spacing:0.168000pt;}
.ls3_c00104{letter-spacing:0.192000pt;}
.ls9_c00104{letter-spacing:0.195888pt;}
.ls0_c00104{letter-spacing:0.426667pt;}
.lsa_c00104{letter-spacing:0.559680pt;}
.ls1_c00104{letter-spacing:0.560000pt;}
.ls2_c00104{letter-spacing:0.728000pt;}
.ws1_c00104{word-spacing:-14.528000pt;}
.ws2_c00104{word-spacing:-13.952000pt;}
.ws3_c00104{word-spacing:-13.272000pt;}
.ws4_c00104{word-spacing:-12.712000pt;}
.ws6_c00104{word-spacing:-11.984000pt;}
.wsa_c00104{word-spacing:-11.840000pt;}
.ws9_c00104{word-spacing:-9.685333pt;}
.ws7_c00104{word-spacing:-9.514667pt;}
.ws5_c00104{word-spacing:-9.029504pt;}
.ws0_c00104{word-spacing:-8.960000pt;}
.ws8_c00104{word-spacing:-5.418667pt;}
.wsf_c00104{word-spacing:-2.352000pt;}
.ws1a_c00104{word-spacing:-1.288000pt;}
.ws17_c00104{word-spacing:-1.024000pt;}
.ws10_c00104{word-spacing:-0.672000pt;}
.ws13_c00104{word-spacing:-0.640000pt;}
.ws12_c00104{word-spacing:-0.195888pt;}
.wsb_c00104{word-spacing:0.000000pt;}
.wse_c00104{word-spacing:1.232000pt;}
.ws14_c00104{word-spacing:1.344000pt;}
.ws11_c00104{word-spacing:1.400000pt;}
.wsc_c00104{word-spacing:2.112000pt;}
.wsd_c00104{word-spacing:3.072000pt;}
.ws19_c00104{word-spacing:3.584000pt;}
.ws16_c00104{word-spacing:3.648000pt;}
.ws18_c00104{word-spacing:4.088000pt;}
.ws15_c00104{word-spacing:6.784000pt;}
._0_c00104{margin-left:-2447.683733pt;}
._3_c00104{margin-left:-5.488000pt;}
._4_c00104{margin-left:-4.202667pt;}
._9_c00104{margin-left:-2.304000pt;}
._1_c00104{margin-left:-1.194667pt;}
._2_c00104{width:0.981333pt;}
._5_c00104{width:2.016000pt;}
._6_c00104{width:3.085333pt;}
._7_c00104{width:4.906667pt;}
._8_c00104{width:8.192000pt;}
.fs3_c00104{font-size:32.648000pt;}
.fs4_c00104{font-size:37.312000pt;}
.fs0_c00104{font-size:42.666667pt;}
.fs6_c00104{font-size:48.000000pt;}
.fs5_c00104{font-size:53.333333pt;}
.fs2_c00104{font-size:56.000000pt;}
.fs1_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y16_c00104{bottom:99.210800pt;}
.y15_c00104{bottom:120.103200pt;}
.y14_c00104{bottom:140.999200pt;}
.y13_c00104{bottom:181.811867pt;}
.y12_c00104{bottom:200.473867pt;}
.y11_c00104{bottom:219.135867pt;}
.y10_c00104{bottom:237.797867pt;}
.yf_c00104{bottom:264.028933pt;}
.ye_c00104{bottom:286.028933pt;}
.yd_c00104{bottom:321.356933pt;}
.yc_c00104{bottom:343.356933pt;}
.yb_c00104{bottom:365.356933pt;}
.ya_c00104{bottom:387.356933pt;}
.y9_c00104{bottom:409.356933pt;}
.y8_c00104{bottom:444.708933pt;}
.y7_c00104{bottom:463.370933pt;}
.y6_c00104{bottom:482.032933pt;}
.y5_c00104{bottom:500.694933pt;}
.y4_c00104{bottom:519.356933pt;}
.y3_c00104{bottom:545.582667pt;}
.y2_c00104{bottom:567.582667pt;}
.y21_c00104{bottom:624.349600pt;}
.y22_c00104{bottom:629.057067pt;}
.y20_c00104{bottom:640.882933pt;}
.y1f_c00104{bottom:657.416267pt;}
.y1e_c00104{bottom:690.482933pt;}
.y1d_c00104{bottom:707.016267pt;}
.y1c_c00104{bottom:723.549600pt;}
.y1b_c00104{bottom:740.082933pt;}
.y1a_c00104{bottom:773.149600pt;}
.y19_c00104{bottom:789.682933pt;}
.y18_c00104{bottom:806.216267pt;}
.y17_c00104{bottom:822.749600pt;}
.y1_c00104{bottom:972.089733pt;}
.h2_c00104{height:34.901333pt;}
.h6_c00104{height:34.915733pt;}
.h7_c00104{height:34.916267pt;}
.h3_c00104{height:35.541333pt;}
.ha_c00104{height:39.264000pt;}
.h9_c00104{height:43.200000pt;}
.h8_c00104{height:43.626667pt;}
.h5_c00104{height:45.808000pt;}
.h4_c00104{height:52.352000pt;}
.h1_c00104{height:1009.333333pt;}
.h0_c00104{height:1009.338800pt;}
.w0_c00104{width:794.622400pt;}
.w1_c00104{width:794.666667pt;}
.x0_c00104{left:0.000000pt;}
.x4_c00104{left:114.390000pt;}
.x7_c00104{left:124.294133pt;}
.x5_c00104{left:133.287600pt;}
.x2_c00104{left:167.166133pt;}
.x3_c00104{left:169.345200pt;}
.x6_c00104{left:470.366400pt;}
.x1_c00104{left:713.189200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fccc6c056b6da8b31d905b3.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.067000;font-style:normal;font-weight:normal;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_8bc4212fd921cabc19811f3f.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:23.976000px;}
.lsc_c00105{letter-spacing:-1.296000px;}
.lsb_c00105{letter-spacing:-1.224000px;}
.lse_c00105{letter-spacing:-1.080000px;}
.ls7_c00105{letter-spacing:-0.864000px;}
.ls11_c00105{letter-spacing:-0.780000px;}
.ls4_c00105{letter-spacing:-0.720000px;}
.ls9_c00105{letter-spacing:-0.648000px;}
.lsa_c00105{letter-spacing:-0.576000px;}
.ls8_c00105{letter-spacing:-0.377784px;}
.ls6_c00105{letter-spacing:-0.360000px;}
.ls10_c00105{letter-spacing:-0.240000px;}
.lsd_c00105{letter-spacing:-0.209880px;}
.lsf_c00105{letter-spacing:-0.192000px;}
.ls5_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:0.360000px;}
.ls1_c00105{letter-spacing:0.576000px;}
.ls2_c00105{letter-spacing:0.720000px;}
.ls3_c00105{letter-spacing:3.711600px;}
.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;}
}
.ws3_c00105{word-spacing:-16.344000px;}
.ws5_c00105{word-spacing:-15.984000px;}
.ws1_c00105{word-spacing:-15.624000px;}
.ws7_c00105{word-spacing:-15.480000px;}
.ws4_c00105{word-spacing:-15.120000px;}
.ws6_c00105{word-spacing:-15.048000px;}
.wsa_c00105{word-spacing:-10.896000px;}
.ws9_c00105{word-spacing:-10.704000px;}
.ws8_c00105{word-spacing:-9.318672px;}
.ws2_c00105{word-spacing:-9.150768px;}
.ws1f_c00105{word-spacing:-2.592000px;}
.ws29_c00105{word-spacing:-2.232000px;}
.ws1c_c00105{word-spacing:-2.160000px;}
.ws28_c00105{word-spacing:-1.296000px;}
.ws17_c00105{word-spacing:-0.720000px;}
.wsc_c00105{word-spacing:-0.504000px;}
.wsb_c00105{word-spacing:0.000000px;}
.ws18_c00105{word-spacing:0.216000px;}
.ws2b_c00105{word-spacing:0.240000px;}
.ws11_c00105{word-spacing:0.360000px;}
.ws1d_c00105{word-spacing:0.432000px;}
.ws15_c00105{word-spacing:0.576000px;}
.ws1b_c00105{word-spacing:0.720000px;}
.ws2c_c00105{word-spacing:0.780000px;}
.ws2a_c00105{word-spacing:1.224000px;}
.ws26_c00105{word-spacing:1.368000px;}
.ws1e_c00105{word-spacing:1.584000px;}
.ws25_c00105{word-spacing:2.088000px;}
.ws21_c00105{word-spacing:2.952000px;}
.ws24_c00105{word-spacing:3.960000px;}
.ws19_c00105{word-spacing:4.680000px;}
.wsd_c00105{word-spacing:4.824000px;}
.ws12_c00105{word-spacing:4.968000px;}
.wse_c00105{word-spacing:5.544000px;}
.wsf_c00105{word-spacing:5.832000px;}
.ws20_c00105{word-spacing:6.120000px;}
.ws14_c00105{word-spacing:6.696000px;}
.ws27_c00105{word-spacing:7.128000px;}
.ws22_c00105{word-spacing:7.200000px;}
.ws16_c00105{word-spacing:8.064000px;}
.ws23_c00105{word-spacing:9.648000px;}
.ws1a_c00105{word-spacing:9.792000px;}
.ws10_c00105{word-spacing:13.536000px;}
.ws13_c00105{word-spacing:22.176000px;}
.ws0_c00105{word-spacing:1580.779200px;}
._5_c00105{margin-left:-6.984000px;}
._4_c00105{margin-left:-5.424000px;}
._2_c00105{margin-left:-3.408000px;}
._3_c00105{margin-left:-2.232000px;}
._1_c00105{margin-left:-1.056000px;}
._0_c00105{width:1.296000px;}
.fc0_c00105{color:rgb(35,31,32);}
.fs2_c00105{font-size:41.976000px;}
.fs0_c00105{font-size:48.000000px;}
.fs3_c00105{font-size:60.000000px;}
.fs1_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y28_c00105{bottom:111.063600px;}
.y25_c00105{bottom:111.612300px;}
.y27_c00105{bottom:129.663600px;}
.y24_c00105{bottom:135.120300px;}
.y26_c00105{bottom:148.263600px;}
.y23_c00105{bottom:195.729450px;}
.y22_c00105{bottom:220.479450px;}
.y21_c00105{bottom:245.229450px;}
.y20_c00105{bottom:269.979450px;}
.y1f_c00105{bottom:294.729450px;}
.y1e_c00105{bottom:319.479450px;}
.y1d_c00105{bottom:344.229450px;}
.y1c_c00105{bottom:368.979450px;}
.y1b_c00105{bottom:393.729450px;}
.y1a_c00105{bottom:418.479450px;}
.y19_c00105{bottom:458.223450px;}
.y18_c00105{bottom:482.973450px;}
.y17_c00105{bottom:507.723450px;}
.y16_c00105{bottom:532.473450px;}
.y15_c00105{bottom:557.223450px;}
.y14_c00105{bottom:581.973450px;}
.y13_c00105{bottom:606.723450px;}
.y12_c00105{bottom:631.473450px;}
.y11_c00105{bottom:656.223450px;}
.y10_c00105{bottom:680.973450px;}
.yf_c00105{bottom:720.717450px;}
.ye_c00105{bottom:745.467450px;}
.yd_c00105{bottom:770.217450px;}
.yc_c00105{bottom:794.967450px;}
.yb_c00105{bottom:819.717450px;}
.ya_c00105{bottom:844.467450px;}
.y9_c00105{bottom:869.217450px;}
.y8_c00105{bottom:893.967450px;}
.y7_c00105{bottom:918.717450px;}
.y6_c00105{bottom:943.467450px;}
.y5_c00105{bottom:968.217450px;}
.y4_c00105{bottom:992.967450px;}
.y3_c00105{bottom:1017.717450px;}
.y2_c00105{bottom:1042.467450px;}
.y1_c00105{bottom:1093.600950px;}
.h2_c00105{height:39.264000px;}
.h4_c00105{height:39.280200px;}
.h6_c00105{height:48.600000px;}
.h5_c00105{height:49.080000px;}
.h3_c00105{height:58.896000px;}
.h1_c00105{height:1135.500000px;}
.h0_c00105{height:1135.506150px;}
.w0_c00105{width:893.950200px;}
.w1_c00105{width:894.000000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:77.603100px;}
.x2_c00105{left:375.240900px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:21.312000pt;}
.lsc_c00105{letter-spacing:-1.152000pt;}
.lsb_c00105{letter-spacing:-1.088000pt;}
.lse_c00105{letter-spacing:-0.960000pt;}
.ls7_c00105{letter-spacing:-0.768000pt;}
.ls11_c00105{letter-spacing:-0.693333pt;}
.ls4_c00105{letter-spacing:-0.640000pt;}
.ls9_c00105{letter-spacing:-0.576000pt;}
.lsa_c00105{letter-spacing:-0.512000pt;}
.ls8_c00105{letter-spacing:-0.335808pt;}
.ls6_c00105{letter-spacing:-0.320000pt;}
.ls10_c00105{letter-spacing:-0.213333pt;}
.lsd_c00105{letter-spacing:-0.186560pt;}
.lsf_c00105{letter-spacing:-0.170667pt;}
.ls5_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:0.320000pt;}
.ls1_c00105{letter-spacing:0.512000pt;}
.ls2_c00105{letter-spacing:0.640000pt;}
.ls3_c00105{letter-spacing:3.299200pt;}
.ws3_c00105{word-spacing:-14.528000pt;}
.ws5_c00105{word-spacing:-14.208000pt;}
.ws1_c00105{word-spacing:-13.888000pt;}
.ws7_c00105{word-spacing:-13.760000pt;}
.ws4_c00105{word-spacing:-13.440000pt;}
.ws6_c00105{word-spacing:-13.376000pt;}
.wsa_c00105{word-spacing:-9.685333pt;}
.ws9_c00105{word-spacing:-9.514667pt;}
.ws8_c00105{word-spacing:-8.283264pt;}
.ws2_c00105{word-spacing:-8.134016pt;}
.ws1f_c00105{word-spacing:-2.304000pt;}
.ws29_c00105{word-spacing:-1.984000pt;}
.ws1c_c00105{word-spacing:-1.920000pt;}
.ws28_c00105{word-spacing:-1.152000pt;}
.ws17_c00105{word-spacing:-0.640000pt;}
.wsc_c00105{word-spacing:-0.448000pt;}
.wsb_c00105{word-spacing:0.000000pt;}
.ws18_c00105{word-spacing:0.192000pt;}
.ws2b_c00105{word-spacing:0.213333pt;}
.ws11_c00105{word-spacing:0.320000pt;}
.ws1d_c00105{word-spacing:0.384000pt;}
.ws15_c00105{word-spacing:0.512000pt;}
.ws1b_c00105{word-spacing:0.640000pt;}
.ws2c_c00105{word-spacing:0.693333pt;}
.ws2a_c00105{word-spacing:1.088000pt;}
.ws26_c00105{word-spacing:1.216000pt;}
.ws1e_c00105{word-spacing:1.408000pt;}
.ws25_c00105{word-spacing:1.856000pt;}
.ws21_c00105{word-spacing:2.624000pt;}
.ws24_c00105{word-spacing:3.520000pt;}
.ws19_c00105{word-spacing:4.160000pt;}
.wsd_c00105{word-spacing:4.288000pt;}
.ws12_c00105{word-spacing:4.416000pt;}
.wse_c00105{word-spacing:4.928000pt;}
.wsf_c00105{word-spacing:5.184000pt;}
.ws20_c00105{word-spacing:5.440000pt;}
.ws14_c00105{word-spacing:5.952000pt;}
.ws27_c00105{word-spacing:6.336000pt;}
.ws22_c00105{word-spacing:6.400000pt;}
.ws16_c00105{word-spacing:7.168000pt;}
.ws23_c00105{word-spacing:8.576000pt;}
.ws1a_c00105{word-spacing:8.704000pt;}
.ws10_c00105{word-spacing:12.032000pt;}
.ws13_c00105{word-spacing:19.712000pt;}
.ws0_c00105{word-spacing:1405.137067pt;}
._5_c00105{margin-left:-6.208000pt;}
._4_c00105{margin-left:-4.821333pt;}
._2_c00105{margin-left:-3.029333pt;}
._3_c00105{margin-left:-1.984000pt;}
._1_c00105{margin-left:-0.938667pt;}
._0_c00105{width:1.152000pt;}
.fs2_c00105{font-size:37.312000pt;}
.fs0_c00105{font-size:42.666667pt;}
.fs3_c00105{font-size:53.333333pt;}
.fs1_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y28_c00105{bottom:98.723200pt;}
.y25_c00105{bottom:99.210933pt;}
.y27_c00105{bottom:115.256533pt;}
.y24_c00105{bottom:120.106933pt;}
.y26_c00105{bottom:131.789867pt;}
.y23_c00105{bottom:173.981733pt;}
.y22_c00105{bottom:195.981733pt;}
.y21_c00105{bottom:217.981733pt;}
.y20_c00105{bottom:239.981733pt;}
.y1f_c00105{bottom:261.981733pt;}
.y1e_c00105{bottom:283.981733pt;}
.y1d_c00105{bottom:305.981733pt;}
.y1c_c00105{bottom:327.981733pt;}
.y1b_c00105{bottom:349.981733pt;}
.y1a_c00105{bottom:371.981733pt;}
.y19_c00105{bottom:407.309733pt;}
.y18_c00105{bottom:429.309733pt;}
.y17_c00105{bottom:451.309733pt;}
.y16_c00105{bottom:473.309733pt;}
.y15_c00105{bottom:495.309733pt;}
.y14_c00105{bottom:517.309733pt;}
.y13_c00105{bottom:539.309733pt;}
.y12_c00105{bottom:561.309733pt;}
.y11_c00105{bottom:583.309733pt;}
.y10_c00105{bottom:605.309733pt;}
.yf_c00105{bottom:640.637733pt;}
.ye_c00105{bottom:662.637733pt;}
.yd_c00105{bottom:684.637733pt;}
.yc_c00105{bottom:706.637733pt;}
.yb_c00105{bottom:728.637733pt;}
.ya_c00105{bottom:750.637733pt;}
.y9_c00105{bottom:772.637733pt;}
.y8_c00105{bottom:794.637733pt;}
.y7_c00105{bottom:816.637733pt;}
.y6_c00105{bottom:838.637733pt;}
.y5_c00105{bottom:860.637733pt;}
.y4_c00105{bottom:882.637733pt;}
.y3_c00105{bottom:904.637733pt;}
.y2_c00105{bottom:926.637733pt;}
.y1_c00105{bottom:972.089733pt;}
.h2_c00105{height:34.901333pt;}
.h4_c00105{height:34.915733pt;}
.h6_c00105{height:43.200000pt;}
.h5_c00105{height:43.626667pt;}
.h3_c00105{height:52.352000pt;}
.h1_c00105{height:1009.333333pt;}
.h0_c00105{height:1009.338800pt;}
.w0_c00105{width:794.622400pt;}
.w1_c00105{width:794.666667pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:68.980533pt;}
.x2_c00105{left:333.547467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8866ae14f960ebb08aa79adc.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.178000;font-style:normal;font-weight:normal;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_0f1b5f7e699776363c8ee2c8.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.178000;font-style:normal;font-weight:normal;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_ae899c04b6eb93a27e7f3391.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.082000;font-style:normal;font-weight:normal;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_97013bf2207c2e80f9280a31.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.067000;font-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_c00106{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:23.976000px;}
.ls7_c00106{letter-spacing:-3.360000px;}
.ls6_c00106{letter-spacing:-0.780000px;}
.ls5_c00106{letter-spacing:-0.288000px;}
.ls4_c00106{letter-spacing:-0.251856px;}
.ls8_c00106{letter-spacing:-0.240000px;}
.ls2_c00106{letter-spacing:-0.144000px;}
.ls3_c00106{letter-spacing:0.000000px;}
.ls1_c00106{letter-spacing:0.216000px;}
.ls0_c00106{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00106{word-spacing:-16.344000px;}
.ws4_c00106{word-spacing:-12.840000px;}
.ws0_c00106{word-spacing:-10.752000px;}
.ws3_c00106{word-spacing:-10.608000px;}
.ws5_c00106{word-spacing:-10.380000px;}
.ws2_c00106{word-spacing:-9.276696px;}
.wsc_c00106{word-spacing:-0.576000px;}
.ws6_c00106{word-spacing:0.000000px;}
.ws14_c00106{word-spacing:0.240000px;}
.ws13_c00106{word-spacing:0.336000px;}
.wsf_c00106{word-spacing:0.480000px;}
.ws10_c00106{word-spacing:0.528000px;}
.ws11_c00106{word-spacing:0.864000px;}
.ws12_c00106{word-spacing:1.200000px;}
.wsd_c00106{word-spacing:1.872000px;}
.ws8_c00106{word-spacing:3.384000px;}
.ws9_c00106{word-spacing:3.456000px;}
.wsb_c00106{word-spacing:4.104000px;}
.wse_c00106{word-spacing:4.752000px;}
.ws7_c00106{word-spacing:6.048000px;}
.wsa_c00106{word-spacing:9.432000px;}
._0_c00106{margin-left:-2754.987000px;}
._3_c00106{margin-left:-2.592000px;}
._1_c00106{margin-left:-1.344000px;}
._2_c00106{width:1.104000px;}
._5_c00106{width:2.724000px;}
._4_c00106{width:3.996000px;}
.fc0_c00106{color:rgb(35,31,32);}
.fs2_c00106{font-size:41.976000px;}
.fs0_c00106{font-size:48.000000px;}
.fs3_c00106{font-size:60.000000px;}
.fs1_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.ye_c00106{bottom:111.616350px;}
.yd_c00106{bottom:126.616350px;}
.yc_c00106{bottom:141.616350px;}
.yb_c00106{bottom:156.616350px;}
.ya_c00106{bottom:171.616350px;}
.y9_c00106{bottom:186.616350px;}
.y8_c00106{bottom:201.616350px;}
.y7_c00106{bottom:258.953700px;}
.y6_c00106{bottom:283.703700px;}
.y5_c00106{bottom:308.453700px;}
.y4_c00106{bottom:333.203700px;}
.y3_c00106{bottom:357.953700px;}
.y2_c00106{bottom:382.703700px;}
.y11_c00106{bottom:419.569500px;}
.y10_c00106{bottom:438.169500px;}
.yf_c00106{bottom:456.769500px;}
.y1_c00106{bottom:1093.600950px;}
.h2_c00106{height:39.264000px;}
.h3_c00106{height:39.984000px;}
.h6_c00106{height:48.600000px;}
.h5_c00106{height:49.080000px;}
.h4_c00106{height:58.896000px;}
.h1_c00106{height:1135.500000px;}
.h0_c00106{height:1135.506150px;}
.w0_c00106{width:893.950200px;}
.w1_c00106{width:894.000000px;}
.x0_c00106{left:0.000000px;}
.x4_c00106{left:128.626800px;}
.x6_c00106{left:132.028350px;}
.x5_c00106{left:145.634550px;}
.x2_c00106{left:188.061900px;}
.x3_c00106{left:190.513350px;}
.x1_c00106{left:802.205550px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:21.312000pt;}
.ls7_c00106{letter-spacing:-2.986667pt;}
.ls6_c00106{letter-spacing:-0.693333pt;}
.ls5_c00106{letter-spacing:-0.256000pt;}
.ls4_c00106{letter-spacing:-0.223872pt;}
.ls8_c00106{letter-spacing:-0.213333pt;}
.ls2_c00106{letter-spacing:-0.128000pt;}
.ls3_c00106{letter-spacing:0.000000pt;}
.ls1_c00106{letter-spacing:0.192000pt;}
.ls0_c00106{letter-spacing:0.426667pt;}
.ws1_c00106{word-spacing:-14.528000pt;}
.ws4_c00106{word-spacing:-11.413333pt;}
.ws0_c00106{word-spacing:-9.557333pt;}
.ws3_c00106{word-spacing:-9.429333pt;}
.ws5_c00106{word-spacing:-9.226667pt;}
.ws2_c00106{word-spacing:-8.245952pt;}
.wsc_c00106{word-spacing:-0.512000pt;}
.ws6_c00106{word-spacing:0.000000pt;}
.ws14_c00106{word-spacing:0.213333pt;}
.ws13_c00106{word-spacing:0.298667pt;}
.wsf_c00106{word-spacing:0.426667pt;}
.ws10_c00106{word-spacing:0.469333pt;}
.ws11_c00106{word-spacing:0.768000pt;}
.ws12_c00106{word-spacing:1.066667pt;}
.wsd_c00106{word-spacing:1.664000pt;}
.ws8_c00106{word-spacing:3.008000pt;}
.ws9_c00106{word-spacing:3.072000pt;}
.wsb_c00106{word-spacing:3.648000pt;}
.wse_c00106{word-spacing:4.224000pt;}
.ws7_c00106{word-spacing:5.376000pt;}
.wsa_c00106{word-spacing:8.384000pt;}
._0_c00106{margin-left:-2448.877333pt;}
._3_c00106{margin-left:-2.304000pt;}
._1_c00106{margin-left:-1.194667pt;}
._2_c00106{width:0.981333pt;}
._5_c00106{width:2.421333pt;}
._4_c00106{width:3.552000pt;}
.fs2_c00106{font-size:37.312000pt;}
.fs0_c00106{font-size:42.666667pt;}
.fs3_c00106{font-size:53.333333pt;}
.fs1_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.ye_c00106{bottom:99.214533pt;}
.yd_c00106{bottom:112.547867pt;}
.yc_c00106{bottom:125.881200pt;}
.yb_c00106{bottom:139.214533pt;}
.ya_c00106{bottom:152.547867pt;}
.y9_c00106{bottom:165.881200pt;}
.y8_c00106{bottom:179.214533pt;}
.y7_c00106{bottom:230.181067pt;}
.y6_c00106{bottom:252.181067pt;}
.y5_c00106{bottom:274.181067pt;}
.y4_c00106{bottom:296.181067pt;}
.y3_c00106{bottom:318.181067pt;}
.y2_c00106{bottom:340.181067pt;}
.y11_c00106{bottom:372.950667pt;}
.y10_c00106{bottom:389.484000pt;}
.yf_c00106{bottom:406.017333pt;}
.y1_c00106{bottom:972.089733pt;}
.h2_c00106{height:34.901333pt;}
.h3_c00106{height:35.541333pt;}
.h6_c00106{height:43.200000pt;}
.h5_c00106{height:43.626667pt;}
.h4_c00106{height:52.352000pt;}
.h1_c00106{height:1009.333333pt;}
.h0_c00106{height:1009.338800pt;}
.w0_c00106{width:794.622400pt;}
.w1_c00106{width:794.666667pt;}
.x0_c00106{left:0.000000pt;}
.x4_c00106{left:114.334933pt;}
.x6_c00106{left:117.358533pt;}
.x5_c00106{left:129.452933pt;}
.x2_c00106{left:167.166133pt;}
.x3_c00106{left:169.345200pt;}
.x1_c00106{left:713.071600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b50e5fbe47c0b2bc12c53f4b.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.v2_c00107{vertical-align:20.979600px;}
.v1_c00107{vertical-align:23.976000px;}
.ls4_c00107{letter-spacing:-1.584000px;}
.ls6_c00107{letter-spacing:-1.224000px;}
.ls9_c00107{letter-spacing:-1.056000px;}
.ls3_c00107{letter-spacing:-0.923472px;}
.lsa_c00107{letter-spacing:-0.864000px;}
.ls7_c00107{letter-spacing:-0.755568px;}
.ls2_c00107{letter-spacing:-0.720000px;}
.lsc_c00107{letter-spacing:-0.672000px;}
.ls5_c00107{letter-spacing:-0.504000px;}
.lsb_c00107{letter-spacing:-0.480000px;}
.ls8_c00107{letter-spacing:-0.367290px;}
.ls1_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:0.216000px;}
.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;}
}
.ws4_c00107{word-spacing:-16.488000px;}
.ws1_c00107{word-spacing:-16.344000px;}
.ws3_c00107{word-spacing:-14.904000px;}
.ws6_c00107{word-spacing:-14.301000px;}
.wsa_c00107{word-spacing:-10.416000px;}
.ws9_c00107{word-spacing:-10.032000px;}
.ws8_c00107{word-spacing:-9.840000px;}
.ws5_c00107{word-spacing:-8.772984px;}
.ws2_c00107{word-spacing:-8.605080px;}
.ws7_c00107{word-spacing:-7.970193px;}
.ws20_c00107{word-spacing:-1.968000px;}
.ws1f_c00107{word-spacing:-1.488000px;}
.ws1e_c00107{word-spacing:-1.200000px;}
.ws1d_c00107{word-spacing:-1.056000px;}
.wsb_c00107{word-spacing:0.000000px;}
.wsf_c00107{word-spacing:0.432000px;}
.ws1c_c00107{word-spacing:0.648000px;}
.ws23_c00107{word-spacing:0.672000px;}
.wsd_c00107{word-spacing:0.720000px;}
.ws10_c00107{word-spacing:0.936000px;}
.ws14_c00107{word-spacing:1.008000px;}
.ws13_c00107{word-spacing:1.071000px;}
.ws16_c00107{word-spacing:1.080000px;}
.ws21_c00107{word-spacing:1.152000px;}
.ws12_c00107{word-spacing:1.224000px;}
.ws18_c00107{word-spacing:1.368000px;}
.ws1b_c00107{word-spacing:1.512000px;}
.ws15_c00107{word-spacing:1.638000px;}
.ws1a_c00107{word-spacing:2.016000px;}
.wse_c00107{word-spacing:2.160000px;}
.wsc_c00107{word-spacing:2.520000px;}
.ws19_c00107{word-spacing:2.592000px;}
.ws11_c00107{word-spacing:3.384000px;}
.ws22_c00107{word-spacing:3.504000px;}
.ws17_c00107{word-spacing:4.608000px;}
.ws0_c00107{word-spacing:1577.995200px;}
._5_c00107{margin-left:-7.353000px;}
._3_c00107{margin-left:-6.048000px;}
._4_c00107{margin-left:-4.416000px;}
._0_c00107{margin-left:-2.112000px;}
._1_c00107{margin-left:-1.104000px;}
._2_c00107{width:1.440000px;}
._6_c00107{width:3.600000px;}
.fc0_c00107{color:rgb(35,31,32);}
.fs3_c00107{font-size:36.729000px;}
.fs2_c00107{font-size:41.976000px;}
.fs0_c00107{font-size:48.000000px;}
.fs4_c00107{font-size:63.000000px;}
.fs1_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y1e_c00107{bottom:111.612300px;}
.y1d_c00107{bottom:135.120300px;}
.y1c_c00107{bottom:150.116250px;}
.y1b_c00107{bottom:173.624250px;}
.y1a_c00107{bottom:188.624250px;}
.y19_c00107{bottom:203.624250px;}
.y18_c00107{bottom:218.624250px;}
.y17_c00107{bottom:233.624250px;}
.y16_c00107{bottom:248.624250px;}
.y15_c00107{bottom:533.713500px;}
.y14_c00107{bottom:558.463500px;}
.y13_c00107{bottom:583.213500px;}
.y12_c00107{bottom:607.963500px;}
.y11_c00107{bottom:632.713500px;}
.y10_c00107{bottom:657.463500px;}
.yf_c00107{bottom:682.213500px;}
.ye_c00107{bottom:706.963500px;}
.yd_c00107{bottom:731.713500px;}
.yc_c00107{bottom:771.479250px;}
.yb_c00107{bottom:792.474000px;}
.ya_c00107{bottom:813.468750px;}
.y9_c00107{bottom:834.463500px;}
.y8_c00107{bottom:863.979450px;}
.y7_c00107{bottom:903.723450px;}
.y6_c00107{bottom:928.473450px;}
.y5_c00107{bottom:953.223450px;}
.y4_c00107{bottom:977.973450px;}
.y3_c00107{bottom:1017.717450px;}
.y2_c00107{bottom:1042.467450px;}
.y1_c00107{bottom:1093.601100px;}
.h2_c00107{height:39.264000px;}
.h5_c00107{height:39.280200px;}
.h4_c00107{height:51.534000px;}
.h3_c00107{height:58.896000px;}
.h1_c00107{height:1135.500000px;}
.h0_c00107{height:1135.506150px;}
.w0_c00107{width:893.950200px;}
.w1_c00107{width:894.000000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:77.603100px;}
.x3_c00107{left:94.611000px;}
.x2_c00107{left:98.862900px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.v2_c00107{vertical-align:18.648533pt;}
.v1_c00107{vertical-align:21.312000pt;}
.ls4_c00107{letter-spacing:-1.408000pt;}
.ls6_c00107{letter-spacing:-1.088000pt;}
.ls9_c00107{letter-spacing:-0.938667pt;}
.ls3_c00107{letter-spacing:-0.820864pt;}
.lsa_c00107{letter-spacing:-0.768000pt;}
.ls7_c00107{letter-spacing:-0.671616pt;}
.ls2_c00107{letter-spacing:-0.640000pt;}
.lsc_c00107{letter-spacing:-0.597333pt;}
.ls5_c00107{letter-spacing:-0.448000pt;}
.lsb_c00107{letter-spacing:-0.426667pt;}
.ls8_c00107{letter-spacing:-0.326480pt;}
.ls1_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:0.192000pt;}
.ws4_c00107{word-spacing:-14.656000pt;}
.ws1_c00107{word-spacing:-14.528000pt;}
.ws3_c00107{word-spacing:-13.248000pt;}
.ws6_c00107{word-spacing:-12.712000pt;}
.wsa_c00107{word-spacing:-9.258667pt;}
.ws9_c00107{word-spacing:-8.917333pt;}
.ws8_c00107{word-spacing:-8.746667pt;}
.ws5_c00107{word-spacing:-7.798208pt;}
.ws2_c00107{word-spacing:-7.648960pt;}
.ws7_c00107{word-spacing:-7.084616pt;}
.ws20_c00107{word-spacing:-1.749333pt;}
.ws1f_c00107{word-spacing:-1.322667pt;}
.ws1e_c00107{word-spacing:-1.066667pt;}
.ws1d_c00107{word-spacing:-0.938667pt;}
.wsb_c00107{word-spacing:0.000000pt;}
.wsf_c00107{word-spacing:0.384000pt;}
.ws1c_c00107{word-spacing:0.576000pt;}
.ws23_c00107{word-spacing:0.597333pt;}
.wsd_c00107{word-spacing:0.640000pt;}
.ws10_c00107{word-spacing:0.832000pt;}
.ws14_c00107{word-spacing:0.896000pt;}
.ws13_c00107{word-spacing:0.952000pt;}
.ws16_c00107{word-spacing:0.960000pt;}
.ws21_c00107{word-spacing:1.024000pt;}
.ws12_c00107{word-spacing:1.088000pt;}
.ws18_c00107{word-spacing:1.216000pt;}
.ws1b_c00107{word-spacing:1.344000pt;}
.ws15_c00107{word-spacing:1.456000pt;}
.ws1a_c00107{word-spacing:1.792000pt;}
.wse_c00107{word-spacing:1.920000pt;}
.wsc_c00107{word-spacing:2.240000pt;}
.ws19_c00107{word-spacing:2.304000pt;}
.ws11_c00107{word-spacing:3.008000pt;}
.ws22_c00107{word-spacing:3.114667pt;}
.ws17_c00107{word-spacing:4.096000pt;}
.ws0_c00107{word-spacing:1402.662400pt;}
._5_c00107{margin-left:-6.536000pt;}
._3_c00107{margin-left:-5.376000pt;}
._4_c00107{margin-left:-3.925333pt;}
._0_c00107{margin-left:-1.877333pt;}
._1_c00107{margin-left:-0.981333pt;}
._2_c00107{width:1.280000pt;}
._6_c00107{width:3.200000pt;}
.fs3_c00107{font-size:32.648000pt;}
.fs2_c00107{font-size:37.312000pt;}
.fs0_c00107{font-size:42.666667pt;}
.fs4_c00107{font-size:56.000000pt;}
.fs1_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y1e_c00107{bottom:99.210933pt;}
.y1d_c00107{bottom:120.106933pt;}
.y1c_c00107{bottom:133.436667pt;}
.y1b_c00107{bottom:154.332667pt;}
.y1a_c00107{bottom:167.666000pt;}
.y19_c00107{bottom:180.999333pt;}
.y18_c00107{bottom:194.332667pt;}
.y17_c00107{bottom:207.666000pt;}
.y16_c00107{bottom:220.999333pt;}
.y15_c00107{bottom:474.412000pt;}
.y14_c00107{bottom:496.412000pt;}
.y13_c00107{bottom:518.412000pt;}
.y12_c00107{bottom:540.412000pt;}
.y11_c00107{bottom:562.412000pt;}
.y10_c00107{bottom:584.412000pt;}
.yf_c00107{bottom:606.412000pt;}
.ye_c00107{bottom:628.412000pt;}
.yd_c00107{bottom:650.412000pt;}
.yc_c00107{bottom:685.759333pt;}
.yb_c00107{bottom:704.421333pt;}
.ya_c00107{bottom:723.083333pt;}
.y9_c00107{bottom:741.745333pt;}
.y8_c00107{bottom:767.981733pt;}
.y7_c00107{bottom:803.309733pt;}
.y6_c00107{bottom:825.309733pt;}
.y5_c00107{bottom:847.309733pt;}
.y4_c00107{bottom:869.309733pt;}
.y3_c00107{bottom:904.637733pt;}
.y2_c00107{bottom:926.637733pt;}
.y1_c00107{bottom:972.089867pt;}
.h2_c00107{height:34.901333pt;}
.h5_c00107{height:34.915733pt;}
.h4_c00107{height:45.808000pt;}
.h3_c00107{height:52.352000pt;}
.h1_c00107{height:1009.333333pt;}
.h0_c00107{height:1009.338800pt;}
.w0_c00107{width:794.622400pt;}
.w1_c00107{width:794.666667pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:68.980533pt;}
.x3_c00107{left:84.098667pt;}
.x2_c00107{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4787ea7605dbb982c422890.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:1.082000;font-style:normal;font-weight: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_c00108;src:url('chunks/assets/font_5c84052867b3186776ff4e84.woff2')format("woff");}.ff7_c00108{font-family:ff7_c00108;line-height:0.955000;font-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_c00108{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls8_c00108{letter-spacing:-1.368000px;}
.ls5_c00108{letter-spacing:-0.288000px;}
.ls7_c00108{letter-spacing:-0.216000px;}
.ls6_c00108{letter-spacing:0.000000px;}
.ls3_c00108{letter-spacing:0.216000px;}
.ls1_c00108{letter-spacing:0.360000px;}
.ls0_c00108{letter-spacing:0.480000px;}
.ls9_c00108{letter-spacing:0.990000px;}
.ls4_c00108{letter-spacing:1.560000px;}
.ls2_c00108{letter-spacing:3.024000px;}
.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;}
}
.ws1_c00108{word-spacing:-16.344000px;}
.ws2_c00108{word-spacing:-16.128000px;}
.ws3_c00108{word-spacing:-15.972000px;}
.ws0_c00108{word-spacing:-10.608000px;}
.ws15_c00108{word-spacing:-2.304000px;}
.ws13_c00108{word-spacing:-1.224000px;}
.ws14_c00108{word-spacing:-0.936000px;}
.ws5_c00108{word-spacing:-0.432000px;}
.ws19_c00108{word-spacing:-0.390000px;}
.ws8_c00108{word-spacing:-0.360000px;}
.wsd_c00108{word-spacing:-0.288000px;}
.ws9_c00108{word-spacing:-0.144000px;}
.ws4_c00108{word-spacing:0.000000px;}
.ws18_c00108{word-spacing:0.216000px;}
.ws10_c00108{word-spacing:0.288000px;}
.ws11_c00108{word-spacing:0.360000px;}
.wsf_c00108{word-spacing:0.792000px;}
.wsb_c00108{word-spacing:0.936000px;}
.ws12_c00108{word-spacing:1.656000px;}
.wsc_c00108{word-spacing:2.016000px;}
.ws17_c00108{word-spacing:2.232000px;}
.wsa_c00108{word-spacing:3.024000px;}
.ws6_c00108{word-spacing:3.096000px;}
.ws16_c00108{word-spacing:3.384000px;}
.wse_c00108{word-spacing:3.600000px;}
.ws7_c00108{word-spacing:5.472000px;}
._0_c00108{margin-left:-2754.699600px;}
._6_c00108{margin-left:-5.460000px;}
._7_c00108{margin-left:-3.603000px;}
._1_c00108{margin-left:-2.256000px;}
._3_c00108{margin-left:-1.056000px;}
._2_c00108{width:1.008000px;}
._4_c00108{width:3.192000px;}
._5_c00108{width:39.778800px;}
.fc1_c00108{color:transparent;}
.fc0_c00108{color:rgb(35,31,32);}
.fs0_c00108{font-size:48.000000px;}
.fs4_c00108{font-size:60.000000px;}
.fs2_c00108{font-size:66.000000px;}
.fs1_c00108{font-size:72.000000px;}
.fs3_c00108{font-size:78.000000px;}
.y0_c00108{bottom:0.000000px;}
.y2_c00108{bottom:51.868800px;}
.y17_c00108{bottom:122.158500px;}
.y16_c00108{bottom:146.908500px;}
.y15_c00108{bottom:171.658500px;}
.y14_c00108{bottom:196.408500px;}
.y13_c00108{bottom:221.158500px;}
.y12_c00108{bottom:245.908500px;}
.y11_c00108{bottom:270.658500px;}
.y10_c00108{bottom:295.408500px;}
.yf_c00108{bottom:320.158500px;}
.ye_c00108{bottom:344.908500px;}
.yd_c00108{bottom:369.658500px;}
.yc_c00108{bottom:409.402500px;}
.yb_c00108{bottom:434.152500px;}
.ya_c00108{bottom:458.902500px;}
.y9_c00108{bottom:483.652500px;}
.y8_c00108{bottom:508.402500px;}
.y7_c00108{bottom:533.152500px;}
.y6_c00108{bottom:557.902500px;}
.y5_c00108{bottom:582.652500px;}
.y4_c00108{bottom:607.402500px;}
.y3_c00108{bottom:632.152500px;}
.y1c_c00108{bottom:725.787300px;}
.y1b_c00108{bottom:754.782300px;}
.y1a_c00108{bottom:774.282300px;}
.y19_c00108{bottom:793.782300px;}
.y18_c00108{bottom:955.461600px;}
.y1_c00108{bottom:1093.600950px;}
.h2_c00108{height:39.264000px;}
.h3_c00108{height:39.984000px;}
.h6_c00108{height:49.080000px;}
.h4_c00108{height:58.896000px;}
.h5_c00108{height:64.974000px;}
.h1_c00108{height:1135.500000px;}
.h0_c00108{height:1135.506150px;}
.w0_c00108{width:893.950200px;}
.w1_c00108{width:894.000000px;}
.x0_c00108{left:0.000000px;}
.x5_c00108{left:128.626800px;}
.x2_c00108{left:188.061900px;}
.x3_c00108{left:190.513350px;}
.x6_c00108{left:543.547200px;}
.x8_c00108{left:597.517650px;}
.x9_c00108{left:660.337650px;}
.x7_c00108{left:677.662650px;}
.xa_c00108{left:708.562650px;}
.x4_c00108{left:800.165850px;}
.x1_c00108{left:801.833700px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls8_c00108{letter-spacing:-1.216000pt;}
.ls5_c00108{letter-spacing:-0.256000pt;}
.ls7_c00108{letter-spacing:-0.192000pt;}
.ls6_c00108{letter-spacing:0.000000pt;}
.ls3_c00108{letter-spacing:0.192000pt;}
.ls1_c00108{letter-spacing:0.320000pt;}
.ls0_c00108{letter-spacing:0.426667pt;}
.ls9_c00108{letter-spacing:0.880000pt;}
.ls4_c00108{letter-spacing:1.386667pt;}
.ls2_c00108{letter-spacing:2.688000pt;}
.ws1_c00108{word-spacing:-14.528000pt;}
.ws2_c00108{word-spacing:-14.336000pt;}
.ws3_c00108{word-spacing:-14.197333pt;}
.ws0_c00108{word-spacing:-9.429333pt;}
.ws15_c00108{word-spacing:-2.048000pt;}
.ws13_c00108{word-spacing:-1.088000pt;}
.ws14_c00108{word-spacing:-0.832000pt;}
.ws5_c00108{word-spacing:-0.384000pt;}
.ws19_c00108{word-spacing:-0.346667pt;}
.ws8_c00108{word-spacing:-0.320000pt;}
.wsd_c00108{word-spacing:-0.256000pt;}
.ws9_c00108{word-spacing:-0.128000pt;}
.ws4_c00108{word-spacing:0.000000pt;}
.ws18_c00108{word-spacing:0.192000pt;}
.ws10_c00108{word-spacing:0.256000pt;}
.ws11_c00108{word-spacing:0.320000pt;}
.wsf_c00108{word-spacing:0.704000pt;}
.wsb_c00108{word-spacing:0.832000pt;}
.ws12_c00108{word-spacing:1.472000pt;}
.wsc_c00108{word-spacing:1.792000pt;}
.ws17_c00108{word-spacing:1.984000pt;}
.wsa_c00108{word-spacing:2.688000pt;}
.ws6_c00108{word-spacing:2.752000pt;}
.ws16_c00108{word-spacing:3.008000pt;}
.wse_c00108{word-spacing:3.200000pt;}
.ws7_c00108{word-spacing:4.864000pt;}
._0_c00108{margin-left:-2448.621867pt;}
._6_c00108{margin-left:-4.853333pt;}
._7_c00108{margin-left:-3.202667pt;}
._1_c00108{margin-left:-2.005333pt;}
._3_c00108{margin-left:-0.938667pt;}
._2_c00108{width:0.896000pt;}
._4_c00108{width:2.837333pt;}
._5_c00108{width:35.358933pt;}
.fs0_c00108{font-size:42.666667pt;}
.fs4_c00108{font-size:53.333333pt;}
.fs2_c00108{font-size:58.666667pt;}
.fs1_c00108{font-size:64.000000pt;}
.fs3_c00108{font-size:69.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.y2_c00108{bottom:46.105600pt;}
.y17_c00108{bottom:108.585333pt;}
.y16_c00108{bottom:130.585333pt;}
.y15_c00108{bottom:152.585333pt;}
.y14_c00108{bottom:174.585333pt;}
.y13_c00108{bottom:196.585333pt;}
.y12_c00108{bottom:218.585333pt;}
.y11_c00108{bottom:240.585333pt;}
.y10_c00108{bottom:262.585333pt;}
.yf_c00108{bottom:284.585333pt;}
.ye_c00108{bottom:306.585333pt;}
.yd_c00108{bottom:328.585333pt;}
.yc_c00108{bottom:363.913333pt;}
.yb_c00108{bottom:385.913333pt;}
.ya_c00108{bottom:407.913333pt;}
.y9_c00108{bottom:429.913333pt;}
.y8_c00108{bottom:451.913333pt;}
.y7_c00108{bottom:473.913333pt;}
.y6_c00108{bottom:495.913333pt;}
.y5_c00108{bottom:517.913333pt;}
.y4_c00108{bottom:539.913333pt;}
.y3_c00108{bottom:561.913333pt;}
.y1c_c00108{bottom:645.144267pt;}
.y1b_c00108{bottom:670.917600pt;}
.y1a_c00108{bottom:688.250933pt;}
.y19_c00108{bottom:705.584267pt;}
.y18_c00108{bottom:849.299200pt;}
.y1_c00108{bottom:972.089733pt;}
.h2_c00108{height:34.901333pt;}
.h3_c00108{height:35.541333pt;}
.h6_c00108{height:43.626667pt;}
.h4_c00108{height:52.352000pt;}
.h5_c00108{height:57.754667pt;}
.h1_c00108{height:1009.333333pt;}
.h0_c00108{height:1009.338800pt;}
.w0_c00108{width:794.622400pt;}
.w1_c00108{width:794.666667pt;}
.x0_c00108{left:0.000000pt;}
.x5_c00108{left:114.334933pt;}
.x2_c00108{left:167.166133pt;}
.x3_c00108{left:169.345200pt;}
.x6_c00108{left:483.153067pt;}
.x8_c00108{left:531.126800pt;}
.x9_c00108{left:586.966800pt;}
.x7_c00108{left:602.366800pt;}
.xa_c00108{left:629.833467pt;}
.x4_c00108{left:711.258533pt;}
.x1_c00108{left:712.741067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e6d147fbb6c035f938cc6e9.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_8623bf6944c0d7eaee41942b.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.v1_c00109{vertical-align:23.952000px;}
.ls7_c00109{letter-spacing:-6.624000px;}
.ls6_c00109{letter-spacing:-3.528000px;}
.ls5_c00109{letter-spacing:-1.728000px;}
.ls4_c00109{letter-spacing:-1.440000px;}
.ls2_c00109{letter-spacing:-0.720000px;}
.ls3_c00109{letter-spacing:-0.360000px;}
.ls9_c00109{letter-spacing:-0.240000px;}
.ls8_c00109{letter-spacing:-0.096000px;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.096000px;}
.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;}
}
.ws4_c00109{word-spacing:-16.488000px;}
.ws1_c00109{word-spacing:-16.344000px;}
.ws5_c00109{word-spacing:-14.904000px;}
.ws2_c00109{word-spacing:-14.760000px;}
.ws6_c00109{word-spacing:-12.816000px;}
.ws7_c00109{word-spacing:-9.720000px;}
.ws3_c00109{word-spacing:-9.528552px;}
.ws10_c00109{word-spacing:-2.952000px;}
.wsd_c00109{word-spacing:-2.880000px;}
.ws19_c00109{word-spacing:-2.592000px;}
.ws20_c00109{word-spacing:-2.160000px;}
.ws1f_c00109{word-spacing:-1.368000px;}
.ws2a_c00109{word-spacing:-1.296000px;}
.ws24_c00109{word-spacing:-1.224000px;}
.ws27_c00109{word-spacing:-0.912000px;}
.ws1e_c00109{word-spacing:-0.648000px;}
.ws15_c00109{word-spacing:-0.216000px;}
.ws26_c00109{word-spacing:-0.192000px;}
.ws8_c00109{word-spacing:0.000000px;}
.ws2b_c00109{word-spacing:0.240000px;}
.ws11_c00109{word-spacing:0.648000px;}
.ws28_c00109{word-spacing:0.672000px;}
.ws1b_c00109{word-spacing:0.720000px;}
.ws29_c00109{word-spacing:0.864000px;}
.ws18_c00109{word-spacing:0.936000px;}
.ws13_c00109{word-spacing:1.440000px;}
.ws12_c00109{word-spacing:1.728000px;}
.ws16_c00109{word-spacing:2.088000px;}
.ws17_c00109{word-spacing:2.160000px;}
.wsc_c00109{word-spacing:3.312000px;}
.ws25_c00109{word-spacing:3.744000px;}
.wsb_c00109{word-spacing:3.960000px;}
.wse_c00109{word-spacing:4.248000px;}
.ws22_c00109{word-spacing:5.112000px;}
.ws23_c00109{word-spacing:5.904000px;}
.ws1c_c00109{word-spacing:6.984000px;}
.ws1a_c00109{word-spacing:7.128000px;}
.ws14_c00109{word-spacing:7.488000px;}
.wsf_c00109{word-spacing:7.560000px;}
.ws21_c00109{word-spacing:7.992000px;}
.ws1d_c00109{word-spacing:9.432000px;}
.wsa_c00109{word-spacing:10.800000px;}
.ws9_c00109{word-spacing:11.160000px;}
.ws0_c00109{word-spacing:1579.579200px;}
._2_c00109{margin-left:-6.624000px;}
._5_c00109{margin-left:-4.992000px;}
._0_c00109{margin-left:-2.112000px;}
._1_c00109{margin-left:-1.104000px;}
._3_c00109{width:1.176000px;}
._4_c00109{width:2.664000px;}
._6_c00109{width:5.976000px;}
._8_c00109{width:20.736000px;}
._7_c00109{width:29.856000px;}
.fc0_c00109{color:rgb(35,31,32);}
.fs2_c00109{font-size:41.976000px;}
.fs0_c00109{font-size:48.000000px;}
.fs3_c00109{font-size:60.000000px;}
.fs1_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y27_c00109{bottom:111.616200px;}
.y26_c00109{bottom:126.616200px;}
.y25_c00109{bottom:141.616200px;}
.y24_c00109{bottom:156.616200px;}
.y23_c00109{bottom:171.616200px;}
.y22_c00109{bottom:186.616200px;}
.y21_c00109{bottom:210.120150px;}
.y20_c00109{bottom:254.967450px;}
.y1f_c00109{bottom:279.717450px;}
.y1e_c00109{bottom:304.467450px;}
.y1d_c00109{bottom:329.217450px;}
.y1c_c00109{bottom:353.967450px;}
.y31_c00109{bottom:392.918550px;}
.y1b_c00109{bottom:393.723450px;}
.y30_c00109{bottom:411.518550px;}
.y1a_c00109{bottom:418.473450px;}
.y2f_c00109{bottom:430.118550px;}
.y19_c00109{bottom:443.223450px;}
.y2e_c00109{bottom:448.718550px;}
.y2d_c00109{bottom:467.318550px;}
.y18_c00109{bottom:467.973450px;}
.y17_c00109{bottom:492.723450px;}
.y16_c00109{bottom:517.473450px;}
.y15_c00109{bottom:542.223450px;}
.y14_c00109{bottom:566.973450px;}
.y13_c00109{bottom:606.717450px;}
.y12_c00109{bottom:631.467450px;}
.y11_c00109{bottom:656.217450px;}
.y10_c00109{bottom:680.973450px;}
.yf_c00109{bottom:705.723450px;}
.ye_c00109{bottom:730.473450px;}
.y2c_c00109{bottom:739.049850px;}
.yd_c00109{bottom:755.223450px;}
.y2b_c00109{bottom:757.649850px;}
.y2a_c00109{bottom:776.249850px;}
.yc_c00109{bottom:779.973450px;}
.y29_c00109{bottom:794.849850px;}
.yb_c00109{bottom:804.723450px;}
.y28_c00109{bottom:813.449850px;}
.ya_c00109{bottom:829.473450px;}
.y9_c00109{bottom:854.223450px;}
.y8_c00109{bottom:878.973450px;}
.y7_c00109{bottom:903.723450px;}
.y6_c00109{bottom:943.467450px;}
.y5_c00109{bottom:968.217450px;}
.y4_c00109{bottom:992.967450px;}
.y3_c00109{bottom:1017.717450px;}
.y2_c00109{bottom:1042.467450px;}
.y1_c00109{bottom:1093.600950px;}
.h2_c00109{height:39.264000px;}
.h5_c00109{height:48.600000px;}
.h4_c00109{height:49.080000px;}
.h3_c00109{height:58.896000px;}
.h1_c00109{height:1135.500000px;}
.h0_c00109{height:1135.506150px;}
.w0_c00109{width:893.950200px;}
.w1_c00109{width:894.000000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:77.603100px;}
.x3_c00109{left:94.611000px;}
.x2_c00109{left:277.122600px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:21.290667pt;}
.ls7_c00109{letter-spacing:-5.888000pt;}
.ls6_c00109{letter-spacing:-3.136000pt;}
.ls5_c00109{letter-spacing:-1.536000pt;}
.ls4_c00109{letter-spacing:-1.280000pt;}
.ls2_c00109{letter-spacing:-0.640000pt;}
.ls3_c00109{letter-spacing:-0.320000pt;}
.ls9_c00109{letter-spacing:-0.213333pt;}
.ls8_c00109{letter-spacing:-0.085333pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.085333pt;}
.ws4_c00109{word-spacing:-14.656000pt;}
.ws1_c00109{word-spacing:-14.528000pt;}
.ws5_c00109{word-spacing:-13.248000pt;}
.ws2_c00109{word-spacing:-13.120000pt;}
.ws6_c00109{word-spacing:-11.392000pt;}
.ws7_c00109{word-spacing:-8.640000pt;}
.ws3_c00109{word-spacing:-8.469824pt;}
.ws10_c00109{word-spacing:-2.624000pt;}
.wsd_c00109{word-spacing:-2.560000pt;}
.ws19_c00109{word-spacing:-2.304000pt;}
.ws20_c00109{word-spacing:-1.920000pt;}
.ws1f_c00109{word-spacing:-1.216000pt;}
.ws2a_c00109{word-spacing:-1.152000pt;}
.ws24_c00109{word-spacing:-1.088000pt;}
.ws27_c00109{word-spacing:-0.810667pt;}
.ws1e_c00109{word-spacing:-0.576000pt;}
.ws15_c00109{word-spacing:-0.192000pt;}
.ws26_c00109{word-spacing:-0.170667pt;}
.ws8_c00109{word-spacing:0.000000pt;}
.ws2b_c00109{word-spacing:0.213333pt;}
.ws11_c00109{word-spacing:0.576000pt;}
.ws28_c00109{word-spacing:0.597333pt;}
.ws1b_c00109{word-spacing:0.640000pt;}
.ws29_c00109{word-spacing:0.768000pt;}
.ws18_c00109{word-spacing:0.832000pt;}
.ws13_c00109{word-spacing:1.280000pt;}
.ws12_c00109{word-spacing:1.536000pt;}
.ws16_c00109{word-spacing:1.856000pt;}
.ws17_c00109{word-spacing:1.920000pt;}
.wsc_c00109{word-spacing:2.944000pt;}
.ws25_c00109{word-spacing:3.328000pt;}
.wsb_c00109{word-spacing:3.520000pt;}
.wse_c00109{word-spacing:3.776000pt;}
.ws22_c00109{word-spacing:4.544000pt;}
.ws23_c00109{word-spacing:5.248000pt;}
.ws1c_c00109{word-spacing:6.208000pt;}
.ws1a_c00109{word-spacing:6.336000pt;}
.ws14_c00109{word-spacing:6.656000pt;}
.wsf_c00109{word-spacing:6.720000pt;}
.ws21_c00109{word-spacing:7.104000pt;}
.ws1d_c00109{word-spacing:8.384000pt;}
.wsa_c00109{word-spacing:9.600000pt;}
.ws9_c00109{word-spacing:9.920000pt;}
.ws0_c00109{word-spacing:1404.070400pt;}
._2_c00109{margin-left:-5.888000pt;}
._5_c00109{margin-left:-4.437333pt;}
._0_c00109{margin-left:-1.877333pt;}
._1_c00109{margin-left:-0.981333pt;}
._3_c00109{width:1.045333pt;}
._4_c00109{width:2.368000pt;}
._6_c00109{width:5.312000pt;}
._8_c00109{width:18.432000pt;}
._7_c00109{width:26.538667pt;}
.fs2_c00109{font-size:37.312000pt;}
.fs0_c00109{font-size:42.666667pt;}
.fs3_c00109{font-size:53.333333pt;}
.fs1_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y27_c00109{bottom:99.214400pt;}
.y26_c00109{bottom:112.547733pt;}
.y25_c00109{bottom:125.881067pt;}
.y24_c00109{bottom:139.214400pt;}
.y23_c00109{bottom:152.547733pt;}
.y22_c00109{bottom:165.881067pt;}
.y21_c00109{bottom:186.773467pt;}
.y20_c00109{bottom:226.637733pt;}
.y1f_c00109{bottom:248.637733pt;}
.y1e_c00109{bottom:270.637733pt;}
.y1d_c00109{bottom:292.637733pt;}
.y1c_c00109{bottom:314.637733pt;}
.y31_c00109{bottom:349.260933pt;}
.y1b_c00109{bottom:349.976400pt;}
.y30_c00109{bottom:365.794267pt;}
.y1a_c00109{bottom:371.976400pt;}
.y2f_c00109{bottom:382.327600pt;}
.y19_c00109{bottom:393.976400pt;}
.y2e_c00109{bottom:398.860933pt;}
.y2d_c00109{bottom:415.394267pt;}
.y18_c00109{bottom:415.976400pt;}
.y17_c00109{bottom:437.976400pt;}
.y16_c00109{bottom:459.976400pt;}
.y15_c00109{bottom:481.976400pt;}
.y14_c00109{bottom:503.976400pt;}
.y13_c00109{bottom:539.304400pt;}
.y12_c00109{bottom:561.304400pt;}
.y11_c00109{bottom:583.304400pt;}
.y10_c00109{bottom:605.309733pt;}
.yf_c00109{bottom:627.309733pt;}
.ye_c00109{bottom:649.309733pt;}
.y2c_c00109{bottom:656.933200pt;}
.yd_c00109{bottom:671.309733pt;}
.y2b_c00109{bottom:673.466533pt;}
.y2a_c00109{bottom:689.999867pt;}
.yc_c00109{bottom:693.309733pt;}
.y29_c00109{bottom:706.533200pt;}
.yb_c00109{bottom:715.309733pt;}
.y28_c00109{bottom:723.066533pt;}
.ya_c00109{bottom:737.309733pt;}
.y9_c00109{bottom:759.309733pt;}
.y8_c00109{bottom:781.309733pt;}
.y7_c00109{bottom:803.309733pt;}
.y6_c00109{bottom:838.637733pt;}
.y5_c00109{bottom:860.637733pt;}
.y4_c00109{bottom:882.637733pt;}
.y3_c00109{bottom:904.637733pt;}
.y2_c00109{bottom:926.637733pt;}
.y1_c00109{bottom:972.089733pt;}
.h2_c00109{height:34.901333pt;}
.h5_c00109{height:43.200000pt;}
.h4_c00109{height:43.626667pt;}
.h3_c00109{height:52.352000pt;}
.h1_c00109{height:1009.333333pt;}
.h0_c00109{height:1009.338800pt;}
.w0_c00109{width:794.622400pt;}
.w1_c00109{width:794.666667pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:68.980533pt;}
.x3_c00109{left:84.098667pt;}
.x2_c00109{left:246.331200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc0b8d802f8850e1a0271b3a.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_195b2538f5531ea02f141118.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.067000;font-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_c00110{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls6_c00110{letter-spacing:-1.512000px;}
.ls5_c00110{letter-spacing:-1.368000px;}
.ls4_c00110{letter-spacing:-0.567000px;}
.ls7_c00110{letter-spacing:-0.288000px;}
.ls3_c00110{letter-spacing:-0.189000px;}
.ls2_c00110{letter-spacing:0.000000px;}
.ls1_c00110{letter-spacing:0.216000px;}
.ls0_c00110{letter-spacing:0.480000px;}
.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;}
}
.ws4_c00110{word-spacing:-16.344000px;}
.ws6_c00110{word-spacing:-16.056000px;}
.ws5_c00110{word-spacing:-14.832000px;}
.ws1_c00110{word-spacing:-14.427000px;}
.ws2_c00110{word-spacing:-14.301000px;}
.ws3_c00110{word-spacing:-13.734000px;}
.ws0_c00110{word-spacing:-10.896000px;}
.ws15_c00110{word-spacing:-3.240000px;}
.ws18_c00110{word-spacing:-2.376000px;}
.ws10_c00110{word-spacing:-1.656000px;}
.ws8_c00110{word-spacing:-1.008000px;}
.ws14_c00110{word-spacing:-0.432000px;}
.ws7_c00110{word-spacing:0.000000px;}
.ws9_c00110{word-spacing:0.189000px;}
.ws16_c00110{word-spacing:0.864000px;}
.ws11_c00110{word-spacing:0.936000px;}
.wsd_c00110{word-spacing:1.368000px;}
.wsf_c00110{word-spacing:1.584000px;}
.wse_c00110{word-spacing:2.088000px;}
.ws17_c00110{word-spacing:3.960000px;}
.wsa_c00110{word-spacing:5.832000px;}
.ws12_c00110{word-spacing:6.552000px;}
.wsb_c00110{word-spacing:7.200000px;}
.ws13_c00110{word-spacing:8.280000px;}
.wsc_c00110{word-spacing:8.424000px;}
._0_c00110{margin-left:-2755.276200px;}
._5_c00110{margin-left:-6.717000px;}
._7_c00110{margin-left:-4.746000px;}
._1_c00110{margin-left:-2.256000px;}
._3_c00110{margin-left:-1.083000px;}
._2_c00110{width:1.008000px;}
._4_c00110{width:2.523000px;}
._6_c00110{width:67.176000px;}
.fc0_c00110{color:rgb(35,31,32);}
.fs0_c00110{font-size:48.000000px;}
.fs3_c00110{font-size:60.000000px;}
.fs1_c00110{font-size:63.000000px;}
.fs2_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y19_c00110{bottom:112.409100px;}
.y18_c00110{bottom:131.009100px;}
.y17_c00110{bottom:460.839450px;}
.y16_c00110{bottom:485.589450px;}
.y15_c00110{bottom:510.339450px;}
.y14_c00110{bottom:535.089450px;}
.y13_c00110{bottom:559.839450px;}
.y12_c00110{bottom:584.589450px;}
.y11_c00110{bottom:609.339450px;}
.y10_c00110{bottom:634.089450px;}
.yf_c00110{bottom:658.839450px;}
.ye_c00110{bottom:683.589450px;}
.yd_c00110{bottom:723.339450px;}
.yc_c00110{bottom:784.349250px;}
.yb_c00110{bottom:809.099250px;}
.ya_c00110{bottom:833.849250px;}
.y9_c00110{bottom:858.599250px;}
.y8_c00110{bottom:883.349250px;}
.y7_c00110{bottom:908.099250px;}
.y6_c00110{bottom:932.849250px;}
.y5_c00110{bottom:972.613800px;}
.y4_c00110{bottom:993.608550px;}
.y3_c00110{bottom:1018.855800px;}
.y2_c00110{bottom:1044.103050px;}
.y1_c00110{bottom:1093.600950px;}
.h2_c00110{height:39.264000px;}
.h3_c00110{height:39.984000px;}
.h8_c00110{height:48.600000px;}
.h7_c00110{height:49.080000px;}
.h4_c00110{height:51.030000px;}
.h5_c00110{height:51.534000px;}
.h6_c00110{height:58.896000px;}
.h1_c00110{height:1135.500000px;}
.h0_c00110{height:1135.506150px;}
.w0_c00110{width:893.950200px;}
.w1_c00110{width:894.000000px;}
.x0_c00110{left:0.000000px;}
.x5_c00110{left:128.626800px;}
.x4_c00110{left:149.886600px;}
.x2_c00110{left:188.061900px;}
.x3_c00110{left:190.513350px;}
.x1_c00110{left:801.173850px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls6_c00110{letter-spacing:-1.344000pt;}
.ls5_c00110{letter-spacing:-1.216000pt;}
.ls4_c00110{letter-spacing:-0.504000pt;}
.ls7_c00110{letter-spacing:-0.256000pt;}
.ls3_c00110{letter-spacing:-0.168000pt;}
.ls2_c00110{letter-spacing:0.000000pt;}
.ls1_c00110{letter-spacing:0.192000pt;}
.ls0_c00110{letter-spacing:0.426667pt;}
.ws4_c00110{word-spacing:-14.528000pt;}
.ws6_c00110{word-spacing:-14.272000pt;}
.ws5_c00110{word-spacing:-13.184000pt;}
.ws1_c00110{word-spacing:-12.824000pt;}
.ws2_c00110{word-spacing:-12.712000pt;}
.ws3_c00110{word-spacing:-12.208000pt;}
.ws0_c00110{word-spacing:-9.685333pt;}
.ws15_c00110{word-spacing:-2.880000pt;}
.ws18_c00110{word-spacing:-2.112000pt;}
.ws10_c00110{word-spacing:-1.472000pt;}
.ws8_c00110{word-spacing:-0.896000pt;}
.ws14_c00110{word-spacing:-0.384000pt;}
.ws7_c00110{word-spacing:0.000000pt;}
.ws9_c00110{word-spacing:0.168000pt;}
.ws16_c00110{word-spacing:0.768000pt;}
.ws11_c00110{word-spacing:0.832000pt;}
.wsd_c00110{word-spacing:1.216000pt;}
.wsf_c00110{word-spacing:1.408000pt;}
.wse_c00110{word-spacing:1.856000pt;}
.ws17_c00110{word-spacing:3.520000pt;}
.wsa_c00110{word-spacing:5.184000pt;}
.ws12_c00110{word-spacing:5.824000pt;}
.wsb_c00110{word-spacing:6.400000pt;}
.ws13_c00110{word-spacing:7.360000pt;}
.wsc_c00110{word-spacing:7.488000pt;}
._0_c00110{margin-left:-2449.134400pt;}
._5_c00110{margin-left:-5.970667pt;}
._7_c00110{margin-left:-4.218667pt;}
._1_c00110{margin-left:-2.005333pt;}
._3_c00110{margin-left:-0.962667pt;}
._2_c00110{width:0.896000pt;}
._4_c00110{width:2.242667pt;}
._6_c00110{width:59.712000pt;}
.fs0_c00110{font-size:42.666667pt;}
.fs3_c00110{font-size:53.333333pt;}
.fs1_c00110{font-size:56.000000pt;}
.fs2_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y19_c00110{bottom:99.919200pt;}
.y18_c00110{bottom:116.452533pt;}
.y17_c00110{bottom:409.635067pt;}
.y16_c00110{bottom:431.635067pt;}
.y15_c00110{bottom:453.635067pt;}
.y14_c00110{bottom:475.635067pt;}
.y13_c00110{bottom:497.635067pt;}
.y12_c00110{bottom:519.635067pt;}
.y11_c00110{bottom:541.635067pt;}
.y10_c00110{bottom:563.635067pt;}
.yf_c00110{bottom:585.635067pt;}
.ye_c00110{bottom:607.635067pt;}
.yd_c00110{bottom:642.968400pt;}
.yc_c00110{bottom:697.199333pt;}
.yb_c00110{bottom:719.199333pt;}
.ya_c00110{bottom:741.199333pt;}
.y9_c00110{bottom:763.199333pt;}
.y8_c00110{bottom:785.199333pt;}
.y7_c00110{bottom:807.199333pt;}
.y6_c00110{bottom:829.199333pt;}
.y5_c00110{bottom:864.545600pt;}
.y4_c00110{bottom:883.207600pt;}
.y3_c00110{bottom:905.649600pt;}
.y2_c00110{bottom:928.091600pt;}
.y1_c00110{bottom:972.089733pt;}
.h2_c00110{height:34.901333pt;}
.h3_c00110{height:35.541333pt;}
.h8_c00110{height:43.200000pt;}
.h7_c00110{height:43.626667pt;}
.h4_c00110{height:45.360000pt;}
.h5_c00110{height:45.808000pt;}
.h6_c00110{height:52.352000pt;}
.h1_c00110{height:1009.333333pt;}
.h0_c00110{height:1009.338800pt;}
.w0_c00110{width:794.622400pt;}
.w1_c00110{width:794.666667pt;}
.x0_c00110{left:0.000000pt;}
.x5_c00110{left:114.334933pt;}
.x4_c00110{left:133.232533pt;}
.x2_c00110{left:167.166133pt;}
.x3_c00110{left:169.345200pt;}
.x1_c00110{left:712.154533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f46dfb7e9dd619d1384d2f9.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_e1a8d90c0fceaa015dc0356d.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.v1_c00111{vertical-align:23.952000px;}
.ls12_c00111{letter-spacing:-7.056000px;}
.lsf_c00111{letter-spacing:-1.584000px;}
.ls10_c00111{letter-spacing:-1.224000px;}
.ls11_c00111{letter-spacing:-1.080000px;}
.lsd_c00111{letter-spacing:-0.792000px;}
.lse_c00111{letter-spacing:-0.648000px;}
.lsa_c00111{letter-spacing:-0.576000px;}
.lsb_c00111{letter-spacing:-0.360000px;}
.ls14_c00111{letter-spacing:-0.336000px;}
.ls13_c00111{letter-spacing:-0.192000px;}
.lsc_c00111{letter-spacing:-0.144000px;}
.ls8_c00111{letter-spacing:0.000000px;}
.ls4_c00111{letter-spacing:0.072000px;}
.ls3_c00111{letter-spacing:0.083064px;}
.ls5_c00111{letter-spacing:0.083760px;}
.ls1_c00111{letter-spacing:0.144000px;}
.ls7_c00111{letter-spacing:0.240000px;}
.ls6_c00111{letter-spacing:0.288000px;}
.ls0_c00111{letter-spacing:0.360000px;}
.ls2_c00111{letter-spacing:0.504000px;}
.ls15_c00111{letter-spacing:0.576000px;}
.ls9_c00111{letter-spacing:0.792000px;}
.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:-17.136000px;}
.ws4_c00111{word-spacing:-16.488000px;}
.ws1_c00111{word-spacing:-16.344000px;}
.ws5_c00111{word-spacing:-15.984000px;}
.ws6_c00111{word-spacing:-15.840000px;}
.wsa_c00111{word-spacing:-11.472000px;}
.wsb_c00111{word-spacing:-11.136000px;}
.ws8_c00111{word-spacing:-10.992000px;}
.ws9_c00111{word-spacing:-10.896000px;}
.ws7_c00111{word-spacing:-9.612504px;}
.ws3_c00111{word-spacing:-9.528552px;}
.ws1f_c00111{word-spacing:-3.312000px;}
.ws15_c00111{word-spacing:-2.448000px;}
.ws18_c00111{word-spacing:-2.160000px;}
.ws17_c00111{word-spacing:-1.944000px;}
.ws16_c00111{word-spacing:-1.728000px;}
.ws27_c00111{word-spacing:-1.584000px;}
.ws19_c00111{word-spacing:-1.512000px;}
.ws34_c00111{word-spacing:-1.344000px;}
.ws22_c00111{word-spacing:-1.296000px;}
.ws2f_c00111{word-spacing:-0.576000px;}
.wsf_c00111{word-spacing:-0.432000px;}
.ws2e_c00111{word-spacing:-0.240000px;}
.ws1e_c00111{word-spacing:-0.216000px;}
.ws14_c00111{word-spacing:-0.144000px;}
.wse_c00111{word-spacing:-0.072000px;}
.wsc_c00111{word-spacing:0.000000px;}
.ws1b_c00111{word-spacing:0.072000px;}
.wsd_c00111{word-spacing:0.144000px;}
.ws2b_c00111{word-spacing:0.192000px;}
.ws31_c00111{word-spacing:0.288000px;}
.ws32_c00111{word-spacing:0.336000px;}
.ws20_c00111{word-spacing:0.360000px;}
.ws21_c00111{word-spacing:0.648000px;}
.ws2a_c00111{word-spacing:0.720000px;}
.ws10_c00111{word-spacing:0.864000px;}
.ws1d_c00111{word-spacing:1.152000px;}
.ws1c_c00111{word-spacing:1.224000px;}
.ws33_c00111{word-spacing:1.536000px;}
.ws29_c00111{word-spacing:1.584000px;}
.ws26_c00111{word-spacing:2.376000px;}
.ws12_c00111{word-spacing:2.592000px;}
.ws1a_c00111{word-spacing:2.736000px;}
.ws11_c00111{word-spacing:2.952000px;}
.ws25_c00111{word-spacing:3.240000px;}
.ws30_c00111{word-spacing:3.840000px;}
.ws2c_c00111{word-spacing:3.984000px;}
.ws2d_c00111{word-spacing:4.368000px;}
.ws23_c00111{word-spacing:5.112000px;}
.ws13_c00111{word-spacing:5.256000px;}
.ws24_c00111{word-spacing:6.336000px;}
.ws28_c00111{word-spacing:6.624000px;}
.ws0_c00111{word-spacing:1585.627200px;}
._4_c00111{margin-left:-5.640000px;}
._5_c00111{margin-left:-3.840000px;}
._0_c00111{margin-left:-2.112000px;}
._1_c00111{margin-left:-1.104000px;}
._2_c00111{width:1.248000px;}
._3_c00111{width:2.352000px;}
._7_c00111{width:4.944000px;}
._6_c00111{width:7.368000px;}
._9_c00111{width:22.863000px;}
._8_c00111{width:26.703000px;}
._b_c00111{width:30.840000px;}
._a_c00111{width:37.056000px;}
.fc0_c00111{color:rgb(35,31,32);}
.fs2_c00111{font-size:41.976000px;}
.fs0_c00111{font-size:48.000000px;}
.fs1_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y28_c00111{bottom:111.616350px;}
.y27_c00111{bottom:126.616350px;}
.y26_c00111{bottom:141.616350px;}
.y25_c00111{bottom:156.616350px;}
.y24_c00111{bottom:171.616350px;}
.y23_c00111{bottom:186.616350px;}
.y22_c00111{bottom:201.616350px;}
.y21_c00111{bottom:225.120300px;}
.y20_c00111{bottom:248.624250px;}
.y1f_c00111{bottom:272.128050px;}
.y1e_c00111{bottom:287.128050px;}
.y1d_c00111{bottom:310.632000px;}
.y1c_c00111{bottom:325.632000px;}
.y1b_c00111{bottom:349.135950px;}
.y1a_c00111{bottom:372.639900px;}
.y19_c00111{bottom:428.217450px;}
.y18_c00111{bottom:452.967450px;}
.y17_c00111{bottom:477.717450px;}
.y16_c00111{bottom:502.467450px;}
.y15_c00111{bottom:527.217450px;}
.y14_c00111{bottom:551.967450px;}
.y13_c00111{bottom:576.717450px;}
.y12_c00111{bottom:601.467450px;}
.y11_c00111{bottom:626.217450px;}
.y10_c00111{bottom:665.973450px;}
.yf_c00111{bottom:690.723450px;}
.ye_c00111{bottom:715.473450px;}
.yd_c00111{bottom:740.223450px;}
.yc_c00111{bottom:779.967450px;}
.yb_c00111{bottom:804.717450px;}
.ya_c00111{bottom:829.467450px;}
.y9_c00111{bottom:854.217450px;}
.y8_c00111{bottom:878.967450px;}
.y7_c00111{bottom:903.723450px;}
.y6_c00111{bottom:928.473450px;}
.y5_c00111{bottom:968.217450px;}
.y4_c00111{bottom:992.967450px;}
.y3_c00111{bottom:1017.717450px;}
.y2_c00111{bottom:1042.467450px;}
.y1_c00111{bottom:1093.601100px;}
.h2_c00111{height:39.264000px;}
.h3_c00111{height:58.896000px;}
.h1_c00111{height:1135.500000px;}
.h0_c00111{height:1135.506150px;}
.w0_c00111{width:893.950200px;}
.w1_c00111{width:894.000000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:77.603100px;}
.x2_c00111{left:94.611000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.v1_c00111{vertical-align:21.290667pt;}
.ls12_c00111{letter-spacing:-6.272000pt;}
.lsf_c00111{letter-spacing:-1.408000pt;}
.ls10_c00111{letter-spacing:-1.088000pt;}
.ls11_c00111{letter-spacing:-0.960000pt;}
.lsd_c00111{letter-spacing:-0.704000pt;}
.lse_c00111{letter-spacing:-0.576000pt;}
.lsa_c00111{letter-spacing:-0.512000pt;}
.lsb_c00111{letter-spacing:-0.320000pt;}
.ls14_c00111{letter-spacing:-0.298667pt;}
.ls13_c00111{letter-spacing:-0.170667pt;}
.lsc_c00111{letter-spacing:-0.128000pt;}
.ls8_c00111{letter-spacing:0.000000pt;}
.ls4_c00111{letter-spacing:0.064000pt;}
.ls3_c00111{letter-spacing:0.073835pt;}
.ls5_c00111{letter-spacing:0.074453pt;}
.ls1_c00111{letter-spacing:0.128000pt;}
.ls7_c00111{letter-spacing:0.213333pt;}
.ls6_c00111{letter-spacing:0.256000pt;}
.ls0_c00111{letter-spacing:0.320000pt;}
.ls2_c00111{letter-spacing:0.448000pt;}
.ls15_c00111{letter-spacing:0.512000pt;}
.ls9_c00111{letter-spacing:0.704000pt;}
.ws2_c00111{word-spacing:-15.232000pt;}
.ws4_c00111{word-spacing:-14.656000pt;}
.ws1_c00111{word-spacing:-14.528000pt;}
.ws5_c00111{word-spacing:-14.208000pt;}
.ws6_c00111{word-spacing:-14.080000pt;}
.wsa_c00111{word-spacing:-10.197333pt;}
.wsb_c00111{word-spacing:-9.898667pt;}
.ws8_c00111{word-spacing:-9.770667pt;}
.ws9_c00111{word-spacing:-9.685333pt;}
.ws7_c00111{word-spacing:-8.544448pt;}
.ws3_c00111{word-spacing:-8.469824pt;}
.ws1f_c00111{word-spacing:-2.944000pt;}
.ws15_c00111{word-spacing:-2.176000pt;}
.ws18_c00111{word-spacing:-1.920000pt;}
.ws17_c00111{word-spacing:-1.728000pt;}
.ws16_c00111{word-spacing:-1.536000pt;}
.ws27_c00111{word-spacing:-1.408000pt;}
.ws19_c00111{word-spacing:-1.344000pt;}
.ws34_c00111{word-spacing:-1.194667pt;}
.ws22_c00111{word-spacing:-1.152000pt;}
.ws2f_c00111{word-spacing:-0.512000pt;}
.wsf_c00111{word-spacing:-0.384000pt;}
.ws2e_c00111{word-spacing:-0.213333pt;}
.ws1e_c00111{word-spacing:-0.192000pt;}
.ws14_c00111{word-spacing:-0.128000pt;}
.wse_c00111{word-spacing:-0.064000pt;}
.wsc_c00111{word-spacing:0.000000pt;}
.ws1b_c00111{word-spacing:0.064000pt;}
.wsd_c00111{word-spacing:0.128000pt;}
.ws2b_c00111{word-spacing:0.170667pt;}
.ws31_c00111{word-spacing:0.256000pt;}
.ws32_c00111{word-spacing:0.298667pt;}
.ws20_c00111{word-spacing:0.320000pt;}
.ws21_c00111{word-spacing:0.576000pt;}
.ws2a_c00111{word-spacing:0.640000pt;}
.ws10_c00111{word-spacing:0.768000pt;}
.ws1d_c00111{word-spacing:1.024000pt;}
.ws1c_c00111{word-spacing:1.088000pt;}
.ws33_c00111{word-spacing:1.365333pt;}
.ws29_c00111{word-spacing:1.408000pt;}
.ws26_c00111{word-spacing:2.112000pt;}
.ws12_c00111{word-spacing:2.304000pt;}
.ws1a_c00111{word-spacing:2.432000pt;}
.ws11_c00111{word-spacing:2.624000pt;}
.ws25_c00111{word-spacing:2.880000pt;}
.ws30_c00111{word-spacing:3.413333pt;}
.ws2c_c00111{word-spacing:3.541333pt;}
.ws2d_c00111{word-spacing:3.882667pt;}
.ws23_c00111{word-spacing:4.544000pt;}
.ws13_c00111{word-spacing:4.672000pt;}
.ws24_c00111{word-spacing:5.632000pt;}
.ws28_c00111{word-spacing:5.888000pt;}
.ws0_c00111{word-spacing:1409.446400pt;}
._4_c00111{margin-left:-5.013333pt;}
._5_c00111{margin-left:-3.413333pt;}
._0_c00111{margin-left:-1.877333pt;}
._1_c00111{margin-left:-0.981333pt;}
._2_c00111{width:1.109333pt;}
._3_c00111{width:2.090667pt;}
._7_c00111{width:4.394667pt;}
._6_c00111{width:6.549333pt;}
._9_c00111{width:20.322667pt;}
._8_c00111{width:23.736000pt;}
._b_c00111{width:27.413333pt;}
._a_c00111{width:32.938667pt;}
.fs2_c00111{font-size:37.312000pt;}
.fs0_c00111{font-size:42.666667pt;}
.fs1_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y28_c00111{bottom:99.214533pt;}
.y27_c00111{bottom:112.547867pt;}
.y26_c00111{bottom:125.881200pt;}
.y25_c00111{bottom:139.214533pt;}
.y24_c00111{bottom:152.547867pt;}
.y23_c00111{bottom:165.881200pt;}
.y22_c00111{bottom:179.214533pt;}
.y21_c00111{bottom:200.106933pt;}
.y20_c00111{bottom:220.999333pt;}
.y1f_c00111{bottom:241.891600pt;}
.y1e_c00111{bottom:255.224933pt;}
.y1d_c00111{bottom:276.117333pt;}
.y1c_c00111{bottom:289.450667pt;}
.y1b_c00111{bottom:310.343067pt;}
.y1a_c00111{bottom:331.235467pt;}
.y19_c00111{bottom:380.637733pt;}
.y18_c00111{bottom:402.637733pt;}
.y17_c00111{bottom:424.637733pt;}
.y16_c00111{bottom:446.637733pt;}
.y15_c00111{bottom:468.637733pt;}
.y14_c00111{bottom:490.637733pt;}
.y13_c00111{bottom:512.637733pt;}
.y12_c00111{bottom:534.637733pt;}
.y11_c00111{bottom:556.637733pt;}
.y10_c00111{bottom:591.976400pt;}
.yf_c00111{bottom:613.976400pt;}
.ye_c00111{bottom:635.976400pt;}
.yd_c00111{bottom:657.976400pt;}
.yc_c00111{bottom:693.304400pt;}
.yb_c00111{bottom:715.304400pt;}
.ya_c00111{bottom:737.304400pt;}
.y9_c00111{bottom:759.304400pt;}
.y8_c00111{bottom:781.304400pt;}
.y7_c00111{bottom:803.309733pt;}
.y6_c00111{bottom:825.309733pt;}
.y5_c00111{bottom:860.637733pt;}
.y4_c00111{bottom:882.637733pt;}
.y3_c00111{bottom:904.637733pt;}
.y2_c00111{bottom:926.637733pt;}
.y1_c00111{bottom:972.089867pt;}
.h2_c00111{height:34.901333pt;}
.h3_c00111{height:52.352000pt;}
.h1_c00111{height:1009.333333pt;}
.h0_c00111{height:1009.338800pt;}
.w0_c00111{width:794.622400pt;}
.w1_c00111{width:794.666667pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:68.980533pt;}
.x2_c00111{left:84.098667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07d72ecbb44c9217965284d4.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.067000;font-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_c00112{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.v2_c00112{vertical-align:20.915400px;}
.v1_c00112{vertical-align:23.952000px;}
.lsa_c00112{letter-spacing:-1.872000px;}
.ls9_c00112{letter-spacing:-1.440000px;}
.lsc_c00112{letter-spacing:-1.368000px;}
.lse_c00112{letter-spacing:-1.224000px;}
.lsd_c00112{letter-spacing:-0.936000px;}
.ls10_c00112{letter-spacing:-0.864000px;}
.ls12_c00112{letter-spacing:-0.768000px;}
.ls7_c00112{letter-spacing:-0.720000px;}
.ls11_c00112{letter-spacing:-0.480000px;}
.lsb_c00112{letter-spacing:-0.419760px;}
.ls6_c00112{letter-spacing:-0.360000px;}
.lsf_c00112{letter-spacing:-0.288000px;}
.ls8_c00112{letter-spacing:-0.072000px;}
.ls5_c00112{letter-spacing:0.000000px;}
.ls1_c00112{letter-spacing:0.189000px;}
.ls4_c00112{letter-spacing:0.216000px;}
.ls2_c00112{letter-spacing:0.315000px;}
.ls0_c00112{letter-spacing:0.480000px;}
.ls3_c00112{letter-spacing:0.630000px;}
.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:-16.344000px;}
.ws6_c00112{word-spacing:-16.056000px;}
.ws7_c00112{word-spacing:-15.480000px;}
.ws4_c00112{word-spacing:-14.976000px;}
.ws2_c00112{word-spacing:-14.616000px;}
.ws5_c00112{word-spacing:-14.301000px;}
.ws0_c00112{word-spacing:-10.896000px;}
.ws8_c00112{word-spacing:-10.224000px;}
.ws3_c00112{word-spacing:-9.108792px;}
.ws13_c00112{word-spacing:-3.096000px;}
.ws16_c00112{word-spacing:-2.808000px;}
.wsf_c00112{word-spacing:-2.664000px;}
.ws14_c00112{word-spacing:-2.592000px;}
.ws11_c00112{word-spacing:-2.016000px;}
.wse_c00112{word-spacing:-1.944000px;}
.ws1e_c00112{word-spacing:-1.872000px;}
.ws1d_c00112{word-spacing:-1.575000px;}
.ws17_c00112{word-spacing:-1.512000px;}
.ws12_c00112{word-spacing:-1.296000px;}
.ws1b_c00112{word-spacing:-1.134000px;}
.wsb_c00112{word-spacing:-1.008000px;}
.ws1f_c00112{word-spacing:-0.432000px;}
.ws1a_c00112{word-spacing:-0.189000px;}
.ws28_c00112{word-spacing:-0.048000px;}
.ws9_c00112{word-spacing:0.000000px;}
.wsc_c00112{word-spacing:0.072000px;}
.ws20_c00112{word-spacing:0.252000px;}
.ws10_c00112{word-spacing:0.432000px;}
.wsd_c00112{word-spacing:0.720000px;}
.ws15_c00112{word-spacing:0.936000px;}
.ws25_c00112{word-spacing:1.152000px;}
.ws22_c00112{word-spacing:1.701000px;}
.ws1c_c00112{word-spacing:1.890000px;}
.ws27_c00112{word-spacing:2.016000px;}
.ws26_c00112{word-spacing:2.160000px;}
.wsa_c00112{word-spacing:2.664000px;}
.ws23_c00112{word-spacing:3.456000px;}
.ws24_c00112{word-spacing:3.816000px;}
.ws18_c00112{word-spacing:4.032000px;}
.ws19_c00112{word-spacing:5.256000px;}
.ws21_c00112{word-spacing:5.796000px;}
._0_c00112{margin-left:-2755.275600px;}
._7_c00112{margin-left:-6.624000px;}
._6_c00112{margin-left:-4.536000px;}
._4_c00112{margin-left:-3.384000px;}
._1_c00112{margin-left:-2.256000px;}
._3_c00112{margin-left:-1.128000px;}
._2_c00112{width:1.008000px;}
._8_c00112{width:2.088000px;}
._5_c00112{width:3.240000px;}
._9_c00112{width:4.463400px;}
._a_c00112{width:13.551600px;}
.fc0_c00112{color:rgb(35,31,32);}
.fs4_c00112{font-size:36.729000px;}
.fs2_c00112{font-size:41.976000px;}
.fs0_c00112{font-size:48.000000px;}
.fs3_c00112{font-size:63.000000px;}
.fs1_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.y25_c00112{bottom:111.612300px;}
.y24_c00112{bottom:135.120300px;}
.y23_c00112{bottom:150.120300px;}
.y22_c00112{bottom:192.209700px;}
.y21_c00112{bottom:216.959700px;}
.y20_c00112{bottom:241.709700px;}
.y1f_c00112{bottom:266.459700px;}
.y1e_c00112{bottom:291.209700px;}
.y1d_c00112{bottom:315.959700px;}
.y1c_c00112{bottom:340.709700px;}
.y1b_c00112{bottom:380.475450px;}
.y1a_c00112{bottom:401.470200px;}
.y19_c00112{bottom:422.464950px;}
.y18_c00112{bottom:443.459700px;}
.y17_c00112{bottom:472.969650px;}
.y16_c00112{bottom:497.719650px;}
.y15_c00112{bottom:537.463650px;}
.y14_c00112{bottom:562.213650px;}
.y13_c00112{bottom:601.984500px;}
.y12_c00112{bottom:622.979250px;}
.y11_c00112{bottom:643.974000px;}
.y10_c00112{bottom:664.968750px;}
.yf_c00112{bottom:685.963500px;}
.ye_c00112{bottom:715.473450px;}
.yd_c00112{bottom:740.223450px;}
.yc_c00112{bottom:764.973450px;}
.yb_c00112{bottom:789.723450px;}
.ya_c00112{bottom:829.467450px;}
.y9_c00112{bottom:854.217450px;}
.y8_c00112{bottom:878.967450px;}
.y7_c00112{bottom:903.717450px;}
.y6_c00112{bottom:928.473450px;}
.y5_c00112{bottom:953.223450px;}
.y4_c00112{bottom:977.973450px;}
.y3_c00112{bottom:1017.717450px;}
.y2_c00112{bottom:1042.467450px;}
.y1_c00112{bottom:1093.601100px;}
.h2_c00112{height:39.264000px;}
.h6_c00112{height:39.280200px;}
.h3_c00112{height:39.984000px;}
.h5_c00112{height:51.534000px;}
.h4_c00112{height:58.896000px;}
.h1_c00112{height:1135.500000px;}
.h0_c00112{height:1135.506150px;}
.w0_c00112{width:893.950200px;}
.w1_c00112{width:894.000000px;}
.x0_c00112{left:0.000000px;}
.x4_c00112{left:128.626800px;}
.x6_c00112{left:145.630800px;}
.x5_c00112{left:149.886600px;}
.x2_c00112{left:188.061900px;}
.x3_c00112{left:190.513350px;}
.x1_c00112{left:805.205700px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.v2_c00112{vertical-align:18.591467pt;}
.v1_c00112{vertical-align:21.290667pt;}
.lsa_c00112{letter-spacing:-1.664000pt;}
.ls9_c00112{letter-spacing:-1.280000pt;}
.lsc_c00112{letter-spacing:-1.216000pt;}
.lse_c00112{letter-spacing:-1.088000pt;}
.lsd_c00112{letter-spacing:-0.832000pt;}
.ls10_c00112{letter-spacing:-0.768000pt;}
.ls12_c00112{letter-spacing:-0.682667pt;}
.ls7_c00112{letter-spacing:-0.640000pt;}
.ls11_c00112{letter-spacing:-0.426667pt;}
.lsb_c00112{letter-spacing:-0.373120pt;}
.ls6_c00112{letter-spacing:-0.320000pt;}
.lsf_c00112{letter-spacing:-0.256000pt;}
.ls8_c00112{letter-spacing:-0.064000pt;}
.ls5_c00112{letter-spacing:0.000000pt;}
.ls1_c00112{letter-spacing:0.168000pt;}
.ls4_c00112{letter-spacing:0.192000pt;}
.ls2_c00112{letter-spacing:0.280000pt;}
.ls0_c00112{letter-spacing:0.426667pt;}
.ls3_c00112{letter-spacing:0.560000pt;}
.ws1_c00112{word-spacing:-14.528000pt;}
.ws6_c00112{word-spacing:-14.272000pt;}
.ws7_c00112{word-spacing:-13.760000pt;}
.ws4_c00112{word-spacing:-13.312000pt;}
.ws2_c00112{word-spacing:-12.992000pt;}
.ws5_c00112{word-spacing:-12.712000pt;}
.ws0_c00112{word-spacing:-9.685333pt;}
.ws8_c00112{word-spacing:-9.088000pt;}
.ws3_c00112{word-spacing:-8.096704pt;}
.ws13_c00112{word-spacing:-2.752000pt;}
.ws16_c00112{word-spacing:-2.496000pt;}
.wsf_c00112{word-spacing:-2.368000pt;}
.ws14_c00112{word-spacing:-2.304000pt;}
.ws11_c00112{word-spacing:-1.792000pt;}
.wse_c00112{word-spacing:-1.728000pt;}
.ws1e_c00112{word-spacing:-1.664000pt;}
.ws1d_c00112{word-spacing:-1.400000pt;}
.ws17_c00112{word-spacing:-1.344000pt;}
.ws12_c00112{word-spacing:-1.152000pt;}
.ws1b_c00112{word-spacing:-1.008000pt;}
.wsb_c00112{word-spacing:-0.896000pt;}
.ws1f_c00112{word-spacing:-0.384000pt;}
.ws1a_c00112{word-spacing:-0.168000pt;}
.ws28_c00112{word-spacing:-0.042667pt;}
.ws9_c00112{word-spacing:0.000000pt;}
.wsc_c00112{word-spacing:0.064000pt;}
.ws20_c00112{word-spacing:0.224000pt;}
.ws10_c00112{word-spacing:0.384000pt;}
.wsd_c00112{word-spacing:0.640000pt;}
.ws15_c00112{word-spacing:0.832000pt;}
.ws25_c00112{word-spacing:1.024000pt;}
.ws22_c00112{word-spacing:1.512000pt;}
.ws1c_c00112{word-spacing:1.680000pt;}
.ws27_c00112{word-spacing:1.792000pt;}
.ws26_c00112{word-spacing:1.920000pt;}
.wsa_c00112{word-spacing:2.368000pt;}
.ws23_c00112{word-spacing:3.072000pt;}
.ws24_c00112{word-spacing:3.392000pt;}
.ws18_c00112{word-spacing:3.584000pt;}
.ws19_c00112{word-spacing:4.672000pt;}
.ws21_c00112{word-spacing:5.152000pt;}
._0_c00112{margin-left:-2449.133867pt;}
._7_c00112{margin-left:-5.888000pt;}
._6_c00112{margin-left:-4.032000pt;}
._4_c00112{margin-left:-3.008000pt;}
._1_c00112{margin-left:-2.005333pt;}
._3_c00112{margin-left:-1.002667pt;}
._2_c00112{width:0.896000pt;}
._8_c00112{width:1.856000pt;}
._5_c00112{width:2.880000pt;}
._9_c00112{width:3.967467pt;}
._a_c00112{width:12.045867pt;}
.fs4_c00112{font-size:32.648000pt;}
.fs2_c00112{font-size:37.312000pt;}
.fs0_c00112{font-size:42.666667pt;}
.fs3_c00112{font-size:56.000000pt;}
.fs1_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y25_c00112{bottom:99.210933pt;}
.y24_c00112{bottom:120.106933pt;}
.y23_c00112{bottom:133.440267pt;}
.y22_c00112{bottom:170.853067pt;}
.y21_c00112{bottom:192.853067pt;}
.y20_c00112{bottom:214.853067pt;}
.y1f_c00112{bottom:236.853067pt;}
.y1e_c00112{bottom:258.853067pt;}
.y1d_c00112{bottom:280.853067pt;}
.y1c_c00112{bottom:302.853067pt;}
.y1b_c00112{bottom:338.200400pt;}
.y1a_c00112{bottom:356.862400pt;}
.y19_c00112{bottom:375.524400pt;}
.y18_c00112{bottom:394.186400pt;}
.y17_c00112{bottom:420.417467pt;}
.y16_c00112{bottom:442.417467pt;}
.y15_c00112{bottom:477.745467pt;}
.y14_c00112{bottom:499.745467pt;}
.y13_c00112{bottom:535.097333pt;}
.y12_c00112{bottom:553.759333pt;}
.y11_c00112{bottom:572.421333pt;}
.y10_c00112{bottom:591.083333pt;}
.yf_c00112{bottom:609.745333pt;}
.ye_c00112{bottom:635.976400pt;}
.yd_c00112{bottom:657.976400pt;}
.yc_c00112{bottom:679.976400pt;}
.yb_c00112{bottom:701.976400pt;}
.ya_c00112{bottom:737.304400pt;}
.y9_c00112{bottom:759.304400pt;}
.y8_c00112{bottom:781.304400pt;}
.y7_c00112{bottom:803.304400pt;}
.y6_c00112{bottom:825.309733pt;}
.y5_c00112{bottom:847.309733pt;}
.y4_c00112{bottom:869.309733pt;}
.y3_c00112{bottom:904.637733pt;}
.y2_c00112{bottom:926.637733pt;}
.y1_c00112{bottom:972.089867pt;}
.h2_c00112{height:34.901333pt;}
.h6_c00112{height:34.915733pt;}
.h3_c00112{height:35.541333pt;}
.h5_c00112{height:45.808000pt;}
.h4_c00112{height:52.352000pt;}
.h1_c00112{height:1009.333333pt;}
.h0_c00112{height:1009.338800pt;}
.w0_c00112{width:794.622400pt;}
.w1_c00112{width:794.666667pt;}
.x0_c00112{left:0.000000pt;}
.x4_c00112{left:114.334933pt;}
.x6_c00112{left:129.449600pt;}
.x5_c00112{left:133.232533pt;}
.x2_c00112{left:167.166133pt;}
.x3_c00112{left:169.345200pt;}
.x1_c00112{left:715.738400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cde5305a573c4b1be49495df.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.067000;font-style:normal;font-weight:normal;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_def3918aea17097b9f85ff5b.woff2')format("woff");}.ff4_c00113{font-family:ff4_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:ff5_c00113;src:url('chunks/assets/font_4d19c38bfc7cc863bd214d33.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.v1_c00113{vertical-align:24.096000px;}
.lsb_c00113{letter-spacing:-6.300000px;}
.lsd_c00113{letter-spacing:-1.080000px;}
.lsc_c00113{letter-spacing:-0.819000px;}
.lse_c00113{letter-spacing:-0.240000px;}
.ls8_c00113{letter-spacing:-0.072000px;}
.ls7_c00113{letter-spacing:0.000000px;}
.ls3_c00113{letter-spacing:0.288000px;}
.ls6_c00113{letter-spacing:0.315000px;}
.ls0_c00113{letter-spacing:0.360000px;}
.lsa_c00113{letter-spacing:0.432000px;}
.ls9_c00113{letter-spacing:0.503712px;}
.ls1_c00113{letter-spacing:0.576000px;}
.ls5_c00113{letter-spacing:0.645600px;}
.ls4_c00113{letter-spacing:0.720000px;}
.ls2_c00113{letter-spacing:0.792000px;}
.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;}
}
.ws3_c00113{word-spacing:-16.920000px;}
.ws5_c00113{word-spacing:-16.776000px;}
.ws1_c00113{word-spacing:-16.344000px;}
.ws7_c00113{word-spacing:-14.301000px;}
.ws8_c00113{word-spacing:-13.608000px;}
.ws9_c00113{word-spacing:-10.896000px;}
.wsa_c00113{word-spacing:-10.656000px;}
.ws4_c00113{word-spacing:-10.116216px;}
.ws2_c00113{word-spacing:-9.528552px;}
.ws6_c00113{word-spacing:-8.127000px;}
.ws19_c00113{word-spacing:-2.646000px;}
.ws20_c00113{word-spacing:-1.968000px;}
.ws1f_c00113{word-spacing:-1.872000px;}
.ws22_c00113{word-spacing:-1.824000px;}
.wsc_c00113{word-spacing:-1.728000px;}
.ws1a_c00113{word-spacing:-1.449000px;}
.ws16_c00113{word-spacing:-0.864000px;}
.ws1d_c00113{word-spacing:-0.720000px;}
.ws23_c00113{word-spacing:-0.672000px;}
.ws1b_c00113{word-spacing:-0.288000px;}
.ws15_c00113{word-spacing:-0.216000px;}
.ws17_c00113{word-spacing:-0.144000px;}
.wsb_c00113{word-spacing:0.000000px;}
.wse_c00113{word-spacing:0.288000px;}
.ws14_c00113{word-spacing:0.576000px;}
.ws1e_c00113{word-spacing:1.638000px;}
.ws18_c00113{word-spacing:1.944000px;}
.ws21_c00113{word-spacing:2.112000px;}
.ws1c_c00113{word-spacing:2.592000px;}
.ws10_c00113{word-spacing:2.664000px;}
.ws13_c00113{word-spacing:3.096000px;}
.wsf_c00113{word-spacing:3.168000px;}
.ws12_c00113{word-spacing:3.816000px;}
.ws24_c00113{word-spacing:3.888000px;}
.wsd_c00113{word-spacing:6.912000px;}
.ws11_c00113{word-spacing:9.000000px;}
.ws0_c00113{word-spacing:1589.659200px;}
._3_c00113{margin-left:-6.600000px;}
._4_c00113{margin-left:-4.416000px;}
._0_c00113{margin-left:-2.112000px;}
._1_c00113{margin-left:-1.104000px;}
._2_c00113{width:1.320000px;}
._5_c00113{width:5.733000px;}
._6_c00113{width:7.749000px;}
._7_c00113{width:10.320000px;}
.fc0_c00113{color:rgb(35,31,32);}
.fs2_c00113{font-size:41.976000px;}
.fs0_c00113{font-size:48.000000px;}
.fs3_c00113{font-size:63.000000px;}
.fs1_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y27_c00113{bottom:111.612150px;}
.y26_c00113{bottom:135.120150px;}
.y25_c00113{bottom:150.120150px;}
.y24_c00113{bottom:165.120150px;}
.y23_c00113{bottom:180.120150px;}
.y22_c00113{bottom:195.120150px;}
.y21_c00113{bottom:210.120150px;}
.y20_c00113{bottom:225.120150px;}
.y1f_c00113{bottom:274.568400px;}
.y1e_c00113{bottom:295.563150px;}
.y1d_c00113{bottom:320.810400px;}
.y1c_c00113{bottom:346.057650px;}
.y1b_c00113{bottom:375.561450px;}
.y1a_c00113{bottom:400.311450px;}
.y19_c00113{bottom:425.061450px;}
.y18_c00113{bottom:449.811450px;}
.y17_c00113{bottom:474.561450px;}
.y16_c00113{bottom:514.336200px;}
.y15_c00113{bottom:535.330950px;}
.y14_c00113{bottom:560.578200px;}
.y13_c00113{bottom:581.572950px;}
.y12_c00113{bottom:606.820200px;}
.y11_c00113{bottom:632.067450px;}
.y10_c00113{bottom:668.049450px;}
.yf_c00113{bottom:692.655450px;}
.ye_c00113{bottom:717.261450px;}
.yd_c00113{bottom:756.861450px;}
.yc_c00113{bottom:781.443450px;}
.yb_c00113{bottom:806.049450px;}
.ya_c00113{bottom:830.655450px;}
.y9_c00113{bottom:855.261450px;}
.y8_c00113{bottom:879.867450px;}
.y7_c00113{bottom:919.437450px;}
.y6_c00113{bottom:944.043450px;}
.y5_c00113{bottom:968.649450px;}
.y4_c00113{bottom:993.255450px;}
.y3_c00113{bottom:1017.861450px;}
.y2_c00113{bottom:1042.467450px;}
.y1_c00113{bottom:1093.601100px;}
.h2_c00113{height:39.264000px;}
.h8_c00113{height:39.280200px;}
.h6_c00113{height:51.030000px;}
.h7_c00113{height:51.534000px;}
.h3_c00113{height:58.896000px;}
.h4_c00113{height:59.016000px;}
.h5_c00113{height:70.628906px;}
.h1_c00113{height:1135.500000px;}
.h0_c00113{height:1135.506150px;}
.w0_c00113{width:893.950200px;}
.w1_c00113{width:894.000000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:77.603100px;}
.x3_c00113{left:94.611000px;}
.x2_c00113{left:98.862900px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.v1_c00113{vertical-align:21.418667pt;}
.lsb_c00113{letter-spacing:-5.600000pt;}
.lsd_c00113{letter-spacing:-0.960000pt;}
.lsc_c00113{letter-spacing:-0.728000pt;}
.lse_c00113{letter-spacing:-0.213333pt;}
.ls8_c00113{letter-spacing:-0.064000pt;}
.ls7_c00113{letter-spacing:0.000000pt;}
.ls3_c00113{letter-spacing:0.256000pt;}
.ls6_c00113{letter-spacing:0.280000pt;}
.ls0_c00113{letter-spacing:0.320000pt;}
.lsa_c00113{letter-spacing:0.384000pt;}
.ls9_c00113{letter-spacing:0.447744pt;}
.ls1_c00113{letter-spacing:0.512000pt;}
.ls5_c00113{letter-spacing:0.573867pt;}
.ls4_c00113{letter-spacing:0.640000pt;}
.ls2_c00113{letter-spacing:0.704000pt;}
.ws3_c00113{word-spacing:-15.040000pt;}
.ws5_c00113{word-spacing:-14.912000pt;}
.ws1_c00113{word-spacing:-14.528000pt;}
.ws7_c00113{word-spacing:-12.712000pt;}
.ws8_c00113{word-spacing:-12.096000pt;}
.ws9_c00113{word-spacing:-9.685333pt;}
.wsa_c00113{word-spacing:-9.472000pt;}
.ws4_c00113{word-spacing:-8.992192pt;}
.ws2_c00113{word-spacing:-8.469824pt;}
.ws6_c00113{word-spacing:-7.224000pt;}
.ws19_c00113{word-spacing:-2.352000pt;}
.ws20_c00113{word-spacing:-1.749333pt;}
.ws1f_c00113{word-spacing:-1.664000pt;}
.ws22_c00113{word-spacing:-1.621333pt;}
.wsc_c00113{word-spacing:-1.536000pt;}
.ws1a_c00113{word-spacing:-1.288000pt;}
.ws16_c00113{word-spacing:-0.768000pt;}
.ws1d_c00113{word-spacing:-0.640000pt;}
.ws23_c00113{word-spacing:-0.597333pt;}
.ws1b_c00113{word-spacing:-0.256000pt;}
.ws15_c00113{word-spacing:-0.192000pt;}
.ws17_c00113{word-spacing:-0.128000pt;}
.wsb_c00113{word-spacing:0.000000pt;}
.wse_c00113{word-spacing:0.256000pt;}
.ws14_c00113{word-spacing:0.512000pt;}
.ws1e_c00113{word-spacing:1.456000pt;}
.ws18_c00113{word-spacing:1.728000pt;}
.ws21_c00113{word-spacing:1.877333pt;}
.ws1c_c00113{word-spacing:2.304000pt;}
.ws10_c00113{word-spacing:2.368000pt;}
.ws13_c00113{word-spacing:2.752000pt;}
.wsf_c00113{word-spacing:2.816000pt;}
.ws12_c00113{word-spacing:3.392000pt;}
.ws24_c00113{word-spacing:3.456000pt;}
.wsd_c00113{word-spacing:6.144000pt;}
.ws11_c00113{word-spacing:8.000000pt;}
.ws0_c00113{word-spacing:1413.030400pt;}
._3_c00113{margin-left:-5.866667pt;}
._4_c00113{margin-left:-3.925333pt;}
._0_c00113{margin-left:-1.877333pt;}
._1_c00113{margin-left:-0.981333pt;}
._2_c00113{width:1.173333pt;}
._5_c00113{width:5.096000pt;}
._6_c00113{width:6.888000pt;}
._7_c00113{width:9.173333pt;}
.fs2_c00113{font-size:37.312000pt;}
.fs0_c00113{font-size:42.666667pt;}
.fs3_c00113{font-size:56.000000pt;}
.fs1_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y27_c00113{bottom:99.210800pt;}
.y26_c00113{bottom:120.106800pt;}
.y25_c00113{bottom:133.440133pt;}
.y24_c00113{bottom:146.773467pt;}
.y23_c00113{bottom:160.106800pt;}
.y22_c00113{bottom:173.440133pt;}
.y21_c00113{bottom:186.773467pt;}
.y20_c00113{bottom:200.106800pt;}
.y1f_c00113{bottom:244.060800pt;}
.y1e_c00113{bottom:262.722800pt;}
.y1d_c00113{bottom:285.164800pt;}
.y1c_c00113{bottom:307.606800pt;}
.y1b_c00113{bottom:333.832400pt;}
.y1a_c00113{bottom:355.832400pt;}
.y19_c00113{bottom:377.832400pt;}
.y18_c00113{bottom:399.832400pt;}
.y17_c00113{bottom:421.832400pt;}
.y16_c00113{bottom:457.187733pt;}
.y15_c00113{bottom:475.849733pt;}
.y14_c00113{bottom:498.291733pt;}
.y13_c00113{bottom:516.953733pt;}
.y12_c00113{bottom:539.395733pt;}
.y11_c00113{bottom:561.837733pt;}
.y10_c00113{bottom:593.821733pt;}
.yf_c00113{bottom:615.693733pt;}
.ye_c00113{bottom:637.565733pt;}
.yd_c00113{bottom:672.765733pt;}
.yc_c00113{bottom:694.616400pt;}
.yb_c00113{bottom:716.488400pt;}
.ya_c00113{bottom:738.360400pt;}
.y9_c00113{bottom:760.232400pt;}
.y8_c00113{bottom:782.104400pt;}
.y7_c00113{bottom:817.277733pt;}
.y6_c00113{bottom:839.149733pt;}
.y5_c00113{bottom:861.021733pt;}
.y4_c00113{bottom:882.893733pt;}
.y3_c00113{bottom:904.765733pt;}
.y2_c00113{bottom:926.637733pt;}
.y1_c00113{bottom:972.089867pt;}
.h2_c00113{height:34.901333pt;}
.h8_c00113{height:34.915733pt;}
.h6_c00113{height:45.360000pt;}
.h7_c00113{height:45.808000pt;}
.h3_c00113{height:52.352000pt;}
.h4_c00113{height:52.458667pt;}
.h5_c00113{height:62.781250pt;}
.h1_c00113{height:1009.333333pt;}
.h0_c00113{height:1009.338800pt;}
.w0_c00113{width:794.622400pt;}
.w1_c00113{width:794.666667pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:68.980533pt;}
.x3_c00113{left:84.098667pt;}
.x2_c00113{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13ff1b933a0e3c30fdd12ddc.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_10490ed93247578409ac95e7.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_aca3efd109b8a323089ba8c8.woff2')format("woff");}.ff6_c00114{font-family:ff6_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:ff7_c00114;src:url('chunks/assets/font_fd6bb1f0d59feae72f61ae9e.woff2')format("woff");}.ff7_c00114{font-family:ff7_c00114;line-height:1.067000;font-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_c00114{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:23.952000px;}
.ls11_c00114{letter-spacing:-1.296000px;}
.ls10_c00114{letter-spacing:-0.720000px;}
.lsc_c00114{letter-spacing:-0.630000px;}
.ls12_c00114{letter-spacing:-0.576000px;}
.lsf_c00114{letter-spacing:-0.377784px;}
.ls9_c00114{letter-spacing:-0.240000px;}
.lse_c00114{letter-spacing:-0.144000px;}
.lsa_c00114{letter-spacing:0.000000px;}
.ls1_c00114{letter-spacing:0.189000px;}
.ls7_c00114{letter-spacing:0.216000px;}
.lsb_c00114{letter-spacing:0.315000px;}
.ls6_c00114{letter-spacing:0.432000px;}
.ls0_c00114{letter-spacing:0.480000px;}
.ls3_c00114{letter-spacing:0.504000px;}
.ls8_c00114{letter-spacing:0.576000px;}
.ls4_c00114{letter-spacing:0.648000px;}
.ls2_c00114{letter-spacing:0.720000px;}
.lsd_c00114{letter-spacing:0.755568px;}
.ls5_c00114{letter-spacing:7.632000px;}
.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;}
}
.ws6_c00114{word-spacing:-16.920000px;}
.ws8_c00114{word-spacing:-16.560000px;}
.ws4_c00114{word-spacing:-16.344000px;}
.ws7_c00114{word-spacing:-16.200000px;}
.ws9_c00114{word-spacing:-15.048000px;}
.ws2_c00114{word-spacing:-14.616000px;}
.ws1_c00114{word-spacing:-14.301000px;}
.ws3_c00114{word-spacing:-13.671000px;}
.ws0_c00114{word-spacing:-10.656000px;}
.ws5_c00114{word-spacing:-10.368072px;}
.wsa_c00114{word-spacing:-10.320000px;}
.wse_c00114{word-spacing:-4.320000px;}
.ws24_c00114{word-spacing:-3.168000px;}
.ws27_c00114{word-spacing:-1.728000px;}
.ws10_c00114{word-spacing:-1.368000px;}
.ws2a_c00114{word-spacing:-0.768000px;}
.wsf_c00114{word-spacing:-0.720000px;}
.ws1d_c00114{word-spacing:-0.216000px;}
.wsb_c00114{word-spacing:0.000000px;}
.ws26_c00114{word-spacing:0.377784px;}
.ws11_c00114{word-spacing:0.432000px;}
.ws29_c00114{word-spacing:0.480000px;}
.ws25_c00114{word-spacing:1.008000px;}
.wsd_c00114{word-spacing:1.071000px;}
.ws28_c00114{word-spacing:1.080000px;}
.ws1e_c00114{word-spacing:1.440000px;}
.ws14_c00114{word-spacing:1.656000px;}
.ws1f_c00114{word-spacing:1.800000px;}
.ws13_c00114{word-spacing:2.592000px;}
.ws12_c00114{word-spacing:3.528000px;}
.ws18_c00114{word-spacing:6.264000px;}
.ws1c_c00114{word-spacing:6.912000px;}
.ws17_c00114{word-spacing:7.992000px;}
.ws1a_c00114{word-spacing:9.216000px;}
.ws19_c00114{word-spacing:10.152000px;}
.ws22_c00114{word-spacing:10.224000px;}
.ws16_c00114{word-spacing:10.368000px;}
.ws1b_c00114{word-spacing:10.656000px;}
.ws21_c00114{word-spacing:12.600000px;}
.ws15_c00114{word-spacing:13.320000px;}
.ws23_c00114{word-spacing:15.408000px;}
.wsc_c00114{word-spacing:19.593000px;}
.ws20_c00114{word-spacing:20.088000px;}
._0_c00114{margin-left:-2754.795600px;}
._8_c00114{margin-left:-6.867000px;}
._4_c00114{margin-left:-4.854000px;}
._7_c00114{margin-left:-3.594000px;}
._1_c00114{margin-left:-2.256000px;}
._3_c00114{margin-left:-1.209000px;}
._2_c00114{width:1.008000px;}
._6_c00114{width:2.118000px;}
._9_c00114{width:6.526800px;}
._5_c00114{width:75.960000px;}
.fc0_c00114{color:rgb(35,31,32);}
.fs3_c00114{font-size:41.976000px;}
.fs0_c00114{font-size:48.000000px;}
.fs4_c00114{font-size:60.000000px;}
.fs1_c00114{font-size:63.000000px;}
.fs2_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y24_c00114{bottom:111.616350px;}
.y23_c00114{bottom:126.616350px;}
.y22_c00114{bottom:141.612300px;}
.y21_c00114{bottom:165.120300px;}
.y20_c00114{bottom:227.843400px;}
.y1f_c00114{bottom:252.593400px;}
.y1e_c00114{bottom:277.343400px;}
.y1d_c00114{bottom:317.093550px;}
.y1c_c00114{bottom:341.843550px;}
.y1b_c00114{bottom:366.593550px;}
.y1a_c00114{bottom:391.343550px;}
.y19_c00114{bottom:416.093550px;}
.y27_c00114{bottom:419.084700px;}
.y26_c00114{bottom:437.684700px;}
.y18_c00114{bottom:440.843550px;}
.y25_c00114{bottom:456.284700px;}
.y17_c00114{bottom:465.593550px;}
.y16_c00114{bottom:490.343550px;}
.y15_c00114{bottom:515.099550px;}
.y14_c00114{bottom:539.849550px;}
.y13_c00114{bottom:579.593550px;}
.y12_c00114{bottom:604.343550px;}
.y11_c00114{bottom:665.353350px;}
.y10_c00114{bottom:690.103350px;}
.yf_c00114{bottom:714.853350px;}
.ye_c00114{bottom:739.603350px;}
.yd_c00114{bottom:764.353350px;}
.yc_c00114{bottom:789.103350px;}
.yb_c00114{bottom:813.853350px;}
.ya_c00114{bottom:838.603350px;}
.y9_c00114{bottom:863.353350px;}
.y8_c00114{bottom:888.103350px;}
.y7_c00114{bottom:912.853350px;}
.y6_c00114{bottom:937.603350px;}
.y5_c00114{bottom:962.353350px;}
.y4_c00114{bottom:1002.113850px;}
.y3_c00114{bottom:1023.108600px;}
.y2_c00114{bottom:1044.103350px;}
.y1_c00114{bottom:1093.601100px;}
.h2_c00114{height:39.264000px;}
.h8_c00114{height:39.280200px;}
.h3_c00114{height:39.984000px;}
.ha_c00114{height:48.600000px;}
.h9_c00114{height:49.080000px;}
.h4_c00114{height:51.534000px;}
.h5_c00114{height:58.896000px;}
.h6_c00114{height:70.628906px;}
.h7_c00114{height:70.664062px;}
.h1_c00114{height:1135.500000px;}
.h0_c00114{height:1135.506150px;}
.w0_c00114{width:893.950200px;}
.w1_c00114{width:894.000000px;}
.x0_c00114{left:0.000000px;}
.x5_c00114{left:128.626800px;}
.x7_c00114{left:145.634550px;}
.x4_c00114{left:149.886600px;}
.x6_c00114{left:171.146400px;}
.x2_c00114{left:188.061900px;}
.x3_c00114{left:190.513350px;}
.x8_c00114{left:493.906200px;}
.x1_c00114{left:804.473700px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:21.290667pt;}
.ls11_c00114{letter-spacing:-1.152000pt;}
.ls10_c00114{letter-spacing:-0.640000pt;}
.lsc_c00114{letter-spacing:-0.560000pt;}
.ls12_c00114{letter-spacing:-0.512000pt;}
.lsf_c00114{letter-spacing:-0.335808pt;}
.ls9_c00114{letter-spacing:-0.213333pt;}
.lse_c00114{letter-spacing:-0.128000pt;}
.lsa_c00114{letter-spacing:0.000000pt;}
.ls1_c00114{letter-spacing:0.168000pt;}
.ls7_c00114{letter-spacing:0.192000pt;}
.lsb_c00114{letter-spacing:0.280000pt;}
.ls6_c00114{letter-spacing:0.384000pt;}
.ls0_c00114{letter-spacing:0.426667pt;}
.ls3_c00114{letter-spacing:0.448000pt;}
.ls8_c00114{letter-spacing:0.512000pt;}
.ls4_c00114{letter-spacing:0.576000pt;}
.ls2_c00114{letter-spacing:0.640000pt;}
.lsd_c00114{letter-spacing:0.671616pt;}
.ls5_c00114{letter-spacing:6.784000pt;}
.ws6_c00114{word-spacing:-15.040000pt;}
.ws8_c00114{word-spacing:-14.720000pt;}
.ws4_c00114{word-spacing:-14.528000pt;}
.ws7_c00114{word-spacing:-14.400000pt;}
.ws9_c00114{word-spacing:-13.376000pt;}
.ws2_c00114{word-spacing:-12.992000pt;}
.ws1_c00114{word-spacing:-12.712000pt;}
.ws3_c00114{word-spacing:-12.152000pt;}
.ws0_c00114{word-spacing:-9.472000pt;}
.ws5_c00114{word-spacing:-9.216064pt;}
.wsa_c00114{word-spacing:-9.173333pt;}
.wse_c00114{word-spacing:-3.840000pt;}
.ws24_c00114{word-spacing:-2.816000pt;}
.ws27_c00114{word-spacing:-1.536000pt;}
.ws10_c00114{word-spacing:-1.216000pt;}
.ws2a_c00114{word-spacing:-0.682667pt;}
.wsf_c00114{word-spacing:-0.640000pt;}
.ws1d_c00114{word-spacing:-0.192000pt;}
.wsb_c00114{word-spacing:0.000000pt;}
.ws26_c00114{word-spacing:0.335808pt;}
.ws11_c00114{word-spacing:0.384000pt;}
.ws29_c00114{word-spacing:0.426667pt;}
.ws25_c00114{word-spacing:0.896000pt;}
.wsd_c00114{word-spacing:0.952000pt;}
.ws28_c00114{word-spacing:0.960000pt;}
.ws1e_c00114{word-spacing:1.280000pt;}
.ws14_c00114{word-spacing:1.472000pt;}
.ws1f_c00114{word-spacing:1.600000pt;}
.ws13_c00114{word-spacing:2.304000pt;}
.ws12_c00114{word-spacing:3.136000pt;}
.ws18_c00114{word-spacing:5.568000pt;}
.ws1c_c00114{word-spacing:6.144000pt;}
.ws17_c00114{word-spacing:7.104000pt;}
.ws1a_c00114{word-spacing:8.192000pt;}
.ws19_c00114{word-spacing:9.024000pt;}
.ws22_c00114{word-spacing:9.088000pt;}
.ws16_c00114{word-spacing:9.216000pt;}
.ws1b_c00114{word-spacing:9.472000pt;}
.ws21_c00114{word-spacing:11.200000pt;}
.ws15_c00114{word-spacing:11.840000pt;}
.ws23_c00114{word-spacing:13.696000pt;}
.wsc_c00114{word-spacing:17.416000pt;}
.ws20_c00114{word-spacing:17.856000pt;}
._0_c00114{margin-left:-2448.707200pt;}
._8_c00114{margin-left:-6.104000pt;}
._4_c00114{margin-left:-4.314667pt;}
._7_c00114{margin-left:-3.194667pt;}
._1_c00114{margin-left:-2.005333pt;}
._3_c00114{margin-left:-1.074667pt;}
._2_c00114{width:0.896000pt;}
._6_c00114{width:1.882667pt;}
._9_c00114{width:5.801600pt;}
._5_c00114{width:67.520000pt;}
.fs3_c00114{font-size:37.312000pt;}
.fs0_c00114{font-size:42.666667pt;}
.fs4_c00114{font-size:53.333333pt;}
.fs1_c00114{font-size:56.000000pt;}
.fs2_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y24_c00114{bottom:99.214533pt;}
.y23_c00114{bottom:112.547867pt;}
.y22_c00114{bottom:125.877600pt;}
.y21_c00114{bottom:146.773600pt;}
.y20_c00114{bottom:202.527467pt;}
.y1f_c00114{bottom:224.527467pt;}
.y1e_c00114{bottom:246.527467pt;}
.y1d_c00114{bottom:281.860933pt;}
.y1c_c00114{bottom:303.860933pt;}
.y1b_c00114{bottom:325.860933pt;}
.y1a_c00114{bottom:347.860933pt;}
.y19_c00114{bottom:369.860933pt;}
.y27_c00114{bottom:372.519733pt;}
.y26_c00114{bottom:389.053067pt;}
.y18_c00114{bottom:391.860933pt;}
.y25_c00114{bottom:405.586400pt;}
.y17_c00114{bottom:413.860933pt;}
.y16_c00114{bottom:435.860933pt;}
.y15_c00114{bottom:457.866267pt;}
.y14_c00114{bottom:479.866267pt;}
.y13_c00114{bottom:515.194267pt;}
.y12_c00114{bottom:537.194267pt;}
.y11_c00114{bottom:591.425200pt;}
.y10_c00114{bottom:613.425200pt;}
.yf_c00114{bottom:635.425200pt;}
.ye_c00114{bottom:657.425200pt;}
.yd_c00114{bottom:679.425200pt;}
.yc_c00114{bottom:701.425200pt;}
.yb_c00114{bottom:723.425200pt;}
.ya_c00114{bottom:745.425200pt;}
.y9_c00114{bottom:767.425200pt;}
.y8_c00114{bottom:789.425200pt;}
.y7_c00114{bottom:811.425200pt;}
.y6_c00114{bottom:833.425200pt;}
.y5_c00114{bottom:855.425200pt;}
.y4_c00114{bottom:890.767867pt;}
.y3_c00114{bottom:909.429867pt;}
.y2_c00114{bottom:928.091867pt;}
.y1_c00114{bottom:972.089867pt;}
.h2_c00114{height:34.901333pt;}
.h8_c00114{height:34.915733pt;}
.h3_c00114{height:35.541333pt;}
.ha_c00114{height:43.200000pt;}
.h9_c00114{height:43.626667pt;}
.h4_c00114{height:45.808000pt;}
.h5_c00114{height:52.352000pt;}
.h6_c00114{height:62.781250pt;}
.h7_c00114{height:62.812500pt;}
.h1_c00114{height:1009.333333pt;}
.h0_c00114{height:1009.338800pt;}
.w0_c00114{width:794.622400pt;}
.w1_c00114{width:794.666667pt;}
.x0_c00114{left:0.000000pt;}
.x5_c00114{left:114.334933pt;}
.x7_c00114{left:129.452933pt;}
.x4_c00114{left:133.232533pt;}
.x6_c00114{left:152.130133pt;}
.x2_c00114{left:167.166133pt;}
.x3_c00114{left:169.345200pt;}
.x8_c00114{left:439.027733pt;}
.x1_c00114{left:715.087733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2e2ba7e4e12c769780f816a.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls4_c00115{letter-spacing:-0.720000px;}
.ls5_c00115{letter-spacing:-0.504000px;}
.ls6_c00115{letter-spacing:-0.360000px;}
.ls7_c00115{letter-spacing:-0.288000px;}
.ls3_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:0.216000px;}
.ls2_c00115{letter-spacing:0.360000px;}
.ls1_c00115{letter-spacing:3.888000px;}
.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;}
}
.ws3_c00115{word-spacing:-16.488000px;}
.ws1_c00115{word-spacing:-16.344000px;}
.ws4_c00115{word-spacing:-16.128000px;}
.ws2_c00115{word-spacing:-15.768000px;}
.ws19_c00115{word-spacing:-3.096000px;}
.wsc_c00115{word-spacing:-3.024000px;}
.ws12_c00115{word-spacing:-2.880000px;}
.ws22_c00115{word-spacing:-2.520000px;}
.wsd_c00115{word-spacing:-2.232000px;}
.ws1c_c00115{word-spacing:-1.656000px;}
.wse_c00115{word-spacing:-1.584000px;}
.ws1d_c00115{word-spacing:-1.512000px;}
.ws8_c00115{word-spacing:-1.296000px;}
.ws1e_c00115{word-spacing:-1.224000px;}
.ws7_c00115{word-spacing:-1.008000px;}
.ws16_c00115{word-spacing:-0.576000px;}
.ws17_c00115{word-spacing:-0.504000px;}
.wsf_c00115{word-spacing:-0.432000px;}
.ws14_c00115{word-spacing:-0.216000px;}
.ws5_c00115{word-spacing:0.000000px;}
.wsa_c00115{word-spacing:0.504000px;}
.ws11_c00115{word-spacing:0.792000px;}
.ws18_c00115{word-spacing:0.936000px;}
.ws15_c00115{word-spacing:1.584000px;}
.ws24_c00115{word-spacing:1.656000px;}
.ws1a_c00115{word-spacing:2.232000px;}
.ws6_c00115{word-spacing:2.304000px;}
.ws9_c00115{word-spacing:2.448000px;}
.wsb_c00115{word-spacing:2.808000px;}
.ws10_c00115{word-spacing:3.456000px;}
.ws13_c00115{word-spacing:3.672000px;}
.ws1b_c00115{word-spacing:3.816000px;}
.ws20_c00115{word-spacing:4.176000px;}
.ws21_c00115{word-spacing:4.320000px;}
.ws23_c00115{word-spacing:4.896000px;}
.ws1f_c00115{word-spacing:5.544000px;}
.ws0_c00115{word-spacing:1587.259200px;}
._6_c00115{margin-left:-7.200000px;}
._4_c00115{margin-left:-4.536000px;}
._2_c00115{margin-left:-3.408000px;}
._3_c00115{margin-left:-2.088000px;}
._1_c00115{margin-left:-1.056000px;}
._0_c00115{width:1.056000px;}
._5_c00115{width:2.304000px;}
.fc0_c00115{color:rgb(35,31,32);}
.fs0_c00115{font-size:48.000000px;}
.fs1_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y25_c00115{bottom:116.235450px;}
.y24_c00115{bottom:140.985450px;}
.y23_c00115{bottom:165.735450px;}
.y22_c00115{bottom:190.485450px;}
.y21_c00115{bottom:215.235450px;}
.y20_c00115{bottom:239.985450px;}
.y1f_c00115{bottom:264.735450px;}
.y1e_c00115{bottom:304.479450px;}
.y1d_c00115{bottom:329.229450px;}
.y1c_c00115{bottom:353.979450px;}
.y1b_c00115{bottom:393.723450px;}
.y1a_c00115{bottom:418.473450px;}
.y19_c00115{bottom:443.223450px;}
.y18_c00115{bottom:467.973450px;}
.y17_c00115{bottom:492.723450px;}
.y16_c00115{bottom:517.473450px;}
.y15_c00115{bottom:542.223450px;}
.y14_c00115{bottom:566.973450px;}
.y13_c00115{bottom:591.723450px;}
.y12_c00115{bottom:631.467450px;}
.y11_c00115{bottom:656.217450px;}
.y10_c00115{bottom:680.967450px;}
.yf_c00115{bottom:705.717450px;}
.ye_c00115{bottom:730.467450px;}
.yd_c00115{bottom:755.223450px;}
.yc_c00115{bottom:779.973450px;}
.yb_c00115{bottom:804.723450px;}
.ya_c00115{bottom:829.473450px;}
.y9_c00115{bottom:854.223450px;}
.y8_c00115{bottom:878.973450px;}
.y7_c00115{bottom:903.723450px;}
.y6_c00115{bottom:928.473450px;}
.y5_c00115{bottom:968.217450px;}
.y4_c00115{bottom:992.967450px;}
.y3_c00115{bottom:1017.717450px;}
.y2_c00115{bottom:1042.467450px;}
.y1_c00115{bottom:1093.601100px;}
.h2_c00115{height:39.264000px;}
.h3_c00115{height:58.896000px;}
.h1_c00115{height:1135.500000px;}
.h0_c00115{height:1135.506150px;}
.w0_c00115{width:893.950200px;}
.w1_c00115{width:894.000000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:77.603100px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls4_c00115{letter-spacing:-0.640000pt;}
.ls5_c00115{letter-spacing:-0.448000pt;}
.ls6_c00115{letter-spacing:-0.320000pt;}
.ls7_c00115{letter-spacing:-0.256000pt;}
.ls3_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:0.192000pt;}
.ls2_c00115{letter-spacing:0.320000pt;}
.ls1_c00115{letter-spacing:3.456000pt;}
.ws3_c00115{word-spacing:-14.656000pt;}
.ws1_c00115{word-spacing:-14.528000pt;}
.ws4_c00115{word-spacing:-14.336000pt;}
.ws2_c00115{word-spacing:-14.016000pt;}
.ws19_c00115{word-spacing:-2.752000pt;}
.wsc_c00115{word-spacing:-2.688000pt;}
.ws12_c00115{word-spacing:-2.560000pt;}
.ws22_c00115{word-spacing:-2.240000pt;}
.wsd_c00115{word-spacing:-1.984000pt;}
.ws1c_c00115{word-spacing:-1.472000pt;}
.wse_c00115{word-spacing:-1.408000pt;}
.ws1d_c00115{word-spacing:-1.344000pt;}
.ws8_c00115{word-spacing:-1.152000pt;}
.ws1e_c00115{word-spacing:-1.088000pt;}
.ws7_c00115{word-spacing:-0.896000pt;}
.ws16_c00115{word-spacing:-0.512000pt;}
.ws17_c00115{word-spacing:-0.448000pt;}
.wsf_c00115{word-spacing:-0.384000pt;}
.ws14_c00115{word-spacing:-0.192000pt;}
.ws5_c00115{word-spacing:0.000000pt;}
.wsa_c00115{word-spacing:0.448000pt;}
.ws11_c00115{word-spacing:0.704000pt;}
.ws18_c00115{word-spacing:0.832000pt;}
.ws15_c00115{word-spacing:1.408000pt;}
.ws24_c00115{word-spacing:1.472000pt;}
.ws1a_c00115{word-spacing:1.984000pt;}
.ws6_c00115{word-spacing:2.048000pt;}
.ws9_c00115{word-spacing:2.176000pt;}
.wsb_c00115{word-spacing:2.496000pt;}
.ws10_c00115{word-spacing:3.072000pt;}
.ws13_c00115{word-spacing:3.264000pt;}
.ws1b_c00115{word-spacing:3.392000pt;}
.ws20_c00115{word-spacing:3.712000pt;}
.ws21_c00115{word-spacing:3.840000pt;}
.ws23_c00115{word-spacing:4.352000pt;}
.ws1f_c00115{word-spacing:4.928000pt;}
.ws0_c00115{word-spacing:1410.897067pt;}
._6_c00115{margin-left:-6.400000pt;}
._4_c00115{margin-left:-4.032000pt;}
._2_c00115{margin-left:-3.029333pt;}
._3_c00115{margin-left:-1.856000pt;}
._1_c00115{margin-left:-0.938667pt;}
._0_c00115{width:0.938667pt;}
._5_c00115{width:2.048000pt;}
.fs0_c00115{font-size:42.666667pt;}
.fs1_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y25_c00115{bottom:103.320400pt;}
.y24_c00115{bottom:125.320400pt;}
.y23_c00115{bottom:147.320400pt;}
.y22_c00115{bottom:169.320400pt;}
.y21_c00115{bottom:191.320400pt;}
.y20_c00115{bottom:213.320400pt;}
.y1f_c00115{bottom:235.320400pt;}
.y1e_c00115{bottom:270.648400pt;}
.y1d_c00115{bottom:292.648400pt;}
.y1c_c00115{bottom:314.648400pt;}
.y1b_c00115{bottom:349.976400pt;}
.y1a_c00115{bottom:371.976400pt;}
.y19_c00115{bottom:393.976400pt;}
.y18_c00115{bottom:415.976400pt;}
.y17_c00115{bottom:437.976400pt;}
.y16_c00115{bottom:459.976400pt;}
.y15_c00115{bottom:481.976400pt;}
.y14_c00115{bottom:503.976400pt;}
.y13_c00115{bottom:525.976400pt;}
.y12_c00115{bottom:561.304400pt;}
.y11_c00115{bottom:583.304400pt;}
.y10_c00115{bottom:605.304400pt;}
.yf_c00115{bottom:627.304400pt;}
.ye_c00115{bottom:649.304400pt;}
.yd_c00115{bottom:671.309733pt;}
.yc_c00115{bottom:693.309733pt;}
.yb_c00115{bottom:715.309733pt;}
.ya_c00115{bottom:737.309733pt;}
.y9_c00115{bottom:759.309733pt;}
.y8_c00115{bottom:781.309733pt;}
.y7_c00115{bottom:803.309733pt;}
.y6_c00115{bottom:825.309733pt;}
.y5_c00115{bottom:860.637733pt;}
.y4_c00115{bottom:882.637733pt;}
.y3_c00115{bottom:904.637733pt;}
.y2_c00115{bottom:926.637733pt;}
.y1_c00115{bottom:972.089867pt;}
.h2_c00115{height:34.901333pt;}
.h3_c00115{height:52.352000pt;}
.h1_c00115{height:1009.333333pt;}
.h0_c00115{height:1009.338800pt;}
.w0_c00115{width:794.622400pt;}
.w1_c00115{width:794.666667pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c366edf4776f9bbdaf610c52.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_ae49f3db2173017878766fe7.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00116;src:url('chunks/assets/font_dca059d128288a55c19958f5.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:1.067000;font-style:normal;font-weight: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_c00116;src:url('chunks/assets/font_72027de6a1a3025dc26e1e80.woff2')format("woff");}.ff7_c00116{font-family:ff7_c00116;line-height:0.934000;font-style:normal;font-weight: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_c00116;src:url('chunks/assets/font_00c1c589e31b0d6f8622c622.woff2')format("woff");}.ff8_c00116{font-family:ff8_c00116;line-height:0.934000;font-style:normal;font-weight: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_c00116;src:url('chunks/assets/font_a309187e40196a5d5ae9855c.woff2')format("woff");}.ff9_c00116{font-family:ff9_c00116;line-height:0.934000;font-style:normal;font-weight: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_c00116;src:url('chunks/assets/font_39cdc4fe5bf52b66cf49f34c.woff2')format("woff");}.ffa_c00116{font-family:ffa_c00116;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00116{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.241963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241963,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls5_c00116{letter-spacing:-6.000000px;}
.ls2_c00116{letter-spacing:-0.576000px;}
.ls4_c00116{letter-spacing:-0.360000px;}
.ls6_c00116{letter-spacing:-0.000976px;}
.ls3_c00116{letter-spacing:0.000000px;}
.ls1_c00116{letter-spacing:0.000976px;}
.ls0_c00116{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00116{word-spacing:-16.344000px;}
.ws2_c00116{word-spacing:-13.620000px;}
.ws0_c00116{word-spacing:-10.320000px;}
.wsa_c00116{word-spacing:-3.130169px;}
.ws3_c00116{word-spacing:-3.110653px;}
.ws27_c00116{word-spacing:-2.448000px;}
.ws1f_c00116{word-spacing:-1.584000px;}
.ws16_c00116{word-spacing:-0.720000px;}
.ws25_c00116{word-spacing:-0.576000px;}
.ws12_c00116{word-spacing:-0.432000px;}
.ws2e_c00116{word-spacing:-0.144000px;}
.ws11_c00116{word-spacing:-0.072000px;}
.ws30_c00116{word-spacing:-0.000976px;}
.wse_c00116{word-spacing:0.000000px;}
.ws31_c00116{word-spacing:0.000976px;}
.ws13_c00116{word-spacing:0.144000px;}
.ws15_c00116{word-spacing:0.360000px;}
.ws29_c00116{word-spacing:0.504000px;}
.ws24_c00116{word-spacing:1.008000px;}
.ws19_c00116{word-spacing:1.296000px;}
.ws32_c00116{word-spacing:1.497830px;}
.ws2b_c00116{word-spacing:3.384000px;}
.ws23_c00116{word-spacing:3.816000px;}
.ws26_c00116{word-spacing:4.320000px;}
.ws2a_c00116{word-spacing:4.536000px;}
.ws17_c00116{word-spacing:4.608000px;}
.ws2d_c00116{word-spacing:5.328000px;}
.ws10_c00116{word-spacing:5.760000px;}
.ws1b_c00116{word-spacing:5.832000px;}
.ws2f_c00116{word-spacing:6.000000px;}
.ws1d_c00116{word-spacing:6.264000px;}
.ws1a_c00116{word-spacing:6.840000px;}
.ws22_c00116{word-spacing:7.056000px;}
.ws14_c00116{word-spacing:7.272000px;}
.ws21_c00116{word-spacing:7.704000px;}
.ws18_c00116{word-spacing:9.000000px;}
.ws1e_c00116{word-spacing:9.288000px;}
.ws28_c00116{word-spacing:11.088000px;}
.ws1c_c00116{word-spacing:12.600000px;}
.ws2c_c00116{word-spacing:13.176000px;}
.wsf_c00116{word-spacing:15.840000px;}
.ws20_c00116{word-spacing:19.728000px;}
.ws5_c00116{word-spacing:510.931752px;}
.ws6_c00116{word-spacing:515.362794px;}
.ws8_c00116{word-spacing:548.923965px;}
.ws9_c00116{word-spacing:553.354005px;}
.ws7_c00116{word-spacing:553.831380px;}
.wsc_c00116{word-spacing:554.857346px;}
.wsd_c00116{word-spacing:559.335271px;}
.wsb_c00116{word-spacing:559.837107px;}
.ws4_c00116{word-spacing:571.335870px;}
._0_c00116{margin-left:-2754.123600px;}
._4_c00116{margin-left:-4.752000px;}
._1_c00116{margin-left:-2.256000px;}
._3_c00116{margin-left:-1.008000px;}
._2_c00116{width:1.008000px;}
._5_c00116{width:8.633801px;}
._7_c00116{width:26.867268px;}
._a_c00116{width:28.666942px;}
._8_c00116{width:187.324563px;}
._9_c00116{width:190.588290px;}
._6_c00116{width:328.333164px;}
.fc3_c00116{color:transparent;}
.fc1_c00116{color:rgb(237,28,36);}
.fc2_c00116{color:rgb(255,255,255);}
.fc0_c00116{color:rgb(35,31,32);}
.fs4_c00116{font-size:0.975600px;}
.fs9_c00116{font-size:2.127600px;}
.fsc_c00116{font-size:6.364800px;}
.fs7_c00116{font-size:6.394200px;}
.fs10_c00116{font-size:6.408600px;}
.fs11_c00116{font-size:6.433800px;}
.fs8_c00116{font-size:11.139000px;}
.fs3_c00116{font-size:11.189400px;}
.fsd_c00116{font-size:11.259600px;}
.fsb_c00116{font-size:19.095000px;}
.fs6_c00116{font-size:19.182000px;}
.fsf_c00116{font-size:19.301400px;}
.fsa_c00116{font-size:23.869200px;}
.fs5_c00116{font-size:23.977800px;}
.fse_c00116{font-size:24.127200px;}
.fs0_c00116{font-size:48.000000px;}
.fs2_c00116{font-size:60.000000px;}
.fs1_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y75_c00116{bottom:5.716050px;}
.y54_c00116{bottom:5.742150px;}
.y8a_c00116{bottom:5.777850px;}
.y7f_c00116{bottom:16.568382px;}
.y6f_c00116{bottom:19.973106px;}
.y48_c00116{bottom:20.058425px;}
.y36_c00116{bottom:20.072412px;}
.y81_c00116{bottom:20.185528px;}
.y7e_c00116{bottom:20.188343px;}
.y7a_c00116{bottom:20.191158px;}
.y70_c00116{bottom:20.212594px;}
.y5a_c00116{bottom:20.215200px;}
.y6e_c00116{bottom:23.554294px;}
.y59_c00116{bottom:23.556900px;}
.y65_c00116{bottom:23.558158px;}
.y4f_c00116{bottom:23.650223px;}
.y47_c00116{bottom:23.655817px;}
.y35_c00116{bottom:23.669804px;}
.y80_c00116{bottom:23.805490px;}
.y7d_c00116{bottom:23.808305px;}
.y79_c00116{bottom:23.811119px;}
.y4e_c00116{bottom:38.996485px;}
.y4d_c00116{bottom:42.593877px;}
.y4c_c00116{bottom:46.191269px;}
.y4b_c00116{bottom:49.788661px;}
.y4a_c00116{bottom:53.386053px;}
.y49_c00116{bottom:56.983445px;}
.y89_c00116{bottom:77.093100px;}
.y74_c00116{bottom:78.524280px;}
.y53_c00116{bottom:78.881988px;}
.y85_c00116{bottom:79.373788px;}
.y3c_c00116{bottom:83.784856px;}
.y39_c00116{bottom:83.787653px;}
.y67_c00116{bottom:86.986409px;}
.y68_c00116{bottom:87.225898px;}
.y5c_c00116{bottom:87.227424px;}
.y3e_c00116{bottom:87.379450px;}
.y3b_c00116{bottom:87.382248px;}
.y38_c00116{bottom:87.385045px;}
.y2e_c00116{bottom:87.386008px;}
.y7c_c00116{bottom:87.926097px;}
.y66_c00116{bottom:90.567598px;}
.y5b_c00116{bottom:90.569124px;}
.y3d_c00116{bottom:90.976842px;}
.y3a_c00116{bottom:90.979640px;}
.y37_c00116{bottom:90.982437px;}
.y2d_c00116{bottom:90.983400px;}
.y7b_c00116{bottom:91.546058px;}
.y46_c00116{bottom:100.015080px;}
.y45_c00116{bottom:103.612472px;}
.y44_c00116{bottom:107.209865px;}
.y6d_c00116{bottom:110.154450px;}
.y43_c00116{bottom:110.807257px;}
.y6c_c00116{bottom:113.496150px;}
.y42_c00116{bottom:114.404649px;}
.y25_c00116{bottom:116.223450px;}
.y6b_c00116{bottom:116.837850px;}
.y41_c00116{bottom:118.002041px;}
.y88_c00116{bottom:118.131877px;}
.y6a_c00116{bottom:120.179400px;}
.y57_c00116{bottom:120.766650px;}
.y40_c00116{bottom:121.599433px;}
.y87_c00116{bottom:121.751839px;}
.y69_c00116{bottom:123.519544px;}
.y3f_c00116{bottom:125.196825px;}
.y86_c00116{bottom:125.371800px;}
.y56_c00116{bottom:139.366650px;}
.y24_c00116{bottom:140.973450px;}
.y73_c00116{bottom:145.982141px;}
.y52_c00116{bottom:146.647199px;}
.y84_c00116{bottom:147.560808px;}
.y5e_c00116{bottom:155.856062px;}
.y61_c00116{bottom:156.095550px;}
.y32_c00116{bottom:156.566308px;}
.y78_c00116{bottom:157.541389px;}
.y55_c00116{bottom:157.966650px;}
.y5d_c00116{bottom:159.437250px;}
.y31_c00116{bottom:160.163700px;}
.y77_c00116{bottom:161.161350px;}
.y23_c00116{bottom:165.723450px;}
.y60_c00116{bottom:175.178377px;}
.y5f_c00116{bottom:175.862400px;}
.y58_c00116{bottom:187.471650px;}
.y22_c00116{bottom:190.473450px;}
.y30_c00116{bottom:192.100345px;}
.y2f_c00116{bottom:192.414000px;}
.y72_c00116{bottom:214.404300px;}
.y21_c00116{bottom:215.223450px;}
.y51_c00116{bottom:215.381100px;}
.y83_c00116{bottom:216.722550px;}
.y34_c00116{bottom:218.342985px;}
.y33_c00116{bottom:221.940377px;}
.y64_c00116{bottom:222.770819px;}
.y71_c00116{bottom:223.108950px;}
.y50_c00116{bottom:224.125500px;}
.y82_c00116{bottom:225.521550px;}
.y63_c00116{bottom:226.112519px;}
.y62_c00116{bottom:229.454219px;}
.y20_c00116{bottom:239.973450px;}
.y1f_c00116{bottom:264.723450px;}
.y1e_c00116{bottom:304.467450px;}
.y1d_c00116{bottom:359.223450px;}
.y1c_c00116{bottom:383.973450px;}
.y1b_c00116{bottom:408.723450px;}
.y1a_c00116{bottom:433.473450px;}
.y2b_c00116{bottom:436.985550px;}
.y2a_c00116{bottom:455.585550px;}
.y19_c00116{bottom:458.223450px;}
.y29_c00116{bottom:474.185550px;}
.y18_c00116{bottom:482.973450px;}
.y2c_c00116{bottom:502.051650px;}
.y17_c00116{bottom:507.723450px;}
.y16_c00116{bottom:532.473450px;}
.y15_c00116{bottom:557.223450px;}
.y14_c00116{bottom:581.973450px;}
.y13_c00116{bottom:606.723450px;}
.y12_c00116{bottom:631.473450px;}
.y11_c00116{bottom:656.223450px;}
.y10_c00116{bottom:680.973450px;}
.yf_c00116{bottom:720.717450px;}
.ye_c00116{bottom:745.467450px;}
.y28_c00116{bottom:755.372850px;}
.yd_c00116{bottom:770.217450px;}
.y27_c00116{bottom:773.972850px;}
.y26_c00116{bottom:792.572850px;}
.yc_c00116{bottom:794.967450px;}
.yb_c00116{bottom:819.717450px;}
.y76_c00116{bottom:821.518650px;}
.ya_c00116{bottom:844.467450px;}
.y9_c00116{bottom:869.217450px;}
.y8_c00116{bottom:893.967450px;}
.y7_c00116{bottom:918.717450px;}
.y6_c00116{bottom:943.467450px;}
.y5_c00116{bottom:968.217450px;}
.y4_c00116{bottom:992.967450px;}
.y3_c00116{bottom:1017.717450px;}
.y2_c00116{bottom:1042.467450px;}
.y1_c00116{bottom:1093.601100px;}
.ha_c00116{height:0.711212px;}
.h10_c00116{height:1.551020px;}
.h13_c00116{height:4.639939px;}
.hd_c00116{height:4.661372px;}
.h19_c00116{height:4.690240px;}
.h18_c00116{height:6.587031px;}
.hf_c00116{height:8.120331px;}
.h9_c00116{height:8.157073px;}
.h15_c00116{height:8.208248px;}
.h12_c00116{height:13.920255px;}
.hc_c00116{height:13.983678px;}
.h17_c00116{height:14.070721px;}
.h11_c00116{height:17.400647px;}
.hb_c00116{height:17.479816px;}
.h16_c00116{height:17.588729px;}
.h2_c00116{height:39.264000px;}
.h3_c00116{height:39.984000px;}
.h7_c00116{height:48.600000px;}
.h6_c00116{height:49.080000px;}
.h4_c00116{height:58.896000px;}
.h5_c00116{height:59.976000px;}
.he_c00116{height:233.305500px;}
.h14_c00116{height:233.865000px;}
.h8_c00116{height:233.904000px;}
.h1_c00116{height:1135.500000px;}
.h0_c00116{height:1135.506150px;}
.w3_c00116{width:334.378500px;}
.w2_c00116{width:335.904000px;}
.w4_c00116{width:338.001000px;}
.w0_c00116{width:893.950200px;}
.w1_c00116{width:894.000000px;}
.x0_c00116{left:0.000000px;}
.x8_c00116{left:21.794400px;}
.x12_c00116{left:23.651550px;}
.x9_c00116{left:59.393252px;}
.x7_c00116{left:65.274600px;}
.xa_c00116{left:97.418400px;}
.x5_c00116{left:128.656800px;}
.xb_c00116{left:134.978081px;}
.xc_c00116{left:136.332289px;}
.x15_c00116{left:140.611589px;}
.x14_c00116{left:145.354784px;}
.xd_c00116{left:173.347800px;}
.x19_c00116{left:174.431250px;}
.x2_c00116{left:188.061900px;}
.x3_c00116{left:190.513350px;}
.x13_c00116{left:197.528700px;}
.xe_c00116{left:210.194004px;}
.x10_c00116{left:211.906229px;}
.x16_c00116{left:247.529846px;}
.x6_c00116{left:248.786550px;}
.x1a_c00116{left:250.212600px;}
.x17_c00116{left:285.386285px;}
.xf_c00116{left:286.689836px;}
.x1b_c00116{left:288.478837px;}
.x18_c00116{left:320.733258px;}
.x11_c00116{left:322.500798px;}
.x1c_c00116{left:324.509400px;}
.x4_c00116{left:492.119400px;}
.x1_c00116{left:804.593700px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls5_c00116{letter-spacing:-5.333333pt;}
.ls2_c00116{letter-spacing:-0.512000pt;}
.ls4_c00116{letter-spacing:-0.320000pt;}
.ls6_c00116{letter-spacing:-0.000867pt;}
.ls3_c00116{letter-spacing:0.000000pt;}
.ls1_c00116{letter-spacing:0.000867pt;}
.ls0_c00116{letter-spacing:0.426667pt;}
.ws1_c00116{word-spacing:-14.528000pt;}
.ws2_c00116{word-spacing:-12.106667pt;}
.ws0_c00116{word-spacing:-9.173333pt;}
.wsa_c00116{word-spacing:-2.782372pt;}
.ws3_c00116{word-spacing:-2.765025pt;}
.ws27_c00116{word-spacing:-2.176000pt;}
.ws1f_c00116{word-spacing:-1.408000pt;}
.ws16_c00116{word-spacing:-0.640000pt;}
.ws25_c00116{word-spacing:-0.512000pt;}
.ws12_c00116{word-spacing:-0.384000pt;}
.ws2e_c00116{word-spacing:-0.128000pt;}
.ws11_c00116{word-spacing:-0.064000pt;}
.ws30_c00116{word-spacing:-0.000867pt;}
.wse_c00116{word-spacing:0.000000pt;}
.ws31_c00116{word-spacing:0.000867pt;}
.ws13_c00116{word-spacing:0.128000pt;}
.ws15_c00116{word-spacing:0.320000pt;}
.ws29_c00116{word-spacing:0.448000pt;}
.ws24_c00116{word-spacing:0.896000pt;}
.ws19_c00116{word-spacing:1.152000pt;}
.ws32_c00116{word-spacing:1.331405pt;}
.ws2b_c00116{word-spacing:3.008000pt;}
.ws23_c00116{word-spacing:3.392000pt;}
.ws26_c00116{word-spacing:3.840000pt;}
.ws2a_c00116{word-spacing:4.032000pt;}
.ws17_c00116{word-spacing:4.096000pt;}
.ws2d_c00116{word-spacing:4.736000pt;}
.ws10_c00116{word-spacing:5.120000pt;}
.ws1b_c00116{word-spacing:5.184000pt;}
.ws2f_c00116{word-spacing:5.333333pt;}
.ws1d_c00116{word-spacing:5.568000pt;}
.ws1a_c00116{word-spacing:6.080000pt;}
.ws22_c00116{word-spacing:6.272000pt;}
.ws14_c00116{word-spacing:6.464000pt;}
.ws21_c00116{word-spacing:6.848000pt;}
.ws18_c00116{word-spacing:8.000000pt;}
.ws1e_c00116{word-spacing:8.256000pt;}
.ws28_c00116{word-spacing:9.856000pt;}
.ws1c_c00116{word-spacing:11.200000pt;}
.ws2c_c00116{word-spacing:11.712000pt;}
.wsf_c00116{word-spacing:14.080000pt;}
.ws20_c00116{word-spacing:17.536000pt;}
.ws5_c00116{word-spacing:454.161557pt;}
.ws6_c00116{word-spacing:458.100261pt;}
.ws8_c00116{word-spacing:487.932413pt;}
.ws9_c00116{word-spacing:491.870227pt;}
.ws7_c00116{word-spacing:492.294560pt;}
.wsc_c00116{word-spacing:493.206530pt;}
.wsd_c00116{word-spacing:497.186907pt;}
.wsb_c00116{word-spacing:497.632984pt;}
.ws4_c00116{word-spacing:507.854107pt;}
._0_c00116{margin-left:-2448.109867pt;}
._4_c00116{margin-left:-4.224000pt;}
._1_c00116{margin-left:-2.005333pt;}
._3_c00116{margin-left:-0.896000pt;}
._2_c00116{width:0.896000pt;}
._5_c00116{width:7.674490pt;}
._7_c00116{width:23.882016pt;}
._a_c00116{width:25.481726pt;}
._8_c00116{width:166.510723pt;}
._9_c00116{width:169.411813pt;}
._6_c00116{width:291.851701pt;}
.fs4_c00116{font-size:0.867200pt;}
.fs9_c00116{font-size:1.891200pt;}
.fsc_c00116{font-size:5.657600pt;}
.fs7_c00116{font-size:5.683733pt;}
.fs10_c00116{font-size:5.696533pt;}
.fs11_c00116{font-size:5.718933pt;}
.fs8_c00116{font-size:9.901333pt;}
.fs3_c00116{font-size:9.946133pt;}
.fsd_c00116{font-size:10.008533pt;}
.fsb_c00116{font-size:16.973333pt;}
.fs6_c00116{font-size:17.050667pt;}
.fsf_c00116{font-size:17.156800pt;}
.fsa_c00116{font-size:21.217067pt;}
.fs5_c00116{font-size:21.313600pt;}
.fse_c00116{font-size:21.446400pt;}
.fs0_c00116{font-size:42.666667pt;}
.fs2_c00116{font-size:53.333333pt;}
.fs1_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y75_c00116{bottom:5.080933pt;}
.y54_c00116{bottom:5.104133pt;}
.y8a_c00116{bottom:5.135867pt;}
.y7f_c00116{bottom:14.727450pt;}
.y6f_c00116{bottom:17.753872pt;}
.y48_c00116{bottom:17.829711pt;}
.y36_c00116{bottom:17.842144pt;}
.y81_c00116{bottom:17.942692pt;}
.y7e_c00116{bottom:17.945194pt;}
.y7a_c00116{bottom:17.947696pt;}
.y70_c00116{bottom:17.966751pt;}
.y5a_c00116{bottom:17.969067pt;}
.y6e_c00116{bottom:20.937151pt;}
.y59_c00116{bottom:20.939467pt;}
.y65_c00116{bottom:20.940585pt;}
.y4f_c00116{bottom:21.022420pt;}
.y47_c00116{bottom:21.027393pt;}
.y35_c00116{bottom:21.039826pt;}
.y80_c00116{bottom:21.160435pt;}
.y7d_c00116{bottom:21.162937pt;}
.y79_c00116{bottom:21.165439pt;}
.y4e_c00116{bottom:34.663542pt;}
.y4d_c00116{bottom:37.861224pt;}
.y4c_c00116{bottom:41.058906pt;}
.y4b_c00116{bottom:44.256588pt;}
.y4a_c00116{bottom:47.454269pt;}
.y49_c00116{bottom:50.651951pt;}
.y89_c00116{bottom:68.527200pt;}
.y74_c00116{bottom:69.799360pt;}
.y53_c00116{bottom:70.117323pt;}
.y85_c00116{bottom:70.554478pt;}
.y3c_c00116{bottom:74.475427pt;}
.y39_c00116{bottom:74.477914pt;}
.y67_c00116{bottom:77.321253pt;}
.y68_c00116{bottom:77.534131pt;}
.y5c_c00116{bottom:77.535488pt;}
.y3e_c00116{bottom:77.670623pt;}
.y3b_c00116{bottom:77.673109pt;}
.y38_c00116{bottom:77.675596pt;}
.y2e_c00116{bottom:77.676451pt;}
.y7c_c00116{bottom:78.156530pt;}
.y66_c00116{bottom:80.504531pt;}
.y5b_c00116{bottom:80.505888pt;}
.y3d_c00116{bottom:80.868304pt;}
.y3a_c00116{bottom:80.870791pt;}
.y37_c00116{bottom:80.873277pt;}
.y2d_c00116{bottom:80.874133pt;}
.y7b_c00116{bottom:81.374274pt;}
.y46_c00116{bottom:88.902294pt;}
.y45_c00116{bottom:92.099975pt;}
.y44_c00116{bottom:95.297657pt;}
.y6d_c00116{bottom:97.915067pt;}
.y43_c00116{bottom:98.495339pt;}
.y6c_c00116{bottom:100.885467pt;}
.y42_c00116{bottom:101.693021pt;}
.y25_c00116{bottom:103.309733pt;}
.y6b_c00116{bottom:103.855867pt;}
.y41_c00116{bottom:104.890703pt;}
.y88_c00116{bottom:105.006113pt;}
.y6a_c00116{bottom:106.826133pt;}
.y57_c00116{bottom:107.348133pt;}
.y40_c00116{bottom:108.088385pt;}
.y87_c00116{bottom:108.223857pt;}
.y69_c00116{bottom:109.795151pt;}
.y3f_c00116{bottom:111.286067pt;}
.y86_c00116{bottom:111.441600pt;}
.y56_c00116{bottom:123.881467pt;}
.y24_c00116{bottom:125.309733pt;}
.y73_c00116{bottom:129.761903pt;}
.y52_c00116{bottom:130.353065pt;}
.y84_c00116{bottom:131.165163pt;}
.y5e_c00116{bottom:138.538721pt;}
.y61_c00116{bottom:138.751600pt;}
.y32_c00116{bottom:139.170051pt;}
.y78_c00116{bottom:140.036790pt;}
.y55_c00116{bottom:140.414800pt;}
.y5d_c00116{bottom:141.722000pt;}
.y31_c00116{bottom:142.367733pt;}
.y77_c00116{bottom:143.254533pt;}
.y23_c00116{bottom:147.309733pt;}
.y60_c00116{bottom:155.714113pt;}
.y5f_c00116{bottom:156.322133pt;}
.y58_c00116{bottom:166.641467pt;}
.y22_c00116{bottom:169.309733pt;}
.y30_c00116{bottom:170.755862pt;}
.y2f_c00116{bottom:171.034667pt;}
.y72_c00116{bottom:190.581600pt;}
.y21_c00116{bottom:191.309733pt;}
.y51_c00116{bottom:191.449867pt;}
.y83_c00116{bottom:192.642267pt;}
.y34_c00116{bottom:194.082654pt;}
.y33_c00116{bottom:197.280335pt;}
.y64_c00116{bottom:198.018506pt;}
.y71_c00116{bottom:198.319067pt;}
.y50_c00116{bottom:199.222667pt;}
.y82_c00116{bottom:200.463600pt;}
.y63_c00116{bottom:200.988906pt;}
.y62_c00116{bottom:203.959306pt;}
.y20_c00116{bottom:213.309733pt;}
.y1f_c00116{bottom:235.309733pt;}
.y1e_c00116{bottom:270.637733pt;}
.y1d_c00116{bottom:319.309733pt;}
.y1c_c00116{bottom:341.309733pt;}
.y1b_c00116{bottom:363.309733pt;}
.y1a_c00116{bottom:385.309733pt;}
.y2b_c00116{bottom:388.431600pt;}
.y2a_c00116{bottom:404.964933pt;}
.y19_c00116{bottom:407.309733pt;}
.y29_c00116{bottom:421.498267pt;}
.y18_c00116{bottom:429.309733pt;}
.y2c_c00116{bottom:446.268133pt;}
.y17_c00116{bottom:451.309733pt;}
.y16_c00116{bottom:473.309733pt;}
.y15_c00116{bottom:495.309733pt;}
.y14_c00116{bottom:517.309733pt;}
.y13_c00116{bottom:539.309733pt;}
.y12_c00116{bottom:561.309733pt;}
.y11_c00116{bottom:583.309733pt;}
.y10_c00116{bottom:605.309733pt;}
.yf_c00116{bottom:640.637733pt;}
.ye_c00116{bottom:662.637733pt;}
.y28_c00116{bottom:671.442533pt;}
.yd_c00116{bottom:684.637733pt;}
.y27_c00116{bottom:687.975867pt;}
.y26_c00116{bottom:704.509200pt;}
.yc_c00116{bottom:706.637733pt;}
.yb_c00116{bottom:728.637733pt;}
.y76_c00116{bottom:730.238800pt;}
.ya_c00116{bottom:750.637733pt;}
.y9_c00116{bottom:772.637733pt;}
.y8_c00116{bottom:794.637733pt;}
.y7_c00116{bottom:816.637733pt;}
.y6_c00116{bottom:838.637733pt;}
.y5_c00116{bottom:860.637733pt;}
.y4_c00116{bottom:882.637733pt;}
.y3_c00116{bottom:904.637733pt;}
.y2_c00116{bottom:926.637733pt;}
.y1_c00116{bottom:972.089867pt;}
.ha_c00116{height:0.632189pt;}
.h10_c00116{height:1.378685pt;}
.h13_c00116{height:4.124390pt;}
.hd_c00116{height:4.143442pt;}
.h19_c00116{height:4.169102pt;}
.h18_c00116{height:5.855139pt;}
.hf_c00116{height:7.218072pt;}
.h9_c00116{height:7.250731pt;}
.h15_c00116{height:7.296221pt;}
.h12_c00116{height:12.373560pt;}
.hc_c00116{height:12.429936pt;}
.h17_c00116{height:12.507307pt;}
.h11_c00116{height:15.467242pt;}
.hb_c00116{height:15.537614pt;}
.h16_c00116{height:15.634426pt;}
.h2_c00116{height:34.901333pt;}
.h3_c00116{height:35.541333pt;}
.h7_c00116{height:43.200000pt;}
.h6_c00116{height:43.626667pt;}
.h4_c00116{height:52.352000pt;}
.h5_c00116{height:53.312000pt;}
.he_c00116{height:207.382667pt;}
.h14_c00116{height:207.880000pt;}
.h8_c00116{height:207.914667pt;}
.h1_c00116{height:1009.333333pt;}
.h0_c00116{height:1009.338800pt;}
.w3_c00116{width:297.225333pt;}
.w2_c00116{width:298.581333pt;}
.w4_c00116{width:300.445333pt;}
.w0_c00116{width:794.622400pt;}
.w1_c00116{width:794.666667pt;}
.x0_c00116{left:0.000000pt;}
.x8_c00116{left:19.372800pt;}
.x12_c00116{left:21.023600pt;}
.x9_c00116{left:52.794002pt;}
.x7_c00116{left:58.021867pt;}
.xa_c00116{left:86.594133pt;}
.x5_c00116{left:114.361600pt;}
.xb_c00116{left:119.980516pt;}
.xc_c00116{left:121.184257pt;}
.x15_c00116{left:124.988079pt;}
.x14_c00116{left:129.204253pt;}
.xd_c00116{left:154.086933pt;}
.x19_c00116{left:155.050000pt;}
.x2_c00116{left:167.166133pt;}
.x3_c00116{left:169.345200pt;}
.x13_c00116{left:175.581067pt;}
.xe_c00116{left:186.839114pt;}
.x10_c00116{left:188.361092pt;}
.x16_c00116{left:220.026530pt;}
.x6_c00116{left:221.143600pt;}
.x1a_c00116{left:222.411200pt;}
.x17_c00116{left:253.676698pt;}
.xf_c00116{left:254.835410pt;}
.x1b_c00116{left:256.425633pt;}
.x18_c00116{left:285.096229pt;}
.x11_c00116{left:286.667376pt;}
.x1c_c00116{left:288.452800pt;}
.x4_c00116{left:437.439467pt;}
.x1_c00116{left:715.194400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca877020a25917a0c35b8533.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_2501f61eb8a9ce0bd494b7f5.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls4_c00117{letter-spacing:-1.200000px;}
.ls5_c00117{letter-spacing:-0.240000px;}
.ls3_c00117{letter-spacing:-0.216000px;}
.ls2_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:0.216000px;}
.ls1_c00117{letter-spacing:0.648000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00117{word-spacing:-16.992000px;}
.ws1_c00117{word-spacing:-16.344000px;}
.ws6_c00117{word-spacing:-2.232000px;}
.ws8_c00117{word-spacing:-2.088000px;}
.wsd_c00117{word-spacing:-1.800000px;}
.ws12_c00117{word-spacing:-1.440000px;}
.wse_c00117{word-spacing:-1.152000px;}
.wsb_c00117{word-spacing:-0.720000px;}
.ws14_c00117{word-spacing:-0.576000px;}
.ws11_c00117{word-spacing:-0.144000px;}
.ws16_c00117{word-spacing:-0.060000px;}
.ws3_c00117{word-spacing:0.000000px;}
.ws13_c00117{word-spacing:0.216000px;}
.ws17_c00117{word-spacing:0.240000px;}
.ws4_c00117{word-spacing:0.504000px;}
.wsa_c00117{word-spacing:1.080000px;}
.ws7_c00117{word-spacing:1.152000px;}
.ws5_c00117{word-spacing:1.944000px;}
.ws10_c00117{word-spacing:3.024000px;}
.wsc_c00117{word-spacing:5.688000px;}
.ws15_c00117{word-spacing:6.336000px;}
.wsf_c00117{word-spacing:7.416000px;}
.ws9_c00117{word-spacing:7.704000px;}
.ws0_c00117{word-spacing:1587.115200px;}
._5_c00117{margin-left:-8.280000px;}
._3_c00117{margin-left:-5.304000px;}
._4_c00117{margin-left:-3.864000px;}
._0_c00117{margin-left:-2.112000px;}
._1_c00117{margin-left:-1.104000px;}
._2_c00117{width:1.320000px;}
.fc0_c00117{color:rgb(35,31,32);}
.fs0_c00117{font-size:48.000000px;}
.fs2_c00117{font-size:60.000000px;}
.fs1_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y1a_c00117{bottom:111.034350px;}
.y19_c00117{bottom:129.634350px;}
.y18_c00117{bottom:148.234350px;}
.y17_c00117{bottom:166.834350px;}
.y16_c00117{bottom:185.434350px;}
.y15_c00117{bottom:527.235450px;}
.y14_c00117{bottom:551.985450px;}
.y13_c00117{bottom:591.729450px;}
.y12_c00117{bottom:616.479450px;}
.y11_c00117{bottom:641.229450px;}
.y10_c00117{bottom:665.979450px;}
.yf_c00117{bottom:690.729450px;}
.ye_c00117{bottom:715.479450px;}
.yd_c00117{bottom:740.229450px;}
.yc_c00117{bottom:764.979450px;}
.yb_c00117{bottom:804.723450px;}
.ya_c00117{bottom:829.473450px;}
.y9_c00117{bottom:854.223450px;}
.y8_c00117{bottom:878.973450px;}
.y7_c00117{bottom:918.717450px;}
.y6_c00117{bottom:943.467450px;}
.y5_c00117{bottom:968.217450px;}
.y4_c00117{bottom:992.967450px;}
.y3_c00117{bottom:1017.717450px;}
.y2_c00117{bottom:1042.467450px;}
.y1_c00117{bottom:1093.601100px;}
.h2_c00117{height:39.264000px;}
.h5_c00117{height:48.600000px;}
.h4_c00117{height:49.080000px;}
.h3_c00117{height:58.896000px;}
.h1_c00117{height:1135.500000px;}
.h0_c00117{height:1135.506150px;}
.w0_c00117{width:893.950200px;}
.w1_c00117{width:894.000000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:77.603100px;}
.x2_c00117{left:544.558650px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls4_c00117{letter-spacing:-1.066667pt;}
.ls5_c00117{letter-spacing:-0.213333pt;}
.ls3_c00117{letter-spacing:-0.192000pt;}
.ls2_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:0.192000pt;}
.ls1_c00117{letter-spacing:0.576000pt;}
.ws2_c00117{word-spacing:-15.104000pt;}
.ws1_c00117{word-spacing:-14.528000pt;}
.ws6_c00117{word-spacing:-1.984000pt;}
.ws8_c00117{word-spacing:-1.856000pt;}
.wsd_c00117{word-spacing:-1.600000pt;}
.ws12_c00117{word-spacing:-1.280000pt;}
.wse_c00117{word-spacing:-1.024000pt;}
.wsb_c00117{word-spacing:-0.640000pt;}
.ws14_c00117{word-spacing:-0.512000pt;}
.ws11_c00117{word-spacing:-0.128000pt;}
.ws16_c00117{word-spacing:-0.053333pt;}
.ws3_c00117{word-spacing:0.000000pt;}
.ws13_c00117{word-spacing:0.192000pt;}
.ws17_c00117{word-spacing:0.213333pt;}
.ws4_c00117{word-spacing:0.448000pt;}
.wsa_c00117{word-spacing:0.960000pt;}
.ws7_c00117{word-spacing:1.024000pt;}
.ws5_c00117{word-spacing:1.728000pt;}
.ws10_c00117{word-spacing:2.688000pt;}
.wsc_c00117{word-spacing:5.056000pt;}
.ws15_c00117{word-spacing:5.632000pt;}
.wsf_c00117{word-spacing:6.592000pt;}
.ws9_c00117{word-spacing:6.848000pt;}
.ws0_c00117{word-spacing:1410.769067pt;}
._5_c00117{margin-left:-7.360000pt;}
._3_c00117{margin-left:-4.714667pt;}
._4_c00117{margin-left:-3.434667pt;}
._0_c00117{margin-left:-1.877333pt;}
._1_c00117{margin-left:-0.981333pt;}
._2_c00117{width:1.173333pt;}
.fs0_c00117{font-size:42.666667pt;}
.fs2_c00117{font-size:53.333333pt;}
.fs1_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y1a_c00117{bottom:98.697200pt;}
.y19_c00117{bottom:115.230533pt;}
.y18_c00117{bottom:131.763867pt;}
.y17_c00117{bottom:148.297200pt;}
.y16_c00117{bottom:164.830533pt;}
.y15_c00117{bottom:468.653733pt;}
.y14_c00117{bottom:490.653733pt;}
.y13_c00117{bottom:525.981733pt;}
.y12_c00117{bottom:547.981733pt;}
.y11_c00117{bottom:569.981733pt;}
.y10_c00117{bottom:591.981733pt;}
.yf_c00117{bottom:613.981733pt;}
.ye_c00117{bottom:635.981733pt;}
.yd_c00117{bottom:657.981733pt;}
.yc_c00117{bottom:679.981733pt;}
.yb_c00117{bottom:715.309733pt;}
.ya_c00117{bottom:737.309733pt;}
.y9_c00117{bottom:759.309733pt;}
.y8_c00117{bottom:781.309733pt;}
.y7_c00117{bottom:816.637733pt;}
.y6_c00117{bottom:838.637733pt;}
.y5_c00117{bottom:860.637733pt;}
.y4_c00117{bottom:882.637733pt;}
.y3_c00117{bottom:904.637733pt;}
.y2_c00117{bottom:926.637733pt;}
.y1_c00117{bottom:972.089867pt;}
.h2_c00117{height:34.901333pt;}
.h5_c00117{height:43.200000pt;}
.h4_c00117{height:43.626667pt;}
.h3_c00117{height:52.352000pt;}
.h1_c00117{height:1009.333333pt;}
.h0_c00117{height:1009.338800pt;}
.w0_c00117{width:794.622400pt;}
.w1_c00117{width:794.666667pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:68.980533pt;}
.x2_c00117{left:484.052133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2de8893feca30ed5bc1f95fb.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_094049680d235f107b1fb841.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.067000;font-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_c00118{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:23.928600px;}
.ls3_c00118{letter-spacing:-1.080000px;}
.ls4_c00118{letter-spacing:-0.923472px;}
.ls2_c00118{letter-spacing:0.000000px;}
.ls1_c00118{letter-spacing:0.216000px;}
.ls0_c00118{letter-spacing:0.480000px;}
.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:-16.344000px;}
.ws3_c00118{word-spacing:-13.620000px;}
.ws0_c00118{word-spacing:-10.896000px;}
.ws2_c00118{word-spacing:-8.689032px;}
.ws5_c00118{word-spacing:-2.160000px;}
.ws15_c00118{word-spacing:-1.440000px;}
.wsd_c00118{word-spacing:-1.296000px;}
.ws7_c00118{word-spacing:-1.152000px;}
.wsc_c00118{word-spacing:-0.792000px;}
.wsb_c00118{word-spacing:-0.720000px;}
.ws4_c00118{word-spacing:0.000000px;}
.ws16_c00118{word-spacing:0.336000px;}
.ws10_c00118{word-spacing:0.936000px;}
.ws13_c00118{word-spacing:1.080000px;}
.ws8_c00118{word-spacing:1.440000px;}
.ws12_c00118{word-spacing:1.800000px;}
.ws6_c00118{word-spacing:4.464000px;}
.ws11_c00118{word-spacing:5.256000px;}
.wsf_c00118{word-spacing:5.400000px;}
.wsa_c00118{word-spacing:5.904000px;}
.ws9_c00118{word-spacing:6.768000px;}
.ws14_c00118{word-spacing:7.848000px;}
.wse_c00118{word-spacing:9.576000px;}
._0_c00118{margin-left:-2755.084200px;}
._3_c00118{margin-left:-6.264000px;}
._6_c00118{margin-left:-5.160000px;}
._1_c00118{margin-left:-2.256000px;}
._4_c00118{margin-left:-1.008000px;}
._2_c00118{width:1.008000px;}
._5_c00118{width:2.592000px;}
._8_c00118{width:5.566800px;}
._7_c00118{width:7.200000px;}
.fc0_c00118{color:rgb(35,31,32);}
.fs2_c00118{font-size:41.976000px;}
.fs0_c00118{font-size:48.000000px;}
.fs3_c00118{font-size:60.000000px;}
.fs1_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y15_c00118{bottom:111.616350px;}
.y14_c00118{bottom:126.616350px;}
.y13_c00118{bottom:182.229450px;}
.y12_c00118{bottom:206.979450px;}
.y11_c00118{bottom:231.729450px;}
.y10_c00118{bottom:256.479450px;}
.yf_c00118{bottom:281.229450px;}
.ye_c00118{bottom:305.979450px;}
.yd_c00118{bottom:345.723450px;}
.yc_c00118{bottom:370.473450px;}
.yb_c00118{bottom:395.223450px;}
.ya_c00118{bottom:419.973450px;}
.y9_c00118{bottom:444.723450px;}
.y8_c00118{bottom:469.473450px;}
.y7_c00118{bottom:494.223450px;}
.y6_c00118{bottom:533.967450px;}
.y5_c00118{bottom:558.717450px;}
.y4_c00118{bottom:583.467450px;}
.y3_c00118{bottom:608.217450px;}
.y2_c00118{bottom:632.967450px;}
.y19_c00118{bottom:668.378100px;}
.y18_c00118{bottom:686.978100px;}
.y17_c00118{bottom:705.578100px;}
.y16_c00118{bottom:724.178100px;}
.y1_c00118{bottom:1093.601100px;}
.h2_c00118{height:39.264000px;}
.h3_c00118{height:39.984000px;}
.h6_c00118{height:48.600000px;}
.h5_c00118{height:49.080000px;}
.h4_c00118{height:58.896000px;}
.h1_c00118{height:1135.500000px;}
.h0_c00118{height:1135.506150px;}
.w0_c00118{width:893.950200px;}
.w1_c00118{width:894.000000px;}
.x0_c00118{left:0.000000px;}
.x4_c00118{left:128.626800px;}
.x5_c00118{left:145.643100px;}
.x2_c00118{left:188.061900px;}
.x3_c00118{left:190.513350px;}
.x6_c00118{left:371.208600px;}
.x1_c00118{left:803.993850px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:21.269867pt;}
.ls3_c00118{letter-spacing:-0.960000pt;}
.ls4_c00118{letter-spacing:-0.820864pt;}
.ls2_c00118{letter-spacing:0.000000pt;}
.ls1_c00118{letter-spacing:0.192000pt;}
.ls0_c00118{letter-spacing:0.426667pt;}
.ws1_c00118{word-spacing:-14.528000pt;}
.ws3_c00118{word-spacing:-12.106667pt;}
.ws0_c00118{word-spacing:-9.685333pt;}
.ws2_c00118{word-spacing:-7.723584pt;}
.ws5_c00118{word-spacing:-1.920000pt;}
.ws15_c00118{word-spacing:-1.280000pt;}
.wsd_c00118{word-spacing:-1.152000pt;}
.ws7_c00118{word-spacing:-1.024000pt;}
.wsc_c00118{word-spacing:-0.704000pt;}
.wsb_c00118{word-spacing:-0.640000pt;}
.ws4_c00118{word-spacing:0.000000pt;}
.ws16_c00118{word-spacing:0.298667pt;}
.ws10_c00118{word-spacing:0.832000pt;}
.ws13_c00118{word-spacing:0.960000pt;}
.ws8_c00118{word-spacing:1.280000pt;}
.ws12_c00118{word-spacing:1.600000pt;}
.ws6_c00118{word-spacing:3.968000pt;}
.ws11_c00118{word-spacing:4.672000pt;}
.wsf_c00118{word-spacing:4.800000pt;}
.wsa_c00118{word-spacing:5.248000pt;}
.ws9_c00118{word-spacing:6.016000pt;}
.ws14_c00118{word-spacing:6.976000pt;}
.wse_c00118{word-spacing:8.512000pt;}
._0_c00118{margin-left:-2448.963733pt;}
._3_c00118{margin-left:-5.568000pt;}
._6_c00118{margin-left:-4.586667pt;}
._1_c00118{margin-left:-2.005333pt;}
._4_c00118{margin-left:-0.896000pt;}
._2_c00118{width:0.896000pt;}
._5_c00118{width:2.304000pt;}
._8_c00118{width:4.948267pt;}
._7_c00118{width:6.400000pt;}
.fs2_c00118{font-size:37.312000pt;}
.fs0_c00118{font-size:42.666667pt;}
.fs3_c00118{font-size:53.333333pt;}
.fs1_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y15_c00118{bottom:99.214533pt;}
.y14_c00118{bottom:112.547867pt;}
.y13_c00118{bottom:161.981733pt;}
.y12_c00118{bottom:183.981733pt;}
.y11_c00118{bottom:205.981733pt;}
.y10_c00118{bottom:227.981733pt;}
.yf_c00118{bottom:249.981733pt;}
.ye_c00118{bottom:271.981733pt;}
.yd_c00118{bottom:307.309733pt;}
.yc_c00118{bottom:329.309733pt;}
.yb_c00118{bottom:351.309733pt;}
.ya_c00118{bottom:373.309733pt;}
.y9_c00118{bottom:395.309733pt;}
.y8_c00118{bottom:417.309733pt;}
.y7_c00118{bottom:439.309733pt;}
.y6_c00118{bottom:474.637733pt;}
.y5_c00118{bottom:496.637733pt;}
.y4_c00118{bottom:518.637733pt;}
.y3_c00118{bottom:540.637733pt;}
.y2_c00118{bottom:562.637733pt;}
.y19_c00118{bottom:594.113867pt;}
.y18_c00118{bottom:610.647200pt;}
.y17_c00118{bottom:627.180533pt;}
.y16_c00118{bottom:643.713867pt;}
.y1_c00118{bottom:972.089867pt;}
.h2_c00118{height:34.901333pt;}
.h3_c00118{height:35.541333pt;}
.h6_c00118{height:43.200000pt;}
.h5_c00118{height:43.626667pt;}
.h4_c00118{height:52.352000pt;}
.h1_c00118{height:1009.333333pt;}
.h0_c00118{height:1009.338800pt;}
.w0_c00118{width:794.622400pt;}
.w1_c00118{width:794.666667pt;}
.x0_c00118{left:0.000000pt;}
.x4_c00118{left:114.334933pt;}
.x5_c00118{left:129.460533pt;}
.x2_c00118{left:167.166133pt;}
.x3_c00118{left:169.345200pt;}
.x6_c00118{left:329.963200pt;}
.x1_c00118{left:714.661200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7465f1d7dd0fdda9eddf35d4.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.067000;font-style:normal;font-weight:normal;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_e1a8d90c0fceaa015dc0356d.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.v1_c00119{vertical-align:23.976600px;}
.ls9_c00119{letter-spacing:-4.800000px;}
.ls7_c00119{letter-spacing:-2.304000px;}
.ls6_c00119{letter-spacing:-1.944000px;}
.ls5_c00119{letter-spacing:-1.080000px;}
.lsc_c00119{letter-spacing:-0.720000px;}
.ls8_c00119{letter-spacing:-0.461736px;}
.lsa_c00119{letter-spacing:-0.300000px;}
.lsb_c00119{letter-spacing:-0.240000px;}
.ls4_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:0.144000px;}
.ls0_c00119{letter-spacing:0.216000px;}
.ls1_c00119{letter-spacing:0.360000px;}
.ls3_c00119{letter-spacing:0.576000px;}
.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:-16.344000px;}
.ws3_c00119{word-spacing:-13.620000px;}
.ws2_c00119{word-spacing:-6.096000px;}
.ws12_c00119{word-spacing:-2.376000px;}
.ws9_c00119{word-spacing:-2.160000px;}
.ws16_c00119{word-spacing:-1.944000px;}
.wsc_c00119{word-spacing:-1.224000px;}
.wsb_c00119{word-spacing:-0.936000px;}
.ws4_c00119{word-spacing:0.000000px;}
.ws1b_c00119{word-spacing:0.240000px;}
.ws1a_c00119{word-spacing:0.300000px;}
.ws5_c00119{word-spacing:0.432000px;}
.ws8_c00119{word-spacing:0.461736px;}
.ws13_c00119{word-spacing:0.720000px;}
.ws11_c00119{word-spacing:0.864000px;}
.ws6_c00119{word-spacing:1.296000px;}
.wse_c00119{word-spacing:1.512000px;}
.ws7_c00119{word-spacing:1.656000px;}
.ws19_c00119{word-spacing:2.496000px;}
.ws18_c00119{word-spacing:3.312000px;}
.wsa_c00119{word-spacing:3.600000px;}
.wsf_c00119{word-spacing:4.032000px;}
.ws17_c00119{word-spacing:4.176000px;}
.wsd_c00119{word-spacing:4.896000px;}
.ws10_c00119{word-spacing:5.976000px;}
.ws15_c00119{word-spacing:7.848000px;}
.ws14_c00119{word-spacing:10.008000px;}
.ws0_c00119{word-spacing:1588.699200px;}
._6_c00119{margin-left:-7.056000px;}
._5_c00119{margin-left:-5.976000px;}
._3_c00119{margin-left:-4.416000px;}
._0_c00119{margin-left:-2.112000px;}
._1_c00119{margin-left:-1.104000px;}
._2_c00119{width:1.032000px;}
._4_c00119{width:2.280000px;}
._7_c00119{width:4.992000px;}
._8_c00119{width:10.800000px;}
.fc0_c00119{color:rgb(35,31,32);}
.fs2_c00119{font-size:41.976000px;}
.fs0_c00119{font-size:48.000000px;}
.fs3_c00119{font-size:60.000000px;}
.fs1_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y17_c00119{bottom:111.616350px;}
.y16_c00119{bottom:126.616350px;}
.y15_c00119{bottom:198.723450px;}
.y14_c00119{bottom:223.473450px;}
.y13_c00119{bottom:248.223450px;}
.y12_c00119{bottom:272.973450px;}
.y11_c00119{bottom:297.723450px;}
.y10_c00119{bottom:322.473450px;}
.yf_c00119{bottom:362.217450px;}
.ye_c00119{bottom:386.967450px;}
.yd_c00119{bottom:411.717450px;}
.yc_c00119{bottom:436.467450px;}
.yb_c00119{bottom:461.217450px;}
.ya_c00119{bottom:485.967450px;}
.y9_c00119{bottom:510.717450px;}
.y8_c00119{bottom:535.467450px;}
.y7_c00119{bottom:560.217450px;}
.y6_c00119{bottom:584.967450px;}
.y5_c00119{bottom:609.717450px;}
.y4_c00119{bottom:634.467450px;}
.y3_c00119{bottom:674.217450px;}
.y2_c00119{bottom:698.967450px;}
.y1f_c00119{bottom:753.541950px;}
.y1b_c00119{bottom:753.823200px;}
.y1e_c00119{bottom:772.141950px;}
.y1a_c00119{bottom:772.423200px;}
.y1d_c00119{bottom:790.741950px;}
.y19_c00119{bottom:791.023200px;}
.y1c_c00119{bottom:809.341950px;}
.y18_c00119{bottom:809.623200px;}
.y1_c00119{bottom:1093.601100px;}
.h2_c00119{height:39.264000px;}
.h5_c00119{height:48.600000px;}
.h4_c00119{height:49.080000px;}
.h3_c00119{height:58.896000px;}
.h1_c00119{height:1135.500000px;}
.h0_c00119{height:1135.506150px;}
.w0_c00119{width:893.950200px;}
.w1_c00119{width:894.000000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:77.603100px;}
.x2_c00119{left:94.611000px;}
.x4_c00119{left:254.059800px;}
.x3_c00119{left:430.516500px;}
.x5_c00119{left:601.955550px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.v1_c00119{vertical-align:21.312533pt;}
.ls9_c00119{letter-spacing:-4.266667pt;}
.ls7_c00119{letter-spacing:-2.048000pt;}
.ls6_c00119{letter-spacing:-1.728000pt;}
.ls5_c00119{letter-spacing:-0.960000pt;}
.lsc_c00119{letter-spacing:-0.640000pt;}
.ls8_c00119{letter-spacing:-0.410432pt;}
.lsa_c00119{letter-spacing:-0.266667pt;}
.lsb_c00119{letter-spacing:-0.213333pt;}
.ls4_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:0.128000pt;}
.ls0_c00119{letter-spacing:0.192000pt;}
.ls1_c00119{letter-spacing:0.320000pt;}
.ls3_c00119{letter-spacing:0.512000pt;}
.ws1_c00119{word-spacing:-14.528000pt;}
.ws3_c00119{word-spacing:-12.106667pt;}
.ws2_c00119{word-spacing:-5.418667pt;}
.ws12_c00119{word-spacing:-2.112000pt;}
.ws9_c00119{word-spacing:-1.920000pt;}
.ws16_c00119{word-spacing:-1.728000pt;}
.wsc_c00119{word-spacing:-1.088000pt;}
.wsb_c00119{word-spacing:-0.832000pt;}
.ws4_c00119{word-spacing:0.000000pt;}
.ws1b_c00119{word-spacing:0.213333pt;}
.ws1a_c00119{word-spacing:0.266667pt;}
.ws5_c00119{word-spacing:0.384000pt;}
.ws8_c00119{word-spacing:0.410432pt;}
.ws13_c00119{word-spacing:0.640000pt;}
.ws11_c00119{word-spacing:0.768000pt;}
.ws6_c00119{word-spacing:1.152000pt;}
.wse_c00119{word-spacing:1.344000pt;}
.ws7_c00119{word-spacing:1.472000pt;}
.ws19_c00119{word-spacing:2.218667pt;}
.ws18_c00119{word-spacing:2.944000pt;}
.wsa_c00119{word-spacing:3.200000pt;}
.wsf_c00119{word-spacing:3.584000pt;}
.ws17_c00119{word-spacing:3.712000pt;}
.wsd_c00119{word-spacing:4.352000pt;}
.ws10_c00119{word-spacing:5.312000pt;}
.ws15_c00119{word-spacing:6.976000pt;}
.ws14_c00119{word-spacing:8.896000pt;}
.ws0_c00119{word-spacing:1412.177067pt;}
._6_c00119{margin-left:-6.272000pt;}
._5_c00119{margin-left:-5.312000pt;}
._3_c00119{margin-left:-3.925333pt;}
._0_c00119{margin-left:-1.877333pt;}
._1_c00119{margin-left:-0.981333pt;}
._2_c00119{width:0.917333pt;}
._4_c00119{width:2.026667pt;}
._7_c00119{width:4.437333pt;}
._8_c00119{width:9.600000pt;}
.fs2_c00119{font-size:37.312000pt;}
.fs0_c00119{font-size:42.666667pt;}
.fs3_c00119{font-size:53.333333pt;}
.fs1_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y17_c00119{bottom:99.214533pt;}
.y16_c00119{bottom:112.547867pt;}
.y15_c00119{bottom:176.643067pt;}
.y14_c00119{bottom:198.643067pt;}
.y13_c00119{bottom:220.643067pt;}
.y12_c00119{bottom:242.643067pt;}
.y11_c00119{bottom:264.643067pt;}
.y10_c00119{bottom:286.643067pt;}
.yf_c00119{bottom:321.971067pt;}
.ye_c00119{bottom:343.971067pt;}
.yd_c00119{bottom:365.971067pt;}
.yc_c00119{bottom:387.971067pt;}
.yb_c00119{bottom:409.971067pt;}
.ya_c00119{bottom:431.971067pt;}
.y9_c00119{bottom:453.971067pt;}
.y8_c00119{bottom:475.971067pt;}
.y7_c00119{bottom:497.971067pt;}
.y6_c00119{bottom:519.971067pt;}
.y5_c00119{bottom:541.971067pt;}
.y4_c00119{bottom:563.971067pt;}
.y3_c00119{bottom:599.304400pt;}
.y2_c00119{bottom:621.304400pt;}
.y1f_c00119{bottom:669.815067pt;}
.y1b_c00119{bottom:670.065067pt;}
.y1e_c00119{bottom:686.348400pt;}
.y1a_c00119{bottom:686.598400pt;}
.y1d_c00119{bottom:702.881733pt;}
.y19_c00119{bottom:703.131733pt;}
.y1c_c00119{bottom:719.415067pt;}
.y18_c00119{bottom:719.665067pt;}
.y1_c00119{bottom:972.089867pt;}
.h2_c00119{height:34.901333pt;}
.h5_c00119{height:43.200000pt;}
.h4_c00119{height:43.626667pt;}
.h3_c00119{height:52.352000pt;}
.h1_c00119{height:1009.333333pt;}
.h0_c00119{height:1009.338800pt;}
.w0_c00119{width:794.622400pt;}
.w1_c00119{width:794.666667pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:68.980533pt;}
.x2_c00119{left:84.098667pt;}
.x4_c00119{left:225.830933pt;}
.x3_c00119{left:382.681333pt;}
.x5_c00119{left:535.071600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b13c6b274c1ebcc8d7076c77.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_02567a9c2de3587cce2a6697.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.067000;font-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_c00120{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.lse_c00120{letter-spacing:-6.000000px;}
.ls6_c00120{letter-spacing:-2.808000px;}
.lsb_c00120{letter-spacing:-1.224000px;}
.ls9_c00120{letter-spacing:-0.936000px;}
.lsc_c00120{letter-spacing:-0.864000px;}
.lsa_c00120{letter-spacing:-0.648000px;}
.ls8_c00120{letter-spacing:-0.360000px;}
.ls4_c00120{letter-spacing:-0.288000px;}
.ls7_c00120{letter-spacing:-0.216000px;}
.lsd_c00120{letter-spacing:-0.180000px;}
.ls5_c00120{letter-spacing:0.000000px;}
.ls2_c00120{letter-spacing:0.216000px;}
.ls1_c00120{letter-spacing:0.360000px;}
.ls0_c00120{letter-spacing:0.480000px;}
.ls3_c00120{letter-spacing:5.040000px;}
.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;}
}
.ws2_c00120{word-spacing:-16.344000px;}
.ws3_c00120{word-spacing:-15.696000px;}
.ws5_c00120{word-spacing:-15.480000px;}
.ws4_c00120{word-spacing:-15.120000px;}
.ws1_c00120{word-spacing:-13.680000px;}
.ws7_c00120{word-spacing:-13.620000px;}
.ws6_c00120{word-spacing:-13.560000px;}
.ws0_c00120{word-spacing:-10.608000px;}
.ws1a_c00120{word-spacing:-2.232000px;}
.ws14_c00120{word-spacing:-2.160000px;}
.ws1c_c00120{word-spacing:-1.872000px;}
.ws19_c00120{word-spacing:-1.656000px;}
.ws1b_c00120{word-spacing:-1.296000px;}
.ws11_c00120{word-spacing:-0.864000px;}
.ws1d_c00120{word-spacing:-0.648000px;}
.ws13_c00120{word-spacing:-0.216000px;}
.ws8_c00120{word-spacing:0.000000px;}
.wsd_c00120{word-spacing:0.216000px;}
.ws17_c00120{word-spacing:0.360000px;}
.ws12_c00120{word-spacing:0.648000px;}
.ws9_c00120{word-spacing:0.720000px;}
.wsc_c00120{word-spacing:1.656000px;}
.wse_c00120{word-spacing:2.160000px;}
.ws15_c00120{word-spacing:2.232000px;}
.wsf_c00120{word-spacing:2.448000px;}
.wsb_c00120{word-spacing:3.096000px;}
.wsa_c00120{word-spacing:3.744000px;}
.ws18_c00120{word-spacing:4.824000px;}
.ws1e_c00120{word-spacing:5.040000px;}
.ws16_c00120{word-spacing:5.616000px;}
.ws10_c00120{word-spacing:5.832000px;}
.ws1f_c00120{word-spacing:6.000000px;}
._0_c00120{margin-left:-2754.699600px;}
._9_c00120{margin-left:-6.849600px;}
._7_c00120{margin-left:-3.957600px;}
._1_c00120{margin-left:-2.256000px;}
._5_c00120{margin-left:-1.207200px;}
._2_c00120{width:1.008000px;}
._4_c00120{width:2.677800px;}
._a_c00120{width:5.820000px;}
._6_c00120{width:23.184000px;}
._8_c00120{width:24.480000px;}
._3_c00120{width:26.208000px;}
.fc0_c00120{color:rgb(35,31,32);}
.fs0_c00120{font-size:48.000000px;}
.fs2_c00120{font-size:60.000000px;}
.fs1_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y21_c00120{bottom:120.737250px;}
.y20_c00120{bottom:139.337250px;}
.y24_c00120{bottom:140.509800px;}
.y1f_c00120{bottom:157.937250px;}
.y23_c00120{bottom:159.109800px;}
.y1e_c00120{bottom:176.537250px;}
.y22_c00120{bottom:177.709800px;}
.y1d_c00120{bottom:195.137250px;}
.y1c_c00120{bottom:375.097500px;}
.y1b_c00120{bottom:399.397500px;}
.y1a_c00120{bottom:423.697500px;}
.y19_c00120{bottom:447.997500px;}
.y18_c00120{bottom:472.297500px;}
.y17_c00120{bottom:496.453500px;}
.y16_c00120{bottom:520.753500px;}
.y15_c00120{bottom:545.053500px;}
.y14_c00120{bottom:584.203500px;}
.y13_c00120{bottom:608.359500px;}
.y12_c00120{bottom:632.515500px;}
.y11_c00120{bottom:656.671500px;}
.y10_c00120{bottom:680.827500px;}
.yf_c00120{bottom:704.983500px;}
.ye_c00120{bottom:729.139500px;}
.yd_c00120{bottom:768.289500px;}
.yc_c00120{bottom:792.445500px;}
.yb_c00120{bottom:816.601500px;}
.ya_c00120{bottom:840.757500px;}
.y9_c00120{bottom:864.913500px;}
.y8_c00120{bottom:893.291550px;}
.y7_c00120{bottom:917.447550px;}
.y6_c00120{bottom:941.603550px;}
.y5_c00120{bottom:965.759550px;}
.y4_c00120{bottom:989.915550px;}
.y3_c00120{bottom:1018.311450px;}
.y2_c00120{bottom:1042.467450px;}
.y1_c00120{bottom:1093.601100px;}
.h2_c00120{height:39.264000px;}
.h3_c00120{height:39.984000px;}
.h6_c00120{height:48.600000px;}
.h5_c00120{height:49.080000px;}
.h4_c00120{height:58.896000px;}
.h1_c00120{height:1135.500000px;}
.h0_c00120{height:1135.506150px;}
.w0_c00120{width:893.950200px;}
.w1_c00120{width:894.000000px;}
.x0_c00120{left:0.000000px;}
.x4_c00120{left:128.626800px;}
.x5_c00120{left:149.900250px;}
.x2_c00120{left:188.061900px;}
.x3_c00120{left:190.513350px;}
.x6_c00120{left:660.122850px;}
.x1_c00120{left:803.525700px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.lse_c00120{letter-spacing:-5.333333pt;}
.ls6_c00120{letter-spacing:-2.496000pt;}
.lsb_c00120{letter-spacing:-1.088000pt;}
.ls9_c00120{letter-spacing:-0.832000pt;}
.lsc_c00120{letter-spacing:-0.768000pt;}
.lsa_c00120{letter-spacing:-0.576000pt;}
.ls8_c00120{letter-spacing:-0.320000pt;}
.ls4_c00120{letter-spacing:-0.256000pt;}
.ls7_c00120{letter-spacing:-0.192000pt;}
.lsd_c00120{letter-spacing:-0.160000pt;}
.ls5_c00120{letter-spacing:0.000000pt;}
.ls2_c00120{letter-spacing:0.192000pt;}
.ls1_c00120{letter-spacing:0.320000pt;}
.ls0_c00120{letter-spacing:0.426667pt;}
.ls3_c00120{letter-spacing:4.480000pt;}
.ws2_c00120{word-spacing:-14.528000pt;}
.ws3_c00120{word-spacing:-13.952000pt;}
.ws5_c00120{word-spacing:-13.760000pt;}
.ws4_c00120{word-spacing:-13.440000pt;}
.ws1_c00120{word-spacing:-12.160000pt;}
.ws7_c00120{word-spacing:-12.106667pt;}
.ws6_c00120{word-spacing:-12.053333pt;}
.ws0_c00120{word-spacing:-9.429333pt;}
.ws1a_c00120{word-spacing:-1.984000pt;}
.ws14_c00120{word-spacing:-1.920000pt;}
.ws1c_c00120{word-spacing:-1.664000pt;}
.ws19_c00120{word-spacing:-1.472000pt;}
.ws1b_c00120{word-spacing:-1.152000pt;}
.ws11_c00120{word-spacing:-0.768000pt;}
.ws1d_c00120{word-spacing:-0.576000pt;}
.ws13_c00120{word-spacing:-0.192000pt;}
.ws8_c00120{word-spacing:0.000000pt;}
.wsd_c00120{word-spacing:0.192000pt;}
.ws17_c00120{word-spacing:0.320000pt;}
.ws12_c00120{word-spacing:0.576000pt;}
.ws9_c00120{word-spacing:0.640000pt;}
.wsc_c00120{word-spacing:1.472000pt;}
.wse_c00120{word-spacing:1.920000pt;}
.ws15_c00120{word-spacing:1.984000pt;}
.wsf_c00120{word-spacing:2.176000pt;}
.wsb_c00120{word-spacing:2.752000pt;}
.wsa_c00120{word-spacing:3.328000pt;}
.ws18_c00120{word-spacing:4.288000pt;}
.ws1e_c00120{word-spacing:4.480000pt;}
.ws16_c00120{word-spacing:4.992000pt;}
.ws10_c00120{word-spacing:5.184000pt;}
.ws1f_c00120{word-spacing:5.333333pt;}
._0_c00120{margin-left:-2448.621867pt;}
._9_c00120{margin-left:-6.088533pt;}
._7_c00120{margin-left:-3.517867pt;}
._1_c00120{margin-left:-2.005333pt;}
._5_c00120{margin-left:-1.073067pt;}
._2_c00120{width:0.896000pt;}
._4_c00120{width:2.380267pt;}
._a_c00120{width:5.173333pt;}
._6_c00120{width:20.608000pt;}
._8_c00120{width:21.760000pt;}
._3_c00120{width:23.296000pt;}
.fs0_c00120{font-size:42.666667pt;}
.fs2_c00120{font-size:53.333333pt;}
.fs1_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y21_c00120{bottom:107.322000pt;}
.y20_c00120{bottom:123.855333pt;}
.y24_c00120{bottom:124.897600pt;}
.y1f_c00120{bottom:140.388667pt;}
.y23_c00120{bottom:141.430933pt;}
.y1e_c00120{bottom:156.922000pt;}
.y22_c00120{bottom:157.964267pt;}
.y1d_c00120{bottom:173.455333pt;}
.y1c_c00120{bottom:333.420000pt;}
.y1b_c00120{bottom:355.020000pt;}
.y1a_c00120{bottom:376.620000pt;}
.y19_c00120{bottom:398.220000pt;}
.y18_c00120{bottom:419.820000pt;}
.y17_c00120{bottom:441.292000pt;}
.y16_c00120{bottom:462.892000pt;}
.y15_c00120{bottom:484.492000pt;}
.y14_c00120{bottom:519.292000pt;}
.y13_c00120{bottom:540.764000pt;}
.y12_c00120{bottom:562.236000pt;}
.y11_c00120{bottom:583.708000pt;}
.y10_c00120{bottom:605.180000pt;}
.yf_c00120{bottom:626.652000pt;}
.ye_c00120{bottom:648.124000pt;}
.yd_c00120{bottom:682.924000pt;}
.yc_c00120{bottom:704.396000pt;}
.yb_c00120{bottom:725.868000pt;}
.ya_c00120{bottom:747.340000pt;}
.y9_c00120{bottom:768.812000pt;}
.y8_c00120{bottom:794.036933pt;}
.y7_c00120{bottom:815.508933pt;}
.y6_c00120{bottom:836.980933pt;}
.y5_c00120{bottom:858.452933pt;}
.y4_c00120{bottom:879.924933pt;}
.y3_c00120{bottom:905.165733pt;}
.y2_c00120{bottom:926.637733pt;}
.y1_c00120{bottom:972.089867pt;}
.h2_c00120{height:34.901333pt;}
.h3_c00120{height:35.541333pt;}
.h6_c00120{height:43.200000pt;}
.h5_c00120{height:43.626667pt;}
.h4_c00120{height:52.352000pt;}
.h1_c00120{height:1009.333333pt;}
.h0_c00120{height:1009.338800pt;}
.w0_c00120{width:794.622400pt;}
.w1_c00120{width:794.666667pt;}
.x0_c00120{left:0.000000pt;}
.x4_c00120{left:114.334933pt;}
.x5_c00120{left:133.244667pt;}
.x2_c00120{left:167.166133pt;}
.x3_c00120{left:169.345200pt;}
.x6_c00120{left:586.775867pt;}
.x1_c00120{left:714.245067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c222d67c83b73312cfdebe9.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_d9e5eef2658ab7bc14dbabcb.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls4_c00121{letter-spacing:-0.540000px;}
.ls5_c00121{letter-spacing:-0.420000px;}
.ls2_c00121{letter-spacing:-0.360000px;}
.ls3_c00121{letter-spacing:-0.240000px;}
.ls1_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:0.360000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00121{word-spacing:-16.344000px;}
.ws3_c00121{word-spacing:-13.740000px;}
.ws2_c00121{word-spacing:-13.620000px;}
.ws5_c00121{word-spacing:-13.320000px;}
.ws4_c00121{word-spacing:-13.200000px;}
.ws6_c00121{word-spacing:0.000000px;}
.wse_c00121{word-spacing:0.240000px;}
.wsd_c00121{word-spacing:0.360000px;}
.ws7_c00121{word-spacing:2.520000px;}
.wsa_c00121{word-spacing:2.736000px;}
.wsc_c00121{word-spacing:4.680000px;}
.ws8_c00121{word-spacing:4.752000px;}
.ws9_c00121{word-spacing:5.040000px;}
.wsb_c00121{word-spacing:5.256000px;}
.ws0_c00121{word-spacing:1580.539200px;}
._3_c00121{margin-left:-6.048000px;}
._4_c00121{margin-left:-4.848000px;}
._0_c00121{margin-left:-2.112000px;}
._1_c00121{margin-left:-1.104000px;}
._2_c00121{width:1.344000px;}
.fc0_c00121{color:rgb(35,31,32);}
.fs0_c00121{font-size:48.000000px;}
.fs2_c00121{font-size:60.000000px;}
.fs1_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y9_c00121{bottom:143.373450px;}
.y8_c00121{bottom:167.673450px;}
.y7_c00121{bottom:191.973450px;}
.y6_c00121{bottom:216.273450px;}
.y5_c00121{bottom:255.567450px;}
.y4_c00121{bottom:279.867450px;}
.y3_c00121{bottom:304.167450px;}
.y2_c00121{bottom:328.467450px;}
.ye_c00121{bottom:382.947750px;}
.yd_c00121{bottom:401.547750px;}
.yc_c00121{bottom:420.147750px;}
.yb_c00121{bottom:438.747750px;}
.ya_c00121{bottom:457.347750px;}
.y16_c00121{bottom:739.757700px;}
.y12_c00121{bottom:739.944300px;}
.y15_c00121{bottom:758.357700px;}
.y11_c00121{bottom:758.544300px;}
.y14_c00121{bottom:776.957700px;}
.y10_c00121{bottom:777.144300px;}
.y13_c00121{bottom:795.557700px;}
.yf_c00121{bottom:795.744300px;}
.y1_c00121{bottom:1093.601100px;}
.h2_c00121{height:39.264000px;}
.h5_c00121{height:48.600000px;}
.h4_c00121{height:49.080000px;}
.h3_c00121{height:58.896000px;}
.h1_c00121{height:1135.500000px;}
.h0_c00121{height:1135.506150px;}
.w0_c00121{width:893.950200px;}
.w1_c00121{width:894.000000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:77.603100px;}
.x2_c00121{left:430.623300px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls4_c00121{letter-spacing:-0.480000pt;}
.ls5_c00121{letter-spacing:-0.373333pt;}
.ls2_c00121{letter-spacing:-0.320000pt;}
.ls3_c00121{letter-spacing:-0.213333pt;}
.ls1_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:0.320000pt;}
.ws1_c00121{word-spacing:-14.528000pt;}
.ws3_c00121{word-spacing:-12.213333pt;}
.ws2_c00121{word-spacing:-12.106667pt;}
.ws5_c00121{word-spacing:-11.840000pt;}
.ws4_c00121{word-spacing:-11.733333pt;}
.ws6_c00121{word-spacing:0.000000pt;}
.wse_c00121{word-spacing:0.213333pt;}
.wsd_c00121{word-spacing:0.320000pt;}
.ws7_c00121{word-spacing:2.240000pt;}
.wsa_c00121{word-spacing:2.432000pt;}
.wsc_c00121{word-spacing:4.160000pt;}
.ws8_c00121{word-spacing:4.224000pt;}
.ws9_c00121{word-spacing:4.480000pt;}
.wsb_c00121{word-spacing:4.672000pt;}
.ws0_c00121{word-spacing:1404.923733pt;}
._3_c00121{margin-left:-5.376000pt;}
._4_c00121{margin-left:-4.309333pt;}
._0_c00121{margin-left:-1.877333pt;}
._1_c00121{margin-left:-0.981333pt;}
._2_c00121{width:1.194667pt;}
.fs0_c00121{font-size:42.666667pt;}
.fs2_c00121{font-size:53.333333pt;}
.fs1_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y9_c00121{bottom:127.443067pt;}
.y8_c00121{bottom:149.043067pt;}
.y7_c00121{bottom:170.643067pt;}
.y6_c00121{bottom:192.243067pt;}
.y5_c00121{bottom:227.171067pt;}
.y4_c00121{bottom:248.771067pt;}
.y3_c00121{bottom:270.371067pt;}
.y2_c00121{bottom:291.971067pt;}
.ye_c00121{bottom:340.398000pt;}
.yd_c00121{bottom:356.931333pt;}
.yc_c00121{bottom:373.464667pt;}
.yb_c00121{bottom:389.998000pt;}
.ya_c00121{bottom:406.531333pt;}
.y16_c00121{bottom:657.562400pt;}
.y12_c00121{bottom:657.728267pt;}
.y15_c00121{bottom:674.095733pt;}
.y11_c00121{bottom:674.261600pt;}
.y14_c00121{bottom:690.629067pt;}
.y10_c00121{bottom:690.794933pt;}
.y13_c00121{bottom:707.162400pt;}
.yf_c00121{bottom:707.328267pt;}
.y1_c00121{bottom:972.089867pt;}
.h2_c00121{height:34.901333pt;}
.h5_c00121{height:43.200000pt;}
.h4_c00121{height:43.626667pt;}
.h3_c00121{height:52.352000pt;}
.h1_c00121{height:1009.333333pt;}
.h0_c00121{height:1009.338800pt;}
.w0_c00121{width:794.622400pt;}
.w1_c00121{width:794.666667pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:68.980533pt;}
.x2_c00121{left:382.776267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4d2dd2c547cd243cf5e5ff.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_2110936c07e17b0daf293b2e.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.067000;font-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_c00122{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:23.976000px;}
.ls8_c00122{letter-spacing:-2.592000px;}
.ls5_c00122{letter-spacing:-1.224000px;}
.lsb_c00122{letter-spacing:-1.152000px;}
.ls10_c00122{letter-spacing:-1.104000px;}
.lsa_c00122{letter-spacing:-1.080000px;}
.ls7_c00122{letter-spacing:-0.965448px;}
.lsc_c00122{letter-spacing:-0.864000px;}
.ls9_c00122{letter-spacing:-0.720000px;}
.ls6_c00122{letter-spacing:-0.713592px;}
.lse_c00122{letter-spacing:-0.480000px;}
.lsf_c00122{letter-spacing:-0.288000px;}
.lsd_c00122{letter-spacing:-0.192000px;}
.ls4_c00122{letter-spacing:0.000000px;}
.ls3_c00122{letter-spacing:0.216000px;}
.ls2_c00122{letter-spacing:0.360000px;}
.ls0_c00122{letter-spacing:0.480000px;}
.ls1_c00122{letter-spacing:0.744648px;}
.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:-16.344000px;}
.ws5_c00122{word-spacing:-15.624000px;}
.ws6_c00122{word-spacing:-15.264000px;}
.ws2_c00122{word-spacing:-15.120000px;}
.ws8_c00122{word-spacing:-10.992000px;}
.ws0_c00122{word-spacing:-10.896000px;}
.ws7_c00122{word-spacing:-10.608000px;}
.ws3_c00122{word-spacing:-8.814960px;}
.ws4_c00122{word-spacing:-8.563104px;}
.ws1b_c00122{word-spacing:-3.096000px;}
.ws15_c00122{word-spacing:-2.736000px;}
.ws22_c00122{word-spacing:-2.016000px;}
.ws2d_c00122{word-spacing:-1.968000px;}
.ws18_c00122{word-spacing:-1.944000px;}
.ws25_c00122{word-spacing:-1.728000px;}
.ws14_c00122{word-spacing:-1.512000px;}
.ws20_c00122{word-spacing:-1.440000px;}
.ws23_c00122{word-spacing:-1.152000px;}
.ws28_c00122{word-spacing:-0.816000px;}
.ws19_c00122{word-spacing:-0.720000px;}
.ws29_c00122{word-spacing:-0.672000px;}
.ws1c_c00122{word-spacing:-0.648000px;}
.ws2a_c00122{word-spacing:-0.528000px;}
.ws2e_c00122{word-spacing:-0.192000px;}
.ws2c_c00122{word-spacing:-0.048000px;}
.ws9_c00122{word-spacing:0.000000px;}
.ws27_c00122{word-spacing:0.192000px;}
.wsa_c00122{word-spacing:0.288000px;}
.ws24_c00122{word-spacing:0.360000px;}
.ws13_c00122{word-spacing:0.432000px;}
.ws2b_c00122{word-spacing:0.480000px;}
.ws17_c00122{word-spacing:0.792000px;}
.ws2f_c00122{word-spacing:0.912000px;}
.wsb_c00122{word-spacing:0.936000px;}
.ws1d_c00122{word-spacing:1.008000px;}
.ws21_c00122{word-spacing:1.152000px;}
.wsc_c00122{word-spacing:1.224000px;}
.ws1a_c00122{word-spacing:1.512000px;}
.wse_c00122{word-spacing:1.656000px;}
.ws26_c00122{word-spacing:2.352000px;}
.ws11_c00122{word-spacing:2.520000px;}
.ws12_c00122{word-spacing:3.888000px;}
.ws16_c00122{word-spacing:4.176000px;}
.ws1e_c00122{word-spacing:4.392000px;}
.ws1f_c00122{word-spacing:4.464000px;}
.ws10_c00122{word-spacing:5.184000px;}
.wsf_c00122{word-spacing:5.256000px;}
.wsd_c00122{word-spacing:5.328000px;}
._0_c00122{margin-left:-2754.796200px;}
._6_c00122{margin-left:-10.248000px;}
._8_c00122{margin-left:-6.888000px;}
._7_c00122{margin-left:-4.512000px;}
._1_c00122{margin-left:-2.256000px;}
._3_c00122{margin-left:-1.128000px;}
._2_c00122{width:1.008000px;}
._5_c00122{width:2.112000px;}
._4_c00122{width:4.296000px;}
.fc0_c00122{color:rgb(35,31,32);}
.fs2_c00122{font-size:41.976000px;}
.fs0_c00122{font-size:48.000000px;}
.fs1_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y29_c00122{bottom:111.616200px;}
.y28_c00122{bottom:126.616200px;}
.y27_c00122{bottom:141.612150px;}
.y26_c00122{bottom:165.120150px;}
.y25_c00122{bottom:180.120150px;}
.y24_c00122{bottom:195.120150px;}
.y23_c00122{bottom:210.120150px;}
.y22_c00122{bottom:225.120150px;}
.y21_c00122{bottom:240.120150px;}
.y20_c00122{bottom:255.120150px;}
.y1f_c00122{bottom:270.120150px;}
.y1e_c00122{bottom:285.120150px;}
.y1d_c00122{bottom:300.120150px;}
.y1c_c00122{bottom:348.891450px;}
.y1b_c00122{bottom:373.641450px;}
.y1a_c00122{bottom:413.385450px;}
.y19_c00122{bottom:438.135450px;}
.y18_c00122{bottom:462.885450px;}
.y17_c00122{bottom:487.185450px;}
.y16_c00122{bottom:511.485450px;}
.y15_c00122{bottom:550.779450px;}
.y14_c00122{bottom:575.079450px;}
.y13_c00122{bottom:599.379450px;}
.y12_c00122{bottom:623.679450px;}
.y11_c00122{bottom:647.979450px;}
.y10_c00122{bottom:687.273450px;}
.yf_c00122{bottom:711.573450px;}
.ye_c00122{bottom:735.873450px;}
.yd_c00122{bottom:760.173450px;}
.yc_c00122{bottom:784.473450px;}
.yb_c00122{bottom:808.773450px;}
.ya_c00122{bottom:848.067450px;}
.y9_c00122{bottom:872.367450px;}
.y8_c00122{bottom:896.667450px;}
.y7_c00122{bottom:920.967450px;}
.y6_c00122{bottom:945.267450px;}
.y5_c00122{bottom:969.567450px;}
.y4_c00122{bottom:993.867450px;}
.y3_c00122{bottom:1018.167450px;}
.y2_c00122{bottom:1042.467450px;}
.y1_c00122{bottom:1093.601100px;}
.h2_c00122{height:39.264000px;}
.h5_c00122{height:39.280200px;}
.h3_c00122{height:39.984000px;}
.h4_c00122{height:58.896000px;}
.h1_c00122{height:1135.500000px;}
.h0_c00122{height:1135.506150px;}
.w0_c00122{width:893.950200px;}
.w1_c00122{width:894.000000px;}
.x0_c00122{left:0.000000px;}
.x4_c00122{left:128.626800px;}
.x5_c00122{left:145.634550px;}
.x6_c00122{left:154.130550px;}
.x2_c00122{left:188.061900px;}
.x3_c00122{left:190.513350px;}
.x1_c00122{left:803.813850px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:21.312000pt;}
.ls8_c00122{letter-spacing:-2.304000pt;}
.ls5_c00122{letter-spacing:-1.088000pt;}
.lsb_c00122{letter-spacing:-1.024000pt;}
.ls10_c00122{letter-spacing:-0.981333pt;}
.lsa_c00122{letter-spacing:-0.960000pt;}
.ls7_c00122{letter-spacing:-0.858176pt;}
.lsc_c00122{letter-spacing:-0.768000pt;}
.ls9_c00122{letter-spacing:-0.640000pt;}
.ls6_c00122{letter-spacing:-0.634304pt;}
.lse_c00122{letter-spacing:-0.426667pt;}
.lsf_c00122{letter-spacing:-0.256000pt;}
.lsd_c00122{letter-spacing:-0.170667pt;}
.ls4_c00122{letter-spacing:0.000000pt;}
.ls3_c00122{letter-spacing:0.192000pt;}
.ls2_c00122{letter-spacing:0.320000pt;}
.ls0_c00122{letter-spacing:0.426667pt;}
.ls1_c00122{letter-spacing:0.661909pt;}
.ws1_c00122{word-spacing:-14.528000pt;}
.ws5_c00122{word-spacing:-13.888000pt;}
.ws6_c00122{word-spacing:-13.568000pt;}
.ws2_c00122{word-spacing:-13.440000pt;}
.ws8_c00122{word-spacing:-9.770667pt;}
.ws0_c00122{word-spacing:-9.685333pt;}
.ws7_c00122{word-spacing:-9.429333pt;}
.ws3_c00122{word-spacing:-7.835520pt;}
.ws4_c00122{word-spacing:-7.611648pt;}
.ws1b_c00122{word-spacing:-2.752000pt;}
.ws15_c00122{word-spacing:-2.432000pt;}
.ws22_c00122{word-spacing:-1.792000pt;}
.ws2d_c00122{word-spacing:-1.749333pt;}
.ws18_c00122{word-spacing:-1.728000pt;}
.ws25_c00122{word-spacing:-1.536000pt;}
.ws14_c00122{word-spacing:-1.344000pt;}
.ws20_c00122{word-spacing:-1.280000pt;}
.ws23_c00122{word-spacing:-1.024000pt;}
.ws28_c00122{word-spacing:-0.725333pt;}
.ws19_c00122{word-spacing:-0.640000pt;}
.ws29_c00122{word-spacing:-0.597333pt;}
.ws1c_c00122{word-spacing:-0.576000pt;}
.ws2a_c00122{word-spacing:-0.469333pt;}
.ws2e_c00122{word-spacing:-0.170667pt;}
.ws2c_c00122{word-spacing:-0.042667pt;}
.ws9_c00122{word-spacing:0.000000pt;}
.ws27_c00122{word-spacing:0.170667pt;}
.wsa_c00122{word-spacing:0.256000pt;}
.ws24_c00122{word-spacing:0.320000pt;}
.ws13_c00122{word-spacing:0.384000pt;}
.ws2b_c00122{word-spacing:0.426667pt;}
.ws17_c00122{word-spacing:0.704000pt;}
.ws2f_c00122{word-spacing:0.810667pt;}
.wsb_c00122{word-spacing:0.832000pt;}
.ws1d_c00122{word-spacing:0.896000pt;}
.ws21_c00122{word-spacing:1.024000pt;}
.wsc_c00122{word-spacing:1.088000pt;}
.ws1a_c00122{word-spacing:1.344000pt;}
.wse_c00122{word-spacing:1.472000pt;}
.ws26_c00122{word-spacing:2.090667pt;}
.ws11_c00122{word-spacing:2.240000pt;}
.ws12_c00122{word-spacing:3.456000pt;}
.ws16_c00122{word-spacing:3.712000pt;}
.ws1e_c00122{word-spacing:3.904000pt;}
.ws1f_c00122{word-spacing:3.968000pt;}
.ws10_c00122{word-spacing:4.608000pt;}
.wsf_c00122{word-spacing:4.672000pt;}
.wsd_c00122{word-spacing:4.736000pt;}
._0_c00122{margin-left:-2448.707733pt;}
._6_c00122{margin-left:-9.109333pt;}
._8_c00122{margin-left:-6.122667pt;}
._7_c00122{margin-left:-4.010667pt;}
._1_c00122{margin-left:-2.005333pt;}
._3_c00122{margin-left:-1.002667pt;}
._2_c00122{width:0.896000pt;}
._5_c00122{width:1.877333pt;}
._4_c00122{width:3.818667pt;}
.fs2_c00122{font-size:37.312000pt;}
.fs0_c00122{font-size:42.666667pt;}
.fs1_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y29_c00122{bottom:99.214400pt;}
.y28_c00122{bottom:112.547733pt;}
.y27_c00122{bottom:125.877467pt;}
.y26_c00122{bottom:146.773467pt;}
.y25_c00122{bottom:160.106800pt;}
.y24_c00122{bottom:173.440133pt;}
.y23_c00122{bottom:186.773467pt;}
.y22_c00122{bottom:200.106800pt;}
.y21_c00122{bottom:213.440133pt;}
.y20_c00122{bottom:226.773467pt;}
.y1f_c00122{bottom:240.106800pt;}
.y1e_c00122{bottom:253.440133pt;}
.y1d_c00122{bottom:266.773467pt;}
.y1c_c00122{bottom:310.125733pt;}
.y1b_c00122{bottom:332.125733pt;}
.y1a_c00122{bottom:367.453733pt;}
.y19_c00122{bottom:389.453733pt;}
.y18_c00122{bottom:411.453733pt;}
.y17_c00122{bottom:433.053733pt;}
.y16_c00122{bottom:454.653733pt;}
.y15_c00122{bottom:489.581733pt;}
.y14_c00122{bottom:511.181733pt;}
.y13_c00122{bottom:532.781733pt;}
.y12_c00122{bottom:554.381733pt;}
.y11_c00122{bottom:575.981733pt;}
.y10_c00122{bottom:610.909733pt;}
.yf_c00122{bottom:632.509733pt;}
.ye_c00122{bottom:654.109733pt;}
.yd_c00122{bottom:675.709733pt;}
.yc_c00122{bottom:697.309733pt;}
.yb_c00122{bottom:718.909733pt;}
.ya_c00122{bottom:753.837733pt;}
.y9_c00122{bottom:775.437733pt;}
.y8_c00122{bottom:797.037733pt;}
.y7_c00122{bottom:818.637733pt;}
.y6_c00122{bottom:840.237733pt;}
.y5_c00122{bottom:861.837733pt;}
.y4_c00122{bottom:883.437733pt;}
.y3_c00122{bottom:905.037733pt;}
.y2_c00122{bottom:926.637733pt;}
.y1_c00122{bottom:972.089867pt;}
.h2_c00122{height:34.901333pt;}
.h5_c00122{height:34.915733pt;}
.h3_c00122{height:35.541333pt;}
.h4_c00122{height:52.352000pt;}
.h1_c00122{height:1009.333333pt;}
.h0_c00122{height:1009.338800pt;}
.w0_c00122{width:794.622400pt;}
.w1_c00122{width:794.666667pt;}
.x0_c00122{left:0.000000pt;}
.x4_c00122{left:114.334933pt;}
.x5_c00122{left:129.452933pt;}
.x6_c00122{left:137.004933pt;}
.x2_c00122{left:167.166133pt;}
.x3_c00122{left:169.345200pt;}
.x1_c00122{left:714.501200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b57e8b572b8bce2e3a414b6.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_31c1c8f07277a242110c9d52.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls9_c00123{letter-spacing:-2.592000px;}
.ls8_c00123{letter-spacing:-1.728000px;}
.lsa_c00123{letter-spacing:-1.512000px;}
.lsb_c00123{letter-spacing:-1.080000px;}
.ls5_c00123{letter-spacing:-0.864000px;}
.ls2_c00123{letter-spacing:-0.720000px;}
.ls7_c00123{letter-spacing:-0.648000px;}
.ls6_c00123{letter-spacing:-0.360000px;}
.ls3_c00123{letter-spacing:-0.288000px;}
.lsd_c00123{letter-spacing:-0.240000px;}
.lsc_c00123{letter-spacing:-0.180000px;}
.ls4_c00123{letter-spacing:-0.144000px;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:0.360000px;}
.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;}
}
.ws1_c00123{word-spacing:-16.344000px;}
.ws2_c00123{word-spacing:-15.984000px;}
.ws4_c00123{word-spacing:-14.976000px;}
.ws3_c00123{word-spacing:-13.896000px;}
.ws6_c00123{word-spacing:-13.740000px;}
.ws7_c00123{word-spacing:-13.620000px;}
.ws5_c00123{word-spacing:-13.560000px;}
.ws14_c00123{word-spacing:-2.592000px;}
.ws13_c00123{word-spacing:-2.520000px;}
.ws12_c00123{word-spacing:-2.376000px;}
.ws1c_c00123{word-spacing:-1.800000px;}
.ws17_c00123{word-spacing:-0.648000px;}
.wsb_c00123{word-spacing:-0.216000px;}
.ws8_c00123{word-spacing:0.000000px;}
.ws18_c00123{word-spacing:0.072000px;}
.ws16_c00123{word-spacing:0.144000px;}
.ws28_c00123{word-spacing:0.240000px;}
.ws1b_c00123{word-spacing:0.360000px;}
.wsc_c00123{word-spacing:0.504000px;}
.wsa_c00123{word-spacing:1.152000px;}
.ws1f_c00123{word-spacing:1.728000px;}
.ws10_c00123{word-spacing:2.016000px;}
.ws11_c00123{word-spacing:2.088000px;}
.ws1e_c00123{word-spacing:2.304000px;}
.wsf_c00123{word-spacing:2.376000px;}
.ws15_c00123{word-spacing:3.024000px;}
.ws9_c00123{word-spacing:3.384000px;}
.ws27_c00123{word-spacing:3.528000px;}
.wsd_c00123{word-spacing:3.672000px;}
.ws1d_c00123{word-spacing:3.816000px;}
.wse_c00123{word-spacing:4.392000px;}
.ws25_c00123{word-spacing:4.536000px;}
.ws20_c00123{word-spacing:4.608000px;}
.ws26_c00123{word-spacing:4.896000px;}
.ws22_c00123{word-spacing:4.968000px;}
.ws23_c00123{word-spacing:5.040000px;}
.ws21_c00123{word-spacing:5.472000px;}
.ws24_c00123{word-spacing:5.760000px;}
.ws19_c00123{word-spacing:10.080000px;}
.ws1a_c00123{word-spacing:10.512000px;}
.ws0_c00123{word-spacing:1584.571200px;}
._3_c00123{margin-left:-5.520000px;}
._7_c00123{margin-left:-4.248000px;}
._6_c00123{margin-left:-3.192000px;}
._0_c00123{margin-left:-2.112000px;}
._1_c00123{margin-left:-1.104000px;}
._2_c00123{width:1.104000px;}
._4_c00123{width:3.000000px;}
._5_c00123{width:4.800000px;}
.fc0_c00123{color:rgb(35,31,32);}
.fs0_c00123{font-size:48.000000px;}
.fs2_c00123{font-size:60.000000px;}
.fs1_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y15_c00123{bottom:126.729450px;}
.y14_c00123{bottom:151.479450px;}
.y13_c00123{bottom:176.229450px;}
.y12_c00123{bottom:200.979450px;}
.y11_c00123{bottom:225.729450px;}
.y10_c00123{bottom:250.479450px;}
.yf_c00123{bottom:275.229450px;}
.ye_c00123{bottom:299.979450px;}
.yd_c00123{bottom:324.729450px;}
.yc_c00123{bottom:349.479450px;}
.yb_c00123{bottom:389.223450px;}
.ya_c00123{bottom:413.973450px;}
.y9_c00123{bottom:438.723450px;}
.y8_c00123{bottom:478.467450px;}
.y7_c00123{bottom:503.217450px;}
.y6_c00123{bottom:527.967450px;}
.y5_c00123{bottom:552.717450px;}
.y4_c00123{bottom:577.467450px;}
.y3_c00123{bottom:602.217450px;}
.y2_c00123{bottom:626.967450px;}
.y1a_c00123{bottom:668.892450px;}
.y19_c00123{bottom:687.492450px;}
.y18_c00123{bottom:706.092450px;}
.y17_c00123{bottom:724.692450px;}
.y16_c00123{bottom:743.292450px;}
.y1_c00123{bottom:1093.601100px;}
.h2_c00123{height:39.264000px;}
.h5_c00123{height:48.600000px;}
.h4_c00123{height:49.080000px;}
.h3_c00123{height:58.896000px;}
.h1_c00123{height:1135.500000px;}
.h0_c00123{height:1135.506150px;}
.w0_c00123{width:893.950200px;}
.w1_c00123{width:894.000000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:77.603100px;}
.x2_c00123{left:310.732350px;}
.x3_c00123{left:552.547950px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls9_c00123{letter-spacing:-2.304000pt;}
.ls8_c00123{letter-spacing:-1.536000pt;}
.lsa_c00123{letter-spacing:-1.344000pt;}
.lsb_c00123{letter-spacing:-0.960000pt;}
.ls5_c00123{letter-spacing:-0.768000pt;}
.ls2_c00123{letter-spacing:-0.640000pt;}
.ls7_c00123{letter-spacing:-0.576000pt;}
.ls6_c00123{letter-spacing:-0.320000pt;}
.ls3_c00123{letter-spacing:-0.256000pt;}
.lsd_c00123{letter-spacing:-0.213333pt;}
.lsc_c00123{letter-spacing:-0.160000pt;}
.ls4_c00123{letter-spacing:-0.128000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:0.320000pt;}
.ws1_c00123{word-spacing:-14.528000pt;}
.ws2_c00123{word-spacing:-14.208000pt;}
.ws4_c00123{word-spacing:-13.312000pt;}
.ws3_c00123{word-spacing:-12.352000pt;}
.ws6_c00123{word-spacing:-12.213333pt;}
.ws7_c00123{word-spacing:-12.106667pt;}
.ws5_c00123{word-spacing:-12.053333pt;}
.ws14_c00123{word-spacing:-2.304000pt;}
.ws13_c00123{word-spacing:-2.240000pt;}
.ws12_c00123{word-spacing:-2.112000pt;}
.ws1c_c00123{word-spacing:-1.600000pt;}
.ws17_c00123{word-spacing:-0.576000pt;}
.wsb_c00123{word-spacing:-0.192000pt;}
.ws8_c00123{word-spacing:0.000000pt;}
.ws18_c00123{word-spacing:0.064000pt;}
.ws16_c00123{word-spacing:0.128000pt;}
.ws28_c00123{word-spacing:0.213333pt;}
.ws1b_c00123{word-spacing:0.320000pt;}
.wsc_c00123{word-spacing:0.448000pt;}
.wsa_c00123{word-spacing:1.024000pt;}
.ws1f_c00123{word-spacing:1.536000pt;}
.ws10_c00123{word-spacing:1.792000pt;}
.ws11_c00123{word-spacing:1.856000pt;}
.ws1e_c00123{word-spacing:2.048000pt;}
.wsf_c00123{word-spacing:2.112000pt;}
.ws15_c00123{word-spacing:2.688000pt;}
.ws9_c00123{word-spacing:3.008000pt;}
.ws27_c00123{word-spacing:3.136000pt;}
.wsd_c00123{word-spacing:3.264000pt;}
.ws1d_c00123{word-spacing:3.392000pt;}
.wse_c00123{word-spacing:3.904000pt;}
.ws25_c00123{word-spacing:4.032000pt;}
.ws20_c00123{word-spacing:4.096000pt;}
.ws26_c00123{word-spacing:4.352000pt;}
.ws22_c00123{word-spacing:4.416000pt;}
.ws23_c00123{word-spacing:4.480000pt;}
.ws21_c00123{word-spacing:4.864000pt;}
.ws24_c00123{word-spacing:5.120000pt;}
.ws19_c00123{word-spacing:8.960000pt;}
.ws1a_c00123{word-spacing:9.344000pt;}
.ws0_c00123{word-spacing:1408.507733pt;}
._3_c00123{margin-left:-4.906667pt;}
._7_c00123{margin-left:-3.776000pt;}
._6_c00123{margin-left:-2.837333pt;}
._0_c00123{margin-left:-1.877333pt;}
._1_c00123{margin-left:-0.981333pt;}
._2_c00123{width:0.981333pt;}
._4_c00123{width:2.666667pt;}
._5_c00123{width:4.266667pt;}
.fs0_c00123{font-size:42.666667pt;}
.fs2_c00123{font-size:53.333333pt;}
.fs1_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y15_c00123{bottom:112.648400pt;}
.y14_c00123{bottom:134.648400pt;}
.y13_c00123{bottom:156.648400pt;}
.y12_c00123{bottom:178.648400pt;}
.y11_c00123{bottom:200.648400pt;}
.y10_c00123{bottom:222.648400pt;}
.yf_c00123{bottom:244.648400pt;}
.ye_c00123{bottom:266.648400pt;}
.yd_c00123{bottom:288.648400pt;}
.yc_c00123{bottom:310.648400pt;}
.yb_c00123{bottom:345.976400pt;}
.ya_c00123{bottom:367.976400pt;}
.y9_c00123{bottom:389.976400pt;}
.y8_c00123{bottom:425.304400pt;}
.y7_c00123{bottom:447.304400pt;}
.y6_c00123{bottom:469.304400pt;}
.y5_c00123{bottom:491.304400pt;}
.y4_c00123{bottom:513.304400pt;}
.y3_c00123{bottom:535.304400pt;}
.y2_c00123{bottom:557.304400pt;}
.y1a_c00123{bottom:594.571067pt;}
.y19_c00123{bottom:611.104400pt;}
.y18_c00123{bottom:627.637733pt;}
.y17_c00123{bottom:644.171067pt;}
.y16_c00123{bottom:660.704400pt;}
.y1_c00123{bottom:972.089867pt;}
.h2_c00123{height:34.901333pt;}
.h5_c00123{height:43.200000pt;}
.h4_c00123{height:43.626667pt;}
.h3_c00123{height:52.352000pt;}
.h1_c00123{height:1009.333333pt;}
.h0_c00123{height:1009.338800pt;}
.w0_c00123{width:794.622400pt;}
.w1_c00123{width:794.666667pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:68.980533pt;}
.x2_c00123{left:276.206533pt;}
.x3_c00123{left:491.153733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f075b9c31155065b126598a.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:0.955000;font-style:normal;font-weight:normal;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_76852b2b6be906d03ade9233.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00124;src:url('chunks/assets/font_ae49f3db2173017878766fe7.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:1.082000;font-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_c00124{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls8_c00124{letter-spacing:-6.624000px;}
.ls7_c00124{letter-spacing:-2.808000px;}
.lsa_c00124{letter-spacing:-1.740000px;}
.ls6_c00124{letter-spacing:-1.440000px;}
.ls4_c00124{letter-spacing:-1.224000px;}
.ls9_c00124{letter-spacing:-1.200000px;}
.ls5_c00124{letter-spacing:-0.792000px;}
.ls3_c00124{letter-spacing:-0.576000px;}
.ls2_c00124{letter-spacing:-0.360000px;}
.lsb_c00124{letter-spacing:-0.240000px;}
.ls1_c00124{letter-spacing:0.000000px;}
.ls0_c00124{letter-spacing:0.480000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00124{word-spacing:-16.344000px;}
.ws4_c00124{word-spacing:-13.620000px;}
.ws2_c00124{word-spacing:-13.536000px;}
.ws3_c00124{word-spacing:-12.000000px;}
.ws0_c00124{word-spacing:-10.896000px;}
.ws21_c00124{word-spacing:-2.592000px;}
.wsb_c00124{word-spacing:-2.448000px;}
.wse_c00124{word-spacing:-2.160000px;}
.ws13_c00124{word-spacing:-1.656000px;}
.ws10_c00124{word-spacing:-1.296000px;}
.wsa_c00124{word-spacing:-0.720000px;}
.ws1d_c00124{word-spacing:-0.648000px;}
.ws7_c00124{word-spacing:-0.432000px;}
.ws5_c00124{word-spacing:0.000000px;}
.ws29_c00124{word-spacing:0.240000px;}
.wsd_c00124{word-spacing:0.360000px;}
.ws16_c00124{word-spacing:0.792000px;}
.ws8_c00124{word-spacing:0.936000px;}
.ws28_c00124{word-spacing:1.200000px;}
.ws20_c00124{word-spacing:1.440000px;}
.wsc_c00124{word-spacing:1.872000px;}
.ws1a_c00124{word-spacing:2.016000px;}
.ws15_c00124{word-spacing:2.376000px;}
.ws9_c00124{word-spacing:2.592000px;}
.ws14_c00124{word-spacing:3.240000px;}
.ws24_c00124{word-spacing:3.456000px;}
.ws17_c00124{word-spacing:3.528000px;}
.wsf_c00124{word-spacing:3.672000px;}
.ws1c_c00124{word-spacing:3.816000px;}
.ws23_c00124{word-spacing:4.104000px;}
.ws26_c00124{word-spacing:4.248000px;}
.ws6_c00124{word-spacing:4.752000px;}
.ws12_c00124{word-spacing:6.552000px;}
.ws11_c00124{word-spacing:7.200000px;}
.ws1f_c00124{word-spacing:7.416000px;}
.ws27_c00124{word-spacing:7.848000px;}
.ws1b_c00124{word-spacing:8.784000px;}
.ws19_c00124{word-spacing:9.072000px;}
.ws1e_c00124{word-spacing:9.144000px;}
.ws25_c00124{word-spacing:10.080000px;}
.ws22_c00124{word-spacing:10.368000px;}
.ws18_c00124{word-spacing:13.032000px;}
._0_c00124{margin-left:-2755.276200px;}
._8_c00124{margin-left:-5.916000px;}
._4_c00124{margin-left:-3.312000px;}
._1_c00124{margin-left:-2.256000px;}
._3_c00124{margin-left:-1.224000px;}
._2_c00124{width:1.008000px;}
._5_c00124{width:2.472000px;}
._6_c00124{width:6.432000px;}
._7_c00124{width:8.496000px;}
.fc0_c00124{color:rgb(35,31,32);}
.fs0_c00124{font-size:48.000000px;}
.fs2_c00124{font-size:60.000000px;}
.fs1_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y25_c00124{bottom:115.711800px;}
.y24_c00124{bottom:140.461800px;}
.y29_c00124{bottom:149.812650px;}
.y23_c00124{bottom:165.211800px;}
.y28_c00124{bottom:168.412650px;}
.y27_c00124{bottom:187.162650px;}
.y22_c00124{bottom:189.511800px;}
.y26_c00124{bottom:205.762650px;}
.y21_c00124{bottom:213.811800px;}
.y20_c00124{bottom:238.111800px;}
.y1f_c00124{bottom:277.405800px;}
.y1e_c00124{bottom:301.705800px;}
.y1d_c00124{bottom:326.005800px;}
.y1c_c00124{bottom:350.305800px;}
.y1b_c00124{bottom:374.605800px;}
.y1a_c00124{bottom:398.905800px;}
.y19_c00124{bottom:423.205800px;}
.y18_c00124{bottom:447.505800px;}
.y17_c00124{bottom:471.805800px;}
.y2c_c00124{bottom:491.525550px;}
.y16_c00124{bottom:496.105800px;}
.y2b_c00124{bottom:510.125550px;}
.y15_c00124{bottom:520.405800px;}
.y2a_c00124{bottom:528.725550px;}
.y14_c00124{bottom:544.705800px;}
.y13_c00124{bottom:569.005800px;}
.y12_c00124{bottom:608.299800px;}
.y11_c00124{bottom:662.605800px;}
.y10_c00124{bottom:686.905800px;}
.yf_c00124{bottom:711.205800px;}
.ye_c00124{bottom:735.505800px;}
.yd_c00124{bottom:759.805800px;}
.yc_c00124{bottom:784.105800px;}
.yb_c00124{bottom:823.399800px;}
.ya_c00124{bottom:847.699800px;}
.y9_c00124{bottom:871.999800px;}
.y8_c00124{bottom:896.299800px;}
.y7_c00124{bottom:920.599800px;}
.y6_c00124{bottom:944.899800px;}
.y5_c00124{bottom:969.199800px;}
.y4_c00124{bottom:993.499800px;}
.y3_c00124{bottom:1017.799800px;}
.y2_c00124{bottom:1042.099800px;}
.y1_c00124{bottom:1093.601100px;}
.h2_c00124{height:39.264000px;}
.h3_c00124{height:39.984000px;}
.h7_c00124{height:48.600000px;}
.h6_c00124{height:49.080000px;}
.h4_c00124{height:58.896000px;}
.h5_c00124{height:59.976000px;}
.h1_c00124{height:1135.500000px;}
.h0_c00124{height:1135.506150px;}
.w0_c00124{width:893.950200px;}
.w1_c00124{width:894.000000px;}
.x0_c00124{left:0.000000px;}
.x4_c00124{left:128.626800px;}
.x2_c00124{left:188.061900px;}
.x3_c00124{left:190.513350px;}
.x5_c00124{left:475.242900px;}
.x1_c00124{left:803.141850px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls8_c00124{letter-spacing:-5.888000pt;}
.ls7_c00124{letter-spacing:-2.496000pt;}
.lsa_c00124{letter-spacing:-1.546667pt;}
.ls6_c00124{letter-spacing:-1.280000pt;}
.ls4_c00124{letter-spacing:-1.088000pt;}
.ls9_c00124{letter-spacing:-1.066667pt;}
.ls5_c00124{letter-spacing:-0.704000pt;}
.ls3_c00124{letter-spacing:-0.512000pt;}
.ls2_c00124{letter-spacing:-0.320000pt;}
.lsb_c00124{letter-spacing:-0.213333pt;}
.ls1_c00124{letter-spacing:0.000000pt;}
.ls0_c00124{letter-spacing:0.426667pt;}
.ws1_c00124{word-spacing:-14.528000pt;}
.ws4_c00124{word-spacing:-12.106667pt;}
.ws2_c00124{word-spacing:-12.032000pt;}
.ws3_c00124{word-spacing:-10.666667pt;}
.ws0_c00124{word-spacing:-9.685333pt;}
.ws21_c00124{word-spacing:-2.304000pt;}
.wsb_c00124{word-spacing:-2.176000pt;}
.wse_c00124{word-spacing:-1.920000pt;}
.ws13_c00124{word-spacing:-1.472000pt;}
.ws10_c00124{word-spacing:-1.152000pt;}
.wsa_c00124{word-spacing:-0.640000pt;}
.ws1d_c00124{word-spacing:-0.576000pt;}
.ws7_c00124{word-spacing:-0.384000pt;}
.ws5_c00124{word-spacing:0.000000pt;}
.ws29_c00124{word-spacing:0.213333pt;}
.wsd_c00124{word-spacing:0.320000pt;}
.ws16_c00124{word-spacing:0.704000pt;}
.ws8_c00124{word-spacing:0.832000pt;}
.ws28_c00124{word-spacing:1.066667pt;}
.ws20_c00124{word-spacing:1.280000pt;}
.wsc_c00124{word-spacing:1.664000pt;}
.ws1a_c00124{word-spacing:1.792000pt;}
.ws15_c00124{word-spacing:2.112000pt;}
.ws9_c00124{word-spacing:2.304000pt;}
.ws14_c00124{word-spacing:2.880000pt;}
.ws24_c00124{word-spacing:3.072000pt;}
.ws17_c00124{word-spacing:3.136000pt;}
.wsf_c00124{word-spacing:3.264000pt;}
.ws1c_c00124{word-spacing:3.392000pt;}
.ws23_c00124{word-spacing:3.648000pt;}
.ws26_c00124{word-spacing:3.776000pt;}
.ws6_c00124{word-spacing:4.224000pt;}
.ws12_c00124{word-spacing:5.824000pt;}
.ws11_c00124{word-spacing:6.400000pt;}
.ws1f_c00124{word-spacing:6.592000pt;}
.ws27_c00124{word-spacing:6.976000pt;}
.ws1b_c00124{word-spacing:7.808000pt;}
.ws19_c00124{word-spacing:8.064000pt;}
.ws1e_c00124{word-spacing:8.128000pt;}
.ws25_c00124{word-spacing:8.960000pt;}
.ws22_c00124{word-spacing:9.216000pt;}
.ws18_c00124{word-spacing:11.584000pt;}
._0_c00124{margin-left:-2449.134400pt;}
._8_c00124{margin-left:-5.258667pt;}
._4_c00124{margin-left:-2.944000pt;}
._1_c00124{margin-left:-2.005333pt;}
._3_c00124{margin-left:-1.088000pt;}
._2_c00124{width:0.896000pt;}
._5_c00124{width:2.197333pt;}
._6_c00124{width:5.717333pt;}
._7_c00124{width:7.552000pt;}
.fs0_c00124{font-size:42.666667pt;}
.fs2_c00124{font-size:53.333333pt;}
.fs1_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y25_c00124{bottom:102.854933pt;}
.y24_c00124{bottom:124.854933pt;}
.y29_c00124{bottom:133.166800pt;}
.y23_c00124{bottom:146.854933pt;}
.y28_c00124{bottom:149.700133pt;}
.y27_c00124{bottom:166.366800pt;}
.y22_c00124{bottom:168.454933pt;}
.y26_c00124{bottom:182.900133pt;}
.y21_c00124{bottom:190.054933pt;}
.y20_c00124{bottom:211.654933pt;}
.y1f_c00124{bottom:246.582933pt;}
.y1e_c00124{bottom:268.182933pt;}
.y1d_c00124{bottom:289.782933pt;}
.y1c_c00124{bottom:311.382933pt;}
.y1b_c00124{bottom:332.982933pt;}
.y1a_c00124{bottom:354.582933pt;}
.y19_c00124{bottom:376.182933pt;}
.y18_c00124{bottom:397.782933pt;}
.y17_c00124{bottom:419.382933pt;}
.y2c_c00124{bottom:436.911600pt;}
.y16_c00124{bottom:440.982933pt;}
.y2b_c00124{bottom:453.444933pt;}
.y15_c00124{bottom:462.582933pt;}
.y2a_c00124{bottom:469.978267pt;}
.y14_c00124{bottom:484.182933pt;}
.y13_c00124{bottom:505.782933pt;}
.y12_c00124{bottom:540.710933pt;}
.y11_c00124{bottom:588.982933pt;}
.y10_c00124{bottom:610.582933pt;}
.yf_c00124{bottom:632.182933pt;}
.ye_c00124{bottom:653.782933pt;}
.yd_c00124{bottom:675.382933pt;}
.yc_c00124{bottom:696.982933pt;}
.yb_c00124{bottom:731.910933pt;}
.ya_c00124{bottom:753.510933pt;}
.y9_c00124{bottom:775.110933pt;}
.y8_c00124{bottom:796.710933pt;}
.y7_c00124{bottom:818.310933pt;}
.y6_c00124{bottom:839.910933pt;}
.y5_c00124{bottom:861.510933pt;}
.y4_c00124{bottom:883.110933pt;}
.y3_c00124{bottom:904.710933pt;}
.y2_c00124{bottom:926.310933pt;}
.y1_c00124{bottom:972.089867pt;}
.h2_c00124{height:34.901333pt;}
.h3_c00124{height:35.541333pt;}
.h7_c00124{height:43.200000pt;}
.h6_c00124{height:43.626667pt;}
.h4_c00124{height:52.352000pt;}
.h5_c00124{height:53.312000pt;}
.h1_c00124{height:1009.333333pt;}
.h0_c00124{height:1009.338800pt;}
.w0_c00124{width:794.622400pt;}
.w1_c00124{width:794.666667pt;}
.x0_c00124{left:0.000000pt;}
.x4_c00124{left:114.334933pt;}
.x2_c00124{left:167.166133pt;}
.x3_c00124{left:169.345200pt;}
.x5_c00124{left:422.438133pt;}
.x1_c00124{left:713.903867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1916f654d5d240e8209205af.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.067000;font-style:normal;font-weight:normal;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_985b0be0e0f0aafc835c6edc.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.lsc_c00125{letter-spacing:-4.680000px;}
.ls6_c00125{letter-spacing:-1.944000px;}
.ls8_c00125{letter-spacing:-1.296000px;}
.ls7_c00125{letter-spacing:-1.080000px;}
.lsa_c00125{letter-spacing:-0.936000px;}
.lsb_c00125{letter-spacing:-0.648000px;}
.ls9_c00125{letter-spacing:-0.432000px;}
.ls5_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:0.216000px;}
.ls1_c00125{letter-spacing:0.360000px;}
.ls4_c00125{letter-spacing:0.432000px;}
.ls2_c00125{letter-spacing:0.720000px;}
.ls3_c00125{letter-spacing:1.008000px;}
.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;}
}
.ws5_c00125{word-spacing:-17.064000px;}
.ws2_c00125{word-spacing:-16.344000px;}
.ws3_c00125{word-spacing:-15.912000px;}
.ws4_c00125{word-spacing:-15.840000px;}
.ws1_c00125{word-spacing:-14.400000px;}
.ws1e_c00125{word-spacing:-2.088000px;}
.wse_c00125{word-spacing:-1.872000px;}
.ws1a_c00125{word-spacing:-1.800000px;}
.ws1b_c00125{word-spacing:-1.728000px;}
.wsb_c00125{word-spacing:-1.656000px;}
.ws22_c00125{word-spacing:-1.584000px;}
.ws24_c00125{word-spacing:-0.864000px;}
.ws1c_c00125{word-spacing:-0.792000px;}
.ws27_c00125{word-spacing:-0.720000px;}
.ws20_c00125{word-spacing:-0.504000px;}
.ws1f_c00125{word-spacing:-0.360000px;}
.wsa_c00125{word-spacing:-0.216000px;}
.ws6_c00125{word-spacing:0.000000px;}
.ws12_c00125{word-spacing:0.288000px;}
.ws1d_c00125{word-spacing:0.432000px;}
.ws9_c00125{word-spacing:1.080000px;}
.ws16_c00125{word-spacing:1.440000px;}
.ws11_c00125{word-spacing:1.584000px;}
.ws8_c00125{word-spacing:1.728000px;}
.wsd_c00125{word-spacing:5.472000px;}
.ws28_c00125{word-spacing:5.544000px;}
.ws10_c00125{word-spacing:5.976000px;}
.ws2a_c00125{word-spacing:6.192000px;}
.ws19_c00125{word-spacing:6.552000px;}
.ws7_c00125{word-spacing:7.416000px;}
.ws21_c00125{word-spacing:8.640000px;}
.ws2b_c00125{word-spacing:9.216000px;}
.wsf_c00125{word-spacing:9.792000px;}
.ws17_c00125{word-spacing:10.008000px;}
.ws23_c00125{word-spacing:10.368000px;}
.ws29_c00125{word-spacing:10.944000px;}
.ws14_c00125{word-spacing:11.808000px;}
.ws15_c00125{word-spacing:12.960000px;}
.ws18_c00125{word-spacing:13.392000px;}
.ws25_c00125{word-spacing:13.680000px;}
.ws26_c00125{word-spacing:14.040000px;}
.ws13_c00125{word-spacing:15.336000px;}
.wsc_c00125{word-spacing:18.792000px;}
.ws0_c00125{word-spacing:1581.883200px;}
._5_c00125{margin-left:-7.512000px;}
._8_c00125{margin-left:-4.860000px;}
._2_c00125{margin-left:-3.408000px;}
._3_c00125{margin-left:-2.136000px;}
._1_c00125{margin-left:-1.056000px;}
._0_c00125{width:1.344000px;}
._4_c00125{width:2.376000px;}
._7_c00125{width:5.040000px;}
._6_c00125{width:6.312000px;}
.fc0_c00125{color:rgb(35,31,32);}
.fs0_c00125{font-size:48.000000px;}
.fs2_c00125{font-size:60.000000px;}
.fs1_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y25_c00125{bottom:131.235450px;}
.y24_c00125{bottom:155.985450px;}
.y2e_c00125{bottom:167.761350px;}
.y23_c00125{bottom:180.735450px;}
.y2d_c00125{bottom:186.361350px;}
.y2c_c00125{bottom:204.961350px;}
.y22_c00125{bottom:205.485450px;}
.y21_c00125{bottom:230.235450px;}
.y20_c00125{bottom:254.985450px;}
.y1f_c00125{bottom:279.735450px;}
.y1e_c00125{bottom:319.479450px;}
.y1d_c00125{bottom:344.229450px;}
.y1c_c00125{bottom:368.979450px;}
.y1b_c00125{bottom:393.729450px;}
.y1a_c00125{bottom:418.479450px;}
.y19_c00125{bottom:443.229450px;}
.y18_c00125{bottom:467.979450px;}
.y2b_c00125{bottom:471.434850px;}
.y2a_c00125{bottom:490.034850px;}
.y17_c00125{bottom:507.723450px;}
.y29_c00125{bottom:508.634850px;}
.y16_c00125{bottom:532.473450px;}
.y15_c00125{bottom:557.223450px;}
.y14_c00125{bottom:581.973450px;}
.y13_c00125{bottom:606.723450px;}
.y12_c00125{bottom:631.473450px;}
.y11_c00125{bottom:656.223450px;}
.y10_c00125{bottom:680.973450px;}
.yf_c00125{bottom:705.723450px;}
.ye_c00125{bottom:730.473450px;}
.yd_c00125{bottom:755.223450px;}
.y28_c00125{bottom:775.186950px;}
.yc_c00125{bottom:779.973450px;}
.y27_c00125{bottom:793.786950px;}
.y26_c00125{bottom:812.386950px;}
.yb_c00125{bottom:819.717450px;}
.ya_c00125{bottom:844.467450px;}
.y9_c00125{bottom:869.217450px;}
.y8_c00125{bottom:893.967450px;}
.y7_c00125{bottom:918.717450px;}
.y6_c00125{bottom:943.467450px;}
.y5_c00125{bottom:968.217450px;}
.y4_c00125{bottom:992.967450px;}
.y3_c00125{bottom:1017.717450px;}
.y2_c00125{bottom:1042.467450px;}
.y1_c00125{bottom:1093.601100px;}
.h2_c00125{height:39.264000px;}
.h4_c00125{height:49.080000px;}
.h3_c00125{height:58.896000px;}
.h1_c00125{height:1135.500000px;}
.h0_c00125{height:1135.506150px;}
.w0_c00125{width:893.950200px;}
.w1_c00125{width:894.000000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:77.603100px;}
.x2_c00125{left:447.524400px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.lsc_c00125{letter-spacing:-4.160000pt;}
.ls6_c00125{letter-spacing:-1.728000pt;}
.ls8_c00125{letter-spacing:-1.152000pt;}
.ls7_c00125{letter-spacing:-0.960000pt;}
.lsa_c00125{letter-spacing:-0.832000pt;}
.lsb_c00125{letter-spacing:-0.576000pt;}
.ls9_c00125{letter-spacing:-0.384000pt;}
.ls5_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:0.192000pt;}
.ls1_c00125{letter-spacing:0.320000pt;}
.ls4_c00125{letter-spacing:0.384000pt;}
.ls2_c00125{letter-spacing:0.640000pt;}
.ls3_c00125{letter-spacing:0.896000pt;}
.ws5_c00125{word-spacing:-15.168000pt;}
.ws2_c00125{word-spacing:-14.528000pt;}
.ws3_c00125{word-spacing:-14.144000pt;}
.ws4_c00125{word-spacing:-14.080000pt;}
.ws1_c00125{word-spacing:-12.800000pt;}
.ws1e_c00125{word-spacing:-1.856000pt;}
.wse_c00125{word-spacing:-1.664000pt;}
.ws1a_c00125{word-spacing:-1.600000pt;}
.ws1b_c00125{word-spacing:-1.536000pt;}
.wsb_c00125{word-spacing:-1.472000pt;}
.ws22_c00125{word-spacing:-1.408000pt;}
.ws24_c00125{word-spacing:-0.768000pt;}
.ws1c_c00125{word-spacing:-0.704000pt;}
.ws27_c00125{word-spacing:-0.640000pt;}
.ws20_c00125{word-spacing:-0.448000pt;}
.ws1f_c00125{word-spacing:-0.320000pt;}
.wsa_c00125{word-spacing:-0.192000pt;}
.ws6_c00125{word-spacing:0.000000pt;}
.ws12_c00125{word-spacing:0.256000pt;}
.ws1d_c00125{word-spacing:0.384000pt;}
.ws9_c00125{word-spacing:0.960000pt;}
.ws16_c00125{word-spacing:1.280000pt;}
.ws11_c00125{word-spacing:1.408000pt;}
.ws8_c00125{word-spacing:1.536000pt;}
.wsd_c00125{word-spacing:4.864000pt;}
.ws28_c00125{word-spacing:4.928000pt;}
.ws10_c00125{word-spacing:5.312000pt;}
.ws2a_c00125{word-spacing:5.504000pt;}
.ws19_c00125{word-spacing:5.824000pt;}
.ws7_c00125{word-spacing:6.592000pt;}
.ws21_c00125{word-spacing:7.680000pt;}
.ws2b_c00125{word-spacing:8.192000pt;}
.wsf_c00125{word-spacing:8.704000pt;}
.ws17_c00125{word-spacing:8.896000pt;}
.ws23_c00125{word-spacing:9.216000pt;}
.ws29_c00125{word-spacing:9.728000pt;}
.ws14_c00125{word-spacing:10.496000pt;}
.ws15_c00125{word-spacing:11.520000pt;}
.ws18_c00125{word-spacing:11.904000pt;}
.ws25_c00125{word-spacing:12.160000pt;}
.ws26_c00125{word-spacing:12.480000pt;}
.ws13_c00125{word-spacing:13.632000pt;}
.wsc_c00125{word-spacing:16.704000pt;}
.ws0_c00125{word-spacing:1406.118400pt;}
._5_c00125{margin-left:-6.677333pt;}
._8_c00125{margin-left:-4.320000pt;}
._2_c00125{margin-left:-3.029333pt;}
._3_c00125{margin-left:-1.898667pt;}
._1_c00125{margin-left:-0.938667pt;}
._0_c00125{width:1.194667pt;}
._4_c00125{width:2.112000pt;}
._7_c00125{width:4.480000pt;}
._6_c00125{width:5.610667pt;}
.fs0_c00125{font-size:42.666667pt;}
.fs2_c00125{font-size:53.333333pt;}
.fs1_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y25_c00125{bottom:116.653733pt;}
.y24_c00125{bottom:138.653733pt;}
.y2e_c00125{bottom:149.121200pt;}
.y23_c00125{bottom:160.653733pt;}
.y2d_c00125{bottom:165.654533pt;}
.y2c_c00125{bottom:182.187867pt;}
.y22_c00125{bottom:182.653733pt;}
.y21_c00125{bottom:204.653733pt;}
.y20_c00125{bottom:226.653733pt;}
.y1f_c00125{bottom:248.653733pt;}
.y1e_c00125{bottom:283.981733pt;}
.y1d_c00125{bottom:305.981733pt;}
.y1c_c00125{bottom:327.981733pt;}
.y1b_c00125{bottom:349.981733pt;}
.y1a_c00125{bottom:371.981733pt;}
.y19_c00125{bottom:393.981733pt;}
.y18_c00125{bottom:415.981733pt;}
.y2b_c00125{bottom:419.053200pt;}
.y2a_c00125{bottom:435.586533pt;}
.y17_c00125{bottom:451.309733pt;}
.y29_c00125{bottom:452.119867pt;}
.y16_c00125{bottom:473.309733pt;}
.y15_c00125{bottom:495.309733pt;}
.y14_c00125{bottom:517.309733pt;}
.y13_c00125{bottom:539.309733pt;}
.y12_c00125{bottom:561.309733pt;}
.y11_c00125{bottom:583.309733pt;}
.y10_c00125{bottom:605.309733pt;}
.yf_c00125{bottom:627.309733pt;}
.ye_c00125{bottom:649.309733pt;}
.yd_c00125{bottom:671.309733pt;}
.y28_c00125{bottom:689.055067pt;}
.yc_c00125{bottom:693.309733pt;}
.y27_c00125{bottom:705.588400pt;}
.y26_c00125{bottom:722.121733pt;}
.yb_c00125{bottom:728.637733pt;}
.ya_c00125{bottom:750.637733pt;}
.y9_c00125{bottom:772.637733pt;}
.y8_c00125{bottom:794.637733pt;}
.y7_c00125{bottom:816.637733pt;}
.y6_c00125{bottom:838.637733pt;}
.y5_c00125{bottom:860.637733pt;}
.y4_c00125{bottom:882.637733pt;}
.y3_c00125{bottom:904.637733pt;}
.y2_c00125{bottom:926.637733pt;}
.y1_c00125{bottom:972.089867pt;}
.h2_c00125{height:34.901333pt;}
.h4_c00125{height:43.626667pt;}
.h3_c00125{height:52.352000pt;}
.h1_c00125{height:1009.333333pt;}
.h0_c00125{height:1009.338800pt;}
.w0_c00125{width:794.622400pt;}
.w1_c00125{width:794.666667pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:68.980533pt;}
.x2_c00125{left:397.799467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_842118cf95276a349d62344a.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:0.955000;font-style:normal;font-weight:normal;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_e48d3cd96594f05937fd05d2.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.067000;font-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_c00126{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.lsa_c00126{letter-spacing:-1.200000px;}
.lsc_c00126{letter-spacing:-0.780000px;}
.lsb_c00126{letter-spacing:-0.600000px;}
.lsd_c00126{letter-spacing:-0.240000px;}
.ls7_c00126{letter-spacing:0.000000px;}
.ls9_c00126{letter-spacing:0.072000px;}
.lse_c00126{letter-spacing:0.180000px;}
.ls5_c00126{letter-spacing:0.216000px;}
.ls8_c00126{letter-spacing:0.360000px;}
.ls3_c00126{letter-spacing:0.432000px;}
.ls0_c00126{letter-spacing:0.480000px;}
.ls1_c00126{letter-spacing:0.504000px;}
.ls6_c00126{letter-spacing:0.600000px;}
.ls2_c00126{letter-spacing:0.720000px;}
.ls4_c00126{letter-spacing:0.936000px;}
.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;}
}
.ws3_c00126{word-spacing:-17.208000px;}
.ws2_c00126{word-spacing:-16.488000px;}
.ws1_c00126{word-spacing:-16.344000px;}
.ws8_c00126{word-spacing:-13.920000px;}
.ws6_c00126{word-spacing:-13.740000px;}
.ws7_c00126{word-spacing:-13.620000px;}
.ws5_c00126{word-spacing:-13.140000px;}
.ws4_c00126{word-spacing:-12.960000px;}
.ws0_c00126{word-spacing:-10.896000px;}
.ws1b_c00126{word-spacing:-1.656000px;}
.wsf_c00126{word-spacing:-1.512000px;}
.ws13_c00126{word-spacing:-0.864000px;}
.wsb_c00126{word-spacing:-0.288000px;}
.ws9_c00126{word-spacing:0.000000px;}
.wsa_c00126{word-spacing:0.072000px;}
.ws1f_c00126{word-spacing:0.240000px;}
.wsd_c00126{word-spacing:0.360000px;}
.ws20_c00126{word-spacing:0.420000px;}
.ws17_c00126{word-spacing:0.432000px;}
.wsc_c00126{word-spacing:1.008000px;}
.ws1e_c00126{word-spacing:1.200000px;}
.ws1c_c00126{word-spacing:1.656000px;}
.ws10_c00126{word-spacing:2.016000px;}
.ws15_c00126{word-spacing:2.088000px;}
.ws11_c00126{word-spacing:2.520000px;}
.wse_c00126{word-spacing:2.664000px;}
.ws18_c00126{word-spacing:3.096000px;}
.ws1d_c00126{word-spacing:4.536000px;}
.ws14_c00126{word-spacing:4.968000px;}
.ws12_c00126{word-spacing:5.472000px;}
.ws1a_c00126{word-spacing:5.616000px;}
.ws16_c00126{word-spacing:6.480000px;}
.ws19_c00126{word-spacing:8.496000px;}
._0_c00126{margin-left:-2755.275600px;}
._6_c00126{margin-left:-6.660000px;}
._5_c00126{margin-left:-4.752000px;}
._1_c00126{margin-left:-2.256000px;}
._4_c00126{margin-left:-1.032000px;}
._2_c00126{width:1.008000px;}
._3_c00126{width:2.232000px;}
.fc0_c00126{color:rgb(35,31,32);}
.fs0_c00126{font-size:48.000000px;}
.fs2_c00126{font-size:60.000000px;}
.fs1_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y16_c00126{bottom:112.479450px;}
.y15_c00126{bottom:137.229450px;}
.y14_c00126{bottom:161.979450px;}
.y13_c00126{bottom:201.723450px;}
.y12_c00126{bottom:226.473450px;}
.y11_c00126{bottom:251.223450px;}
.y10_c00126{bottom:275.973450px;}
.yf_c00126{bottom:315.717450px;}
.ye_c00126{bottom:340.467450px;}
.yd_c00126{bottom:365.217450px;}
.yc_c00126{bottom:389.967450px;}
.yb_c00126{bottom:414.717450px;}
.ya_c00126{bottom:439.467450px;}
.y9_c00126{bottom:464.217450px;}
.y8_c00126{bottom:488.967450px;}
.y7_c00126{bottom:513.717450px;}
.y6_c00126{bottom:538.467450px;}
.y5_c00126{bottom:563.217450px;}
.y4_c00126{bottom:587.967450px;}
.y3_c00126{bottom:612.717450px;}
.y2_c00126{bottom:637.467450px;}
.y1b_c00126{bottom:675.529950px;}
.y1a_c00126{bottom:694.129950px;}
.y19_c00126{bottom:712.729950px;}
.y18_c00126{bottom:731.329950px;}
.y17_c00126{bottom:749.929950px;}
.y1_c00126{bottom:1093.600950px;}
.h2_c00126{height:39.264000px;}
.h3_c00126{height:39.984000px;}
.h6_c00126{height:48.600000px;}
.h5_c00126{height:49.080000px;}
.h4_c00126{height:58.896000px;}
.h1_c00126{height:1135.500000px;}
.h0_c00126{height:1135.506150px;}
.w0_c00126{width:893.950200px;}
.w1_c00126{width:894.000000px;}
.x0_c00126{left:0.000000px;}
.x4_c00126{left:128.626800px;}
.x2_c00126{left:188.061900px;}
.x3_c00126{left:190.513350px;}
.x5_c00126{left:358.233000px;}
.x6_c00126{left:598.482300px;}
.x1_c00126{left:803.177700px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.lsa_c00126{letter-spacing:-1.066667pt;}
.lsc_c00126{letter-spacing:-0.693333pt;}
.lsb_c00126{letter-spacing:-0.533333pt;}
.lsd_c00126{letter-spacing:-0.213333pt;}
.ls7_c00126{letter-spacing:0.000000pt;}
.ls9_c00126{letter-spacing:0.064000pt;}
.lse_c00126{letter-spacing:0.160000pt;}
.ls5_c00126{letter-spacing:0.192000pt;}
.ls8_c00126{letter-spacing:0.320000pt;}
.ls3_c00126{letter-spacing:0.384000pt;}
.ls0_c00126{letter-spacing:0.426667pt;}
.ls1_c00126{letter-spacing:0.448000pt;}
.ls6_c00126{letter-spacing:0.533333pt;}
.ls2_c00126{letter-spacing:0.640000pt;}
.ls4_c00126{letter-spacing:0.832000pt;}
.ws3_c00126{word-spacing:-15.296000pt;}
.ws2_c00126{word-spacing:-14.656000pt;}
.ws1_c00126{word-spacing:-14.528000pt;}
.ws8_c00126{word-spacing:-12.373333pt;}
.ws6_c00126{word-spacing:-12.213333pt;}
.ws7_c00126{word-spacing:-12.106667pt;}
.ws5_c00126{word-spacing:-11.680000pt;}
.ws4_c00126{word-spacing:-11.520000pt;}
.ws0_c00126{word-spacing:-9.685333pt;}
.ws1b_c00126{word-spacing:-1.472000pt;}
.wsf_c00126{word-spacing:-1.344000pt;}
.ws13_c00126{word-spacing:-0.768000pt;}
.wsb_c00126{word-spacing:-0.256000pt;}
.ws9_c00126{word-spacing:0.000000pt;}
.wsa_c00126{word-spacing:0.064000pt;}
.ws1f_c00126{word-spacing:0.213333pt;}
.wsd_c00126{word-spacing:0.320000pt;}
.ws20_c00126{word-spacing:0.373333pt;}
.ws17_c00126{word-spacing:0.384000pt;}
.wsc_c00126{word-spacing:0.896000pt;}
.ws1e_c00126{word-spacing:1.066667pt;}
.ws1c_c00126{word-spacing:1.472000pt;}
.ws10_c00126{word-spacing:1.792000pt;}
.ws15_c00126{word-spacing:1.856000pt;}
.ws11_c00126{word-spacing:2.240000pt;}
.wse_c00126{word-spacing:2.368000pt;}
.ws18_c00126{word-spacing:2.752000pt;}
.ws1d_c00126{word-spacing:4.032000pt;}
.ws14_c00126{word-spacing:4.416000pt;}
.ws12_c00126{word-spacing:4.864000pt;}
.ws1a_c00126{word-spacing:4.992000pt;}
.ws16_c00126{word-spacing:5.760000pt;}
.ws19_c00126{word-spacing:7.552000pt;}
._0_c00126{margin-left:-2449.133867pt;}
._6_c00126{margin-left:-5.920000pt;}
._5_c00126{margin-left:-4.224000pt;}
._1_c00126{margin-left:-2.005333pt;}
._4_c00126{margin-left:-0.917333pt;}
._2_c00126{width:0.896000pt;}
._3_c00126{width:1.984000pt;}
.fs0_c00126{font-size:42.666667pt;}
.fs2_c00126{font-size:53.333333pt;}
.fs1_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y16_c00126{bottom:99.981733pt;}
.y15_c00126{bottom:121.981733pt;}
.y14_c00126{bottom:143.981733pt;}
.y13_c00126{bottom:179.309733pt;}
.y12_c00126{bottom:201.309733pt;}
.y11_c00126{bottom:223.309733pt;}
.y10_c00126{bottom:245.309733pt;}
.yf_c00126{bottom:280.637733pt;}
.ye_c00126{bottom:302.637733pt;}
.yd_c00126{bottom:324.637733pt;}
.yc_c00126{bottom:346.637733pt;}
.yb_c00126{bottom:368.637733pt;}
.ya_c00126{bottom:390.637733pt;}
.y9_c00126{bottom:412.637733pt;}
.y8_c00126{bottom:434.637733pt;}
.y7_c00126{bottom:456.637733pt;}
.y6_c00126{bottom:478.637733pt;}
.y5_c00126{bottom:500.637733pt;}
.y4_c00126{bottom:522.637733pt;}
.y3_c00126{bottom:544.637733pt;}
.y2_c00126{bottom:566.637733pt;}
.y1b_c00126{bottom:600.471067pt;}
.y1a_c00126{bottom:617.004400pt;}
.y19_c00126{bottom:633.537733pt;}
.y18_c00126{bottom:650.071067pt;}
.y17_c00126{bottom:666.604400pt;}
.y1_c00126{bottom:972.089733pt;}
.h2_c00126{height:34.901333pt;}
.h3_c00126{height:35.541333pt;}
.h6_c00126{height:43.200000pt;}
.h5_c00126{height:43.626667pt;}
.h4_c00126{height:52.352000pt;}
.h1_c00126{height:1009.333333pt;}
.h0_c00126{height:1009.338800pt;}
.w0_c00126{width:794.622400pt;}
.w1_c00126{width:794.666667pt;}
.x0_c00126{left:0.000000pt;}
.x4_c00126{left:114.334933pt;}
.x2_c00126{left:167.166133pt;}
.x3_c00126{left:169.345200pt;}
.x5_c00126{left:318.429333pt;}
.x6_c00126{left:531.984267pt;}
.x1_c00126{left:713.935733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd2fafaa4b3fc88b076db500.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.067000;font-style:normal;font-weight:normal;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_8e46a22879dbb8eeb14fb3a5.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls2_c00127{letter-spacing:-5.400000px;}
.ls3_c00127{letter-spacing:-0.600000px;}
.ls4_c00127{letter-spacing:-0.180000px;}
.ls1_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.648000px;}
.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;}
}
.ws3_c00127{word-spacing:-16.992000px;}
.ws2_c00127{word-spacing:-16.488000px;}
.ws1_c00127{word-spacing:-16.344000px;}
.ws4_c00127{word-spacing:-13.140000px;}
.ws9_c00127{word-spacing:-0.864000px;}
.ws6_c00127{word-spacing:-0.072000px;}
.ws5_c00127{word-spacing:0.000000px;}
.wsc_c00127{word-spacing:0.180000px;}
.wsa_c00127{word-spacing:1.008000px;}
.ws7_c00127{word-spacing:2.016000px;}
.wsb_c00127{word-spacing:3.384000px;}
.ws8_c00127{word-spacing:7.416000px;}
.ws0_c00127{word-spacing:1582.027200px;}
._5_c00127{margin-left:-5.568000px;}
._6_c00127{margin-left:-4.308000px;}
._0_c00127{margin-left:-2.112000px;}
._1_c00127{margin-left:-1.104000px;}
._2_c00127{width:1.104000px;}
._3_c00127{width:4.704000px;}
._4_c00127{width:6.144000px;}
.fc0_c00127{color:rgb(35,31,32);}
.fs0_c00127{font-size:48.000000px;}
.fs2_c00127{font-size:60.000000px;}
.fs1_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.yd_c00127{bottom:113.554650px;}
.yc_c00127{bottom:132.154650px;}
.yf_c00127{bottom:432.460800px;}
.ye_c00127{bottom:451.060800px;}
.yb_c00127{bottom:757.473450px;}
.ya_c00127{bottom:814.479450px;}
.y9_c00127{bottom:839.229450px;}
.y8_c00127{bottom:863.979450px;}
.y7_c00127{bottom:903.723450px;}
.y6_c00127{bottom:928.473450px;}
.y5_c00127{bottom:953.223450px;}
.y4_c00127{bottom:992.967450px;}
.y3_c00127{bottom:1017.717450px;}
.y2_c00127{bottom:1042.467450px;}
.y1_c00127{bottom:1093.601100px;}
.h2_c00127{height:39.264000px;}
.h4_c00127{height:48.600000px;}
.h5_c00127{height:49.080000px;}
.h3_c00127{height:58.896000px;}
.h1_c00127{height:1135.500000px;}
.h0_c00127{height:1135.506150px;}
.w0_c00127{width:893.950200px;}
.w1_c00127{width:894.000000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:77.603100px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls2_c00127{letter-spacing:-4.800000pt;}
.ls3_c00127{letter-spacing:-0.533333pt;}
.ls4_c00127{letter-spacing:-0.160000pt;}
.ls1_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.576000pt;}
.ws3_c00127{word-spacing:-15.104000pt;}
.ws2_c00127{word-spacing:-14.656000pt;}
.ws1_c00127{word-spacing:-14.528000pt;}
.ws4_c00127{word-spacing:-11.680000pt;}
.ws9_c00127{word-spacing:-0.768000pt;}
.ws6_c00127{word-spacing:-0.064000pt;}
.ws5_c00127{word-spacing:0.000000pt;}
.wsc_c00127{word-spacing:0.160000pt;}
.wsa_c00127{word-spacing:0.896000pt;}
.ws7_c00127{word-spacing:1.792000pt;}
.wsb_c00127{word-spacing:3.008000pt;}
.ws8_c00127{word-spacing:6.592000pt;}
.ws0_c00127{word-spacing:1406.246400pt;}
._5_c00127{margin-left:-4.949333pt;}
._6_c00127{margin-left:-3.829333pt;}
._0_c00127{margin-left:-1.877333pt;}
._1_c00127{margin-left:-0.981333pt;}
._2_c00127{width:0.981333pt;}
._3_c00127{width:4.181333pt;}
._4_c00127{width:5.461333pt;}
.fs0_c00127{font-size:42.666667pt;}
.fs2_c00127{font-size:53.333333pt;}
.fs1_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.yd_c00127{bottom:100.937467pt;}
.yc_c00127{bottom:117.470800pt;}
.yf_c00127{bottom:384.409600pt;}
.ye_c00127{bottom:400.942933pt;}
.yb_c00127{bottom:673.309733pt;}
.ya_c00127{bottom:723.981733pt;}
.y9_c00127{bottom:745.981733pt;}
.y8_c00127{bottom:767.981733pt;}
.y7_c00127{bottom:803.309733pt;}
.y6_c00127{bottom:825.309733pt;}
.y5_c00127{bottom:847.309733pt;}
.y4_c00127{bottom:882.637733pt;}
.y3_c00127{bottom:904.637733pt;}
.y2_c00127{bottom:926.637733pt;}
.y1_c00127{bottom:972.089867pt;}
.h2_c00127{height:34.901333pt;}
.h4_c00127{height:43.200000pt;}
.h5_c00127{height:43.626667pt;}
.h3_c00127{height:52.352000pt;}
.h1_c00127{height:1009.333333pt;}
.h0_c00127{height:1009.338800pt;}
.w0_c00127{width:794.622400pt;}
.w1_c00127{width:794.666667pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b28ad386f0e98dad081f1817.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_6d7dbe5898cb253b3c927bab.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.067000;font-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_c00128{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls5_c00128{letter-spacing:-0.960000px;}
.ls3_c00128{letter-spacing:-0.600000px;}
.ls4_c00128{letter-spacing:-0.420000px;}
.ls2_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.480000px;}
.ls1_c00128{letter-spacing:0.600000px;}
.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:-13.140000px;}
.ws3_c00128{word-spacing:-13.020000px;}
.ws2_c00128{word-spacing:-12.780000px;}
.ws0_c00128{word-spacing:-10.896000px;}
.ws4_c00128{word-spacing:0.000000px;}
.ws5_c00128{word-spacing:0.420000px;}
._0_c00128{margin-left:-2755.275600px;}
._4_c00128{margin-left:-6.036000px;}
._6_c00128{margin-left:-3.756000px;}
._1_c00128{margin-left:-2.256000px;}
._3_c00128{margin-left:-1.068000px;}
._2_c00128{width:1.008000px;}
._5_c00128{width:2.784000px;}
.fc0_c00128{color:rgb(35,31,32);}
.fs0_c00128{font-size:48.000000px;}
.fs1_c00128{font-size:60.000000px;}
.y0_c00128{bottom:0.000000px;}
.y3_c00128{bottom:114.535200px;}
.y2_c00128{bottom:133.135200px;}
.y5_c00128{bottom:433.441350px;}
.y4_c00128{bottom:452.041350px;}
.y7_c00128{bottom:754.953750px;}
.y6_c00128{bottom:773.553750px;}
.y1_c00128{bottom:1093.601100px;}
.h2_c00128{height:39.264000px;}
.h3_c00128{height:39.984000px;}
.h4_c00128{height:48.600000px;}
.h5_c00128{height:49.080000px;}
.h1_c00128{height:1135.500000px;}
.h0_c00128{height:1135.506150px;}
.w0_c00128{width:893.950200px;}
.w1_c00128{width:894.000000px;}
.x0_c00128{left:0.000000px;}
.x2_c00128{left:188.061900px;}
.x3_c00128{left:190.513350px;}
.x4_c00128{left:204.724200px;}
.x1_c00128{left:802.769700px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls5_c00128{letter-spacing:-0.853333pt;}
.ls3_c00128{letter-spacing:-0.533333pt;}
.ls4_c00128{letter-spacing:-0.373333pt;}
.ls2_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.426667pt;}
.ls1_c00128{letter-spacing:0.533333pt;}
.ws1_c00128{word-spacing:-11.680000pt;}
.ws3_c00128{word-spacing:-11.573333pt;}
.ws2_c00128{word-spacing:-11.360000pt;}
.ws0_c00128{word-spacing:-9.685333pt;}
.ws4_c00128{word-spacing:0.000000pt;}
.ws5_c00128{word-spacing:0.373333pt;}
._0_c00128{margin-left:-2449.133867pt;}
._4_c00128{margin-left:-5.365333pt;}
._6_c00128{margin-left:-3.338667pt;}
._1_c00128{margin-left:-2.005333pt;}
._3_c00128{margin-left:-0.949333pt;}
._2_c00128{width:0.896000pt;}
._5_c00128{width:2.474667pt;}
.fs0_c00128{font-size:42.666667pt;}
.fs1_c00128{font-size:53.333333pt;}
.y0_c00128{bottom:0.000000pt;}
.y3_c00128{bottom:101.809067pt;}
.y2_c00128{bottom:118.342400pt;}
.y5_c00128{bottom:385.281200pt;}
.y4_c00128{bottom:401.814533pt;}
.y7_c00128{bottom:671.070000pt;}
.y6_c00128{bottom:687.603333pt;}
.y1_c00128{bottom:972.089867pt;}
.h2_c00128{height:34.901333pt;}
.h3_c00128{height:35.541333pt;}
.h4_c00128{height:43.200000pt;}
.h5_c00128{height:43.626667pt;}
.h1_c00128{height:1009.333333pt;}
.h0_c00128{height:1009.338800pt;}
.w0_c00128{width:794.622400pt;}
.w1_c00128{width:794.666667pt;}
.x0_c00128{left:0.000000pt;}
.x2_c00128{left:167.166133pt;}
.x3_c00128{left:169.345200pt;}
.x4_c00128{left:181.977067pt;}
.x1_c00128{left:713.573067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.067000;font-style:normal;font-weight:normal;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_6d7dbe5898cb253b3c927bab.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls2_c00129{letter-spacing:-0.600000px;}
.ls4_c00129{letter-spacing:-0.420000px;}
.ls3_c00129{letter-spacing:-0.360000px;}
.ls1_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:0.600000px;}
.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;}
}
.ws3_c00129{word-spacing:-13.620000px;}
.ws2_c00129{word-spacing:-13.320000px;}
.ws1_c00129{word-spacing:-13.140000px;}
.ws4_c00129{word-spacing:0.000000px;}
.ws5_c00129{word-spacing:0.360000px;}
.ws7_c00129{word-spacing:0.420000px;}
.ws6_c00129{word-spacing:0.600000px;}
.ws0_c00129{word-spacing:1583.179200px;}
._3_c00129{margin-left:-6.444000px;}
._2_c00129{margin-left:-3.408000px;}
._1_c00129{margin-left:-1.056000px;}
._0_c00129{width:1.008000px;}
.fc0_c00129{color:rgb(35,31,32);}
.fs0_c00129{font-size:48.000000px;}
.fs1_c00129{font-size:60.000000px;}
.y0_c00129{bottom:0.000000px;}
.y3_c00129{bottom:113.554500px;}
.y2_c00129{bottom:132.154500px;}
.y5_c00129{bottom:432.460650px;}
.y4_c00129{bottom:451.060650px;}
.y7_c00129{bottom:753.973200px;}
.y6_c00129{bottom:772.573200px;}
.y1_c00129{bottom:1093.600950px;}
.h2_c00129{height:39.264000px;}
.h3_c00129{height:48.600000px;}
.h4_c00129{height:49.080000px;}
.h1_c00129{height:1135.500000px;}
.h0_c00129{height:1135.506150px;}
.w0_c00129{width:893.950200px;}
.w1_c00129{width:894.000000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:77.603100px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls2_c00129{letter-spacing:-0.533333pt;}
.ls4_c00129{letter-spacing:-0.373333pt;}
.ls3_c00129{letter-spacing:-0.320000pt;}
.ls1_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:0.533333pt;}
.ws3_c00129{word-spacing:-12.106667pt;}
.ws2_c00129{word-spacing:-11.840000pt;}
.ws1_c00129{word-spacing:-11.680000pt;}
.ws4_c00129{word-spacing:0.000000pt;}
.ws5_c00129{word-spacing:0.320000pt;}
.ws7_c00129{word-spacing:0.373333pt;}
.ws6_c00129{word-spacing:0.533333pt;}
.ws0_c00129{word-spacing:1407.270400pt;}
._3_c00129{margin-left:-5.728000pt;}
._2_c00129{margin-left:-3.029333pt;}
._1_c00129{margin-left:-0.938667pt;}
._0_c00129{width:0.896000pt;}
.fs0_c00129{font-size:42.666667pt;}
.fs1_c00129{font-size:53.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y3_c00129{bottom:100.937333pt;}
.y2_c00129{bottom:117.470667pt;}
.y5_c00129{bottom:384.409467pt;}
.y4_c00129{bottom:400.942800pt;}
.y7_c00129{bottom:670.198400pt;}
.y6_c00129{bottom:686.731733pt;}
.y1_c00129{bottom:972.089733pt;}
.h2_c00129{height:34.901333pt;}
.h3_c00129{height:43.200000pt;}
.h4_c00129{height:43.626667pt;}
.h1_c00129{height:1009.333333pt;}
.h0_c00129{height:1009.338800pt;}
.w0_c00129{width:794.622400pt;}
.w1_c00129{width:794.666667pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5124c88307179c5ac390fca.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_9d28e387cc85c879afe37cfb.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00130;src:url('chunks/assets/font_a3ae278794426d473180a10b.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:0.710000;font-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_c00130{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls4_c00130{letter-spacing:-0.600000px;}
.ls5_c00130{letter-spacing:-0.420000px;}
.ls2_c00130{letter-spacing:-0.240000px;}
.ls3_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:0.480000px;}
.ls1_c00130{letter-spacing:0.600000px;}
.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:-13.140000px;}
.ws0_c00130{word-spacing:-10.656000px;}
.ws2_c00130{word-spacing:-6.105600px;}
.ws3_c00130{word-spacing:0.000000px;}
.ws4_c00130{word-spacing:0.420000px;}
._0_c00130{margin-left:-2754.795600px;}
._4_c00130{margin-left:-6.156000px;}
._1_c00130{margin-left:-2.256000px;}
._3_c00130{margin-left:-1.008000px;}
._2_c00130{width:1.008000px;}
.fc0_c00130{color:rgb(35,31,32);}
.fs3_c00130{font-size:28.800000px;}
.fs4_c00130{font-size:36.000000px;}
.fs0_c00130{font-size:48.000000px;}
.fs2_c00130{font-size:60.000000px;}
.fs1_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y4_c00130{bottom:111.428550px;}
.y3_c00130{bottom:130.028550px;}
.y6_c00130{bottom:422.893800px;}
.y5_c00130{bottom:441.493800px;}
.y9_c00130{bottom:697.303050px;}
.y8_c00130{bottom:733.776450px;}
.y7_c00130{bottom:752.376450px;}
.y2_c00130{bottom:1042.467450px;}
.y1_c00130{bottom:1093.600950px;}
.h7_c00130{height:25.200000px;}
.h2_c00130{height:39.264000px;}
.h3_c00130{height:39.984000px;}
.h5_c00130{height:48.600000px;}
.h6_c00130{height:49.080000px;}
.h4_c00130{height:58.896000px;}
.h1_c00130{height:1135.500000px;}
.h0_c00130{height:1135.506150px;}
.w0_c00130{width:893.950200px;}
.w1_c00130{width:894.000000px;}
.x0_c00130{left:0.000000px;}
.x2_c00130{left:188.061900px;}
.x3_c00130{left:190.513350px;}
.x4_c00130{left:206.225250px;}
.x5_c00130{left:427.327500px;}
.x1_c00130{left:802.241700px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls4_c00130{letter-spacing:-0.533333pt;}
.ls5_c00130{letter-spacing:-0.373333pt;}
.ls2_c00130{letter-spacing:-0.213333pt;}
.ls3_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:0.426667pt;}
.ls1_c00130{letter-spacing:0.533333pt;}
.ws1_c00130{word-spacing:-11.680000pt;}
.ws0_c00130{word-spacing:-9.472000pt;}
.ws2_c00130{word-spacing:-5.427200pt;}
.ws3_c00130{word-spacing:0.000000pt;}
.ws4_c00130{word-spacing:0.373333pt;}
._0_c00130{margin-left:-2448.707200pt;}
._4_c00130{margin-left:-5.472000pt;}
._1_c00130{margin-left:-2.005333pt;}
._3_c00130{margin-left:-0.896000pt;}
._2_c00130{width:0.896000pt;}
.fs3_c00130{font-size:25.600000pt;}
.fs4_c00130{font-size:32.000000pt;}
.fs0_c00130{font-size:42.666667pt;}
.fs2_c00130{font-size:53.333333pt;}
.fs1_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y4_c00130{bottom:99.047600pt;}
.y3_c00130{bottom:115.580933pt;}
.y6_c00130{bottom:375.905600pt;}
.y5_c00130{bottom:392.438933pt;}
.y9_c00130{bottom:619.824933pt;}
.y8_c00130{bottom:652.245733pt;}
.y7_c00130{bottom:668.779067pt;}
.y2_c00130{bottom:926.637733pt;}
.y1_c00130{bottom:972.089733pt;}
.h7_c00130{height:22.400000pt;}
.h2_c00130{height:34.901333pt;}
.h3_c00130{height:35.541333pt;}
.h5_c00130{height:43.200000pt;}
.h6_c00130{height:43.626667pt;}
.h4_c00130{height:52.352000pt;}
.h1_c00130{height:1009.333333pt;}
.h0_c00130{height:1009.338800pt;}
.w0_c00130{width:794.622400pt;}
.w1_c00130{width:794.666667pt;}
.x0_c00130{left:0.000000pt;}
.x2_c00130{left:167.166133pt;}
.x3_c00130{left:169.345200pt;}
.x4_c00130{left:183.311333pt;}
.x5_c00130{left:379.846667pt;}
.x1_c00130{left:713.103733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c000edc6ddaef0e52db35468.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_8e46a22879dbb8eeb14fb3a5.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_a3ae278794426d473180a10b.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:0.710000;font-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_c00131{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls5_c00131{letter-spacing:-1.200000px;}
.ls2_c00131{letter-spacing:-0.720000px;}
.ls3_c00131{letter-spacing:-0.600000px;}
.ls0_c00131{letter-spacing:-0.240000px;}
.ls4_c00131{letter-spacing:-0.180000px;}
.ls1_c00131{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00131{word-spacing:-13.560000px;}
.ws1_c00131{word-spacing:-13.140000px;}
.ws3_c00131{word-spacing:-6.105600px;}
.wsc_c00131{word-spacing:-1.656000px;}
.ws9_c00131{word-spacing:-0.576000px;}
.wsa_c00131{word-spacing:-0.072000px;}
.ws4_c00131{word-spacing:0.000000px;}
.wsd_c00131{word-spacing:0.600000px;}
.ws6_c00131{word-spacing:2.160000px;}
.wsb_c00131{word-spacing:5.472000px;}
.ws8_c00131{word-spacing:9.288000px;}
.ws7_c00131{word-spacing:15.768000px;}
.ws5_c00131{word-spacing:19.512000px;}
.ws0_c00131{word-spacing:1583.371200px;}
._4_c00131{margin-left:-5.988000px;}
._3_c00131{margin-left:-4.488000px;}
._0_c00131{margin-left:-2.064000px;}
._2_c00131{margin-left:-1.032000px;}
._1_c00131{width:1.104000px;}
._5_c00131{width:2.352000px;}
.fc0_c00131{color:rgb(35,31,32);}
.fs3_c00131{font-size:28.800000px;}
.fs4_c00131{font-size:36.000000px;}
.fs0_c00131{font-size:48.000000px;}
.fs2_c00131{font-size:60.000000px;}
.fs1_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y11_c00131{bottom:140.960250px;}
.yb_c00131{bottom:154.172250px;}
.y10_c00131{bottom:159.560250px;}
.ya_c00131{bottom:178.922250px;}
.y9_c00131{bottom:203.672250px;}
.y8_c00131{bottom:228.422250px;}
.y7_c00131{bottom:253.172250px;}
.y6_c00131{bottom:277.922250px;}
.y5_c00131{bottom:302.672250px;}
.y4_c00131{bottom:327.422250px;}
.y3_c00131{bottom:352.172250px;}
.y2_c00131{bottom:391.916250px;}
.yd_c00131{bottom:436.712700px;}
.yc_c00131{bottom:455.312700px;}
.y12_c00131{bottom:719.624400px;}
.yf_c00131{bottom:758.225250px;}
.ye_c00131{bottom:776.825250px;}
.y1_c00131{bottom:1093.600950px;}
.h6_c00131{height:25.200000px;}
.h2_c00131{height:39.264000px;}
.h4_c00131{height:48.600000px;}
.h5_c00131{height:49.080000px;}
.h3_c00131{height:58.896000px;}
.h1_c00131{height:1135.500000px;}
.h0_c00131{height:1135.506150px;}
.w0_c00131{width:893.950200px;}
.w1_c00131{width:894.000000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:77.603100px;}
.x3_c00131{left:298.705500px;}
.x2_c00131{left:395.792100px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls5_c00131{letter-spacing:-1.066667pt;}
.ls2_c00131{letter-spacing:-0.640000pt;}
.ls3_c00131{letter-spacing:-0.533333pt;}
.ls0_c00131{letter-spacing:-0.213333pt;}
.ls4_c00131{letter-spacing:-0.160000pt;}
.ls1_c00131{letter-spacing:0.000000pt;}
.ws2_c00131{word-spacing:-12.053333pt;}
.ws1_c00131{word-spacing:-11.680000pt;}
.ws3_c00131{word-spacing:-5.427200pt;}
.wsc_c00131{word-spacing:-1.472000pt;}
.ws9_c00131{word-spacing:-0.512000pt;}
.wsa_c00131{word-spacing:-0.064000pt;}
.ws4_c00131{word-spacing:0.000000pt;}
.wsd_c00131{word-spacing:0.533333pt;}
.ws6_c00131{word-spacing:1.920000pt;}
.wsb_c00131{word-spacing:4.864000pt;}
.ws8_c00131{word-spacing:8.256000pt;}
.ws7_c00131{word-spacing:14.016000pt;}
.ws5_c00131{word-spacing:17.344000pt;}
.ws0_c00131{word-spacing:1407.441067pt;}
._4_c00131{margin-left:-5.322667pt;}
._3_c00131{margin-left:-3.989333pt;}
._0_c00131{margin-left:-1.834667pt;}
._2_c00131{margin-left:-0.917333pt;}
._1_c00131{width:0.981333pt;}
._5_c00131{width:2.090667pt;}
.fs3_c00131{font-size:25.600000pt;}
.fs4_c00131{font-size:32.000000pt;}
.fs0_c00131{font-size:42.666667pt;}
.fs2_c00131{font-size:53.333333pt;}
.fs1_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y11_c00131{bottom:125.298000pt;}
.yb_c00131{bottom:137.042000pt;}
.y10_c00131{bottom:141.831333pt;}
.ya_c00131{bottom:159.042000pt;}
.y9_c00131{bottom:181.042000pt;}
.y8_c00131{bottom:203.042000pt;}
.y7_c00131{bottom:225.042000pt;}
.y6_c00131{bottom:247.042000pt;}
.y5_c00131{bottom:269.042000pt;}
.y4_c00131{bottom:291.042000pt;}
.y3_c00131{bottom:313.042000pt;}
.y2_c00131{bottom:348.370000pt;}
.yd_c00131{bottom:388.189067pt;}
.yc_c00131{bottom:404.722400pt;}
.y12_c00131{bottom:639.666133pt;}
.yf_c00131{bottom:673.978000pt;}
.ye_c00131{bottom:690.511333pt;}
.y1_c00131{bottom:972.089733pt;}
.h6_c00131{height:22.400000pt;}
.h2_c00131{height:34.901333pt;}
.h4_c00131{height:43.200000pt;}
.h5_c00131{height:43.626667pt;}
.h3_c00131{height:52.352000pt;}
.h1_c00131{height:1009.333333pt;}
.h0_c00131{height:1009.338800pt;}
.w0_c00131{width:794.622400pt;}
.w1_c00131{width:794.666667pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:68.980533pt;}
.x3_c00131{left:265.516000pt;}
.x2_c00131{left:351.815200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33f912bf6a660121d758c299.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_ae49f3db2173017878766fe7.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_11b19e8e65d2ac0bf91f6e2e.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.067000;font-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_c00132{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.v1_c00132{vertical-align:23.976000px;}
.ls7_c00132{letter-spacing:-1.368000px;}
.ls5_c00132{letter-spacing:-1.080000px;}
.ls6_c00132{letter-spacing:-0.720000px;}
.ls8_c00132{letter-spacing:-0.624000px;}
.ls9_c00132{letter-spacing:-0.480000px;}
.ls3_c00132{letter-spacing:-0.240000px;}
.ls4_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:0.360000px;}
.ls0_c00132{letter-spacing:0.480000px;}
.ls2_c00132{letter-spacing:0.720000px;}
.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;}
}
.ws2_c00132{word-spacing:-16.488000px;}
.ws1_c00132{word-spacing:-16.344000px;}
.ws4_c00132{word-spacing:-15.120000px;}
.ws5_c00132{word-spacing:-10.896000px;}
.ws0_c00132{word-spacing:-10.656000px;}
.ws7_c00132{word-spacing:-10.512000px;}
.ws6_c00132{word-spacing:-10.368000px;}
.ws3_c00132{word-spacing:-9.528552px;}
.ws18_c00132{word-spacing:-2.160000px;}
.ws16_c00132{word-spacing:-1.944000px;}
.wsc_c00132{word-spacing:-1.008000px;}
.ws14_c00132{word-spacing:-0.720000px;}
.wse_c00132{word-spacing:-0.576000px;}
.ws13_c00132{word-spacing:-0.432000px;}
.ws8_c00132{word-spacing:0.000000px;}
.ws10_c00132{word-spacing:0.144000px;}
.ws1a_c00132{word-spacing:0.864000px;}
.wsa_c00132{word-spacing:0.936000px;}
.ws1f_c00132{word-spacing:0.960000px;}
.ws1d_c00132{word-spacing:1.152000px;}
.ws17_c00132{word-spacing:1.296000px;}
.ws11_c00132{word-spacing:1.944000px;}
.wsd_c00132{word-spacing:2.520000px;}
.wsb_c00132{word-spacing:2.664000px;}
.ws15_c00132{word-spacing:2.808000px;}
.ws19_c00132{word-spacing:3.096000px;}
.ws12_c00132{word-spacing:3.168000px;}
.ws9_c00132{word-spacing:3.456000px;}
.ws1e_c00132{word-spacing:3.816000px;}
.ws1b_c00132{word-spacing:5.256000px;}
.wsf_c00132{word-spacing:5.832000px;}
.ws1c_c00132{word-spacing:9.144000px;}
._0_c00132{margin-left:-2754.795600px;}
._8_c00132{margin-left:-5.352000px;}
._6_c00132{margin-left:-3.360000px;}
._1_c00132{margin-left:-2.256000px;}
._4_c00132{margin-left:-1.200000px;}
._2_c00132{width:1.008000px;}
._5_c00132{width:2.616000px;}
._3_c00132{width:6.624000px;}
._7_c00132{width:62.424000px;}
.fc0_c00132{color:rgb(35,31,32);}
.fs2_c00132{font-size:41.976000px;}
.fs0_c00132{font-size:48.000000px;}
.fs1_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y22_c00132{bottom:111.616200px;}
.y21_c00132{bottom:126.616200px;}
.y20_c00132{bottom:188.713650px;}
.y1f_c00132{bottom:213.463650px;}
.y1e_c00132{bottom:238.213650px;}
.y1d_c00132{bottom:262.963650px;}
.y1c_c00132{bottom:287.713650px;}
.y1b_c00132{bottom:312.463650px;}
.y1a_c00132{bottom:337.213650px;}
.y19_c00132{bottom:361.963650px;}
.y18_c00132{bottom:386.713650px;}
.y17_c00132{bottom:411.463650px;}
.y16_c00132{bottom:451.207650px;}
.y15_c00132{bottom:475.957650px;}
.y14_c00132{bottom:500.707650px;}
.y13_c00132{bottom:525.457650px;}
.y12_c00132{bottom:550.207650px;}
.y11_c00132{bottom:589.957650px;}
.y10_c00132{bottom:650.979450px;}
.yf_c00132{bottom:675.729450px;}
.ye_c00132{bottom:700.479450px;}
.yd_c00132{bottom:740.223450px;}
.yc_c00132{bottom:764.973450px;}
.yb_c00132{bottom:789.723450px;}
.ya_c00132{bottom:814.473450px;}
.y9_c00132{bottom:839.223450px;}
.y8_c00132{bottom:878.967450px;}
.y7_c00132{bottom:903.717450px;}
.y6_c00132{bottom:928.467450px;}
.y5_c00132{bottom:953.217450px;}
.y4_c00132{bottom:977.967450px;}
.y3_c00132{bottom:1002.717450px;}
.y2_c00132{bottom:1042.467450px;}
.y1_c00132{bottom:1093.600950px;}
.h2_c00132{height:39.264000px;}
.h3_c00132{height:39.984000px;}
.h5_c00132{height:58.896000px;}
.h4_c00132{height:59.976000px;}
.h1_c00132{height:1135.500000px;}
.h0_c00132{height:1135.506150px;}
.w0_c00132{width:893.950200px;}
.w1_c00132{width:894.000000px;}
.x0_c00132{left:0.000000px;}
.x4_c00132{left:128.626800px;}
.x5_c00132{left:145.633050px;}
.x2_c00132{left:188.061900px;}
.x3_c00132{left:190.513350px;}
.x1_c00132{left:804.473700px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.v1_c00132{vertical-align:21.312000pt;}
.ls7_c00132{letter-spacing:-1.216000pt;}
.ls5_c00132{letter-spacing:-0.960000pt;}
.ls6_c00132{letter-spacing:-0.640000pt;}
.ls8_c00132{letter-spacing:-0.554667pt;}
.ls9_c00132{letter-spacing:-0.426667pt;}
.ls3_c00132{letter-spacing:-0.213333pt;}
.ls4_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:0.320000pt;}
.ls0_c00132{letter-spacing:0.426667pt;}
.ls2_c00132{letter-spacing:0.640000pt;}
.ws2_c00132{word-spacing:-14.656000pt;}
.ws1_c00132{word-spacing:-14.528000pt;}
.ws4_c00132{word-spacing:-13.440000pt;}
.ws5_c00132{word-spacing:-9.685333pt;}
.ws0_c00132{word-spacing:-9.472000pt;}
.ws7_c00132{word-spacing:-9.344000pt;}
.ws6_c00132{word-spacing:-9.216000pt;}
.ws3_c00132{word-spacing:-8.469824pt;}
.ws18_c00132{word-spacing:-1.920000pt;}
.ws16_c00132{word-spacing:-1.728000pt;}
.wsc_c00132{word-spacing:-0.896000pt;}
.ws14_c00132{word-spacing:-0.640000pt;}
.wse_c00132{word-spacing:-0.512000pt;}
.ws13_c00132{word-spacing:-0.384000pt;}
.ws8_c00132{word-spacing:0.000000pt;}
.ws10_c00132{word-spacing:0.128000pt;}
.ws1a_c00132{word-spacing:0.768000pt;}
.wsa_c00132{word-spacing:0.832000pt;}
.ws1f_c00132{word-spacing:0.853333pt;}
.ws1d_c00132{word-spacing:1.024000pt;}
.ws17_c00132{word-spacing:1.152000pt;}
.ws11_c00132{word-spacing:1.728000pt;}
.wsd_c00132{word-spacing:2.240000pt;}
.wsb_c00132{word-spacing:2.368000pt;}
.ws15_c00132{word-spacing:2.496000pt;}
.ws19_c00132{word-spacing:2.752000pt;}
.ws12_c00132{word-spacing:2.816000pt;}
.ws9_c00132{word-spacing:3.072000pt;}
.ws1e_c00132{word-spacing:3.392000pt;}
.ws1b_c00132{word-spacing:4.672000pt;}
.wsf_c00132{word-spacing:5.184000pt;}
.ws1c_c00132{word-spacing:8.128000pt;}
._0_c00132{margin-left:-2448.707200pt;}
._8_c00132{margin-left:-4.757333pt;}
._6_c00132{margin-left:-2.986667pt;}
._1_c00132{margin-left:-2.005333pt;}
._4_c00132{margin-left:-1.066667pt;}
._2_c00132{width:0.896000pt;}
._5_c00132{width:2.325333pt;}
._3_c00132{width:5.888000pt;}
._7_c00132{width:55.488000pt;}
.fs2_c00132{font-size:37.312000pt;}
.fs0_c00132{font-size:42.666667pt;}
.fs1_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y22_c00132{bottom:99.214400pt;}
.y21_c00132{bottom:112.547733pt;}
.y20_c00132{bottom:167.745467pt;}
.y1f_c00132{bottom:189.745467pt;}
.y1e_c00132{bottom:211.745467pt;}
.y1d_c00132{bottom:233.745467pt;}
.y1c_c00132{bottom:255.745467pt;}
.y1b_c00132{bottom:277.745467pt;}
.y1a_c00132{bottom:299.745467pt;}
.y19_c00132{bottom:321.745467pt;}
.y18_c00132{bottom:343.745467pt;}
.y17_c00132{bottom:365.745467pt;}
.y16_c00132{bottom:401.073467pt;}
.y15_c00132{bottom:423.073467pt;}
.y14_c00132{bottom:445.073467pt;}
.y13_c00132{bottom:467.073467pt;}
.y12_c00132{bottom:489.073467pt;}
.y11_c00132{bottom:524.406800pt;}
.y10_c00132{bottom:578.648400pt;}
.yf_c00132{bottom:600.648400pt;}
.ye_c00132{bottom:622.648400pt;}
.yd_c00132{bottom:657.976400pt;}
.yc_c00132{bottom:679.976400pt;}
.yb_c00132{bottom:701.976400pt;}
.ya_c00132{bottom:723.976400pt;}
.y9_c00132{bottom:745.976400pt;}
.y8_c00132{bottom:781.304400pt;}
.y7_c00132{bottom:803.304400pt;}
.y6_c00132{bottom:825.304400pt;}
.y5_c00132{bottom:847.304400pt;}
.y4_c00132{bottom:869.304400pt;}
.y3_c00132{bottom:891.304400pt;}
.y2_c00132{bottom:926.637733pt;}
.y1_c00132{bottom:972.089733pt;}
.h2_c00132{height:34.901333pt;}
.h3_c00132{height:35.541333pt;}
.h5_c00132{height:52.352000pt;}
.h4_c00132{height:53.312000pt;}
.h1_c00132{height:1009.333333pt;}
.h0_c00132{height:1009.338800pt;}
.w0_c00132{width:794.622400pt;}
.w1_c00132{width:794.666667pt;}
.x0_c00132{left:0.000000pt;}
.x4_c00132{left:114.334933pt;}
.x5_c00132{left:129.451600pt;}
.x2_c00132{left:167.166133pt;}
.x3_c00132{left:169.345200pt;}
.x1_c00132{left:715.087733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15975309da829009dd4a7ef0.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.067000;font-style:normal;font-weight:normal;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_6c93bbcb9b4ef5ae36548450.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls5_c00133{letter-spacing:-1.380000px;}
.ls6_c00133{letter-spacing:-1.200000px;}
.ls7_c00133{letter-spacing:-0.840000px;}
.ls0_c00133{letter-spacing:-0.672000px;}
.ls4_c00133{letter-spacing:-0.600000px;}
.ls3_c00133{letter-spacing:-0.420000px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls2_c00133{letter-spacing:0.660000px;}
.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;}
}
.ws1_c00133{word-spacing:-14.400000px;}
.ws4_c00133{word-spacing:-13.740000px;}
.ws3_c00133{word-spacing:-13.620000px;}
.ws2_c00133{word-spacing:-13.320000px;}
.ws5_c00133{word-spacing:-13.140000px;}
.ws6_c00133{word-spacing:0.000000px;}
.wsa_c00133{word-spacing:0.240000px;}
.ws8_c00133{word-spacing:0.420000px;}
.ws7_c00133{word-spacing:0.600000px;}
.ws9_c00133{word-spacing:0.780000px;}
.ws0_c00133{word-spacing:1588.747200px;}
._2_c00133{margin-left:-3.408000px;}
._4_c00133{margin-left:-2.100000px;}
._1_c00133{margin-left:-1.056000px;}
._0_c00133{width:1.008000px;}
._3_c00133{width:2.520000px;}
.fc0_c00133{color:rgb(35,31,32);}
.fs0_c00133{font-size:48.000000px;}
.fs2_c00133{font-size:60.000000px;}
.fs1_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.ya_c00133{bottom:94.342800px;}
.y9_c00133{bottom:112.942800px;}
.y8_c00133{bottom:131.542800px;}
.y7_c00133{bottom:150.142800px;}
.y6_c00133{bottom:564.338700px;}
.y5_c00133{bottom:582.938700px;}
.y4_c00133{bottom:601.538700px;}
.y3_c00133{bottom:620.138700px;}
.y2_c00133{bottom:1042.467450px;}
.y1_c00133{bottom:1093.601100px;}
.h2_c00133{height:39.264000px;}
.h5_c00133{height:48.600000px;}
.h4_c00133{height:49.080000px;}
.h3_c00133{height:58.896000px;}
.h1_c00133{height:1135.500000px;}
.h0_c00133{height:1135.506150px;}
.w0_c00133{width:893.950200px;}
.w1_c00133{width:894.000000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:77.603100px;}
.x2_c00133{left:392.248800px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls5_c00133{letter-spacing:-1.226667pt;}
.ls6_c00133{letter-spacing:-1.066667pt;}
.ls7_c00133{letter-spacing:-0.746667pt;}
.ls0_c00133{letter-spacing:-0.597333pt;}
.ls4_c00133{letter-spacing:-0.533333pt;}
.ls3_c00133{letter-spacing:-0.373333pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls2_c00133{letter-spacing:0.586667pt;}
.ws1_c00133{word-spacing:-12.800000pt;}
.ws4_c00133{word-spacing:-12.213333pt;}
.ws3_c00133{word-spacing:-12.106667pt;}
.ws2_c00133{word-spacing:-11.840000pt;}
.ws5_c00133{word-spacing:-11.680000pt;}
.ws6_c00133{word-spacing:0.000000pt;}
.wsa_c00133{word-spacing:0.213333pt;}
.ws8_c00133{word-spacing:0.373333pt;}
.ws7_c00133{word-spacing:0.533333pt;}
.ws9_c00133{word-spacing:0.693333pt;}
.ws0_c00133{word-spacing:1412.219733pt;}
._2_c00133{margin-left:-3.029333pt;}
._4_c00133{margin-left:-1.866667pt;}
._1_c00133{margin-left:-0.938667pt;}
._0_c00133{width:0.896000pt;}
._3_c00133{width:2.240000pt;}
.fs0_c00133{font-size:42.666667pt;}
.fs2_c00133{font-size:53.333333pt;}
.fs1_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.ya_c00133{bottom:83.860267pt;}
.y9_c00133{bottom:100.393600pt;}
.y8_c00133{bottom:116.926933pt;}
.y7_c00133{bottom:133.460267pt;}
.y6_c00133{bottom:501.634400pt;}
.y5_c00133{bottom:518.167733pt;}
.y4_c00133{bottom:534.701067pt;}
.y3_c00133{bottom:551.234400pt;}
.y2_c00133{bottom:926.637733pt;}
.y1_c00133{bottom:972.089867pt;}
.h2_c00133{height:34.901333pt;}
.h5_c00133{height:43.200000pt;}
.h4_c00133{height:43.626667pt;}
.h3_c00133{height:52.352000pt;}
.h1_c00133{height:1009.333333pt;}
.h0_c00133{height:1009.338800pt;}
.w0_c00133{width:794.622400pt;}
.w1_c00133{width:794.666667pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:68.980533pt;}
.x2_c00133{left:348.665600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9471a57729c34387715c76ff.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_985b0be0e0f0aafc835c6edc.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.067000;font-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_c00134{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls4_c00134{letter-spacing:-5.820000px;}
.ls3_c00134{letter-spacing:-0.420000px;}
.ls1_c00134{letter-spacing:-0.240000px;}
.ls2_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00134{word-spacing:-10.656000px;}
.ws1_c00134{word-spacing:0.000000px;}
.ws4_c00134{word-spacing:0.240000px;}
.ws2_c00134{word-spacing:0.420000px;}
.ws3_c00134{word-spacing:5.820000px;}
._0_c00134{margin-left:-2754.795600px;}
._1_c00134{margin-left:-2.256000px;}
._5_c00134{margin-left:-1.128000px;}
._2_c00134{width:1.008000px;}
._3_c00134{width:2.436000px;}
._4_c00134{width:6.120000px;}
.fc0_c00134{color:rgb(35,31,32);}
.fs0_c00134{font-size:48.000000px;}
.fs1_c00134{font-size:60.000000px;}
.y0_c00134{bottom:0.000000px;}
.yd_c00134{bottom:111.350850px;}
.yc_c00134{bottom:129.950850px;}
.yb_c00134{bottom:148.550850px;}
.ya_c00134{bottom:167.150850px;}
.y9_c00134{bottom:600.828900px;}
.y5_c00134{bottom:601.891800px;}
.y8_c00134{bottom:619.428900px;}
.y4_c00134{bottom:620.491800px;}
.y7_c00134{bottom:638.028900px;}
.y3_c00134{bottom:639.091800px;}
.y6_c00134{bottom:656.628900px;}
.y2_c00134{bottom:657.691800px;}
.y1_c00134{bottom:1093.600950px;}
.h2_c00134{height:39.264000px;}
.h3_c00134{height:39.984000px;}
.h5_c00134{height:48.600000px;}
.h4_c00134{height:49.080000px;}
.h1_c00134{height:1135.500000px;}
.h0_c00134{height:1135.506150px;}
.w0_c00134{width:893.950200px;}
.w1_c00134{width:894.000000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:188.061900px;}
.x3_c00134{left:190.513350px;}
.x4_c00134{left:209.309550px;}
.x7_c00134{left:213.561450px;}
.x5_c00134{left:522.792300px;}
.x6_c00134{left:523.955100px;}
.x1_c00134{left:803.681700px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls4_c00134{letter-spacing:-5.173333pt;}
.ls3_c00134{letter-spacing:-0.373333pt;}
.ls1_c00134{letter-spacing:-0.213333pt;}
.ls2_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.426667pt;}
.ws0_c00134{word-spacing:-9.472000pt;}
.ws1_c00134{word-spacing:0.000000pt;}
.ws4_c00134{word-spacing:0.213333pt;}
.ws2_c00134{word-spacing:0.373333pt;}
.ws3_c00134{word-spacing:5.173333pt;}
._0_c00134{margin-left:-2448.707200pt;}
._1_c00134{margin-left:-2.005333pt;}
._5_c00134{margin-left:-1.002667pt;}
._2_c00134{width:0.896000pt;}
._3_c00134{width:2.165333pt;}
._4_c00134{width:5.440000pt;}
.fs0_c00134{font-size:42.666667pt;}
.fs1_c00134{font-size:53.333333pt;}
.y0_c00134{bottom:0.000000pt;}
.yd_c00134{bottom:98.978533pt;}
.yc_c00134{bottom:115.511867pt;}
.yb_c00134{bottom:132.045200pt;}
.ya_c00134{bottom:148.578533pt;}
.y9_c00134{bottom:534.070133pt;}
.y5_c00134{bottom:535.014933pt;}
.y8_c00134{bottom:550.603467pt;}
.y4_c00134{bottom:551.548267pt;}
.y7_c00134{bottom:567.136800pt;}
.y3_c00134{bottom:568.081600pt;}
.y6_c00134{bottom:583.670133pt;}
.y2_c00134{bottom:584.614933pt;}
.y1_c00134{bottom:972.089733pt;}
.h2_c00134{height:34.901333pt;}
.h3_c00134{height:35.541333pt;}
.h5_c00134{height:43.200000pt;}
.h4_c00134{height:43.626667pt;}
.h1_c00134{height:1009.333333pt;}
.h0_c00134{height:1009.338800pt;}
.w0_c00134{width:794.622400pt;}
.w1_c00134{width:794.666667pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:167.166133pt;}
.x3_c00134{left:169.345200pt;}
.x4_c00134{left:186.052933pt;}
.x7_c00134{left:189.832400pt;}
.x5_c00134{left:464.704267pt;}
.x6_c00134{left:465.737867pt;}
.x1_c00134{left:714.383733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32b94f16b0414a56b1c4ab12.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.067000;font-style:normal;font-weight:normal;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_d27ab2c52118be6a0abd7c44.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls4_c00135{letter-spacing:-2.304000px;}
.ls5_c00135{letter-spacing:-1.224000px;}
.ls3_c00135{letter-spacing:-1.008000px;}
.ls2_c00135{letter-spacing:-0.720000px;}
.ls7_c00135{letter-spacing:-0.600000px;}
.ls6_c00135{letter-spacing:-0.420000px;}
.ls0_c00135{letter-spacing:-0.240000px;}
.ls1_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00135{word-spacing:-14.184000px;}
.ws5_c00135{word-spacing:-2.304000px;}
.wsb_c00135{word-spacing:-1.800000px;}
.wsc_c00135{word-spacing:-1.656000px;}
.ws9_c00135{word-spacing:-1.080000px;}
.wsa_c00135{word-spacing:-1.008000px;}
.ws8_c00135{word-spacing:-0.432000px;}
.ws2_c00135{word-spacing:0.000000px;}
.wsf_c00135{word-spacing:0.420000px;}
.wse_c00135{word-spacing:0.576000px;}
.ws10_c00135{word-spacing:0.600000px;}
.ws6_c00135{word-spacing:1.368000px;}
.wsd_c00135{word-spacing:1.656000px;}
.ws7_c00135{word-spacing:1.872000px;}
.ws3_c00135{word-spacing:2.448000px;}
.ws4_c00135{word-spacing:2.736000px;}
.ws0_c00135{word-spacing:1584.811200px;}
._4_c00135{margin-left:-4.872000px;}
._2_c00135{margin-left:-3.408000px;}
._5_c00135{margin-left:-2.328000px;}
._1_c00135{margin-left:-1.056000px;}
._0_c00135{width:1.296000px;}
._6_c00135{width:3.144000px;}
._7_c00135{width:26.928000px;}
._3_c00135{width:56.664000px;}
.fc0_c00135{color:rgb(35,31,32);}
.fs0_c00135{font-size:48.000000px;}
.fs2_c00135{font-size:60.000000px;}
.fs1_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y11_c00135{bottom:126.019650px;}
.y10_c00135{bottom:150.769650px;}
.yf_c00135{bottom:175.519650px;}
.ye_c00135{bottom:200.269650px;}
.yd_c00135{bottom:229.282650px;}
.yc_c00135{bottom:254.032650px;}
.yb_c00135{bottom:278.782650px;}
.ya_c00135{bottom:303.532650px;}
.y9_c00135{bottom:332.530650px;}
.y8_c00135{bottom:372.274650px;}
.y7_c00135{bottom:397.024650px;}
.y6_c00135{bottom:421.774650px;}
.y5_c00135{bottom:446.524650px;}
.y4_c00135{bottom:471.274650px;}
.y3_c00135{bottom:496.024650px;}
.y2_c00135{bottom:535.774650px;}
.y16_c00135{bottom:583.853100px;}
.y15_c00135{bottom:602.453100px;}
.y14_c00135{bottom:621.053100px;}
.y13_c00135{bottom:639.653100px;}
.y12_c00135{bottom:658.253100px;}
.y1_c00135{bottom:1093.601100px;}
.h2_c00135{height:39.264000px;}
.h5_c00135{height:48.600000px;}
.h4_c00135{height:49.080000px;}
.h3_c00135{height:58.896000px;}
.h1_c00135{height:1135.500000px;}
.h0_c00135{height:1135.506150px;}
.w0_c00135{width:893.950200px;}
.w1_c00135{width:894.000000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:77.603100px;}
.x2_c00135{left:98.861100px;}
.x3_c00135{left:391.185750px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls4_c00135{letter-spacing:-2.048000pt;}
.ls5_c00135{letter-spacing:-1.088000pt;}
.ls3_c00135{letter-spacing:-0.896000pt;}
.ls2_c00135{letter-spacing:-0.640000pt;}
.ls7_c00135{letter-spacing:-0.533333pt;}
.ls6_c00135{letter-spacing:-0.373333pt;}
.ls0_c00135{letter-spacing:-0.213333pt;}
.ls1_c00135{letter-spacing:0.000000pt;}
.ws1_c00135{word-spacing:-12.608000pt;}
.ws5_c00135{word-spacing:-2.048000pt;}
.wsb_c00135{word-spacing:-1.600000pt;}
.wsc_c00135{word-spacing:-1.472000pt;}
.ws9_c00135{word-spacing:-0.960000pt;}
.wsa_c00135{word-spacing:-0.896000pt;}
.ws8_c00135{word-spacing:-0.384000pt;}
.ws2_c00135{word-spacing:0.000000pt;}
.wsf_c00135{word-spacing:0.373333pt;}
.wse_c00135{word-spacing:0.512000pt;}
.ws10_c00135{word-spacing:0.533333pt;}
.ws6_c00135{word-spacing:1.216000pt;}
.wsd_c00135{word-spacing:1.472000pt;}
.ws7_c00135{word-spacing:1.664000pt;}
.ws3_c00135{word-spacing:2.176000pt;}
.ws4_c00135{word-spacing:2.432000pt;}
.ws0_c00135{word-spacing:1408.721067pt;}
._4_c00135{margin-left:-4.330667pt;}
._2_c00135{margin-left:-3.029333pt;}
._5_c00135{margin-left:-2.069333pt;}
._1_c00135{margin-left:-0.938667pt;}
._0_c00135{width:1.152000pt;}
._6_c00135{width:2.794667pt;}
._7_c00135{width:23.936000pt;}
._3_c00135{width:50.368000pt;}
.fs0_c00135{font-size:42.666667pt;}
.fs2_c00135{font-size:53.333333pt;}
.fs1_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y11_c00135{bottom:112.017467pt;}
.y10_c00135{bottom:134.017467pt;}
.yf_c00135{bottom:156.017467pt;}
.ye_c00135{bottom:178.017467pt;}
.yd_c00135{bottom:203.806800pt;}
.yc_c00135{bottom:225.806800pt;}
.yb_c00135{bottom:247.806800pt;}
.ya_c00135{bottom:269.806800pt;}
.y9_c00135{bottom:295.582800pt;}
.y8_c00135{bottom:330.910800pt;}
.y7_c00135{bottom:352.910800pt;}
.y6_c00135{bottom:374.910800pt;}
.y5_c00135{bottom:396.910800pt;}
.y4_c00135{bottom:418.910800pt;}
.y3_c00135{bottom:440.910800pt;}
.y2_c00135{bottom:476.244133pt;}
.y16_c00135{bottom:518.980533pt;}
.y15_c00135{bottom:535.513867pt;}
.y14_c00135{bottom:552.047200pt;}
.y13_c00135{bottom:568.580533pt;}
.y12_c00135{bottom:585.113867pt;}
.y1_c00135{bottom:972.089867pt;}
.h2_c00135{height:34.901333pt;}
.h5_c00135{height:43.200000pt;}
.h4_c00135{height:43.626667pt;}
.h3_c00135{height:52.352000pt;}
.h1_c00135{height:1009.333333pt;}
.h0_c00135{height:1009.338800pt;}
.w0_c00135{width:794.622400pt;}
.w1_c00135{width:794.666667pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:68.980533pt;}
.x2_c00135{left:87.876533pt;}
.x3_c00135{left:347.720667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18c6e75b063b2fe4be5ed055.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00136;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;line-height:1.067000;font-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_c00136{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls8_c00136{letter-spacing:-2.088000px;}
.ls7_c00136{letter-spacing:-1.584000px;}
.ls6_c00136{letter-spacing:-1.368000px;}
.lsb_c00136{letter-spacing:-1.152000px;}
.lsa_c00136{letter-spacing:-0.720000px;}
.ls4_c00136{letter-spacing:-0.624000px;}
.lsc_c00136{letter-spacing:-0.576000px;}
.ls9_c00136{letter-spacing:-0.288000px;}
.ls5_c00136{letter-spacing:0.000000px;}
.ls2_c00136{letter-spacing:0.216000px;}
.ls1_c00136{letter-spacing:0.360000px;}
.ls0_c00136{letter-spacing:0.480000px;}
.ls3_c00136{letter-spacing:0.648000px;}
.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;}
}
.ws3_c00136{word-spacing:-16.344000px;}
.ws4_c00136{word-spacing:-16.056000px;}
.ws5_c00136{word-spacing:-15.336000px;}
.ws1_c00136{word-spacing:-14.976000px;}
.ws2_c00136{word-spacing:-14.904000px;}
.ws0_c00136{word-spacing:-10.272000px;}
.ws7_c00136{word-spacing:-2.520000px;}
.ws11_c00136{word-spacing:-1.800000px;}
.wsc_c00136{word-spacing:-0.864000px;}
.wse_c00136{word-spacing:-0.792000px;}
.ws6_c00136{word-spacing:0.000000px;}
.ws14_c00136{word-spacing:0.504000px;}
.ws10_c00136{word-spacing:0.720000px;}
.wsd_c00136{word-spacing:2.088000px;}
.ws8_c00136{word-spacing:2.304000px;}
.wsb_c00136{word-spacing:2.592000px;}
.ws15_c00136{word-spacing:3.168000px;}
.ws13_c00136{word-spacing:6.048000px;}
.ws12_c00136{word-spacing:7.632000px;}
.ws9_c00136{word-spacing:7.848000px;}
.wsa_c00136{word-spacing:7.920000px;}
.wsf_c00136{word-spacing:26.928000px;}
._0_c00136{margin-left:-2754.267000px;}
._4_c00136{margin-left:-3.720000px;}
._1_c00136{margin-left:-2.256000px;}
._3_c00136{margin-left:-1.056000px;}
._2_c00136{width:1.008000px;}
._5_c00136{width:2.448000px;}
._6_c00136{width:26.928000px;}
.fc0_c00136{color:rgb(35,31,32);}
.fs0_c00136{font-size:48.000000px;}
.fs1_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y21_c00136{bottom:166.452900px;}
.y20_c00136{bottom:191.202900px;}
.y1f_c00136{bottom:215.952900px;}
.y1e_c00136{bottom:240.702900px;}
.y1d_c00136{bottom:265.452900px;}
.y1c_c00136{bottom:305.196900px;}
.y1b_c00136{bottom:329.946900px;}
.y1a_c00136{bottom:369.690900px;}
.y19_c00136{bottom:394.440900px;}
.y18_c00136{bottom:423.438900px;}
.y17_c00136{bottom:452.444850px;}
.y16_c00136{bottom:481.442850px;}
.y15_c00136{bottom:510.448800px;}
.y14_c00136{bottom:539.446800px;}
.y13_c00136{bottom:568.448700px;}
.y12_c00136{bottom:597.450750px;}
.y11_c00136{bottom:626.456700px;}
.y10_c00136{bottom:655.454700px;}
.yf_c00136{bottom:680.204700px;}
.ye_c00136{bottom:719.955600px;}
.yd_c00136{bottom:748.957650px;}
.yc_c00136{bottom:777.959550px;}
.yb_c00136{bottom:806.973450px;}
.ya_c00136{bottom:831.723450px;}
.y9_c00136{bottom:860.721450px;}
.y8_c00136{bottom:885.471450px;}
.y7_c00136{bottom:910.221450px;}
.y6_c00136{bottom:934.971450px;}
.y5_c00136{bottom:959.721450px;}
.y4_c00136{bottom:988.719450px;}
.y3_c00136{bottom:1017.717450px;}
.y2_c00136{bottom:1042.467450px;}
.y1_c00136{bottom:1093.600950px;}
.h2_c00136{height:39.264000px;}
.h3_c00136{height:39.984000px;}
.h4_c00136{height:58.896000px;}
.h5_c00136{height:59.976000px;}
.h1_c00136{height:1135.500000px;}
.h0_c00136{height:1135.506150px;}
.w0_c00136{width:893.950200px;}
.w1_c00136{width:894.000000px;}
.x0_c00136{left:0.000000px;}
.x4_c00136{left:128.626800px;}
.x5_c00136{left:149.884800px;}
.x6_c00136{left:171.142800px;}
.x2_c00136{left:188.061900px;}
.x3_c00136{left:190.513350px;}
.x1_c00136{left:803.873550px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls8_c00136{letter-spacing:-1.856000pt;}
.ls7_c00136{letter-spacing:-1.408000pt;}
.ls6_c00136{letter-spacing:-1.216000pt;}
.lsb_c00136{letter-spacing:-1.024000pt;}
.lsa_c00136{letter-spacing:-0.640000pt;}
.ls4_c00136{letter-spacing:-0.554667pt;}
.lsc_c00136{letter-spacing:-0.512000pt;}
.ls9_c00136{letter-spacing:-0.256000pt;}
.ls5_c00136{letter-spacing:0.000000pt;}
.ls2_c00136{letter-spacing:0.192000pt;}
.ls1_c00136{letter-spacing:0.320000pt;}
.ls0_c00136{letter-spacing:0.426667pt;}
.ls3_c00136{letter-spacing:0.576000pt;}
.ws3_c00136{word-spacing:-14.528000pt;}
.ws4_c00136{word-spacing:-14.272000pt;}
.ws5_c00136{word-spacing:-13.632000pt;}
.ws1_c00136{word-spacing:-13.312000pt;}
.ws2_c00136{word-spacing:-13.248000pt;}
.ws0_c00136{word-spacing:-9.130667pt;}
.ws7_c00136{word-spacing:-2.240000pt;}
.ws11_c00136{word-spacing:-1.600000pt;}
.wsc_c00136{word-spacing:-0.768000pt;}
.wse_c00136{word-spacing:-0.704000pt;}
.ws6_c00136{word-spacing:0.000000pt;}
.ws14_c00136{word-spacing:0.448000pt;}
.ws10_c00136{word-spacing:0.640000pt;}
.wsd_c00136{word-spacing:1.856000pt;}
.ws8_c00136{word-spacing:2.048000pt;}
.wsb_c00136{word-spacing:2.304000pt;}
.ws15_c00136{word-spacing:2.816000pt;}
.ws13_c00136{word-spacing:5.376000pt;}
.ws12_c00136{word-spacing:6.784000pt;}
.ws9_c00136{word-spacing:6.976000pt;}
.wsa_c00136{word-spacing:7.040000pt;}
.wsf_c00136{word-spacing:23.936000pt;}
._0_c00136{margin-left:-2448.237333pt;}
._4_c00136{margin-left:-3.306667pt;}
._1_c00136{margin-left:-2.005333pt;}
._3_c00136{margin-left:-0.938667pt;}
._2_c00136{width:0.896000pt;}
._5_c00136{width:2.176000pt;}
._6_c00136{width:23.936000pt;}
.fs0_c00136{font-size:42.666667pt;}
.fs1_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y21_c00136{bottom:147.958133pt;}
.y20_c00136{bottom:169.958133pt;}
.y1f_c00136{bottom:191.958133pt;}
.y1e_c00136{bottom:213.958133pt;}
.y1d_c00136{bottom:235.958133pt;}
.y1c_c00136{bottom:271.286133pt;}
.y1b_c00136{bottom:293.286133pt;}
.y1a_c00136{bottom:328.614133pt;}
.y19_c00136{bottom:350.614133pt;}
.y18_c00136{bottom:376.390133pt;}
.y17_c00136{bottom:402.173200pt;}
.y16_c00136{bottom:427.949200pt;}
.y15_c00136{bottom:453.732267pt;}
.y14_c00136{bottom:479.508267pt;}
.y13_c00136{bottom:505.287733pt;}
.y12_c00136{bottom:531.067333pt;}
.y11_c00136{bottom:556.850400pt;}
.y10_c00136{bottom:582.626400pt;}
.yf_c00136{bottom:604.626400pt;}
.ye_c00136{bottom:639.960533pt;}
.yd_c00136{bottom:665.740133pt;}
.yc_c00136{bottom:691.519600pt;}
.yb_c00136{bottom:717.309733pt;}
.ya_c00136{bottom:739.309733pt;}
.y9_c00136{bottom:765.085733pt;}
.y8_c00136{bottom:787.085733pt;}
.y7_c00136{bottom:809.085733pt;}
.y6_c00136{bottom:831.085733pt;}
.y5_c00136{bottom:853.085733pt;}
.y4_c00136{bottom:878.861733pt;}
.y3_c00136{bottom:904.637733pt;}
.y2_c00136{bottom:926.637733pt;}
.y1_c00136{bottom:972.089733pt;}
.h2_c00136{height:34.901333pt;}
.h3_c00136{height:35.541333pt;}
.h4_c00136{height:52.352000pt;}
.h5_c00136{height:53.312000pt;}
.h1_c00136{height:1009.333333pt;}
.h0_c00136{height:1009.338800pt;}
.w0_c00136{width:794.622400pt;}
.w1_c00136{width:794.666667pt;}
.x0_c00136{left:0.000000pt;}
.x4_c00136{left:114.334933pt;}
.x5_c00136{left:133.230933pt;}
.x6_c00136{left:152.126933pt;}
.x2_c00136{left:167.166133pt;}
.x3_c00136{left:169.345200pt;}
.x1_c00136{left:714.554267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec4185f8760a3915098ffd9d.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:-0.240000px;}
.ls1_c00137{letter-spacing:0.000000px;}
.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:0.000000px;}
.ws0_c00137{word-spacing:1595.707200px;}
._0_c00137{margin-left:-2.064000px;}
._1_c00137{width:1.104000px;}
.fc1_c00137{color:transparent;}
.fc0_c00137{color:rgb(35,31,32);}
.fs0_c00137{font-size:48.000000px;}
.fs1_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y1_c00137{bottom:1093.600950px;}
.y2_c00137{bottom:1154.021850px;}
.h2_c00137{height:39.264000px;}
.h3_c00137{height:51.120000px;}
.h1_c00137{height:1135.500000px;}
.h0_c00137{height:1135.506150px;}
.w0_c00137{width:893.950200px;}
.w1_c00137{width:894.000000px;}
.x2_c00137{left:-27.278850px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:77.603100px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:-0.213333pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ws1_c00137{word-spacing:0.000000pt;}
.ws0_c00137{word-spacing:1418.406400pt;}
._0_c00137{margin-left:-1.834667pt;}
._1_c00137{width:0.981333pt;}
.fs0_c00137{font-size:42.666667pt;}
.fs1_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y1_c00137{bottom:972.089733pt;}
.y2_c00137{bottom:1025.797200pt;}
.h2_c00137{height:34.901333pt;}
.h3_c00137{height:45.440000pt;}
.h1_c00137{height:1009.333333pt;}
.h0_c00137{height:1009.338800pt;}
.w0_c00137{width:794.622400pt;}
.w1_c00137{width:794.666667pt;}
.x2_c00137{left:-24.247867pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecf0ed7a6b9ddeca383e3a65.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_71b40a384343550aad70f282.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:1.067000;font-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_c00138{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls6_c00138{letter-spacing:-1.584000px;}
.ls3_c00138{letter-spacing:0.000000px;}
.ls5_c00138{letter-spacing:0.144000px;}
.ls2_c00138{letter-spacing:0.360000px;}
.ls0_c00138{letter-spacing:0.480000px;}
.ls1_c00138{letter-spacing:1.080000px;}
.ls4_c00138{letter-spacing:1.800000px;}
.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;}
}
.ws1_c00138{word-spacing:-33.120000px;}
.ws2_c00138{word-spacing:-14.904000px;}
.ws0_c00138{word-spacing:-10.896000px;}
.wsa_c00138{word-spacing:-2.952000px;}
.ws3_c00138{word-spacing:0.000000px;}
.ws9_c00138{word-spacing:0.936000px;}
.ws4_c00138{word-spacing:1.080000px;}
.wse_c00138{word-spacing:1.368000px;}
.wsc_c00138{word-spacing:2.160000px;}
.ws8_c00138{word-spacing:2.232000px;}
.wsd_c00138{word-spacing:2.880000px;}
.wsf_c00138{word-spacing:5.184000px;}
.ws5_c00138{word-spacing:5.616000px;}
.wsb_c00138{word-spacing:5.832000px;}
.ws6_c00138{word-spacing:13.896000px;}
.ws7_c00138{word-spacing:14.040000px;}
._0_c00138{margin-left:-2755.276200px;}
._7_c00138{margin-left:-3.576000px;}
._1_c00138{margin-left:-2.256000px;}
._3_c00138{margin-left:-1.080000px;}
._2_c00138{width:1.008000px;}
._4_c00138{width:2.016000px;}
._5_c00138{width:3.024000px;}
._6_c00138{width:4.464000px;}
.fc1_c00138{color:transparent;}
.fc0_c00138{color:rgb(35,31,32);}
.fs0_c00138{font-size:48.000000px;}
.fs1_c00138{font-size:72.000000px;}
.fs2_c00138{font-size:108.000000px;}
.fs4_c00138{font-size:144.000000px;}
.fs3_c00138{font-size:180.000000px;}
.y0_c00138{bottom:0.000000px;}
.y12_c00138{bottom:301.024650px;}
.y11_c00138{bottom:325.774650px;}
.y10_c00138{bottom:350.524650px;}
.yf_c00138{bottom:375.274650px;}
.ye_c00138{bottom:400.024650px;}
.yd_c00138{bottom:424.774650px;}
.yc_c00138{bottom:464.518650px;}
.yb_c00138{bottom:489.268650px;}
.ya_c00138{bottom:514.018650px;}
.y9_c00138{bottom:538.768650px;}
.y8_c00138{bottom:563.518650px;}
.y7_c00138{bottom:588.268650px;}
.y6_c00138{bottom:613.018650px;}
.y5_c00138{bottom:735.593850px;}
.y4_c00138{bottom:804.593850px;}
.y3_c00138{bottom:861.593850px;}
.y1_c00138{bottom:1093.600950px;}
.y2_c00138{bottom:1146.226500px;}
.h2_c00138{height:39.264000px;}
.h3_c00138{height:39.984000px;}
.h4_c00138{height:51.120000px;}
.h8_c00138{height:58.896000px;}
.h5_c00138{height:88.344000px;}
.h7_c00138{height:116.640000px;}
.h6_c00138{height:147.240000px;}
.h1_c00138{height:1135.500000px;}
.h0_c00138{height:1135.506150px;}
.w0_c00138{width:893.950200px;}
.w1_c00138{width:894.000000px;}
.x4_c00138{left:-24.444150px;}
.x0_c00138{left:0.000000px;}
.x6_c00138{left:128.626800px;}
.x2_c00138{left:188.061900px;}
.x3_c00138{left:190.513350px;}
.x5_c00138{left:596.343300px;}
.x1_c00138{left:800.165850px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls6_c00138{letter-spacing:-1.408000pt;}
.ls3_c00138{letter-spacing:0.000000pt;}
.ls5_c00138{letter-spacing:0.128000pt;}
.ls2_c00138{letter-spacing:0.320000pt;}
.ls0_c00138{letter-spacing:0.426667pt;}
.ls1_c00138{letter-spacing:0.960000pt;}
.ls4_c00138{letter-spacing:1.600000pt;}
.ws1_c00138{word-spacing:-29.440000pt;}
.ws2_c00138{word-spacing:-13.248000pt;}
.ws0_c00138{word-spacing:-9.685333pt;}
.wsa_c00138{word-spacing:-2.624000pt;}
.ws3_c00138{word-spacing:0.000000pt;}
.ws9_c00138{word-spacing:0.832000pt;}
.ws4_c00138{word-spacing:0.960000pt;}
.wse_c00138{word-spacing:1.216000pt;}
.wsc_c00138{word-spacing:1.920000pt;}
.ws8_c00138{word-spacing:1.984000pt;}
.wsd_c00138{word-spacing:2.560000pt;}
.wsf_c00138{word-spacing:4.608000pt;}
.ws5_c00138{word-spacing:4.992000pt;}
.wsb_c00138{word-spacing:5.184000pt;}
.ws6_c00138{word-spacing:12.352000pt;}
.ws7_c00138{word-spacing:12.480000pt;}
._0_c00138{margin-left:-2449.134400pt;}
._7_c00138{margin-left:-3.178667pt;}
._1_c00138{margin-left:-2.005333pt;}
._3_c00138{margin-left:-0.960000pt;}
._2_c00138{width:0.896000pt;}
._4_c00138{width:1.792000pt;}
._5_c00138{width:2.688000pt;}
._6_c00138{width:3.968000pt;}
.fs0_c00138{font-size:42.666667pt;}
.fs1_c00138{font-size:64.000000pt;}
.fs2_c00138{font-size:96.000000pt;}
.fs4_c00138{font-size:128.000000pt;}
.fs3_c00138{font-size:160.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y12_c00138{bottom:267.577467pt;}
.y11_c00138{bottom:289.577467pt;}
.y10_c00138{bottom:311.577467pt;}
.yf_c00138{bottom:333.577467pt;}
.ye_c00138{bottom:355.577467pt;}
.yd_c00138{bottom:377.577467pt;}
.yc_c00138{bottom:412.905467pt;}
.yb_c00138{bottom:434.905467pt;}
.ya_c00138{bottom:456.905467pt;}
.y9_c00138{bottom:478.905467pt;}
.y8_c00138{bottom:500.905467pt;}
.y7_c00138{bottom:522.905467pt;}
.y6_c00138{bottom:544.905467pt;}
.y5_c00138{bottom:653.861200pt;}
.y4_c00138{bottom:715.194533pt;}
.y3_c00138{bottom:765.861200pt;}
.y1_c00138{bottom:972.089733pt;}
.y2_c00138{bottom:1018.868000pt;}
.h2_c00138{height:34.901333pt;}
.h3_c00138{height:35.541333pt;}
.h4_c00138{height:45.440000pt;}
.h8_c00138{height:52.352000pt;}
.h5_c00138{height:78.528000pt;}
.h7_c00138{height:103.680000pt;}
.h6_c00138{height:130.880000pt;}
.h1_c00138{height:1009.333333pt;}
.h0_c00138{height:1009.338800pt;}
.w0_c00138{width:794.622400pt;}
.w1_c00138{width:794.666667pt;}
.x4_c00138{left:-21.728133pt;}
.x0_c00138{left:0.000000pt;}
.x6_c00138{left:114.334933pt;}
.x2_c00138{left:167.166133pt;}
.x3_c00138{left:169.345200pt;}
.x5_c00138{left:530.082933pt;}
.x1_c00138{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00139;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00139{font-family:ff6_c00139;line-height:1.067000;font-style:normal;font-weight: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_c00139;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00139{font-family:ff7_c00139;line-height:0.710000;font-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_c00139{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls3_c00139{letter-spacing:-1.200000px;}
.ls1_c00139{letter-spacing:-0.864000px;}
.ls2_c00139{letter-spacing:-0.720000px;}
.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;}
}
.ws1_c00139{word-spacing:-8.694000px;}
.ws2_c00139{word-spacing:-6.487200px;}
.ws3_c00139{word-spacing:0.000000px;}
.ws5_c00139{word-spacing:0.864000px;}
.ws4_c00139{word-spacing:7.056000px;}
.ws0_c00139{word-spacing:1574.587200px;}
._3_c00139{margin-left:-7.042800px;}
._0_c00139{margin-left:-2.112000px;}
._1_c00139{margin-left:-1.104000px;}
._2_c00139{width:2.016000px;}
._6_c00139{width:7.776000px;}
._4_c00139{width:55.674000px;}
._5_c00139{width:59.136000px;}
.fc0_c00139{color:rgb(35,31,32);}
.fs5_c00139{font-size:30.600000px;}
.fs6_c00139{font-size:36.000000px;}
.fs3_c00139{font-size:42.000000px;}
.fs0_c00139{font-size:48.000000px;}
.fs4_c00139{font-size:54.000000px;}
.fs2_c00139{font-size:57.000000px;}
.fs1_c00139{font-size:60.000000px;}
.y0_c00139{bottom:0.000000px;}
.yd_c00139{bottom:317.855100px;}
.yb_c00139{bottom:379.313100px;}
.ya_c00139{bottom:392.813100px;}
.y9_c00139{bottom:415.065000px;}
.y8_c00139{bottom:428.565000px;}
.y7_c00139{bottom:455.068950px;}
.y6_c00139{bottom:468.568950px;}
.y5_c00139{bottom:482.068950px;}
.y4_c00139{bottom:504.321000px;}
.y3_c00139{bottom:522.321000px;}
.y2_c00139{bottom:548.824950px;}
.yc_c00139{bottom:551.198850px;}
.y19_c00139{bottom:806.956200px;}
.y17_c00139{bottom:868.061100px;}
.y16_c00139{bottom:881.561100px;}
.y15_c00139{bottom:903.813000px;}
.y14_c00139{bottom:917.313000px;}
.y13_c00139{bottom:943.816950px;}
.y12_c00139{bottom:957.316950px;}
.y11_c00139{bottom:970.816950px;}
.y10_c00139{bottom:993.069000px;}
.yf_c00139{bottom:1011.069000px;}
.ye_c00139{bottom:1037.572950px;}
.y18_c00139{bottom:1040.298750px;}
.y1_c00139{bottom:1093.600950px;}
.h7_c00139{height:25.200000px;}
.h6_c00139{height:30.282000px;}
.h4_c00139{height:34.080000px;}
.h2_c00139{height:39.264000px;}
.h3_c00139{height:43.260000px;}
.h5_c00139{height:43.740000px;}
.h1_c00139{height:1135.500000px;}
.h0_c00139{height:1135.506150px;}
.w0_c00139{width:893.950200px;}
.w1_c00139{width:894.000000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:77.603100px;}
.x4_c00139{left:424.137150px;}
.x2_c00139{left:599.532150px;}
.x3_c00139{left:612.288150px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls3_c00139{letter-spacing:-1.066667pt;}
.ls1_c00139{letter-spacing:-0.768000pt;}
.ls2_c00139{letter-spacing:-0.640000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws1_c00139{word-spacing:-7.728000pt;}
.ws2_c00139{word-spacing:-5.766400pt;}
.ws3_c00139{word-spacing:0.000000pt;}
.ws5_c00139{word-spacing:0.768000pt;}
.ws4_c00139{word-spacing:6.272000pt;}
.ws0_c00139{word-spacing:1399.633067pt;}
._3_c00139{margin-left:-6.260267pt;}
._0_c00139{margin-left:-1.877333pt;}
._1_c00139{margin-left:-0.981333pt;}
._2_c00139{width:1.792000pt;}
._6_c00139{width:6.912000pt;}
._4_c00139{width:49.488000pt;}
._5_c00139{width:52.565333pt;}
.fs5_c00139{font-size:27.200000pt;}
.fs6_c00139{font-size:32.000000pt;}
.fs3_c00139{font-size:37.333333pt;}
.fs0_c00139{font-size:42.666667pt;}
.fs4_c00139{font-size:48.000000pt;}
.fs2_c00139{font-size:50.666667pt;}
.fs1_c00139{font-size:53.333333pt;}
.y0_c00139{bottom:0.000000pt;}
.yd_c00139{bottom:282.537867pt;}
.yb_c00139{bottom:337.167200pt;}
.ya_c00139{bottom:349.167200pt;}
.y9_c00139{bottom:368.946667pt;}
.y8_c00139{bottom:380.946667pt;}
.y7_c00139{bottom:404.505733pt;}
.y6_c00139{bottom:416.505733pt;}
.y5_c00139{bottom:428.505733pt;}
.y4_c00139{bottom:448.285333pt;}
.y3_c00139{bottom:464.285333pt;}
.y2_c00139{bottom:487.844400pt;}
.yc_c00139{bottom:489.954533pt;}
.y19_c00139{bottom:717.294400pt;}
.y17_c00139{bottom:771.609867pt;}
.y16_c00139{bottom:783.609867pt;}
.y15_c00139{bottom:803.389333pt;}
.y14_c00139{bottom:815.389333pt;}
.y13_c00139{bottom:838.948400pt;}
.y12_c00139{bottom:850.948400pt;}
.y11_c00139{bottom:862.948400pt;}
.y10_c00139{bottom:882.728000pt;}
.yf_c00139{bottom:898.728000pt;}
.ye_c00139{bottom:922.287067pt;}
.y18_c00139{bottom:924.710000pt;}
.y1_c00139{bottom:972.089733pt;}
.h7_c00139{height:22.400000pt;}
.h6_c00139{height:26.917333pt;}
.h4_c00139{height:30.293333pt;}
.h2_c00139{height:34.901333pt;}
.h3_c00139{height:38.453333pt;}
.h5_c00139{height:38.880000pt;}
.h1_c00139{height:1009.333333pt;}
.h0_c00139{height:1009.338800pt;}
.w0_c00139{width:794.622400pt;}
.w1_c00139{width:794.666667pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:68.980533pt;}
.x4_c00139{left:377.010800pt;}
.x2_c00139{left:532.917467pt;}
.x3_c00139{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00140;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:1.067000;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00140{font-family:ff8_c00140;line-height:0.710000;font-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_c00140{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls5_c00140{letter-spacing:-1.200000px;}
.ls3_c00140{letter-spacing:-0.720000px;}
.ls4_c00140{letter-spacing:-0.378000px;}
.ls2_c00140{letter-spacing:-0.216000px;}
.ls1_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00140{word-spacing:-8.694000px;}
.ws2_c00140{word-spacing:-6.487200px;}
.ws3_c00140{word-spacing:0.000000px;}
.ws5_c00140{word-spacing:0.216000px;}
.ws6_c00140{word-spacing:0.378000px;}
.ws4_c00140{word-spacing:7.056000px;}
._0_c00140{margin-left:-2755.276200px;}
._4_c00140{margin-left:-6.947400px;}
._1_c00140{margin-left:-2.256000px;}
._3_c00140{margin-left:-1.200000px;}
._2_c00140{width:1.008000px;}
._7_c00140{width:7.776000px;}
._5_c00140{width:55.674000px;}
._6_c00140{width:59.136000px;}
.fc0_c00140{color:rgb(35,31,32);}
.fs5_c00140{font-size:30.600000px;}
.fs6_c00140{font-size:36.000000px;}
.fs3_c00140{font-size:42.000000px;}
.fs0_c00140{font-size:48.000000px;}
.fs4_c00140{font-size:54.000000px;}
.fs2_c00140{font-size:57.000000px;}
.fs1_c00140{font-size:60.000000px;}
.y0_c00140{bottom:0.000000px;}
.y18_c00140{bottom:318.421500px;}
.y17_c00140{bottom:379.649700px;}
.y16_c00140{bottom:393.149700px;}
.y15_c00140{bottom:415.401750px;}
.y14_c00140{bottom:428.901750px;}
.y13_c00140{bottom:455.405700px;}
.y12_c00140{bottom:468.905700px;}
.y11_c00140{bottom:482.405700px;}
.y10_c00140{bottom:504.657600px;}
.yf_c00140{bottom:522.657600px;}
.ye_c00140{bottom:549.161550px;}
.y19_c00140{bottom:551.323050px;}
.yd_c00140{bottom:807.504900px;}
.yb_c00140{bottom:868.608900px;}
.ya_c00140{bottom:882.108900px;}
.y9_c00140{bottom:904.360800px;}
.y8_c00140{bottom:917.860800px;}
.y7_c00140{bottom:944.364900px;}
.y6_c00140{bottom:957.864900px;}
.y5_c00140{bottom:971.364900px;}
.y4_c00140{bottom:993.616800px;}
.y3_c00140{bottom:1011.616800px;}
.y2_c00140{bottom:1038.120750px;}
.yc_c00140{bottom:1040.299350px;}
.y1_c00140{bottom:1093.600950px;}
.h8_c00140{height:25.200000px;}
.h7_c00140{height:30.282000px;}
.h5_c00140{height:34.080000px;}
.h2_c00140{height:39.264000px;}
.h3_c00140{height:39.984000px;}
.h4_c00140{height:43.260000px;}
.h6_c00140{height:43.740000px;}
.h1_c00140{height:1135.500000px;}
.h0_c00140{height:1135.506150px;}
.w0_c00140{width:893.950200px;}
.w1_c00140{width:894.000000px;}
.x0_c00140{left:0.000000px;}
.x4_c00140{left:128.744700px;}
.x5_c00140{left:141.500700px;}
.x2_c00140{left:188.061900px;}
.x3_c00140{left:190.513350px;}
.x6_c00140{left:321.801150px;}
.x1_c00140{left:800.165850px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls5_c00140{letter-spacing:-1.066667pt;}
.ls3_c00140{letter-spacing:-0.640000pt;}
.ls4_c00140{letter-spacing:-0.336000pt;}
.ls2_c00140{letter-spacing:-0.192000pt;}
.ls1_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.426667pt;}
.ws0_c00140{word-spacing:-9.685333pt;}
.ws1_c00140{word-spacing:-7.728000pt;}
.ws2_c00140{word-spacing:-5.766400pt;}
.ws3_c00140{word-spacing:0.000000pt;}
.ws5_c00140{word-spacing:0.192000pt;}
.ws6_c00140{word-spacing:0.336000pt;}
.ws4_c00140{word-spacing:6.272000pt;}
._0_c00140{margin-left:-2449.134400pt;}
._4_c00140{margin-left:-6.175467pt;}
._1_c00140{margin-left:-2.005333pt;}
._3_c00140{margin-left:-1.066667pt;}
._2_c00140{width:0.896000pt;}
._7_c00140{width:6.912000pt;}
._5_c00140{width:49.488000pt;}
._6_c00140{width:52.565333pt;}
.fs5_c00140{font-size:27.200000pt;}
.fs6_c00140{font-size:32.000000pt;}
.fs3_c00140{font-size:37.333333pt;}
.fs0_c00140{font-size:42.666667pt;}
.fs4_c00140{font-size:48.000000pt;}
.fs2_c00140{font-size:50.666667pt;}
.fs1_c00140{font-size:53.333333pt;}
.y0_c00140{bottom:0.000000pt;}
.y18_c00140{bottom:283.041333pt;}
.y17_c00140{bottom:337.466400pt;}
.y16_c00140{bottom:349.466400pt;}
.y15_c00140{bottom:369.246000pt;}
.y14_c00140{bottom:381.246000pt;}
.y13_c00140{bottom:404.805067pt;}
.y12_c00140{bottom:416.805067pt;}
.y11_c00140{bottom:428.805067pt;}
.y10_c00140{bottom:448.584533pt;}
.yf_c00140{bottom:464.584533pt;}
.ye_c00140{bottom:488.143600pt;}
.y19_c00140{bottom:490.064933pt;}
.yd_c00140{bottom:717.782133pt;}
.yb_c00140{bottom:772.096800pt;}
.ya_c00140{bottom:784.096800pt;}
.y9_c00140{bottom:803.876267pt;}
.y8_c00140{bottom:815.876267pt;}
.y7_c00140{bottom:839.435467pt;}
.y6_c00140{bottom:851.435467pt;}
.y5_c00140{bottom:863.435467pt;}
.y4_c00140{bottom:883.214933pt;}
.y3_c00140{bottom:899.214933pt;}
.y2_c00140{bottom:922.774000pt;}
.yc_c00140{bottom:924.710533pt;}
.y1_c00140{bottom:972.089733pt;}
.h8_c00140{height:22.400000pt;}
.h7_c00140{height:26.917333pt;}
.h5_c00140{height:30.293333pt;}
.h2_c00140{height:34.901333pt;}
.h3_c00140{height:35.541333pt;}
.h4_c00140{height:38.453333pt;}
.h6_c00140{height:38.880000pt;}
.h1_c00140{height:1009.333333pt;}
.h0_c00140{height:1009.338800pt;}
.w0_c00140{width:794.622400pt;}
.w1_c00140{width:794.666667pt;}
.x0_c00140{left:0.000000pt;}
.x4_c00140{left:114.439733pt;}
.x5_c00140{left:125.778400pt;}
.x2_c00140{left:167.166133pt;}
.x3_c00140{left:169.345200pt;}
.x6_c00140{left:286.045467pt;}
.x1_c00140{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00141;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00141{font-family:ff6_c00141;line-height:1.067000;font-style:normal;font-weight: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_c00141;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00141{font-family:ff7_c00141;line-height:0.710000;font-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_c00141{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls3_c00141{letter-spacing:-1.200000px;}
.ls1_c00141{letter-spacing:-0.720000px;}
.ls2_c00141{letter-spacing:-0.540000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00141{word-spacing:-8.694000px;}
.ws2_c00141{word-spacing:-6.487200px;}
.ws3_c00141{word-spacing:0.000000px;}
.ws4_c00141{word-spacing:7.056000px;}
.ws5_c00141{word-spacing:56.214000px;}
.ws0_c00141{word-spacing:1574.587200px;}
._3_c00141{margin-left:-7.042800px;}
._0_c00141{margin-left:-2.112000px;}
._1_c00141{margin-left:-1.104000px;}
._2_c00141{width:2.016000px;}
._6_c00141{width:7.776000px;}
._4_c00141{width:55.674000px;}
._5_c00141{width:59.136000px;}
.fc0_c00141{color:rgb(35,31,32);}
.fs5_c00141{font-size:30.600000px;}
.fs6_c00141{font-size:36.000000px;}
.fs3_c00141{font-size:42.000000px;}
.fs0_c00141{font-size:48.000000px;}
.fs4_c00141{font-size:54.000000px;}
.fs2_c00141{font-size:57.000000px;}
.fs1_c00141{font-size:60.000000px;}
.y0_c00141{bottom:0.000000px;}
.yd_c00141{bottom:318.067800px;}
.yb_c00141{bottom:379.525650px;}
.ya_c00141{bottom:393.025650px;}
.y9_c00141{bottom:415.277700px;}
.y8_c00141{bottom:428.777700px;}
.y7_c00141{bottom:455.281500px;}
.y6_c00141{bottom:468.781500px;}
.y5_c00141{bottom:482.281500px;}
.y4_c00141{bottom:504.533550px;}
.y3_c00141{bottom:522.533550px;}
.y2_c00141{bottom:549.037500px;}
.yc_c00141{bottom:551.411550px;}
.y19_c00141{bottom:806.609550px;}
.y17_c00141{bottom:867.740850px;}
.y16_c00141{bottom:881.240850px;}
.y15_c00141{bottom:903.492750px;}
.y14_c00141{bottom:916.992750px;}
.y13_c00141{bottom:943.496700px;}
.y12_c00141{bottom:956.996700px;}
.y11_c00141{bottom:970.496700px;}
.y10_c00141{bottom:992.748750px;}
.yf_c00141{bottom:1010.748750px;}
.ye_c00141{bottom:1037.252700px;}
.y18_c00141{bottom:1040.254350px;}
.y1_c00141{bottom:1093.600950px;}
.h7_c00141{height:25.200000px;}
.h6_c00141{height:30.282000px;}
.h4_c00141{height:34.080000px;}
.h2_c00141{height:39.264000px;}
.h3_c00141{height:43.260000px;}
.h5_c00141{height:43.740000px;}
.h1_c00141{height:1135.500000px;}
.h0_c00141{height:1135.506150px;}
.w0_c00141{width:893.950200px;}
.w1_c00141{width:894.000000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:77.603100px;}
.x4_c00141{left:424.137150px;}
.x2_c00141{left:599.532150px;}
.x3_c00141{left:612.288150px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls3_c00141{letter-spacing:-1.066667pt;}
.ls1_c00141{letter-spacing:-0.640000pt;}
.ls2_c00141{letter-spacing:-0.480000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws1_c00141{word-spacing:-7.728000pt;}
.ws2_c00141{word-spacing:-5.766400pt;}
.ws3_c00141{word-spacing:0.000000pt;}
.ws4_c00141{word-spacing:6.272000pt;}
.ws5_c00141{word-spacing:49.968000pt;}
.ws0_c00141{word-spacing:1399.633067pt;}
._3_c00141{margin-left:-6.260267pt;}
._0_c00141{margin-left:-1.877333pt;}
._1_c00141{margin-left:-0.981333pt;}
._2_c00141{width:1.792000pt;}
._6_c00141{width:6.912000pt;}
._4_c00141{width:49.488000pt;}
._5_c00141{width:52.565333pt;}
.fs5_c00141{font-size:27.200000pt;}
.fs6_c00141{font-size:32.000000pt;}
.fs3_c00141{font-size:37.333333pt;}
.fs0_c00141{font-size:42.666667pt;}
.fs4_c00141{font-size:48.000000pt;}
.fs2_c00141{font-size:50.666667pt;}
.fs1_c00141{font-size:53.333333pt;}
.y0_c00141{bottom:0.000000pt;}
.yd_c00141{bottom:282.726933pt;}
.yb_c00141{bottom:337.356133pt;}
.ya_c00141{bottom:349.356133pt;}
.y9_c00141{bottom:369.135733pt;}
.y8_c00141{bottom:381.135733pt;}
.y7_c00141{bottom:404.694667pt;}
.y6_c00141{bottom:416.694667pt;}
.y5_c00141{bottom:428.694667pt;}
.y4_c00141{bottom:448.474267pt;}
.y3_c00141{bottom:464.474267pt;}
.y2_c00141{bottom:488.033333pt;}
.yc_c00141{bottom:490.143600pt;}
.y19_c00141{bottom:716.986267pt;}
.y17_c00141{bottom:771.325200pt;}
.y16_c00141{bottom:783.325200pt;}
.y15_c00141{bottom:803.104667pt;}
.y14_c00141{bottom:815.104667pt;}
.y13_c00141{bottom:838.663733pt;}
.y12_c00141{bottom:850.663733pt;}
.y11_c00141{bottom:862.663733pt;}
.y10_c00141{bottom:882.443333pt;}
.yf_c00141{bottom:898.443333pt;}
.ye_c00141{bottom:922.002400pt;}
.y18_c00141{bottom:924.670533pt;}
.y1_c00141{bottom:972.089733pt;}
.h7_c00141{height:22.400000pt;}
.h6_c00141{height:26.917333pt;}
.h4_c00141{height:30.293333pt;}
.h2_c00141{height:34.901333pt;}
.h3_c00141{height:38.453333pt;}
.h5_c00141{height:38.880000pt;}
.h1_c00141{height:1009.333333pt;}
.h0_c00141{height:1009.338800pt;}
.w0_c00141{width:794.622400pt;}
.w1_c00141{width:794.666667pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:68.980533pt;}
.x4_c00141{left:377.010800pt;}
.x2_c00141{left:532.917467pt;}
.x3_c00141{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00142;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00142{font-family:ff6_c00142;line-height:0.908000;font-style:normal;font-weight: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_c00142;src:url('chunks/assets/font_af54422b1d9f82868ba5b1bf.woff2')format("woff");}.ff7_c00142{font-family:ff7_c00142;line-height:1.067000;font-style:normal;font-weight: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_c00142;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00142{font-family:ff8_c00142;line-height:0.710000;font-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_c00142{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls3_c00142{letter-spacing:-1.200000px;}
.ls2_c00142{letter-spacing:-0.720000px;}
.ls1_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00142{word-spacing:-8.694000px;}
.ws2_c00142{word-spacing:-6.487200px;}
.ws3_c00142{word-spacing:0.000000px;}
.ws4_c00142{word-spacing:7.056000px;}
._0_c00142{margin-left:-2755.276200px;}
._4_c00142{margin-left:-6.947400px;}
._1_c00142{margin-left:-2.256000px;}
._3_c00142{margin-left:-1.200000px;}
._2_c00142{width:1.008000px;}
._7_c00142{width:7.776000px;}
._5_c00142{width:55.674000px;}
._6_c00142{width:59.136000px;}
.fc0_c00142{color:rgb(35,31,32);}
.fs5_c00142{font-size:30.600000px;}
.fs6_c00142{font-size:36.000000px;}
.fs3_c00142{font-size:42.000000px;}
.fs0_c00142{font-size:48.000000px;}
.fs4_c00142{font-size:54.000000px;}
.fs2_c00142{font-size:57.000000px;}
.fs1_c00142{font-size:60.000000px;}
.y0_c00142{bottom:0.000000px;}
.y18_c00142{bottom:317.783700px;}
.y17_c00142{bottom:379.011900px;}
.y16_c00142{bottom:392.511900px;}
.y15_c00142{bottom:414.763950px;}
.y14_c00142{bottom:428.263950px;}
.y13_c00142{bottom:454.767900px;}
.y12_c00142{bottom:468.267900px;}
.y11_c00142{bottom:481.767900px;}
.y10_c00142{bottom:504.019800px;}
.yf_c00142{bottom:522.019800px;}
.ye_c00142{bottom:548.523750px;}
.y19_c00142{bottom:551.127600px;}
.yd_c00142{bottom:806.654550px;}
.yb_c00142{bottom:868.413450px;}
.ya_c00142{bottom:881.913450px;}
.y9_c00142{bottom:904.165500px;}
.y8_c00142{bottom:917.665500px;}
.y7_c00142{bottom:944.169450px;}
.y6_c00142{bottom:957.669450px;}
.y5_c00142{bottom:971.169450px;}
.y4_c00142{bottom:993.421350px;}
.y3_c00142{bottom:1011.421350px;}
.y2_c00142{bottom:1037.925300px;}
.yc_c00142{bottom:1039.626750px;}
.y1_c00142{bottom:1093.600950px;}
.h8_c00142{height:25.200000px;}
.h7_c00142{height:30.282000px;}
.h5_c00142{height:34.080000px;}
.h2_c00142{height:39.264000px;}
.h3_c00142{height:39.984000px;}
.h4_c00142{height:43.260000px;}
.h6_c00142{height:43.740000px;}
.h1_c00142{height:1135.500000px;}
.h0_c00142{height:1135.506150px;}
.w0_c00142{width:893.950200px;}
.w1_c00142{width:894.000000px;}
.x0_c00142{left:0.000000px;}
.x4_c00142{left:128.744700px;}
.x5_c00142{left:141.500700px;}
.x2_c00142{left:188.061900px;}
.x3_c00142{left:190.513350px;}
.x6_c00142{left:321.919050px;}
.x1_c00142{left:800.165850px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls3_c00142{letter-spacing:-1.066667pt;}
.ls2_c00142{letter-spacing:-0.640000pt;}
.ls1_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.426667pt;}
.ws0_c00142{word-spacing:-9.685333pt;}
.ws1_c00142{word-spacing:-7.728000pt;}
.ws2_c00142{word-spacing:-5.766400pt;}
.ws3_c00142{word-spacing:0.000000pt;}
.ws4_c00142{word-spacing:6.272000pt;}
._0_c00142{margin-left:-2449.134400pt;}
._4_c00142{margin-left:-6.175467pt;}
._1_c00142{margin-left:-2.005333pt;}
._3_c00142{margin-left:-1.066667pt;}
._2_c00142{width:0.896000pt;}
._7_c00142{width:6.912000pt;}
._5_c00142{width:49.488000pt;}
._6_c00142{width:52.565333pt;}
.fs5_c00142{font-size:27.200000pt;}
.fs6_c00142{font-size:32.000000pt;}
.fs3_c00142{font-size:37.333333pt;}
.fs0_c00142{font-size:42.666667pt;}
.fs4_c00142{font-size:48.000000pt;}
.fs2_c00142{font-size:50.666667pt;}
.fs1_c00142{font-size:53.333333pt;}
.y0_c00142{bottom:0.000000pt;}
.y18_c00142{bottom:282.474400pt;}
.y17_c00142{bottom:336.899467pt;}
.y16_c00142{bottom:348.899467pt;}
.y15_c00142{bottom:368.679067pt;}
.y14_c00142{bottom:380.679067pt;}
.y13_c00142{bottom:404.238133pt;}
.y12_c00142{bottom:416.238133pt;}
.y11_c00142{bottom:428.238133pt;}
.y10_c00142{bottom:448.017600pt;}
.yf_c00142{bottom:464.017600pt;}
.ye_c00142{bottom:487.576667pt;}
.y19_c00142{bottom:489.891200pt;}
.yd_c00142{bottom:717.026267pt;}
.yb_c00142{bottom:771.923067pt;}
.ya_c00142{bottom:783.923067pt;}
.y9_c00142{bottom:803.702667pt;}
.y8_c00142{bottom:815.702667pt;}
.y7_c00142{bottom:839.261733pt;}
.y6_c00142{bottom:851.261733pt;}
.y5_c00142{bottom:863.261733pt;}
.y4_c00142{bottom:883.041200pt;}
.y3_c00142{bottom:899.041200pt;}
.y2_c00142{bottom:922.600267pt;}
.yc_c00142{bottom:924.112667pt;}
.y1_c00142{bottom:972.089733pt;}
.h8_c00142{height:22.400000pt;}
.h7_c00142{height:26.917333pt;}
.h5_c00142{height:30.293333pt;}
.h2_c00142{height:34.901333pt;}
.h3_c00142{height:35.541333pt;}
.h4_c00142{height:38.453333pt;}
.h6_c00142{height:38.880000pt;}
.h1_c00142{height:1009.333333pt;}
.h0_c00142{height:1009.338800pt;}
.w0_c00142{width:794.622400pt;}
.w1_c00142{width:794.666667pt;}
.x0_c00142{left:0.000000pt;}
.x4_c00142{left:114.439733pt;}
.x5_c00142{left:125.778400pt;}
.x2_c00142{left:167.166133pt;}
.x3_c00142{left:169.345200pt;}
.x6_c00142{left:286.150267pt;}
.x1_c00142{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00143;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:1.067000;font-style:normal;font-weight: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_c00143;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00143{font-family:ff7_c00143;line-height:0.710000;font-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_c00143{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls1_c00143{letter-spacing:-0.864000px;}
.ls2_c00143{letter-spacing:-0.720000px;}
.ls4_c00143{letter-spacing:-0.630000px;}
.ls3_c00143{letter-spacing:-0.540000px;}
.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;}
}
.ws1_c00143{word-spacing:-8.694000px;}
.ws2_c00143{word-spacing:-6.487200px;}
.ws3_c00143{word-spacing:0.000000px;}
.ws6_c00143{word-spacing:0.540000px;}
.ws4_c00143{word-spacing:7.056000px;}
.ws5_c00143{word-spacing:56.538000px;}
.ws0_c00143{word-spacing:1574.587200px;}
._3_c00143{margin-left:-7.042800px;}
._7_c00143{margin-left:-3.996000px;}
._0_c00143{margin-left:-2.112000px;}
._1_c00143{margin-left:-1.104000px;}
._2_c00143{width:2.016000px;}
._5_c00143{width:7.776000px;}
._6_c00143{width:55.674000px;}
._4_c00143{width:59.136000px;}
.fc0_c00143{color:rgb(35,31,32);}
.fs5_c00143{font-size:30.600000px;}
.fs6_c00143{font-size:36.000000px;}
.fs3_c00143{font-size:42.000000px;}
.fs0_c00143{font-size:48.000000px;}
.fs4_c00143{font-size:54.000000px;}
.fs2_c00143{font-size:57.000000px;}
.fs1_c00143{font-size:60.000000px;}
.y0_c00143{bottom:0.000000px;}
.yd_c00143{bottom:318.280350px;}
.yb_c00143{bottom:379.738350px;}
.ya_c00143{bottom:393.238350px;}
.y9_c00143{bottom:415.490250px;}
.y8_c00143{bottom:428.990250px;}
.y7_c00143{bottom:455.494200px;}
.y6_c00143{bottom:468.994200px;}
.y5_c00143{bottom:482.494200px;}
.y4_c00143{bottom:504.746250px;}
.y3_c00143{bottom:522.746250px;}
.y2_c00143{bottom:549.250050px;}
.yc_c00143{bottom:551.624100px;}
.y19_c00143{bottom:837.232350px;}
.y18_c00143{bottom:850.732350px;}
.y17_c00143{bottom:864.232350px;}
.y16_c00143{bottom:886.484250px;}
.y15_c00143{bottom:899.984250px;}
.y14_c00143{bottom:926.488200px;}
.y13_c00143{bottom:939.988200px;}
.y12_c00143{bottom:953.488200px;}
.y11_c00143{bottom:975.740250px;}
.y10_c00143{bottom:993.740250px;}
.yf_c00143{bottom:1011.740250px;}
.ye_c00143{bottom:1038.244200px;}
.y1a_c00143{bottom:1040.299350px;}
.y1_c00143{bottom:1093.600950px;}
.h7_c00143{height:25.200000px;}
.h6_c00143{height:30.282000px;}
.h4_c00143{height:34.080000px;}
.h2_c00143{height:39.264000px;}
.h3_c00143{height:43.260000px;}
.h5_c00143{height:43.740000px;}
.h1_c00143{height:1135.500000px;}
.h0_c00143{height:1135.506150px;}
.w0_c00143{width:893.950200px;}
.w1_c00143{width:894.000000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:77.603100px;}
.x4_c00143{left:424.137150px;}
.x2_c00143{left:599.532150px;}
.x3_c00143{left:612.288150px;}
.x5_c00143{left:616.540050px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls1_c00143{letter-spacing:-0.768000pt;}
.ls2_c00143{letter-spacing:-0.640000pt;}
.ls4_c00143{letter-spacing:-0.560000pt;}
.ls3_c00143{letter-spacing:-0.480000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws1_c00143{word-spacing:-7.728000pt;}
.ws2_c00143{word-spacing:-5.766400pt;}
.ws3_c00143{word-spacing:0.000000pt;}
.ws6_c00143{word-spacing:0.480000pt;}
.ws4_c00143{word-spacing:6.272000pt;}
.ws5_c00143{word-spacing:50.256000pt;}
.ws0_c00143{word-spacing:1399.633067pt;}
._3_c00143{margin-left:-6.260267pt;}
._7_c00143{margin-left:-3.552000pt;}
._0_c00143{margin-left:-1.877333pt;}
._1_c00143{margin-left:-0.981333pt;}
._2_c00143{width:1.792000pt;}
._5_c00143{width:6.912000pt;}
._6_c00143{width:49.488000pt;}
._4_c00143{width:52.565333pt;}
.fs5_c00143{font-size:27.200000pt;}
.fs6_c00143{font-size:32.000000pt;}
.fs3_c00143{font-size:37.333333pt;}
.fs0_c00143{font-size:42.666667pt;}
.fs4_c00143{font-size:48.000000pt;}
.fs2_c00143{font-size:50.666667pt;}
.fs1_c00143{font-size:53.333333pt;}
.y0_c00143{bottom:0.000000pt;}
.yd_c00143{bottom:282.915867pt;}
.yb_c00143{bottom:337.545200pt;}
.ya_c00143{bottom:349.545200pt;}
.y9_c00143{bottom:369.324667pt;}
.y8_c00143{bottom:381.324667pt;}
.y7_c00143{bottom:404.883733pt;}
.y6_c00143{bottom:416.883733pt;}
.y5_c00143{bottom:428.883733pt;}
.y4_c00143{bottom:448.663333pt;}
.y3_c00143{bottom:464.663333pt;}
.y2_c00143{bottom:488.222267pt;}
.yc_c00143{bottom:490.332533pt;}
.y19_c00143{bottom:744.206533pt;}
.y18_c00143{bottom:756.206533pt;}
.y17_c00143{bottom:768.206533pt;}
.y16_c00143{bottom:787.986000pt;}
.y15_c00143{bottom:799.986000pt;}
.y14_c00143{bottom:823.545067pt;}
.y13_c00143{bottom:835.545067pt;}
.y12_c00143{bottom:847.545067pt;}
.y11_c00143{bottom:867.324667pt;}
.y10_c00143{bottom:883.324667pt;}
.yf_c00143{bottom:899.324667pt;}
.ye_c00143{bottom:922.883733pt;}
.y1a_c00143{bottom:924.710533pt;}
.y1_c00143{bottom:972.089733pt;}
.h7_c00143{height:22.400000pt;}
.h6_c00143{height:26.917333pt;}
.h4_c00143{height:30.293333pt;}
.h2_c00143{height:34.901333pt;}
.h3_c00143{height:38.453333pt;}
.h5_c00143{height:38.880000pt;}
.h1_c00143{height:1009.333333pt;}
.h0_c00143{height:1009.338800pt;}
.w0_c00143{width:794.622400pt;}
.w1_c00143{width:794.666667pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:68.980533pt;}
.x4_c00143{left:377.010800pt;}
.x2_c00143{left:532.917467pt;}
.x3_c00143{left:544.256133pt;}
.x5_c00143{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00144;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:0.908000;font-style:normal;font-weight: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_c00144;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00144{font-family:ff7_c00144;line-height:1.067000;font-style:normal;font-weight: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_c00144;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00144{font-family:ff8_c00144;line-height:0.710000;font-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_c00144{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls4_c00144{letter-spacing:-1.200000px;}
.ls2_c00144{letter-spacing:-0.720000px;}
.ls3_c00144{letter-spacing:-0.216000px;}
.ls1_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00144{word-spacing:-10.896000px;}
.ws1_c00144{word-spacing:-8.694000px;}
.ws2_c00144{word-spacing:-6.487200px;}
.ws3_c00144{word-spacing:0.000000px;}
.ws5_c00144{word-spacing:0.216000px;}
.ws4_c00144{word-spacing:7.056000px;}
._0_c00144{margin-left:-2755.276200px;}
._4_c00144{margin-left:-6.946800px;}
._8_c00144{margin-left:-3.618000px;}
._1_c00144{margin-left:-2.256000px;}
._3_c00144{margin-left:-1.200000px;}
._2_c00144{width:1.008000px;}
._7_c00144{width:7.776000px;}
._5_c00144{width:55.674000px;}
._6_c00144{width:59.136000px;}
.fc0_c00144{color:rgb(35,31,32);}
.fs5_c00144{font-size:30.600000px;}
.fs6_c00144{font-size:36.000000px;}
.fs3_c00144{font-size:42.000000px;}
.fs0_c00144{font-size:48.000000px;}
.fs4_c00144{font-size:54.000000px;}
.fs2_c00144{font-size:57.000000px;}
.fs1_c00144{font-size:60.000000px;}
.y0_c00144{bottom:0.000000px;}
.y19_c00144{bottom:317.783700px;}
.y18_c00144{bottom:361.011900px;}
.y17_c00144{bottom:374.511900px;}
.y16_c00144{bottom:396.763950px;}
.y15_c00144{bottom:410.263950px;}
.y14_c00144{bottom:436.767900px;}
.y13_c00144{bottom:450.267900px;}
.y12_c00144{bottom:463.767900px;}
.y11_c00144{bottom:486.019800px;}
.y10_c00144{bottom:504.019800px;}
.yf_c00144{bottom:522.019800px;}
.ye_c00144{bottom:548.523750px;}
.y1a_c00144{bottom:551.127600px;}
.yd_c00144{bottom:806.955600px;}
.yb_c00144{bottom:868.608900px;}
.ya_c00144{bottom:882.108900px;}
.y9_c00144{bottom:904.360800px;}
.y8_c00144{bottom:917.860800px;}
.y7_c00144{bottom:944.364900px;}
.y6_c00144{bottom:957.864900px;}
.y5_c00144{bottom:971.364900px;}
.y4_c00144{bottom:993.616800px;}
.y3_c00144{bottom:1011.616800px;}
.y2_c00144{bottom:1038.120750px;}
.yc_c00144{bottom:1040.299350px;}
.y1_c00144{bottom:1093.600950px;}
.h8_c00144{height:25.200000px;}
.h7_c00144{height:30.282000px;}
.h5_c00144{height:34.080000px;}
.h2_c00144{height:39.264000px;}
.h3_c00144{height:39.984000px;}
.h4_c00144{height:43.260000px;}
.h6_c00144{height:43.740000px;}
.h1_c00144{height:1135.500000px;}
.h0_c00144{height:1135.506150px;}
.w0_c00144{width:893.950200px;}
.w1_c00144{width:894.000000px;}
.x0_c00144{left:0.000000px;}
.x4_c00144{left:128.626800px;}
.x5_c00144{left:141.382650px;}
.x7_c00144{left:145.634700px;}
.x2_c00144{left:188.061900px;}
.x3_c00144{left:190.513350px;}
.x6_c00144{left:321.801150px;}
.x1_c00144{left:800.165850px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls4_c00144{letter-spacing:-1.066667pt;}
.ls2_c00144{letter-spacing:-0.640000pt;}
.ls3_c00144{letter-spacing:-0.192000pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:0.426667pt;}
.ws0_c00144{word-spacing:-9.685333pt;}
.ws1_c00144{word-spacing:-7.728000pt;}
.ws2_c00144{word-spacing:-5.766400pt;}
.ws3_c00144{word-spacing:0.000000pt;}
.ws5_c00144{word-spacing:0.192000pt;}
.ws4_c00144{word-spacing:6.272000pt;}
._0_c00144{margin-left:-2449.134400pt;}
._4_c00144{margin-left:-6.174933pt;}
._8_c00144{margin-left:-3.216000pt;}
._1_c00144{margin-left:-2.005333pt;}
._3_c00144{margin-left:-1.066667pt;}
._2_c00144{width:0.896000pt;}
._7_c00144{width:6.912000pt;}
._5_c00144{width:49.488000pt;}
._6_c00144{width:52.565333pt;}
.fs5_c00144{font-size:27.200000pt;}
.fs6_c00144{font-size:32.000000pt;}
.fs3_c00144{font-size:37.333333pt;}
.fs0_c00144{font-size:42.666667pt;}
.fs4_c00144{font-size:48.000000pt;}
.fs2_c00144{font-size:50.666667pt;}
.fs1_c00144{font-size:53.333333pt;}
.y0_c00144{bottom:0.000000pt;}
.y19_c00144{bottom:282.474400pt;}
.y18_c00144{bottom:320.899467pt;}
.y17_c00144{bottom:332.899467pt;}
.y16_c00144{bottom:352.679067pt;}
.y15_c00144{bottom:364.679067pt;}
.y14_c00144{bottom:388.238133pt;}
.y13_c00144{bottom:400.238133pt;}
.y12_c00144{bottom:412.238133pt;}
.y11_c00144{bottom:432.017600pt;}
.y10_c00144{bottom:448.017600pt;}
.yf_c00144{bottom:464.017600pt;}
.ye_c00144{bottom:487.576667pt;}
.y1a_c00144{bottom:489.891200pt;}
.yd_c00144{bottom:717.293867pt;}
.yb_c00144{bottom:772.096800pt;}
.ya_c00144{bottom:784.096800pt;}
.y9_c00144{bottom:803.876267pt;}
.y8_c00144{bottom:815.876267pt;}
.y7_c00144{bottom:839.435467pt;}
.y6_c00144{bottom:851.435467pt;}
.y5_c00144{bottom:863.435467pt;}
.y4_c00144{bottom:883.214933pt;}
.y3_c00144{bottom:899.214933pt;}
.y2_c00144{bottom:922.774000pt;}
.yc_c00144{bottom:924.710533pt;}
.y1_c00144{bottom:972.089733pt;}
.h8_c00144{height:22.400000pt;}
.h7_c00144{height:26.917333pt;}
.h5_c00144{height:30.293333pt;}
.h2_c00144{height:34.901333pt;}
.h3_c00144{height:35.541333pt;}
.h4_c00144{height:38.453333pt;}
.h6_c00144{height:38.880000pt;}
.h1_c00144{height:1009.333333pt;}
.h0_c00144{height:1009.338800pt;}
.w0_c00144{width:794.622400pt;}
.w1_c00144{width:794.666667pt;}
.x0_c00144{left:0.000000pt;}
.x4_c00144{left:114.334933pt;}
.x5_c00144{left:125.673467pt;}
.x7_c00144{left:129.453067pt;}
.x2_c00144{left:167.166133pt;}
.x3_c00144{left:169.345200pt;}
.x6_c00144{left:286.045467pt;}
.x1_c00144{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00145;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:1.067000;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00145{font-family:ff7_c00145;line-height:0.710000;font-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_c00145{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls3_c00145{letter-spacing:-1.200000px;}
.ls2_c00145{letter-spacing:-0.720000px;}
.ls1_c00145{letter-spacing:-0.702000px;}
.ls0_c00145{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00145{word-spacing:-8.694000px;}
.ws2_c00145{word-spacing:-6.487200px;}
.ws3_c00145{word-spacing:0.000000px;}
.ws5_c00145{word-spacing:0.702000px;}
.ws4_c00145{word-spacing:7.056000px;}
.ws0_c00145{word-spacing:1574.587200px;}
._3_c00145{margin-left:-7.042800px;}
._0_c00145{margin-left:-2.112000px;}
._1_c00145{margin-left:-1.104000px;}
._2_c00145{width:2.016000px;}
._6_c00145{width:7.776000px;}
._4_c00145{width:55.674000px;}
._5_c00145{width:59.136000px;}
.fc0_c00145{color:rgb(35,31,32);}
.fs5_c00145{font-size:30.600000px;}
.fs6_c00145{font-size:36.000000px;}
.fs3_c00145{font-size:42.000000px;}
.fs0_c00145{font-size:48.000000px;}
.fs4_c00145{font-size:54.000000px;}
.fs2_c00145{font-size:57.000000px;}
.fs1_c00145{font-size:60.000000px;}
.y0_c00145{bottom:0.000000px;}
.yd_c00145{bottom:317.855100px;}
.yb_c00145{bottom:379.313100px;}
.ya_c00145{bottom:392.813100px;}
.y9_c00145{bottom:415.065000px;}
.y8_c00145{bottom:428.565000px;}
.y7_c00145{bottom:455.068950px;}
.y6_c00145{bottom:468.568950px;}
.y5_c00145{bottom:482.068950px;}
.y4_c00145{bottom:504.321000px;}
.y3_c00145{bottom:522.321000px;}
.y2_c00145{bottom:548.824950px;}
.yc_c00145{bottom:551.198850px;}
.y1a_c00145{bottom:806.609550px;}
.y18_c00145{bottom:850.413450px;}
.y17_c00145{bottom:863.913450px;}
.y16_c00145{bottom:886.165500px;}
.y15_c00145{bottom:899.665500px;}
.y14_c00145{bottom:926.169450px;}
.y13_c00145{bottom:939.669450px;}
.y12_c00145{bottom:953.169450px;}
.y11_c00145{bottom:975.421350px;}
.y10_c00145{bottom:993.421350px;}
.yf_c00145{bottom:1011.421350px;}
.ye_c00145{bottom:1037.925300px;}
.y19_c00145{bottom:1040.254350px;}
.y1_c00145{bottom:1093.600950px;}
.h7_c00145{height:25.200000px;}
.h6_c00145{height:30.282000px;}
.h4_c00145{height:34.080000px;}
.h2_c00145{height:39.264000px;}
.h3_c00145{height:43.260000px;}
.h5_c00145{height:43.740000px;}
.h1_c00145{height:1135.500000px;}
.h0_c00145{height:1135.506150px;}
.w0_c00145{width:893.950200px;}
.w1_c00145{width:894.000000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:77.603100px;}
.x4_c00145{left:424.137150px;}
.x2_c00145{left:599.532150px;}
.x3_c00145{left:612.288150px;}
.x5_c00145{left:616.540050px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls3_c00145{letter-spacing:-1.066667pt;}
.ls2_c00145{letter-spacing:-0.640000pt;}
.ls1_c00145{letter-spacing:-0.624000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws1_c00145{word-spacing:-7.728000pt;}
.ws2_c00145{word-spacing:-5.766400pt;}
.ws3_c00145{word-spacing:0.000000pt;}
.ws5_c00145{word-spacing:0.624000pt;}
.ws4_c00145{word-spacing:6.272000pt;}
.ws0_c00145{word-spacing:1399.633067pt;}
._3_c00145{margin-left:-6.260267pt;}
._0_c00145{margin-left:-1.877333pt;}
._1_c00145{margin-left:-0.981333pt;}
._2_c00145{width:1.792000pt;}
._6_c00145{width:6.912000pt;}
._4_c00145{width:49.488000pt;}
._5_c00145{width:52.565333pt;}
.fs5_c00145{font-size:27.200000pt;}
.fs6_c00145{font-size:32.000000pt;}
.fs3_c00145{font-size:37.333333pt;}
.fs0_c00145{font-size:42.666667pt;}
.fs4_c00145{font-size:48.000000pt;}
.fs2_c00145{font-size:50.666667pt;}
.fs1_c00145{font-size:53.333333pt;}
.y0_c00145{bottom:0.000000pt;}
.yd_c00145{bottom:282.537867pt;}
.yb_c00145{bottom:337.167200pt;}
.ya_c00145{bottom:349.167200pt;}
.y9_c00145{bottom:368.946667pt;}
.y8_c00145{bottom:380.946667pt;}
.y7_c00145{bottom:404.505733pt;}
.y6_c00145{bottom:416.505733pt;}
.y5_c00145{bottom:428.505733pt;}
.y4_c00145{bottom:448.285333pt;}
.y3_c00145{bottom:464.285333pt;}
.y2_c00145{bottom:487.844400pt;}
.yc_c00145{bottom:489.954533pt;}
.y1a_c00145{bottom:716.986267pt;}
.y18_c00145{bottom:755.923067pt;}
.y17_c00145{bottom:767.923067pt;}
.y16_c00145{bottom:787.702667pt;}
.y15_c00145{bottom:799.702667pt;}
.y14_c00145{bottom:823.261733pt;}
.y13_c00145{bottom:835.261733pt;}
.y12_c00145{bottom:847.261733pt;}
.y11_c00145{bottom:867.041200pt;}
.y10_c00145{bottom:883.041200pt;}
.yf_c00145{bottom:899.041200pt;}
.ye_c00145{bottom:922.600267pt;}
.y19_c00145{bottom:924.670533pt;}
.y1_c00145{bottom:972.089733pt;}
.h7_c00145{height:22.400000pt;}
.h6_c00145{height:26.917333pt;}
.h4_c00145{height:30.293333pt;}
.h2_c00145{height:34.901333pt;}
.h3_c00145{height:38.453333pt;}
.h5_c00145{height:38.880000pt;}
.h1_c00145{height:1009.333333pt;}
.h0_c00145{height:1009.338800pt;}
.w0_c00145{width:794.622400pt;}
.w1_c00145{width:794.666667pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:68.980533pt;}
.x4_c00145{left:377.010800pt;}
.x2_c00145{left:532.917467pt;}
.x3_c00145{left:544.256133pt;}
.x5_c00145{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00146;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00146{font-family:ff6_c00146;line-height:0.908000;font-style:normal;font-weight: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_c00146;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00146{font-family:ff7_c00146;line-height:1.067000;font-style:normal;font-weight: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_c00146;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00146{font-family:ff8_c00146;line-height:0.710000;font-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_c00146{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls5_c00146{letter-spacing:-1.200000px;}
.ls3_c00146{letter-spacing:-0.960000px;}
.ls4_c00146{letter-spacing:-0.840000px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.480000px;}
.ls1_c00146{letter-spacing:59.337600px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-10.896000px;}
.ws1_c00146{word-spacing:-8.694000px;}
.ws2_c00146{word-spacing:-6.487200px;}
.ws3_c00146{word-spacing:0.000000px;}
.ws5_c00146{word-spacing:0.840000px;}
.ws4_c00146{word-spacing:7.056000px;}
._0_c00146{margin-left:-2755.276200px;}
._4_c00146{margin-left:-6.946800px;}
._7_c00146{margin-left:-5.022000px;}
._1_c00146{margin-left:-2.256000px;}
._3_c00146{margin-left:-1.200000px;}
._2_c00146{width:1.008000px;}
._5_c00146{width:55.674000px;}
._6_c00146{width:59.136000px;}
.fc0_c00146{color:rgb(35,31,32);}
.fs5_c00146{font-size:30.600000px;}
.fs6_c00146{font-size:36.000000px;}
.fs3_c00146{font-size:42.000000px;}
.fs0_c00146{font-size:48.000000px;}
.fs4_c00146{font-size:54.000000px;}
.fs2_c00146{font-size:57.000000px;}
.fs1_c00146{font-size:60.000000px;}
.y0_c00146{bottom:0.000000px;}
.y19_c00146{bottom:318.208950px;}
.y18_c00146{bottom:379.437150px;}
.y17_c00146{bottom:392.937150px;}
.y16_c00146{bottom:415.189200px;}
.y15_c00146{bottom:428.689200px;}
.y14_c00146{bottom:455.193150px;}
.y13_c00146{bottom:468.693150px;}
.y12_c00146{bottom:482.193150px;}
.y11_c00146{bottom:504.445050px;}
.y10_c00146{bottom:522.445050px;}
.yf_c00146{bottom:548.949000px;}
.y1a_c00146{bottom:551.552700px;}
.yd_c00146{bottom:841.626150px;}
.yc_c00146{bottom:855.126150px;}
.yb_c00146{bottom:868.626150px;}
.ya_c00146{bottom:882.126150px;}
.y9_c00146{bottom:904.378050px;}
.y8_c00146{bottom:917.878050px;}
.y7_c00146{bottom:944.382000px;}
.y6_c00146{bottom:957.882000px;}
.y5_c00146{bottom:971.382000px;}
.y4_c00146{bottom:993.633900px;}
.y3_c00146{bottom:1011.633900px;}
.y2_c00146{bottom:1038.137850px;}
.ye_c00146{bottom:1040.299350px;}
.y1_c00146{bottom:1093.600950px;}
.h8_c00146{height:25.200000px;}
.h7_c00146{height:30.282000px;}
.h5_c00146{height:34.080000px;}
.h2_c00146{height:39.264000px;}
.h3_c00146{height:39.984000px;}
.h4_c00146{height:43.260000px;}
.h6_c00146{height:43.740000px;}
.h1_c00146{height:1135.500000px;}
.h0_c00146{height:1135.506150px;}
.w0_c00146{width:893.950200px;}
.w1_c00146{width:894.000000px;}
.x0_c00146{left:0.000000px;}
.x4_c00146{left:128.626800px;}
.x5_c00146{left:141.382650px;}
.x2_c00146{left:188.061900px;}
.x3_c00146{left:190.513350px;}
.x6_c00146{left:321.681750px;}
.x1_c00146{left:800.165850px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls5_c00146{letter-spacing:-1.066667pt;}
.ls3_c00146{letter-spacing:-0.853333pt;}
.ls4_c00146{letter-spacing:-0.746667pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.426667pt;}
.ls1_c00146{letter-spacing:52.744533pt;}
.ws0_c00146{word-spacing:-9.685333pt;}
.ws1_c00146{word-spacing:-7.728000pt;}
.ws2_c00146{word-spacing:-5.766400pt;}
.ws3_c00146{word-spacing:0.000000pt;}
.ws5_c00146{word-spacing:0.746667pt;}
.ws4_c00146{word-spacing:6.272000pt;}
._0_c00146{margin-left:-2449.134400pt;}
._4_c00146{margin-left:-6.174933pt;}
._7_c00146{margin-left:-4.464000pt;}
._1_c00146{margin-left:-2.005333pt;}
._3_c00146{margin-left:-1.066667pt;}
._2_c00146{width:0.896000pt;}
._5_c00146{width:49.488000pt;}
._6_c00146{width:52.565333pt;}
.fs5_c00146{font-size:27.200000pt;}
.fs6_c00146{font-size:32.000000pt;}
.fs3_c00146{font-size:37.333333pt;}
.fs0_c00146{font-size:42.666667pt;}
.fs4_c00146{font-size:48.000000pt;}
.fs2_c00146{font-size:50.666667pt;}
.fs1_c00146{font-size:53.333333pt;}
.y0_c00146{bottom:0.000000pt;}
.y19_c00146{bottom:282.852400pt;}
.y18_c00146{bottom:337.277467pt;}
.y17_c00146{bottom:349.277467pt;}
.y16_c00146{bottom:369.057067pt;}
.y15_c00146{bottom:381.057067pt;}
.y14_c00146{bottom:404.616133pt;}
.y13_c00146{bottom:416.616133pt;}
.y12_c00146{bottom:428.616133pt;}
.y11_c00146{bottom:448.395600pt;}
.y10_c00146{bottom:464.395600pt;}
.yf_c00146{bottom:487.954667pt;}
.y1a_c00146{bottom:490.269067pt;}
.yd_c00146{bottom:748.112133pt;}
.yc_c00146{bottom:760.112133pt;}
.yb_c00146{bottom:772.112133pt;}
.ya_c00146{bottom:784.112133pt;}
.y9_c00146{bottom:803.891600pt;}
.y8_c00146{bottom:815.891600pt;}
.y7_c00146{bottom:839.450667pt;}
.y6_c00146{bottom:851.450667pt;}
.y5_c00146{bottom:863.450667pt;}
.y4_c00146{bottom:883.230133pt;}
.y3_c00146{bottom:899.230133pt;}
.y2_c00146{bottom:922.789200pt;}
.ye_c00146{bottom:924.710533pt;}
.y1_c00146{bottom:972.089733pt;}
.h8_c00146{height:22.400000pt;}
.h7_c00146{height:26.917333pt;}
.h5_c00146{height:30.293333pt;}
.h2_c00146{height:34.901333pt;}
.h3_c00146{height:35.541333pt;}
.h4_c00146{height:38.453333pt;}
.h6_c00146{height:38.880000pt;}
.h1_c00146{height:1009.333333pt;}
.h0_c00146{height:1009.338800pt;}
.w0_c00146{width:794.622400pt;}
.w1_c00146{width:794.666667pt;}
.x0_c00146{left:0.000000pt;}
.x4_c00146{left:114.334933pt;}
.x5_c00146{left:125.673467pt;}
.x2_c00146{left:167.166133pt;}
.x3_c00146{left:169.345200pt;}
.x6_c00146{left:285.939333pt;}
.x1_c00146{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00147;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00147;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;line-height:1.067000;font-style:normal;font-weight: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_c00147;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00147{font-family:ff7_c00147;line-height:0.710000;font-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_c00147{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls3_c00147{letter-spacing:-1.200000px;}
.ls1_c00147{letter-spacing:-0.720000px;}
.ls2_c00147{letter-spacing:-0.540000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00147{word-spacing:-8.694000px;}
.ws2_c00147{word-spacing:-6.487200px;}
.ws3_c00147{word-spacing:0.000000px;}
.ws5_c00147{word-spacing:0.540000px;}
.ws4_c00147{word-spacing:7.056000px;}
.ws0_c00147{word-spacing:1574.587200px;}
._3_c00147{margin-left:-7.042800px;}
._0_c00147{margin-left:-2.112000px;}
._1_c00147{margin-left:-1.104000px;}
._2_c00147{width:2.016000px;}
._6_c00147{width:7.776000px;}
._4_c00147{width:55.674000px;}
._5_c00147{width:59.136000px;}
.fc0_c00147{color:rgb(35,31,32);}
.fs5_c00147{font-size:30.600000px;}
.fs6_c00147{font-size:36.000000px;}
.fs3_c00147{font-size:42.000000px;}
.fs0_c00147{font-size:48.000000px;}
.fs4_c00147{font-size:54.000000px;}
.fs2_c00147{font-size:57.000000px;}
.fs1_c00147{font-size:60.000000px;}
.y0_c00147{bottom:0.000000px;}
.yd_c00147{bottom:317.855100px;}
.yb_c00147{bottom:379.313100px;}
.ya_c00147{bottom:392.813100px;}
.y9_c00147{bottom:415.065000px;}
.y8_c00147{bottom:428.565000px;}
.y7_c00147{bottom:455.068950px;}
.y6_c00147{bottom:468.568950px;}
.y5_c00147{bottom:482.068950px;}
.y4_c00147{bottom:504.321000px;}
.y3_c00147{bottom:522.321000px;}
.y2_c00147{bottom:548.824950px;}
.yc_c00147{bottom:551.198850px;}
.y19_c00147{bottom:806.955600px;}
.y17_c00147{bottom:868.608900px;}
.y16_c00147{bottom:882.108900px;}
.y15_c00147{bottom:904.360800px;}
.y14_c00147{bottom:917.860800px;}
.y13_c00147{bottom:944.364900px;}
.y12_c00147{bottom:957.864900px;}
.y11_c00147{bottom:971.364900px;}
.y10_c00147{bottom:993.616800px;}
.yf_c00147{bottom:1011.616800px;}
.ye_c00147{bottom:1038.120750px;}
.y18_c00147{bottom:1040.600550px;}
.y1_c00147{bottom:1093.600950px;}
.h7_c00147{height:25.200000px;}
.h6_c00147{height:30.282000px;}
.h4_c00147{height:34.080000px;}
.h2_c00147{height:39.264000px;}
.h3_c00147{height:43.260000px;}
.h5_c00147{height:43.740000px;}
.h1_c00147{height:1135.500000px;}
.h0_c00147{height:1135.506150px;}
.w0_c00147{width:893.950200px;}
.w1_c00147{width:894.000000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:77.603100px;}
.x4_c00147{left:424.137150px;}
.x2_c00147{left:599.532150px;}
.x3_c00147{left:612.288150px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls3_c00147{letter-spacing:-1.066667pt;}
.ls1_c00147{letter-spacing:-0.640000pt;}
.ls2_c00147{letter-spacing:-0.480000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws1_c00147{word-spacing:-7.728000pt;}
.ws2_c00147{word-spacing:-5.766400pt;}
.ws3_c00147{word-spacing:0.000000pt;}
.ws5_c00147{word-spacing:0.480000pt;}
.ws4_c00147{word-spacing:6.272000pt;}
.ws0_c00147{word-spacing:1399.633067pt;}
._3_c00147{margin-left:-6.260267pt;}
._0_c00147{margin-left:-1.877333pt;}
._1_c00147{margin-left:-0.981333pt;}
._2_c00147{width:1.792000pt;}
._6_c00147{width:6.912000pt;}
._4_c00147{width:49.488000pt;}
._5_c00147{width:52.565333pt;}
.fs5_c00147{font-size:27.200000pt;}
.fs6_c00147{font-size:32.000000pt;}
.fs3_c00147{font-size:37.333333pt;}
.fs0_c00147{font-size:42.666667pt;}
.fs4_c00147{font-size:48.000000pt;}
.fs2_c00147{font-size:50.666667pt;}
.fs1_c00147{font-size:53.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.yd_c00147{bottom:282.537867pt;}
.yb_c00147{bottom:337.167200pt;}
.ya_c00147{bottom:349.167200pt;}
.y9_c00147{bottom:368.946667pt;}
.y8_c00147{bottom:380.946667pt;}
.y7_c00147{bottom:404.505733pt;}
.y6_c00147{bottom:416.505733pt;}
.y5_c00147{bottom:428.505733pt;}
.y4_c00147{bottom:448.285333pt;}
.y3_c00147{bottom:464.285333pt;}
.y2_c00147{bottom:487.844400pt;}
.yc_c00147{bottom:489.954533pt;}
.y19_c00147{bottom:717.293867pt;}
.y17_c00147{bottom:772.096800pt;}
.y16_c00147{bottom:784.096800pt;}
.y15_c00147{bottom:803.876267pt;}
.y14_c00147{bottom:815.876267pt;}
.y13_c00147{bottom:839.435467pt;}
.y12_c00147{bottom:851.435467pt;}
.y11_c00147{bottom:863.435467pt;}
.y10_c00147{bottom:883.214933pt;}
.yf_c00147{bottom:899.214933pt;}
.ye_c00147{bottom:922.774000pt;}
.y18_c00147{bottom:924.978267pt;}
.y1_c00147{bottom:972.089733pt;}
.h7_c00147{height:22.400000pt;}
.h6_c00147{height:26.917333pt;}
.h4_c00147{height:30.293333pt;}
.h2_c00147{height:34.901333pt;}
.h3_c00147{height:38.453333pt;}
.h5_c00147{height:38.880000pt;}
.h1_c00147{height:1009.333333pt;}
.h0_c00147{height:1009.338800pt;}
.w0_c00147{width:794.622400pt;}
.w1_c00147{width:794.666667pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:68.980533pt;}
.x4_c00147{left:377.010800pt;}
.x2_c00147{left:532.917467pt;}
.x3_c00147{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00148;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00148{font-family:ff6_c00148;line-height:0.908000;font-style:normal;font-weight: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_c00148;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00148{font-family:ff7_c00148;line-height:1.067000;font-style:normal;font-weight: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_c00148;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00148{font-family:ff8_c00148;line-height:0.710000;font-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_c00148{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls3_c00148{letter-spacing:-1.200000px;}
.ls2_c00148{letter-spacing:-0.720000px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.480000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:-10.896000px;}
.ws1_c00148{word-spacing:-8.694000px;}
.ws2_c00148{word-spacing:-6.487200px;}
.ws3_c00148{word-spacing:0.000000px;}
.ws4_c00148{word-spacing:7.056000px;}
._0_c00148{margin-left:-2755.276200px;}
._4_c00148{margin-left:-6.947400px;}
._8_c00148{margin-left:-4.590000px;}
._1_c00148{margin-left:-2.256000px;}
._3_c00148{margin-left:-1.200000px;}
._2_c00148{width:1.008000px;}
._7_c00148{width:7.776000px;}
._5_c00148{width:55.674000px;}
._6_c00148{width:59.136000px;}
.fc0_c00148{color:rgb(35,31,32);}
.fs5_c00148{font-size:30.600000px;}
.fs6_c00148{font-size:36.000000px;}
.fs3_c00148{font-size:42.000000px;}
.fs0_c00148{font-size:48.000000px;}
.fs4_c00148{font-size:54.000000px;}
.fs2_c00148{font-size:57.000000px;}
.fs1_c00148{font-size:60.000000px;}
.y0_c00148{bottom:0.000000px;}
.y19_c00148{bottom:318.208950px;}
.y18_c00148{bottom:361.437150px;}
.y17_c00148{bottom:374.937150px;}
.y16_c00148{bottom:397.189200px;}
.y15_c00148{bottom:410.689200px;}
.y14_c00148{bottom:437.193150px;}
.y13_c00148{bottom:450.693150px;}
.y12_c00148{bottom:464.193150px;}
.y11_c00148{bottom:486.445050px;}
.y10_c00148{bottom:504.445050px;}
.yf_c00148{bottom:522.445050px;}
.ye_c00148{bottom:548.949000px;}
.y1a_c00148{bottom:551.552700px;}
.yd_c00148{bottom:806.955600px;}
.yb_c00148{bottom:868.060500px;}
.ya_c00148{bottom:881.560500px;}
.y9_c00148{bottom:903.812400px;}
.y8_c00148{bottom:917.312400px;}
.y7_c00148{bottom:943.816500px;}
.y6_c00148{bottom:957.316500px;}
.y5_c00148{bottom:970.816500px;}
.y4_c00148{bottom:993.068250px;}
.y3_c00148{bottom:1011.068250px;}
.y2_c00148{bottom:1037.572350px;}
.yc_c00148{bottom:1040.299350px;}
.y1_c00148{bottom:1093.600950px;}
.h8_c00148{height:25.200000px;}
.h7_c00148{height:30.282000px;}
.h5_c00148{height:34.080000px;}
.h2_c00148{height:39.264000px;}
.h3_c00148{height:39.984000px;}
.h4_c00148{height:43.260000px;}
.h6_c00148{height:43.740000px;}
.h1_c00148{height:1135.500000px;}
.h0_c00148{height:1135.506150px;}
.w0_c00148{width:893.950200px;}
.w1_c00148{width:894.000000px;}
.x0_c00148{left:0.000000px;}
.x4_c00148{left:128.744700px;}
.x5_c00148{left:141.500700px;}
.x7_c00148{left:145.634700px;}
.x2_c00148{left:188.061900px;}
.x3_c00148{left:190.513350px;}
.x6_c00148{left:321.801150px;}
.x1_c00148{left:800.165850px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls3_c00148{letter-spacing:-1.066667pt;}
.ls2_c00148{letter-spacing:-0.640000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.426667pt;}
.ws0_c00148{word-spacing:-9.685333pt;}
.ws1_c00148{word-spacing:-7.728000pt;}
.ws2_c00148{word-spacing:-5.766400pt;}
.ws3_c00148{word-spacing:0.000000pt;}
.ws4_c00148{word-spacing:6.272000pt;}
._0_c00148{margin-left:-2449.134400pt;}
._4_c00148{margin-left:-6.175467pt;}
._8_c00148{margin-left:-4.080000pt;}
._1_c00148{margin-left:-2.005333pt;}
._3_c00148{margin-left:-1.066667pt;}
._2_c00148{width:0.896000pt;}
._7_c00148{width:6.912000pt;}
._5_c00148{width:49.488000pt;}
._6_c00148{width:52.565333pt;}
.fs5_c00148{font-size:27.200000pt;}
.fs6_c00148{font-size:32.000000pt;}
.fs3_c00148{font-size:37.333333pt;}
.fs0_c00148{font-size:42.666667pt;}
.fs4_c00148{font-size:48.000000pt;}
.fs2_c00148{font-size:50.666667pt;}
.fs1_c00148{font-size:53.333333pt;}
.y0_c00148{bottom:0.000000pt;}
.y19_c00148{bottom:282.852400pt;}
.y18_c00148{bottom:321.277467pt;}
.y17_c00148{bottom:333.277467pt;}
.y16_c00148{bottom:353.057067pt;}
.y15_c00148{bottom:365.057067pt;}
.y14_c00148{bottom:388.616133pt;}
.y13_c00148{bottom:400.616133pt;}
.y12_c00148{bottom:412.616133pt;}
.y11_c00148{bottom:432.395600pt;}
.y10_c00148{bottom:448.395600pt;}
.yf_c00148{bottom:464.395600pt;}
.ye_c00148{bottom:487.954667pt;}
.y1a_c00148{bottom:490.269067pt;}
.yd_c00148{bottom:717.293867pt;}
.yb_c00148{bottom:771.609333pt;}
.ya_c00148{bottom:783.609333pt;}
.y9_c00148{bottom:803.388800pt;}
.y8_c00148{bottom:815.388800pt;}
.y7_c00148{bottom:838.948000pt;}
.y6_c00148{bottom:850.948000pt;}
.y5_c00148{bottom:862.948000pt;}
.y4_c00148{bottom:882.727333pt;}
.y3_c00148{bottom:898.727333pt;}
.y2_c00148{bottom:922.286533pt;}
.yc_c00148{bottom:924.710533pt;}
.y1_c00148{bottom:972.089733pt;}
.h8_c00148{height:22.400000pt;}
.h7_c00148{height:26.917333pt;}
.h5_c00148{height:30.293333pt;}
.h2_c00148{height:34.901333pt;}
.h3_c00148{height:35.541333pt;}
.h4_c00148{height:38.453333pt;}
.h6_c00148{height:38.880000pt;}
.h1_c00148{height:1009.333333pt;}
.h0_c00148{height:1009.338800pt;}
.w0_c00148{width:794.622400pt;}
.w1_c00148{width:794.666667pt;}
.x0_c00148{left:0.000000pt;}
.x4_c00148{left:114.439733pt;}
.x5_c00148{left:125.778400pt;}
.x7_c00148{left:129.453067pt;}
.x2_c00148{left:167.166133pt;}
.x3_c00148{left:169.345200pt;}
.x6_c00148{left:286.045467pt;}
.x1_c00148{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00149;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00149{font-family:ff7_c00149;line-height:0.710000;font-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_c00149{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls3_c00149{letter-spacing:-1.200000px;}
.ls1_c00149{letter-spacing:-0.960000px;}
.ls2_c00149{letter-spacing:-0.840000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00149{word-spacing:-6.487200px;}
.ws3_c00149{word-spacing:0.000000px;}
.ws5_c00149{word-spacing:0.840000px;}
.ws4_c00149{word-spacing:7.056000px;}
.ws0_c00149{word-spacing:1585.435200px;}
._3_c00149{margin-left:-7.042800px;}
._0_c00149{margin-left:-2.112000px;}
._1_c00149{margin-left:-1.104000px;}
._2_c00149{width:2.016000px;}
._4_c00149{width:55.674000px;}
._5_c00149{width:59.136000px;}
.fc0_c00149{color:rgb(35,31,32);}
.fs5_c00149{font-size:30.600000px;}
.fs6_c00149{font-size:36.000000px;}
.fs3_c00149{font-size:42.000000px;}
.fs0_c00149{font-size:48.000000px;}
.fs4_c00149{font-size:54.000000px;}
.fs2_c00149{font-size:57.000000px;}
.fs1_c00149{font-size:60.000000px;}
.y0_c00149{bottom:0.000000px;}
.yc_c00149{bottom:366.238350px;}
.yb_c00149{bottom:379.738350px;}
.ya_c00149{bottom:393.238350px;}
.y9_c00149{bottom:415.490250px;}
.y8_c00149{bottom:428.990250px;}
.y7_c00149{bottom:455.494200px;}
.y6_c00149{bottom:468.994200px;}
.y5_c00149{bottom:482.494200px;}
.y4_c00149{bottom:504.746250px;}
.y3_c00149{bottom:522.746250px;}
.y2_c00149{bottom:549.250050px;}
.yd_c00149{bottom:551.323050px;}
.y19_c00149{bottom:806.654550px;}
.y17_c00149{bottom:868.413450px;}
.y16_c00149{bottom:881.913450px;}
.y15_c00149{bottom:904.165500px;}
.y14_c00149{bottom:917.665500px;}
.y13_c00149{bottom:944.169450px;}
.y12_c00149{bottom:957.669450px;}
.y11_c00149{bottom:971.169450px;}
.y10_c00149{bottom:993.421350px;}
.yf_c00149{bottom:1011.421350px;}
.ye_c00149{bottom:1037.925300px;}
.y18_c00149{bottom:1040.299350px;}
.y1_c00149{bottom:1093.600950px;}
.h7_c00149{height:25.200000px;}
.h6_c00149{height:30.282000px;}
.h4_c00149{height:34.080000px;}
.h2_c00149{height:39.264000px;}
.h3_c00149{height:43.260000px;}
.h5_c00149{height:43.740000px;}
.h1_c00149{height:1135.500000px;}
.h0_c00149{height:1135.506150px;}
.w0_c00149{width:893.950200px;}
.w1_c00149{width:894.000000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:77.603100px;}
.x4_c00149{left:424.138500px;}
.x2_c00149{left:599.532150px;}
.x3_c00149{left:612.288150px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls3_c00149{letter-spacing:-1.066667pt;}
.ls1_c00149{letter-spacing:-0.853333pt;}
.ls2_c00149{letter-spacing:-0.746667pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws1_c00149{word-spacing:-7.728000pt;}
.ws2_c00149{word-spacing:-5.766400pt;}
.ws3_c00149{word-spacing:0.000000pt;}
.ws5_c00149{word-spacing:0.746667pt;}
.ws4_c00149{word-spacing:6.272000pt;}
.ws0_c00149{word-spacing:1409.275733pt;}
._3_c00149{margin-left:-6.260267pt;}
._0_c00149{margin-left:-1.877333pt;}
._1_c00149{margin-left:-0.981333pt;}
._2_c00149{width:1.792000pt;}
._4_c00149{width:49.488000pt;}
._5_c00149{width:52.565333pt;}
.fs5_c00149{font-size:27.200000pt;}
.fs6_c00149{font-size:32.000000pt;}
.fs3_c00149{font-size:37.333333pt;}
.fs0_c00149{font-size:42.666667pt;}
.fs4_c00149{font-size:48.000000pt;}
.fs2_c00149{font-size:50.666667pt;}
.fs1_c00149{font-size:53.333333pt;}
.y0_c00149{bottom:0.000000pt;}
.yc_c00149{bottom:325.545200pt;}
.yb_c00149{bottom:337.545200pt;}
.ya_c00149{bottom:349.545200pt;}
.y9_c00149{bottom:369.324667pt;}
.y8_c00149{bottom:381.324667pt;}
.y7_c00149{bottom:404.883733pt;}
.y6_c00149{bottom:416.883733pt;}
.y5_c00149{bottom:428.883733pt;}
.y4_c00149{bottom:448.663333pt;}
.y3_c00149{bottom:464.663333pt;}
.y2_c00149{bottom:488.222267pt;}
.yd_c00149{bottom:490.064933pt;}
.y19_c00149{bottom:717.026267pt;}
.y17_c00149{bottom:771.923067pt;}
.y16_c00149{bottom:783.923067pt;}
.y15_c00149{bottom:803.702667pt;}
.y14_c00149{bottom:815.702667pt;}
.y13_c00149{bottom:839.261733pt;}
.y12_c00149{bottom:851.261733pt;}
.y11_c00149{bottom:863.261733pt;}
.y10_c00149{bottom:883.041200pt;}
.yf_c00149{bottom:899.041200pt;}
.ye_c00149{bottom:922.600267pt;}
.y18_c00149{bottom:924.710533pt;}
.y1_c00149{bottom:972.089733pt;}
.h7_c00149{height:22.400000pt;}
.h6_c00149{height:26.917333pt;}
.h4_c00149{height:30.293333pt;}
.h2_c00149{height:34.901333pt;}
.h3_c00149{height:38.453333pt;}
.h5_c00149{height:38.880000pt;}
.h1_c00149{height:1009.333333pt;}
.h0_c00149{height:1009.338800pt;}
.w0_c00149{width:794.622400pt;}
.w1_c00149{width:794.666667pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:68.980533pt;}
.x4_c00149{left:377.012000pt;}
.x2_c00149{left:532.917467pt;}
.x3_c00149{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00150;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00150{font-family:ff6_c00150;line-height:0.908000;font-style:normal;font-weight: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_c00150;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00150{font-family:ff7_c00150;line-height:1.067000;font-style:normal;font-weight: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_c00150;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00150{font-family:ff8_c00150;line-height:0.710000;font-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_c00150{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls3_c00150{letter-spacing:-0.720000px;}
.ls2_c00150{letter-spacing:-0.216000px;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00150{word-spacing:-8.694000px;}
.ws2_c00150{word-spacing:-6.487200px;}
.ws3_c00150{word-spacing:0.000000px;}
.ws4_c00150{word-spacing:7.056000px;}
.ws5_c00150{word-spacing:55.890000px;}
._0_c00150{margin-left:-2755.276200px;}
._4_c00150{margin-left:-6.946800px;}
._1_c00150{margin-left:-2.256000px;}
._3_c00150{margin-left:-1.200000px;}
._2_c00150{width:1.008000px;}
._6_c00150{width:7.776000px;}
._7_c00150{width:55.674000px;}
._5_c00150{width:59.136000px;}
.fc0_c00150{color:rgb(35,31,32);}
.fs5_c00150{font-size:30.600000px;}
.fs6_c00150{font-size:36.000000px;}
.fs3_c00150{font-size:42.000000px;}
.fs0_c00150{font-size:48.000000px;}
.fs4_c00150{font-size:54.000000px;}
.fs2_c00150{font-size:57.000000px;}
.fs1_c00150{font-size:60.000000px;}
.y0_c00150{bottom:0.000000px;}
.y19_c00150{bottom:317.979150px;}
.yb_c00150{bottom:379.648950px;}
.ya_c00150{bottom:393.148950px;}
.y9_c00150{bottom:415.401000px;}
.y8_c00150{bottom:428.901000px;}
.y7_c00150{bottom:455.404950px;}
.y6_c00150{bottom:468.904950px;}
.y5_c00150{bottom:482.404950px;}
.y4_c00150{bottom:504.656850px;}
.y3_c00150{bottom:522.656850px;}
.y2_c00150{bottom:549.160800px;}
.y18_c00150{bottom:551.323050px;}
.y17_c00150{bottom:806.955600px;}
.y15_c00150{bottom:868.413450px;}
.y14_c00150{bottom:881.913450px;}
.y13_c00150{bottom:904.165500px;}
.y12_c00150{bottom:917.665500px;}
.y11_c00150{bottom:944.169450px;}
.y10_c00150{bottom:957.669450px;}
.yf_c00150{bottom:971.169450px;}
.ye_c00150{bottom:993.421350px;}
.yd_c00150{bottom:1011.421350px;}
.yc_c00150{bottom:1037.925300px;}
.y16_c00150{bottom:1040.299350px;}
.y1_c00150{bottom:1093.600950px;}
.h8_c00150{height:25.200000px;}
.h7_c00150{height:30.282000px;}
.h5_c00150{height:34.080000px;}
.h2_c00150{height:39.264000px;}
.h3_c00150{height:39.984000px;}
.h4_c00150{height:43.260000px;}
.h6_c00150{height:43.740000px;}
.h1_c00150{height:1135.500000px;}
.h0_c00150{height:1135.506150px;}
.w0_c00150{width:893.950200px;}
.w1_c00150{width:894.000000px;}
.x0_c00150{left:0.000000px;}
.x4_c00150{left:128.626800px;}
.x5_c00150{left:141.382650px;}
.x2_c00150{left:188.061900px;}
.x3_c00150{left:190.513350px;}
.x6_c00150{left:321.681750px;}
.x1_c00150{left:800.165850px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls3_c00150{letter-spacing:-0.640000pt;}
.ls2_c00150{letter-spacing:-0.192000pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.426667pt;}
.ws0_c00150{word-spacing:-9.685333pt;}
.ws1_c00150{word-spacing:-7.728000pt;}
.ws2_c00150{word-spacing:-5.766400pt;}
.ws3_c00150{word-spacing:0.000000pt;}
.ws4_c00150{word-spacing:6.272000pt;}
.ws5_c00150{word-spacing:49.680000pt;}
._0_c00150{margin-left:-2449.134400pt;}
._4_c00150{margin-left:-6.174933pt;}
._1_c00150{margin-left:-2.005333pt;}
._3_c00150{margin-left:-1.066667pt;}
._2_c00150{width:0.896000pt;}
._6_c00150{width:6.912000pt;}
._7_c00150{width:49.488000pt;}
._5_c00150{width:52.565333pt;}
.fs5_c00150{font-size:27.200000pt;}
.fs6_c00150{font-size:32.000000pt;}
.fs3_c00150{font-size:37.333333pt;}
.fs0_c00150{font-size:42.666667pt;}
.fs4_c00150{font-size:48.000000pt;}
.fs2_c00150{font-size:50.666667pt;}
.fs1_c00150{font-size:53.333333pt;}
.y0_c00150{bottom:0.000000pt;}
.y19_c00150{bottom:282.648133pt;}
.yb_c00150{bottom:337.465733pt;}
.ya_c00150{bottom:349.465733pt;}
.y9_c00150{bottom:369.245333pt;}
.y8_c00150{bottom:381.245333pt;}
.y7_c00150{bottom:404.804400pt;}
.y6_c00150{bottom:416.804400pt;}
.y5_c00150{bottom:428.804400pt;}
.y4_c00150{bottom:448.583867pt;}
.y3_c00150{bottom:464.583867pt;}
.y2_c00150{bottom:488.142933pt;}
.y18_c00150{bottom:490.064933pt;}
.y17_c00150{bottom:717.293867pt;}
.y15_c00150{bottom:771.923067pt;}
.y14_c00150{bottom:783.923067pt;}
.y13_c00150{bottom:803.702667pt;}
.y12_c00150{bottom:815.702667pt;}
.y11_c00150{bottom:839.261733pt;}
.y10_c00150{bottom:851.261733pt;}
.yf_c00150{bottom:863.261733pt;}
.ye_c00150{bottom:883.041200pt;}
.yd_c00150{bottom:899.041200pt;}
.yc_c00150{bottom:922.600267pt;}
.y16_c00150{bottom:924.710533pt;}
.y1_c00150{bottom:972.089733pt;}
.h8_c00150{height:22.400000pt;}
.h7_c00150{height:26.917333pt;}
.h5_c00150{height:30.293333pt;}
.h2_c00150{height:34.901333pt;}
.h3_c00150{height:35.541333pt;}
.h4_c00150{height:38.453333pt;}
.h6_c00150{height:38.880000pt;}
.h1_c00150{height:1009.333333pt;}
.h0_c00150{height:1009.338800pt;}
.w0_c00150{width:794.622400pt;}
.w1_c00150{width:794.666667pt;}
.x0_c00150{left:0.000000pt;}
.x4_c00150{left:114.334933pt;}
.x5_c00150{left:125.673467pt;}
.x2_c00150{left:167.166133pt;}
.x3_c00150{left:169.345200pt;}
.x6_c00150{left:285.939333pt;}
.x1_c00150{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00151;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00151{font-family:ff6_c00151;line-height:1.067000;font-style:normal;font-weight: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_c00151;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00151{font-family:ff7_c00151;line-height:0.710000;font-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_c00151{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls2_c00151{letter-spacing:-1.200000px;}
.ls3_c00151{letter-spacing:-0.720000px;}
.ls4_c00151{letter-spacing:-0.630000px;}
.ls1_c00151{letter-spacing:-0.216000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00151{word-spacing:-6.487200px;}
.ws3_c00151{word-spacing:0.000000px;}
.ws5_c00151{word-spacing:0.216000px;}
.ws4_c00151{word-spacing:7.056000px;}
.ws0_c00151{word-spacing:1574.587200px;}
._3_c00151{margin-left:-7.042800px;}
._6_c00151{margin-left:-4.536000px;}
._0_c00151{margin-left:-2.112000px;}
._1_c00151{margin-left:-1.104000px;}
._2_c00151{width:2.016000px;}
._7_c00151{width:7.776000px;}
._4_c00151{width:55.674000px;}
._5_c00151{width:59.136000px;}
.fc0_c00151{color:rgb(35,31,32);}
.fs5_c00151{font-size:30.600000px;}
.fs6_c00151{font-size:36.000000px;}
.fs3_c00151{font-size:42.000000px;}
.fs0_c00151{font-size:48.000000px;}
.fs4_c00151{font-size:54.000000px;}
.fs2_c00151{font-size:57.000000px;}
.fs1_c00151{font-size:60.000000px;}
.y0_c00151{bottom:0.000000px;}
.yd_c00151{bottom:317.806650px;}
.yb_c00151{bottom:379.610700px;}
.ya_c00151{bottom:393.110700px;}
.y9_c00151{bottom:415.362750px;}
.y8_c00151{bottom:428.862750px;}
.y7_c00151{bottom:455.366550px;}
.y6_c00151{bottom:468.866550px;}
.y5_c00151{bottom:482.366550px;}
.y4_c00151{bottom:504.618600px;}
.y3_c00151{bottom:522.618600px;}
.y2_c00151{bottom:549.122550px;}
.yc_c00151{bottom:551.451600px;}
.y18_c00151{bottom:854.913450px;}
.y17_c00151{bottom:868.413450px;}
.y16_c00151{bottom:881.913450px;}
.y15_c00151{bottom:904.165500px;}
.y14_c00151{bottom:917.665500px;}
.y13_c00151{bottom:944.169450px;}
.y12_c00151{bottom:957.669450px;}
.y11_c00151{bottom:971.169450px;}
.y10_c00151{bottom:993.421350px;}
.yf_c00151{bottom:1011.421350px;}
.ye_c00151{bottom:1037.925300px;}
.y19_c00151{bottom:1040.299350px;}
.y1_c00151{bottom:1093.600950px;}
.h7_c00151{height:25.200000px;}
.h6_c00151{height:30.282000px;}
.h4_c00151{height:34.080000px;}
.h2_c00151{height:39.264000px;}
.h3_c00151{height:43.260000px;}
.h5_c00151{height:43.740000px;}
.h1_c00151{height:1135.500000px;}
.h0_c00151{height:1135.506150px;}
.w0_c00151{width:893.950200px;}
.w1_c00151{width:894.000000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:77.603100px;}
.x4_c00151{left:424.017900px;}
.x2_c00151{left:599.532150px;}
.x3_c00151{left:612.288150px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls2_c00151{letter-spacing:-1.066667pt;}
.ls3_c00151{letter-spacing:-0.640000pt;}
.ls4_c00151{letter-spacing:-0.560000pt;}
.ls1_c00151{letter-spacing:-0.192000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws1_c00151{word-spacing:-7.728000pt;}
.ws2_c00151{word-spacing:-5.766400pt;}
.ws3_c00151{word-spacing:0.000000pt;}
.ws5_c00151{word-spacing:0.192000pt;}
.ws4_c00151{word-spacing:6.272000pt;}
.ws0_c00151{word-spacing:1399.633067pt;}
._3_c00151{margin-left:-6.260267pt;}
._6_c00151{margin-left:-4.032000pt;}
._0_c00151{margin-left:-1.877333pt;}
._1_c00151{margin-left:-0.981333pt;}
._2_c00151{width:1.792000pt;}
._7_c00151{width:6.912000pt;}
._4_c00151{width:49.488000pt;}
._5_c00151{width:52.565333pt;}
.fs5_c00151{font-size:27.200000pt;}
.fs6_c00151{font-size:32.000000pt;}
.fs3_c00151{font-size:37.333333pt;}
.fs0_c00151{font-size:42.666667pt;}
.fs4_c00151{font-size:48.000000pt;}
.fs2_c00151{font-size:50.666667pt;}
.fs1_c00151{font-size:53.333333pt;}
.y0_c00151{bottom:0.000000pt;}
.yd_c00151{bottom:282.494800pt;}
.yb_c00151{bottom:337.431733pt;}
.ya_c00151{bottom:349.431733pt;}
.y9_c00151{bottom:369.211333pt;}
.y8_c00151{bottom:381.211333pt;}
.y7_c00151{bottom:404.770267pt;}
.y6_c00151{bottom:416.770267pt;}
.y5_c00151{bottom:428.770267pt;}
.y4_c00151{bottom:448.549867pt;}
.y3_c00151{bottom:464.549867pt;}
.y2_c00151{bottom:488.108933pt;}
.yc_c00151{bottom:490.179200pt;}
.y18_c00151{bottom:759.923067pt;}
.y17_c00151{bottom:771.923067pt;}
.y16_c00151{bottom:783.923067pt;}
.y15_c00151{bottom:803.702667pt;}
.y14_c00151{bottom:815.702667pt;}
.y13_c00151{bottom:839.261733pt;}
.y12_c00151{bottom:851.261733pt;}
.y11_c00151{bottom:863.261733pt;}
.y10_c00151{bottom:883.041200pt;}
.yf_c00151{bottom:899.041200pt;}
.ye_c00151{bottom:922.600267pt;}
.y19_c00151{bottom:924.710533pt;}
.y1_c00151{bottom:972.089733pt;}
.h7_c00151{height:22.400000pt;}
.h6_c00151{height:26.917333pt;}
.h4_c00151{height:30.293333pt;}
.h2_c00151{height:34.901333pt;}
.h3_c00151{height:38.453333pt;}
.h5_c00151{height:38.880000pt;}
.h1_c00151{height:1009.333333pt;}
.h0_c00151{height:1009.338800pt;}
.w0_c00151{width:794.622400pt;}
.w1_c00151{width:794.666667pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:68.980533pt;}
.x4_c00151{left:376.904800pt;}
.x2_c00151{left:532.917467pt;}
.x3_c00151{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:0.908000;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00152{font-family:ff7_c00152;line-height:1.067000;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00152{font-family:ff8_c00152;line-height:0.710000;font-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_c00152{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls2_c00152{letter-spacing:-1.200000px;}
.ls1_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00152{word-spacing:-10.896000px;}
.ws1_c00152{word-spacing:-8.694000px;}
.ws2_c00152{word-spacing:-6.487200px;}
.ws3_c00152{word-spacing:0.000000px;}
.ws4_c00152{word-spacing:7.056000px;}
._0_c00152{margin-left:-2755.276200px;}
._4_c00152{margin-left:-6.947400px;}
._1_c00152{margin-left:-2.256000px;}
._3_c00152{margin-left:-1.200000px;}
._2_c00152{width:1.008000px;}
._5_c00152{width:55.674000px;}
._6_c00152{width:59.136000px;}
.fc0_c00152{color:rgb(35,31,32);}
.fs5_c00152{font-size:30.600000px;}
.fs6_c00152{font-size:36.000000px;}
.fs3_c00152{font-size:42.000000px;}
.fs0_c00152{font-size:48.000000px;}
.fs4_c00152{font-size:54.000000px;}
.fs2_c00152{font-size:57.000000px;}
.fs1_c00152{font-size:60.000000px;}
.y0_c00152{bottom:0.000000px;}
.y19_c00152{bottom:318.387300px;}
.y17_c00152{bottom:379.845300px;}
.y16_c00152{bottom:393.345300px;}
.y15_c00152{bottom:415.597200px;}
.y14_c00152{bottom:429.097200px;}
.y13_c00152{bottom:455.601150px;}
.y12_c00152{bottom:469.101150px;}
.y11_c00152{bottom:482.601150px;}
.y10_c00152{bottom:504.853200px;}
.yf_c00152{bottom:522.853200px;}
.ye_c00152{bottom:549.357150px;}
.y18_c00152{bottom:551.731050px;}
.yd_c00152{bottom:806.955600px;}
.yb_c00152{bottom:868.413450px;}
.ya_c00152{bottom:881.913450px;}
.y9_c00152{bottom:904.165500px;}
.y8_c00152{bottom:917.665500px;}
.y7_c00152{bottom:944.169450px;}
.y6_c00152{bottom:957.669450px;}
.y5_c00152{bottom:971.169450px;}
.y4_c00152{bottom:993.421350px;}
.y3_c00152{bottom:1011.421350px;}
.y2_c00152{bottom:1037.925300px;}
.yc_c00152{bottom:1040.299350px;}
.y1_c00152{bottom:1093.600950px;}
.h8_c00152{height:25.200000px;}
.h7_c00152{height:30.282000px;}
.h5_c00152{height:34.080000px;}
.h2_c00152{height:39.264000px;}
.h3_c00152{height:39.984000px;}
.h4_c00152{height:43.260000px;}
.h6_c00152{height:43.740000px;}
.h1_c00152{height:1135.500000px;}
.h0_c00152{height:1135.506150px;}
.w0_c00152{width:893.950200px;}
.w1_c00152{width:894.000000px;}
.x0_c00152{left:0.000000px;}
.x4_c00152{left:128.744700px;}
.x5_c00152{left:141.500700px;}
.x2_c00152{left:188.061900px;}
.x3_c00152{left:190.513350px;}
.x6_c00152{left:321.917850px;}
.x1_c00152{left:800.165850px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls2_c00152{letter-spacing:-1.066667pt;}
.ls1_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.426667pt;}
.ws0_c00152{word-spacing:-9.685333pt;}
.ws1_c00152{word-spacing:-7.728000pt;}
.ws2_c00152{word-spacing:-5.766400pt;}
.ws3_c00152{word-spacing:0.000000pt;}
.ws4_c00152{word-spacing:6.272000pt;}
._0_c00152{margin-left:-2449.134400pt;}
._4_c00152{margin-left:-6.175467pt;}
._1_c00152{margin-left:-2.005333pt;}
._3_c00152{margin-left:-1.066667pt;}
._2_c00152{width:0.896000pt;}
._5_c00152{width:49.488000pt;}
._6_c00152{width:52.565333pt;}
.fs5_c00152{font-size:27.200000pt;}
.fs6_c00152{font-size:32.000000pt;}
.fs3_c00152{font-size:37.333333pt;}
.fs0_c00152{font-size:42.666667pt;}
.fs4_c00152{font-size:48.000000pt;}
.fs2_c00152{font-size:50.666667pt;}
.fs1_c00152{font-size:53.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y19_c00152{bottom:283.010933pt;}
.y17_c00152{bottom:337.640267pt;}
.y16_c00152{bottom:349.640267pt;}
.y15_c00152{bottom:369.419733pt;}
.y14_c00152{bottom:381.419733pt;}
.y13_c00152{bottom:404.978800pt;}
.y12_c00152{bottom:416.978800pt;}
.y11_c00152{bottom:428.978800pt;}
.y10_c00152{bottom:448.758400pt;}
.yf_c00152{bottom:464.758400pt;}
.ye_c00152{bottom:488.317467pt;}
.y18_c00152{bottom:490.427600pt;}
.yd_c00152{bottom:717.293867pt;}
.yb_c00152{bottom:771.923067pt;}
.ya_c00152{bottom:783.923067pt;}
.y9_c00152{bottom:803.702667pt;}
.y8_c00152{bottom:815.702667pt;}
.y7_c00152{bottom:839.261733pt;}
.y6_c00152{bottom:851.261733pt;}
.y5_c00152{bottom:863.261733pt;}
.y4_c00152{bottom:883.041200pt;}
.y3_c00152{bottom:899.041200pt;}
.y2_c00152{bottom:922.600267pt;}
.yc_c00152{bottom:924.710533pt;}
.y1_c00152{bottom:972.089733pt;}
.h8_c00152{height:22.400000pt;}
.h7_c00152{height:26.917333pt;}
.h5_c00152{height:30.293333pt;}
.h2_c00152{height:34.901333pt;}
.h3_c00152{height:35.541333pt;}
.h4_c00152{height:38.453333pt;}
.h6_c00152{height:38.880000pt;}
.h1_c00152{height:1009.333333pt;}
.h0_c00152{height:1009.338800pt;}
.w0_c00152{width:794.622400pt;}
.w1_c00152{width:794.666667pt;}
.x0_c00152{left:0.000000pt;}
.x4_c00152{left:114.439733pt;}
.x5_c00152{left:125.778400pt;}
.x2_c00152{left:167.166133pt;}
.x3_c00152{left:169.345200pt;}
.x6_c00152{left:286.149200pt;}
.x1_c00152{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00153;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:1.067000;font-style:normal;font-weight: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_c00153;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00153{font-family:ff7_c00153;line-height:0.710000;font-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_c00153{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2_c00153{letter-spacing:-1.200000px;}
.ls1_c00153{letter-spacing:-0.540000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00153{word-spacing:-8.694000px;}
.ws2_c00153{word-spacing:-6.487200px;}
.ws3_c00153{word-spacing:0.000000px;}
.ws5_c00153{word-spacing:0.540000px;}
.ws4_c00153{word-spacing:7.056000px;}
.ws0_c00153{word-spacing:1574.587200px;}
._3_c00153{margin-left:-7.042800px;}
._0_c00153{margin-left:-2.112000px;}
._1_c00153{margin-left:-1.104000px;}
._2_c00153{width:2.016000px;}
._4_c00153{width:55.674000px;}
._5_c00153{width:59.136000px;}
.fc0_c00153{color:rgb(35,31,32);}
.fs5_c00153{font-size:30.600000px;}
.fs6_c00153{font-size:36.000000px;}
.fs3_c00153{font-size:42.000000px;}
.fs0_c00153{font-size:48.000000px;}
.fs4_c00153{font-size:54.000000px;}
.fs2_c00153{font-size:57.000000px;}
.fs1_c00153{font-size:60.000000px;}
.y0_c00153{bottom:0.000000px;}
.yd_c00153{bottom:317.589600px;}
.yb_c00153{bottom:378.799350px;}
.ya_c00153{bottom:392.299350px;}
.y9_c00153{bottom:414.551400px;}
.y8_c00153{bottom:428.051400px;}
.y7_c00153{bottom:454.555350px;}
.y6_c00153{bottom:468.055350px;}
.y5_c00153{bottom:481.555350px;}
.y4_c00153{bottom:503.807250px;}
.y3_c00153{bottom:521.807250px;}
.y2_c00153{bottom:548.311200px;}
.yc_c00153{bottom:551.234550px;}
.y18_c00153{bottom:806.955600px;}
.y17_c00153{bottom:868.200900px;}
.y16_c00153{bottom:881.700900px;}
.y15_c00153{bottom:903.952950px;}
.y14_c00153{bottom:917.452950px;}
.y13_c00153{bottom:943.956900px;}
.y12_c00153{bottom:957.456900px;}
.y11_c00153{bottom:970.956900px;}
.y10_c00153{bottom:993.208800px;}
.yf_c00153{bottom:1011.208800px;}
.ye_c00153{bottom:1037.712750px;}
.y19_c00153{bottom:1040.299350px;}
.y1_c00153{bottom:1093.600950px;}
.h7_c00153{height:25.200000px;}
.h6_c00153{height:30.282000px;}
.h4_c00153{height:34.080000px;}
.h2_c00153{height:39.264000px;}
.h3_c00153{height:43.260000px;}
.h5_c00153{height:43.740000px;}
.h1_c00153{height:1135.500000px;}
.h0_c00153{height:1135.506150px;}
.w0_c00153{width:893.950200px;}
.w1_c00153{width:894.000000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:77.603100px;}
.x4_c00153{left:424.017900px;}
.x2_c00153{left:599.532150px;}
.x3_c00153{left:612.288150px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:-1.066667pt;}
.ls1_c00153{letter-spacing:-0.480000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws1_c00153{word-spacing:-7.728000pt;}
.ws2_c00153{word-spacing:-5.766400pt;}
.ws3_c00153{word-spacing:0.000000pt;}
.ws5_c00153{word-spacing:0.480000pt;}
.ws4_c00153{word-spacing:6.272000pt;}
.ws0_c00153{word-spacing:1399.633067pt;}
._3_c00153{margin-left:-6.260267pt;}
._0_c00153{margin-left:-1.877333pt;}
._1_c00153{margin-left:-0.981333pt;}
._2_c00153{width:1.792000pt;}
._4_c00153{width:49.488000pt;}
._5_c00153{width:52.565333pt;}
.fs5_c00153{font-size:27.200000pt;}
.fs6_c00153{font-size:32.000000pt;}
.fs3_c00153{font-size:37.333333pt;}
.fs0_c00153{font-size:42.666667pt;}
.fs4_c00153{font-size:48.000000pt;}
.fs2_c00153{font-size:50.666667pt;}
.fs1_c00153{font-size:53.333333pt;}
.y0_c00153{bottom:0.000000pt;}
.yd_c00153{bottom:282.301867pt;}
.yb_c00153{bottom:336.710533pt;}
.ya_c00153{bottom:348.710533pt;}
.y9_c00153{bottom:368.490133pt;}
.y8_c00153{bottom:380.490133pt;}
.y7_c00153{bottom:404.049200pt;}
.y6_c00153{bottom:416.049200pt;}
.y5_c00153{bottom:428.049200pt;}
.y4_c00153{bottom:447.828667pt;}
.y3_c00153{bottom:463.828667pt;}
.y2_c00153{bottom:487.387733pt;}
.yc_c00153{bottom:489.986267pt;}
.y18_c00153{bottom:717.293867pt;}
.y17_c00153{bottom:771.734133pt;}
.y16_c00153{bottom:783.734133pt;}
.y15_c00153{bottom:803.513733pt;}
.y14_c00153{bottom:815.513733pt;}
.y13_c00153{bottom:839.072800pt;}
.y12_c00153{bottom:851.072800pt;}
.y11_c00153{bottom:863.072800pt;}
.y10_c00153{bottom:882.852267pt;}
.yf_c00153{bottom:898.852267pt;}
.ye_c00153{bottom:922.411333pt;}
.y19_c00153{bottom:924.710533pt;}
.y1_c00153{bottom:972.089733pt;}
.h7_c00153{height:22.400000pt;}
.h6_c00153{height:26.917333pt;}
.h4_c00153{height:30.293333pt;}
.h2_c00153{height:34.901333pt;}
.h3_c00153{height:38.453333pt;}
.h5_c00153{height:38.880000pt;}
.h1_c00153{height:1009.333333pt;}
.h0_c00153{height:1009.338800pt;}
.w0_c00153{width:794.622400pt;}
.w1_c00153{width:794.666667pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:68.980533pt;}
.x4_c00153{left:376.904800pt;}
.x2_c00153{left:532.917467pt;}
.x3_c00153{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00154;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00154{font-family:ff7_c00154;line-height:1.067000;font-style:normal;font-weight: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_c00154;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00154{font-family:ff8_c00154;line-height:0.710000;font-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_c00154{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls2_c00154{letter-spacing:-1.200000px;}
.ls3_c00154{letter-spacing:-0.540000px;}
.ls1_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00154{word-spacing:-8.694000px;}
.ws2_c00154{word-spacing:-6.487200px;}
.ws3_c00154{word-spacing:0.000000px;}
.ws5_c00154{word-spacing:0.540000px;}
.ws4_c00154{word-spacing:7.056000px;}
._0_c00154{margin-left:-2755.276200px;}
._4_c00154{margin-left:-6.946800px;}
._1_c00154{margin-left:-2.256000px;}
._3_c00154{margin-left:-1.200000px;}
._2_c00154{width:1.008000px;}
._5_c00154{width:55.674000px;}
._6_c00154{width:59.136000px;}
.fc0_c00154{color:rgb(35,31,32);}
.fs5_c00154{font-size:30.600000px;}
.fs6_c00154{font-size:36.000000px;}
.fs3_c00154{font-size:42.000000px;}
.fs0_c00154{font-size:48.000000px;}
.fs4_c00154{font-size:54.000000px;}
.fs2_c00154{font-size:57.000000px;}
.fs1_c00154{font-size:60.000000px;}
.y0_c00154{bottom:0.000000px;}
.y19_c00154{bottom:317.661000px;}
.y17_c00154{bottom:378.569700px;}
.y16_c00154{bottom:392.069700px;}
.y15_c00154{bottom:414.321600px;}
.y14_c00154{bottom:427.821600px;}
.y13_c00154{bottom:454.325550px;}
.y12_c00154{bottom:467.825550px;}
.y11_c00154{bottom:481.325550px;}
.y10_c00154{bottom:503.577600px;}
.yf_c00154{bottom:521.577600px;}
.ye_c00154{bottom:548.081550px;}
.y18_c00154{bottom:551.004750px;}
.yd_c00154{bottom:806.955600px;}
.yb_c00154{bottom:867.988200px;}
.ya_c00154{bottom:881.488200px;}
.y9_c00154{bottom:903.740100px;}
.y8_c00154{bottom:917.240100px;}
.y7_c00154{bottom:943.744050px;}
.y6_c00154{bottom:957.244050px;}
.y5_c00154{bottom:970.744050px;}
.y4_c00154{bottom:992.996100px;}
.y3_c00154{bottom:1010.996100px;}
.y2_c00154{bottom:1037.500050px;}
.yc_c00154{bottom:1040.299350px;}
.y1_c00154{bottom:1093.600950px;}
.h8_c00154{height:25.200000px;}
.h7_c00154{height:30.282000px;}
.h5_c00154{height:34.080000px;}
.h2_c00154{height:39.264000px;}
.h3_c00154{height:39.984000px;}
.h4_c00154{height:43.260000px;}
.h6_c00154{height:43.740000px;}
.h1_c00154{height:1135.500000px;}
.h0_c00154{height:1135.506150px;}
.w0_c00154{width:893.950200px;}
.w1_c00154{width:894.000000px;}
.x0_c00154{left:0.000000px;}
.x4_c00154{left:128.626800px;}
.x5_c00154{left:141.382650px;}
.x2_c00154{left:188.061900px;}
.x3_c00154{left:190.513350px;}
.x6_c00154{left:321.917700px;}
.x1_c00154{left:800.165850px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls2_c00154{letter-spacing:-1.066667pt;}
.ls3_c00154{letter-spacing:-0.480000pt;}
.ls1_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:0.426667pt;}
.ws0_c00154{word-spacing:-9.685333pt;}
.ws1_c00154{word-spacing:-7.728000pt;}
.ws2_c00154{word-spacing:-5.766400pt;}
.ws3_c00154{word-spacing:0.000000pt;}
.ws5_c00154{word-spacing:0.480000pt;}
.ws4_c00154{word-spacing:6.272000pt;}
._0_c00154{margin-left:-2449.134400pt;}
._4_c00154{margin-left:-6.174933pt;}
._1_c00154{margin-left:-2.005333pt;}
._3_c00154{margin-left:-1.066667pt;}
._2_c00154{width:0.896000pt;}
._5_c00154{width:49.488000pt;}
._6_c00154{width:52.565333pt;}
.fs5_c00154{font-size:27.200000pt;}
.fs6_c00154{font-size:32.000000pt;}
.fs3_c00154{font-size:37.333333pt;}
.fs0_c00154{font-size:42.666667pt;}
.fs4_c00154{font-size:48.000000pt;}
.fs2_c00154{font-size:50.666667pt;}
.fs1_c00154{font-size:53.333333pt;}
.y0_c00154{bottom:0.000000pt;}
.y19_c00154{bottom:282.365333pt;}
.y17_c00154{bottom:336.506400pt;}
.y16_c00154{bottom:348.506400pt;}
.y15_c00154{bottom:368.285867pt;}
.y14_c00154{bottom:380.285867pt;}
.y13_c00154{bottom:403.844933pt;}
.y12_c00154{bottom:415.844933pt;}
.y11_c00154{bottom:427.844933pt;}
.y10_c00154{bottom:447.624533pt;}
.yf_c00154{bottom:463.624533pt;}
.ye_c00154{bottom:487.183600pt;}
.y18_c00154{bottom:489.782000pt;}
.yd_c00154{bottom:717.293867pt;}
.yb_c00154{bottom:771.545067pt;}
.ya_c00154{bottom:783.545067pt;}
.y9_c00154{bottom:803.324533pt;}
.y8_c00154{bottom:815.324533pt;}
.y7_c00154{bottom:838.883600pt;}
.y6_c00154{bottom:850.883600pt;}
.y5_c00154{bottom:862.883600pt;}
.y4_c00154{bottom:882.663200pt;}
.y3_c00154{bottom:898.663200pt;}
.y2_c00154{bottom:922.222267pt;}
.yc_c00154{bottom:924.710533pt;}
.y1_c00154{bottom:972.089733pt;}
.h8_c00154{height:22.400000pt;}
.h7_c00154{height:26.917333pt;}
.h5_c00154{height:30.293333pt;}
.h2_c00154{height:34.901333pt;}
.h3_c00154{height:35.541333pt;}
.h4_c00154{height:38.453333pt;}
.h6_c00154{height:38.880000pt;}
.h1_c00154{height:1009.333333pt;}
.h0_c00154{height:1009.338800pt;}
.w0_c00154{width:794.622400pt;}
.w1_c00154{width:794.666667pt;}
.x0_c00154{left:0.000000pt;}
.x4_c00154{left:114.334933pt;}
.x5_c00154{left:125.673467pt;}
.x2_c00154{left:167.166133pt;}
.x3_c00154{left:169.345200pt;}
.x6_c00154{left:286.149067pt;}
.x1_c00154{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.067000;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:0.710000;font-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_c00155{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls2_c00155{letter-spacing:-1.200000px;}
.ls1_c00155{letter-spacing:-0.216000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00155{word-spacing:-8.694000px;}
.ws2_c00155{word-spacing:-6.487200px;}
.ws3_c00155{word-spacing:0.000000px;}
.ws5_c00155{word-spacing:0.216000px;}
.ws4_c00155{word-spacing:7.056000px;}
.ws0_c00155{word-spacing:1574.587200px;}
._3_c00155{margin-left:-7.042800px;}
._0_c00155{margin-left:-2.112000px;}
._1_c00155{margin-left:-1.104000px;}
._2_c00155{width:2.016000px;}
._4_c00155{width:55.674000px;}
._5_c00155{width:59.136000px;}
.fc0_c00155{color:rgb(35,31,32);}
.fs5_c00155{font-size:30.600000px;}
.fs6_c00155{font-size:36.000000px;}
.fs3_c00155{font-size:42.000000px;}
.fs0_c00155{font-size:48.000000px;}
.fs4_c00155{font-size:54.000000px;}
.fs2_c00155{font-size:57.000000px;}
.fs1_c00155{font-size:60.000000px;}
.y0_c00155{bottom:0.000000px;}
.yd_c00155{bottom:317.979150px;}
.yb_c00155{bottom:379.550850px;}
.ya_c00155{bottom:393.050850px;}
.y9_c00155{bottom:415.302750px;}
.y8_c00155{bottom:428.802750px;}
.y7_c00155{bottom:455.306700px;}
.y6_c00155{bottom:468.806700px;}
.y5_c00155{bottom:482.306700px;}
.y4_c00155{bottom:504.558750px;}
.y3_c00155{bottom:522.558750px;}
.y2_c00155{bottom:549.062550px;}
.yc_c00155{bottom:551.323050px;}
.y18_c00155{bottom:806.955600px;}
.y17_c00155{bottom:868.838700px;}
.y16_c00155{bottom:882.338700px;}
.y15_c00155{bottom:904.590600px;}
.y14_c00155{bottom:918.090600px;}
.y13_c00155{bottom:944.594700px;}
.y12_c00155{bottom:958.094700px;}
.y11_c00155{bottom:971.594700px;}
.y10_c00155{bottom:993.846600px;}
.yf_c00155{bottom:1011.846600px;}
.ye_c00155{bottom:1038.350550px;}
.y19_c00155{bottom:1040.299350px;}
.y1_c00155{bottom:1093.600950px;}
.h7_c00155{height:25.200000px;}
.h6_c00155{height:30.282000px;}
.h4_c00155{height:34.080000px;}
.h2_c00155{height:39.264000px;}
.h3_c00155{height:43.260000px;}
.h5_c00155{height:43.740000px;}
.h1_c00155{height:1135.500000px;}
.h0_c00155{height:1135.506150px;}
.w0_c00155{width:893.950200px;}
.w1_c00155{width:894.000000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:77.603100px;}
.x4_c00155{left:424.138500px;}
.x2_c00155{left:599.532150px;}
.x3_c00155{left:612.288150px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls2_c00155{letter-spacing:-1.066667pt;}
.ls1_c00155{letter-spacing:-0.192000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws1_c00155{word-spacing:-7.728000pt;}
.ws2_c00155{word-spacing:-5.766400pt;}
.ws3_c00155{word-spacing:0.000000pt;}
.ws5_c00155{word-spacing:0.192000pt;}
.ws4_c00155{word-spacing:6.272000pt;}
.ws0_c00155{word-spacing:1399.633067pt;}
._3_c00155{margin-left:-6.260267pt;}
._0_c00155{margin-left:-1.877333pt;}
._1_c00155{margin-left:-0.981333pt;}
._2_c00155{width:1.792000pt;}
._4_c00155{width:49.488000pt;}
._5_c00155{width:52.565333pt;}
.fs5_c00155{font-size:27.200000pt;}
.fs6_c00155{font-size:32.000000pt;}
.fs3_c00155{font-size:37.333333pt;}
.fs0_c00155{font-size:42.666667pt;}
.fs4_c00155{font-size:48.000000pt;}
.fs2_c00155{font-size:50.666667pt;}
.fs1_c00155{font-size:53.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.yd_c00155{bottom:282.648133pt;}
.yb_c00155{bottom:337.378533pt;}
.ya_c00155{bottom:349.378533pt;}
.y9_c00155{bottom:369.158000pt;}
.y8_c00155{bottom:381.158000pt;}
.y7_c00155{bottom:404.717067pt;}
.y6_c00155{bottom:416.717067pt;}
.y5_c00155{bottom:428.717067pt;}
.y4_c00155{bottom:448.496667pt;}
.y3_c00155{bottom:464.496667pt;}
.y2_c00155{bottom:488.055600pt;}
.yc_c00155{bottom:490.064933pt;}
.y18_c00155{bottom:717.293867pt;}
.y17_c00155{bottom:772.301067pt;}
.y16_c00155{bottom:784.301067pt;}
.y15_c00155{bottom:804.080533pt;}
.y14_c00155{bottom:816.080533pt;}
.y13_c00155{bottom:839.639733pt;}
.y12_c00155{bottom:851.639733pt;}
.y11_c00155{bottom:863.639733pt;}
.y10_c00155{bottom:883.419200pt;}
.yf_c00155{bottom:899.419200pt;}
.ye_c00155{bottom:922.978267pt;}
.y19_c00155{bottom:924.710533pt;}
.y1_c00155{bottom:972.089733pt;}
.h7_c00155{height:22.400000pt;}
.h6_c00155{height:26.917333pt;}
.h4_c00155{height:30.293333pt;}
.h2_c00155{height:34.901333pt;}
.h3_c00155{height:38.453333pt;}
.h5_c00155{height:38.880000pt;}
.h1_c00155{height:1009.333333pt;}
.h0_c00155{height:1009.338800pt;}
.w0_c00155{width:794.622400pt;}
.w1_c00155{width:794.666667pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:68.980533pt;}
.x4_c00155{left:377.012000pt;}
.x2_c00155{left:532.917467pt;}
.x3_c00155{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00156;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:1.067000;font-style:normal;font-weight: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_c00156;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00156{font-family:ff8_c00156;line-height:0.710000;font-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_c00156{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls2_c00156{letter-spacing:-1.200000px;}
.ls3_c00156{letter-spacing:-0.216000px;}
.ls1_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.480000px;}
.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;}
}
.ws3_c00156{word-spacing:-12.150000px;}
.ws0_c00156{word-spacing:-10.896000px;}
.ws1_c00156{word-spacing:-8.694000px;}
.ws2_c00156{word-spacing:-6.487200px;}
.ws4_c00156{word-spacing:0.000000px;}
.ws5_c00156{word-spacing:7.056000px;}
._0_c00156{margin-left:-2755.276200px;}
._4_c00156{margin-left:-6.946800px;}
._1_c00156{margin-left:-2.256000px;}
._3_c00156{margin-left:-1.200000px;}
._2_c00156{width:1.008000px;}
._5_c00156{width:55.674000px;}
._6_c00156{width:59.136000px;}
.fc0_c00156{color:rgb(35,31,32);}
.fs5_c00156{font-size:30.600000px;}
.fs6_c00156{font-size:36.000000px;}
.fs3_c00156{font-size:42.000000px;}
.fs0_c00156{font-size:48.000000px;}
.fs4_c00156{font-size:54.000000px;}
.fs2_c00156{font-size:57.000000px;}
.fs1_c00156{font-size:60.000000px;}
.y0_c00156{bottom:0.000000px;}
.yd_c00156{bottom:317.515050px;}
.yb_c00156{bottom:379.274100px;}
.ya_c00156{bottom:392.774100px;}
.y9_c00156{bottom:415.026000px;}
.y8_c00156{bottom:428.526000px;}
.y7_c00156{bottom:455.029950px;}
.y6_c00156{bottom:468.529950px;}
.y5_c00156{bottom:482.029950px;}
.y4_c00156{bottom:504.281850px;}
.y3_c00156{bottom:522.281850px;}
.y2_c00156{bottom:548.785800px;}
.yc_c00156{bottom:550.858800px;}
.y1a_c00156{bottom:806.955600px;}
.y18_c00156{bottom:850.838700px;}
.y17_c00156{bottom:864.338700px;}
.y16_c00156{bottom:886.590600px;}
.y15_c00156{bottom:900.090600px;}
.y14_c00156{bottom:926.594700px;}
.y13_c00156{bottom:940.094700px;}
.y12_c00156{bottom:953.594700px;}
.y11_c00156{bottom:975.846600px;}
.y10_c00156{bottom:993.846600px;}
.yf_c00156{bottom:1011.846600px;}
.ye_c00156{bottom:1038.350550px;}
.y19_c00156{bottom:1040.299350px;}
.y1_c00156{bottom:1093.600950px;}
.h8_c00156{height:25.200000px;}
.h7_c00156{height:30.282000px;}
.h5_c00156{height:34.080000px;}
.h2_c00156{height:39.264000px;}
.h3_c00156{height:39.984000px;}
.h4_c00156{height:43.260000px;}
.h6_c00156{height:43.740000px;}
.h1_c00156{height:1135.500000px;}
.h0_c00156{height:1135.506150px;}
.w0_c00156{width:893.950200px;}
.w1_c00156{width:894.000000px;}
.x0_c00156{left:0.000000px;}
.x4_c00156{left:128.626800px;}
.x5_c00156{left:141.382650px;}
.x7_c00156{left:145.634700px;}
.x2_c00156{left:188.061900px;}
.x3_c00156{left:190.513350px;}
.x6_c00156{left:321.680550px;}
.x1_c00156{left:800.165850px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls2_c00156{letter-spacing:-1.066667pt;}
.ls3_c00156{letter-spacing:-0.192000pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.426667pt;}
.ws3_c00156{word-spacing:-10.800000pt;}
.ws0_c00156{word-spacing:-9.685333pt;}
.ws1_c00156{word-spacing:-7.728000pt;}
.ws2_c00156{word-spacing:-5.766400pt;}
.ws4_c00156{word-spacing:0.000000pt;}
.ws5_c00156{word-spacing:6.272000pt;}
._0_c00156{margin-left:-2449.134400pt;}
._4_c00156{margin-left:-6.174933pt;}
._1_c00156{margin-left:-2.005333pt;}
._3_c00156{margin-left:-1.066667pt;}
._2_c00156{width:0.896000pt;}
._5_c00156{width:49.488000pt;}
._6_c00156{width:52.565333pt;}
.fs5_c00156{font-size:27.200000pt;}
.fs6_c00156{font-size:32.000000pt;}
.fs3_c00156{font-size:37.333333pt;}
.fs0_c00156{font-size:42.666667pt;}
.fs4_c00156{font-size:48.000000pt;}
.fs2_c00156{font-size:50.666667pt;}
.fs1_c00156{font-size:53.333333pt;}
.y0_c00156{bottom:0.000000pt;}
.yd_c00156{bottom:282.235600pt;}
.yb_c00156{bottom:337.132533pt;}
.ya_c00156{bottom:349.132533pt;}
.y9_c00156{bottom:368.912000pt;}
.y8_c00156{bottom:380.912000pt;}
.y7_c00156{bottom:404.471067pt;}
.y6_c00156{bottom:416.471067pt;}
.y5_c00156{bottom:428.471067pt;}
.y4_c00156{bottom:448.250533pt;}
.y3_c00156{bottom:464.250533pt;}
.y2_c00156{bottom:487.809600pt;}
.yc_c00156{bottom:489.652267pt;}
.y1a_c00156{bottom:717.293867pt;}
.y18_c00156{bottom:756.301067pt;}
.y17_c00156{bottom:768.301067pt;}
.y16_c00156{bottom:788.080533pt;}
.y15_c00156{bottom:800.080533pt;}
.y14_c00156{bottom:823.639733pt;}
.y13_c00156{bottom:835.639733pt;}
.y12_c00156{bottom:847.639733pt;}
.y11_c00156{bottom:867.419200pt;}
.y10_c00156{bottom:883.419200pt;}
.yf_c00156{bottom:899.419200pt;}
.ye_c00156{bottom:922.978267pt;}
.y19_c00156{bottom:924.710533pt;}
.y1_c00156{bottom:972.089733pt;}
.h8_c00156{height:22.400000pt;}
.h7_c00156{height:26.917333pt;}
.h5_c00156{height:30.293333pt;}
.h2_c00156{height:34.901333pt;}
.h3_c00156{height:35.541333pt;}
.h4_c00156{height:38.453333pt;}
.h6_c00156{height:38.880000pt;}
.h1_c00156{height:1009.333333pt;}
.h0_c00156{height:1009.338800pt;}
.w0_c00156{width:794.622400pt;}
.w1_c00156{width:794.666667pt;}
.x0_c00156{left:0.000000pt;}
.x4_c00156{left:114.334933pt;}
.x5_c00156{left:125.673467pt;}
.x7_c00156{left:129.453067pt;}
.x2_c00156{left:167.166133pt;}
.x3_c00156{left:169.345200pt;}
.x6_c00156{left:285.938267pt;}
.x1_c00156{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00157;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:1.067000;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00157{font-family:ff7_c00157;line-height:0.710000;font-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_c00157{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls1_c00157{letter-spacing:-1.200000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00157{word-spacing:-8.694000px;}
.ws2_c00157{word-spacing:-6.487200px;}
.ws3_c00157{word-spacing:0.000000px;}
.ws4_c00157{word-spacing:7.056000px;}
.ws0_c00157{word-spacing:1574.587200px;}
._3_c00157{margin-left:-7.042800px;}
._5_c00157{margin-left:-4.050000px;}
._0_c00157{margin-left:-2.112000px;}
._1_c00157{margin-left:-1.104000px;}
._2_c00157{width:2.016000px;}
._4_c00157{width:55.674000px;}
._6_c00157{width:59.136000px;}
.fc0_c00157{color:rgb(35,31,32);}
.fs5_c00157{font-size:30.600000px;}
.fs6_c00157{font-size:36.000000px;}
.fs3_c00157{font-size:42.000000px;}
.fs0_c00157{font-size:48.000000px;}
.fs4_c00157{font-size:54.000000px;}
.fs2_c00157{font-size:57.000000px;}
.fs1_c00157{font-size:60.000000px;}
.y0_c00157{bottom:0.000000px;}
.yd_c00157{bottom:317.358450px;}
.yb_c00157{bottom:379.117500px;}
.ya_c00157{bottom:392.617500px;}
.y9_c00157{bottom:414.869400px;}
.y8_c00157{bottom:428.369400px;}
.y7_c00157{bottom:454.873350px;}
.y6_c00157{bottom:468.373350px;}
.y5_c00157{bottom:481.873350px;}
.y4_c00157{bottom:504.125400px;}
.y3_c00157{bottom:522.125400px;}
.y2_c00157{bottom:548.629350px;}
.yc_c00157{bottom:551.003250px;}
.y18_c00157{bottom:806.955600px;}
.y17_c00157{bottom:868.838700px;}
.y16_c00157{bottom:882.338700px;}
.y15_c00157{bottom:904.590600px;}
.y14_c00157{bottom:918.090600px;}
.y13_c00157{bottom:944.594700px;}
.y12_c00157{bottom:958.094700px;}
.y11_c00157{bottom:971.594700px;}
.y10_c00157{bottom:993.846600px;}
.yf_c00157{bottom:1011.846600px;}
.ye_c00157{bottom:1038.350550px;}
.y19_c00157{bottom:1040.299350px;}
.y1_c00157{bottom:1093.600950px;}
.h7_c00157{height:25.200000px;}
.h6_c00157{height:30.282000px;}
.h4_c00157{height:34.080000px;}
.h2_c00157{height:39.264000px;}
.h3_c00157{height:43.260000px;}
.h5_c00157{height:43.740000px;}
.h1_c00157{height:1135.500000px;}
.h0_c00157{height:1135.506150px;}
.w0_c00157{width:893.950200px;}
.w1_c00157{width:894.000000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:77.603100px;}
.x4_c00157{left:424.016550px;}
.x2_c00157{left:599.532150px;}
.x3_c00157{left:612.288150px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls1_c00157{letter-spacing:-1.066667pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws1_c00157{word-spacing:-7.728000pt;}
.ws2_c00157{word-spacing:-5.766400pt;}
.ws3_c00157{word-spacing:0.000000pt;}
.ws4_c00157{word-spacing:6.272000pt;}
.ws0_c00157{word-spacing:1399.633067pt;}
._3_c00157{margin-left:-6.260267pt;}
._5_c00157{margin-left:-3.600000pt;}
._0_c00157{margin-left:-1.877333pt;}
._1_c00157{margin-left:-0.981333pt;}
._2_c00157{width:1.792000pt;}
._4_c00157{width:49.488000pt;}
._6_c00157{width:52.565333pt;}
.fs5_c00157{font-size:27.200000pt;}
.fs6_c00157{font-size:32.000000pt;}
.fs3_c00157{font-size:37.333333pt;}
.fs0_c00157{font-size:42.666667pt;}
.fs4_c00157{font-size:48.000000pt;}
.fs2_c00157{font-size:50.666667pt;}
.fs1_c00157{font-size:53.333333pt;}
.y0_c00157{bottom:0.000000pt;}
.yd_c00157{bottom:282.096400pt;}
.yb_c00157{bottom:336.993333pt;}
.ya_c00157{bottom:348.993333pt;}
.y9_c00157{bottom:368.772800pt;}
.y8_c00157{bottom:380.772800pt;}
.y7_c00157{bottom:404.331867pt;}
.y6_c00157{bottom:416.331867pt;}
.y5_c00157{bottom:428.331867pt;}
.y4_c00157{bottom:448.111467pt;}
.y3_c00157{bottom:464.111467pt;}
.y2_c00157{bottom:487.670533pt;}
.yc_c00157{bottom:489.780667pt;}
.y18_c00157{bottom:717.293867pt;}
.y17_c00157{bottom:772.301067pt;}
.y16_c00157{bottom:784.301067pt;}
.y15_c00157{bottom:804.080533pt;}
.y14_c00157{bottom:816.080533pt;}
.y13_c00157{bottom:839.639733pt;}
.y12_c00157{bottom:851.639733pt;}
.y11_c00157{bottom:863.639733pt;}
.y10_c00157{bottom:883.419200pt;}
.yf_c00157{bottom:899.419200pt;}
.ye_c00157{bottom:922.978267pt;}
.y19_c00157{bottom:924.710533pt;}
.y1_c00157{bottom:972.089733pt;}
.h7_c00157{height:22.400000pt;}
.h6_c00157{height:26.917333pt;}
.h4_c00157{height:30.293333pt;}
.h2_c00157{height:34.901333pt;}
.h3_c00157{height:38.453333pt;}
.h5_c00157{height:38.880000pt;}
.h1_c00157{height:1009.333333pt;}
.h0_c00157{height:1009.338800pt;}
.w0_c00157{width:794.622400pt;}
.w1_c00157{width:794.666667pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:68.980533pt;}
.x4_c00157{left:376.903600pt;}
.x2_c00157{left:532.917467pt;}
.x3_c00157{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:0.908000;font-style:normal;font-weight: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_c00158;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00158{font-family:ff7_c00158;line-height:1.067000;font-style:normal;font-weight: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_c00158;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00158{font-family:ff8_c00158;line-height:0.710000;font-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_c00158{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls2_c00158{letter-spacing:-2.160000px;}
.ls3_c00158{letter-spacing:-1.890000px;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00158{word-spacing:-10.896000px;}
.ws1_c00158{word-spacing:-8.694000px;}
.ws2_c00158{word-spacing:-6.487200px;}
.ws3_c00158{word-spacing:0.000000px;}
.ws4_c00158{word-spacing:7.056000px;}
._0_c00158{margin-left:-2755.276200px;}
._4_c00158{margin-left:-6.946800px;}
._1_c00158{margin-left:-2.256000px;}
._3_c00158{margin-left:-1.200000px;}
._2_c00158{width:1.008000px;}
._7_c00158{width:9.216000px;}
._5_c00158{width:55.674000px;}
._6_c00158{width:59.136000px;}
.fc0_c00158{color:rgb(35,31,32);}
.fs5_c00158{font-size:30.600000px;}
.fs6_c00158{font-size:36.000000px;}
.fs3_c00158{font-size:42.000000px;}
.fs0_c00158{font-size:48.000000px;}
.fs4_c00158{font-size:54.000000px;}
.fs2_c00158{font-size:57.000000px;}
.fs1_c00158{font-size:60.000000px;}
.y0_c00158{bottom:0.000000px;}
.yc_c00158{bottom:854.931150px;}
.yb_c00158{bottom:868.431150px;}
.ya_c00158{bottom:881.931150px;}
.y9_c00158{bottom:904.183050px;}
.y8_c00158{bottom:917.683050px;}
.y7_c00158{bottom:944.187000px;}
.y6_c00158{bottom:957.687000px;}
.y5_c00158{bottom:971.187000px;}
.y4_c00158{bottom:993.439050px;}
.y3_c00158{bottom:1011.439050px;}
.y2_c00158{bottom:1037.943000px;}
.yd_c00158{bottom:1040.104500px;}
.y1_c00158{bottom:1093.600950px;}
.h8_c00158{height:25.200000px;}
.h7_c00158{height:30.282000px;}
.h5_c00158{height:34.080000px;}
.h2_c00158{height:39.264000px;}
.h3_c00158{height:39.984000px;}
.h4_c00158{height:43.260000px;}
.h6_c00158{height:43.740000px;}
.h1_c00158{height:1135.500000px;}
.h0_c00158{height:1135.506150px;}
.w0_c00158{width:893.950200px;}
.w1_c00158{width:894.000000px;}
.x0_c00158{left:0.000000px;}
.x4_c00158{left:128.626800px;}
.x5_c00158{left:141.382650px;}
.x2_c00158{left:188.061900px;}
.x3_c00158{left:190.513350px;}
.x6_c00158{left:321.917850px;}
.x1_c00158{left:800.165850px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls2_c00158{letter-spacing:-1.920000pt;}
.ls3_c00158{letter-spacing:-1.680000pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:0.426667pt;}
.ws0_c00158{word-spacing:-9.685333pt;}
.ws1_c00158{word-spacing:-7.728000pt;}
.ws2_c00158{word-spacing:-5.766400pt;}
.ws3_c00158{word-spacing:0.000000pt;}
.ws4_c00158{word-spacing:6.272000pt;}
._0_c00158{margin-left:-2449.134400pt;}
._4_c00158{margin-left:-6.174933pt;}
._1_c00158{margin-left:-2.005333pt;}
._3_c00158{margin-left:-1.066667pt;}
._2_c00158{width:0.896000pt;}
._7_c00158{width:8.192000pt;}
._5_c00158{width:49.488000pt;}
._6_c00158{width:52.565333pt;}
.fs5_c00158{font-size:27.200000pt;}
.fs6_c00158{font-size:32.000000pt;}
.fs3_c00158{font-size:37.333333pt;}
.fs0_c00158{font-size:42.666667pt;}
.fs4_c00158{font-size:48.000000pt;}
.fs2_c00158{font-size:50.666667pt;}
.fs1_c00158{font-size:53.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.yc_c00158{bottom:759.938800pt;}
.yb_c00158{bottom:771.938800pt;}
.ya_c00158{bottom:783.938800pt;}
.y9_c00158{bottom:803.718267pt;}
.y8_c00158{bottom:815.718267pt;}
.y7_c00158{bottom:839.277333pt;}
.y6_c00158{bottom:851.277333pt;}
.y5_c00158{bottom:863.277333pt;}
.y4_c00158{bottom:883.056933pt;}
.y3_c00158{bottom:899.056933pt;}
.y2_c00158{bottom:922.616000pt;}
.yd_c00158{bottom:924.537333pt;}
.y1_c00158{bottom:972.089733pt;}
.h8_c00158{height:22.400000pt;}
.h7_c00158{height:26.917333pt;}
.h5_c00158{height:30.293333pt;}
.h2_c00158{height:34.901333pt;}
.h3_c00158{height:35.541333pt;}
.h4_c00158{height:38.453333pt;}
.h6_c00158{height:38.880000pt;}
.h1_c00158{height:1009.333333pt;}
.h0_c00158{height:1009.338800pt;}
.w0_c00158{width:794.622400pt;}
.w1_c00158{width:794.666667pt;}
.x0_c00158{left:0.000000pt;}
.x4_c00158{left:114.334933pt;}
.x5_c00158{left:125.673467pt;}
.x2_c00158{left:167.166133pt;}
.x3_c00158{left:169.345200pt;}
.x6_c00158{left:286.149200pt;}
.x1_c00158{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00159{word-spacing:0.000000px;}
.ws0_c00159{word-spacing:1574.587200px;}
._0_c00159{margin-left:-2.112000px;}
._1_c00159{margin-left:-1.104000px;}
.fc1_c00159{color:transparent;}
.fc0_c00159{color:rgb(35,31,32);}
.fs0_c00159{font-size:48.000000px;}
.fs1_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y1_c00159{bottom:1093.601100px;}
.y2_c00159{bottom:1145.517900px;}
.h2_c00159{height:39.264000px;}
.h3_c00159{height:51.120000px;}
.h1_c00159{height:1135.500000px;}
.h0_c00159{height:1135.506150px;}
.w0_c00159{width:893.950200px;}
.w1_c00159{width:894.000000px;}
.x2_c00159{left:-24.444150px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:77.603100px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws1_c00159{word-spacing:0.000000pt;}
.ws0_c00159{word-spacing:1399.633067pt;}
._0_c00159{margin-left:-1.877333pt;}
._1_c00159{margin-left:-0.981333pt;}
.fs0_c00159{font-size:42.666667pt;}
.fs1_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y1_c00159{bottom:972.089867pt;}
.y2_c00159{bottom:1018.238133pt;}
.h2_c00159{height:34.901333pt;}
.h3_c00159{height:45.440000pt;}
.h1_c00159{height:1009.333333pt;}
.h0_c00159{height:1009.338800pt;}
.w0_c00159{width:794.622400pt;}
.w1_c00159{width:794.666667pt;}
.x2_c00159{left:-21.728133pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14d23570bf6de5803c2053ac.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_20813eff8c550ddd5a6fc370.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:1.067000;font-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_c00160{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls7_c00160{letter-spacing:-2.160000px;}
.ls8_c00160{letter-spacing:-2.088000px;}
.ls6_c00160{letter-spacing:-0.864000px;}
.ls5_c00160{letter-spacing:-0.576000px;}
.ls2_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:0.480000px;}
.ls1_c00160{letter-spacing:1.080000px;}
.ls4_c00160{letter-spacing:1.440000px;}
.ls3_c00160{letter-spacing:1.800000px;}
.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:-34.416000px;}
.ws3_c00160{word-spacing:-14.400000px;}
.ws2_c00160{word-spacing:-14.328000px;}
.ws0_c00160{word-spacing:-10.896000px;}
.wse_c00160{word-spacing:-3.312000px;}
.ws13_c00160{word-spacing:-2.592000px;}
.ws18_c00160{word-spacing:-2.448000px;}
.ws17_c00160{word-spacing:-1.728000px;}
.wsb_c00160{word-spacing:-0.720000px;}
.ws12_c00160{word-spacing:-0.576000px;}
.wsa_c00160{word-spacing:-0.360000px;}
.ws14_c00160{word-spacing:-0.072000px;}
.ws4_c00160{word-spacing:0.000000px;}
.ws16_c00160{word-spacing:0.360000px;}
.wsc_c00160{word-spacing:0.576000px;}
.ws11_c00160{word-spacing:0.648000px;}
.ws5_c00160{word-spacing:1.080000px;}
.ws10_c00160{word-spacing:2.448000px;}
.wsf_c00160{word-spacing:2.520000px;}
.ws15_c00160{word-spacing:3.528000px;}
.ws8_c00160{word-spacing:3.888000px;}
.ws9_c00160{word-spacing:4.176000px;}
.ws6_c00160{word-spacing:5.112000px;}
.wsd_c00160{word-spacing:9.000000px;}
.ws7_c00160{word-spacing:18.720000px;}
._0_c00160{margin-left:-2755.276200px;}
._8_c00160{margin-left:-6.852000px;}
._6_c00160{margin-left:-5.112000px;}
._5_c00160{margin-left:-3.672000px;}
._1_c00160{margin-left:-2.256000px;}
._3_c00160{margin-left:-1.020000px;}
._2_c00160{width:1.008000px;}
._7_c00160{width:2.052000px;}
._4_c00160{width:3.264000px;}
.fc1_c00160{color:transparent;}
.fc0_c00160{color:rgb(35,31,32);}
.fs0_c00160{font-size:48.000000px;}
.fs1_c00160{font-size:72.000000px;}
.fs2_c00160{font-size:108.000000px;}
.fs4_c00160{font-size:144.000000px;}
.fs3_c00160{font-size:180.000000px;}
.y0_c00160{bottom:0.000000px;}
.y18_c00160{bottom:152.524650px;}
.y17_c00160{bottom:177.274650px;}
.y16_c00160{bottom:202.024650px;}
.y15_c00160{bottom:226.774650px;}
.y14_c00160{bottom:251.524650px;}
.y13_c00160{bottom:276.274650px;}
.y12_c00160{bottom:301.024650px;}
.y11_c00160{bottom:340.768650px;}
.y10_c00160{bottom:365.518650px;}
.yf_c00160{bottom:390.268650px;}
.ye_c00160{bottom:415.018650px;}
.yd_c00160{bottom:439.768650px;}
.yc_c00160{bottom:464.518650px;}
.yb_c00160{bottom:489.268650px;}
.ya_c00160{bottom:514.018650px;}
.y9_c00160{bottom:538.768650px;}
.y8_c00160{bottom:563.518650px;}
.y7_c00160{bottom:588.268650px;}
.y6_c00160{bottom:613.018650px;}
.y5_c00160{bottom:735.593850px;}
.y4_c00160{bottom:804.593850px;}
.y3_c00160{bottom:861.593850px;}
.y1_c00160{bottom:1093.600950px;}
.y2_c00160{bottom:1147.643700px;}
.h2_c00160{height:39.264000px;}
.h3_c00160{height:39.984000px;}
.h4_c00160{height:51.120000px;}
.h8_c00160{height:58.896000px;}
.h5_c00160{height:88.344000px;}
.h7_c00160{height:116.640000px;}
.h6_c00160{height:147.240000px;}
.h1_c00160{height:1135.500000px;}
.h0_c00160{height:1135.506150px;}
.w0_c00160{width:893.950200px;}
.w1_c00160{width:894.000000px;}
.x4_c00160{left:-28.696050px;}
.x0_c00160{left:0.000000px;}
.x6_c00160{left:128.626800px;}
.x2_c00160{left:188.061900px;}
.x3_c00160{left:190.513350px;}
.x5_c00160{left:596.343300px;}
.x1_c00160{left:800.165850px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls7_c00160{letter-spacing:-1.920000pt;}
.ls8_c00160{letter-spacing:-1.856000pt;}
.ls6_c00160{letter-spacing:-0.768000pt;}
.ls5_c00160{letter-spacing:-0.512000pt;}
.ls2_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:0.426667pt;}
.ls1_c00160{letter-spacing:0.960000pt;}
.ls4_c00160{letter-spacing:1.280000pt;}
.ls3_c00160{letter-spacing:1.600000pt;}
.ws1_c00160{word-spacing:-30.592000pt;}
.ws3_c00160{word-spacing:-12.800000pt;}
.ws2_c00160{word-spacing:-12.736000pt;}
.ws0_c00160{word-spacing:-9.685333pt;}
.wse_c00160{word-spacing:-2.944000pt;}
.ws13_c00160{word-spacing:-2.304000pt;}
.ws18_c00160{word-spacing:-2.176000pt;}
.ws17_c00160{word-spacing:-1.536000pt;}
.wsb_c00160{word-spacing:-0.640000pt;}
.ws12_c00160{word-spacing:-0.512000pt;}
.wsa_c00160{word-spacing:-0.320000pt;}
.ws14_c00160{word-spacing:-0.064000pt;}
.ws4_c00160{word-spacing:0.000000pt;}
.ws16_c00160{word-spacing:0.320000pt;}
.wsc_c00160{word-spacing:0.512000pt;}
.ws11_c00160{word-spacing:0.576000pt;}
.ws5_c00160{word-spacing:0.960000pt;}
.ws10_c00160{word-spacing:2.176000pt;}
.wsf_c00160{word-spacing:2.240000pt;}
.ws15_c00160{word-spacing:3.136000pt;}
.ws8_c00160{word-spacing:3.456000pt;}
.ws9_c00160{word-spacing:3.712000pt;}
.ws6_c00160{word-spacing:4.544000pt;}
.wsd_c00160{word-spacing:8.000000pt;}
.ws7_c00160{word-spacing:16.640000pt;}
._0_c00160{margin-left:-2449.134400pt;}
._8_c00160{margin-left:-6.090667pt;}
._6_c00160{margin-left:-4.544000pt;}
._5_c00160{margin-left:-3.264000pt;}
._1_c00160{margin-left:-2.005333pt;}
._3_c00160{margin-left:-0.906667pt;}
._2_c00160{width:0.896000pt;}
._7_c00160{width:1.824000pt;}
._4_c00160{width:2.901333pt;}
.fs0_c00160{font-size:42.666667pt;}
.fs1_c00160{font-size:64.000000pt;}
.fs2_c00160{font-size:96.000000pt;}
.fs4_c00160{font-size:128.000000pt;}
.fs3_c00160{font-size:160.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y18_c00160{bottom:135.577467pt;}
.y17_c00160{bottom:157.577467pt;}
.y16_c00160{bottom:179.577467pt;}
.y15_c00160{bottom:201.577467pt;}
.y14_c00160{bottom:223.577467pt;}
.y13_c00160{bottom:245.577467pt;}
.y12_c00160{bottom:267.577467pt;}
.y11_c00160{bottom:302.905467pt;}
.y10_c00160{bottom:324.905467pt;}
.yf_c00160{bottom:346.905467pt;}
.ye_c00160{bottom:368.905467pt;}
.yd_c00160{bottom:390.905467pt;}
.yc_c00160{bottom:412.905467pt;}
.yb_c00160{bottom:434.905467pt;}
.ya_c00160{bottom:456.905467pt;}
.y9_c00160{bottom:478.905467pt;}
.y8_c00160{bottom:500.905467pt;}
.y7_c00160{bottom:522.905467pt;}
.y6_c00160{bottom:544.905467pt;}
.y5_c00160{bottom:653.861200pt;}
.y4_c00160{bottom:715.194533pt;}
.y3_c00160{bottom:765.861200pt;}
.y1_c00160{bottom:972.089733pt;}
.y2_c00160{bottom:1020.127733pt;}
.h2_c00160{height:34.901333pt;}
.h3_c00160{height:35.541333pt;}
.h4_c00160{height:45.440000pt;}
.h8_c00160{height:52.352000pt;}
.h5_c00160{height:78.528000pt;}
.h7_c00160{height:103.680000pt;}
.h6_c00160{height:130.880000pt;}
.h1_c00160{height:1009.333333pt;}
.h0_c00160{height:1009.338800pt;}
.w0_c00160{width:794.622400pt;}
.w1_c00160{width:794.666667pt;}
.x4_c00160{left:-25.507600pt;}
.x0_c00160{left:0.000000pt;}
.x6_c00160{left:114.334933pt;}
.x2_c00160{left:167.166133pt;}
.x3_c00160{left:169.345200pt;}
.x5_c00160{left:530.082933pt;}
.x1_c00160{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00161;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00161{font-family:ff6_c00161;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00161;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00161{font-family:ff7_c00161;line-height:0.710000;font-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_c00161{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls4_c00161{letter-spacing:-1.200000px;}
.ls1_c00161{letter-spacing:-0.720000px;}
.ls2_c00161{letter-spacing:-0.630000px;}
.ls3_c00161{letter-spacing:-0.378000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00161{word-spacing:-8.694000px;}
.ws2_c00161{word-spacing:-6.487200px;}
.ws3_c00161{word-spacing:0.000000px;}
.ws5_c00161{word-spacing:0.378000px;}
.ws4_c00161{word-spacing:7.056000px;}
.ws0_c00161{word-spacing:1574.587200px;}
._3_c00161{margin-left:-7.042800px;}
._0_c00161{margin-left:-2.112000px;}
._1_c00161{margin-left:-1.104000px;}
._2_c00161{width:2.016000px;}
._6_c00161{width:7.776000px;}
._4_c00161{width:55.674000px;}
._5_c00161{width:59.136000px;}
.fc0_c00161{color:rgb(35,31,32);}
.fs5_c00161{font-size:30.600000px;}
.fs6_c00161{font-size:36.000000px;}
.fs3_c00161{font-size:42.000000px;}
.fs0_c00161{font-size:48.000000px;}
.fs4_c00161{font-size:54.000000px;}
.fs2_c00161{font-size:57.000000px;}
.fs1_c00161{font-size:60.000000px;}
.y0_c00161{bottom:0.000000px;}
.yd_c00161{bottom:348.132600px;}
.yc_c00161{bottom:361.632600px;}
.yb_c00161{bottom:375.132600px;}
.ya_c00161{bottom:397.384650px;}
.y9_c00161{bottom:410.884650px;}
.y8_c00161{bottom:437.388600px;}
.y7_c00161{bottom:450.888600px;}
.y6_c00161{bottom:464.388600px;}
.y5_c00161{bottom:486.640500px;}
.y4_c00161{bottom:504.640500px;}
.y3_c00161{bottom:522.640500px;}
.y2_c00161{bottom:549.144450px;}
.ye_c00161{bottom:551.323050px;}
.y1a_c00161{bottom:806.956950px;}
.y18_c00161{bottom:868.061700px;}
.y17_c00161{bottom:881.561700px;}
.y16_c00161{bottom:903.813750px;}
.y15_c00161{bottom:917.313750px;}
.y14_c00161{bottom:943.817700px;}
.y13_c00161{bottom:957.317700px;}
.y12_c00161{bottom:970.817700px;}
.y11_c00161{bottom:993.069750px;}
.y10_c00161{bottom:1011.069750px;}
.yf_c00161{bottom:1037.573700px;}
.y19_c00161{bottom:1040.299350px;}
.y1_c00161{bottom:1093.600950px;}
.h7_c00161{height:25.200000px;}
.h6_c00161{height:30.282000px;}
.h4_c00161{height:34.080000px;}
.h2_c00161{height:39.264000px;}
.h3_c00161{height:43.260000px;}
.h5_c00161{height:43.740000px;}
.h1_c00161{height:1135.500000px;}
.h0_c00161{height:1135.506150px;}
.w0_c00161{width:893.950200px;}
.w1_c00161{width:894.000000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:77.603100px;}
.x5_c00161{left:424.020600px;}
.x2_c00161{left:599.532150px;}
.x3_c00161{left:612.288150px;}
.x4_c00161{left:616.540050px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls4_c00161{letter-spacing:-1.066667pt;}
.ls1_c00161{letter-spacing:-0.640000pt;}
.ls2_c00161{letter-spacing:-0.560000pt;}
.ls3_c00161{letter-spacing:-0.336000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws1_c00161{word-spacing:-7.728000pt;}
.ws2_c00161{word-spacing:-5.766400pt;}
.ws3_c00161{word-spacing:0.000000pt;}
.ws5_c00161{word-spacing:0.336000pt;}
.ws4_c00161{word-spacing:6.272000pt;}
.ws0_c00161{word-spacing:1399.633067pt;}
._3_c00161{margin-left:-6.260267pt;}
._0_c00161{margin-left:-1.877333pt;}
._1_c00161{margin-left:-0.981333pt;}
._2_c00161{width:1.792000pt;}
._6_c00161{width:6.912000pt;}
._4_c00161{width:49.488000pt;}
._5_c00161{width:52.565333pt;}
.fs5_c00161{font-size:27.200000pt;}
.fs6_c00161{font-size:32.000000pt;}
.fs3_c00161{font-size:37.333333pt;}
.fs0_c00161{font-size:42.666667pt;}
.fs4_c00161{font-size:48.000000pt;}
.fs2_c00161{font-size:50.666667pt;}
.fs1_c00161{font-size:53.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.yd_c00161{bottom:309.451200pt;}
.yc_c00161{bottom:321.451200pt;}
.yb_c00161{bottom:333.451200pt;}
.ya_c00161{bottom:353.230800pt;}
.y9_c00161{bottom:365.230800pt;}
.y8_c00161{bottom:388.789867pt;}
.y7_c00161{bottom:400.789867pt;}
.y6_c00161{bottom:412.789867pt;}
.y5_c00161{bottom:432.569333pt;}
.y4_c00161{bottom:448.569333pt;}
.y3_c00161{bottom:464.569333pt;}
.y2_c00161{bottom:488.128400pt;}
.ye_c00161{bottom:490.064933pt;}
.y1a_c00161{bottom:717.295067pt;}
.y18_c00161{bottom:771.610400pt;}
.y17_c00161{bottom:783.610400pt;}
.y16_c00161{bottom:803.390000pt;}
.y15_c00161{bottom:815.390000pt;}
.y14_c00161{bottom:838.949067pt;}
.y13_c00161{bottom:850.949067pt;}
.y12_c00161{bottom:862.949067pt;}
.y11_c00161{bottom:882.728667pt;}
.y10_c00161{bottom:898.728667pt;}
.yf_c00161{bottom:922.287733pt;}
.y19_c00161{bottom:924.710533pt;}
.y1_c00161{bottom:972.089733pt;}
.h7_c00161{height:22.400000pt;}
.h6_c00161{height:26.917333pt;}
.h4_c00161{height:30.293333pt;}
.h2_c00161{height:34.901333pt;}
.h3_c00161{height:38.453333pt;}
.h5_c00161{height:38.880000pt;}
.h1_c00161{height:1009.333333pt;}
.h0_c00161{height:1009.338800pt;}
.w0_c00161{width:794.622400pt;}
.w1_c00161{width:794.666667pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:68.980533pt;}
.x5_c00161{left:376.907200pt;}
.x2_c00161{left:532.917467pt;}
.x3_c00161{left:544.256133pt;}
.x4_c00161{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00162;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00162{font-family:ff6_c00162;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00162;src:url('chunks/assets/font_a5480e71506894605daeffe7.woff2')format("woff");}.ff7_c00162{font-family:ff7_c00162;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00162;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00162{font-family:ff8_c00162;line-height:0.710000;font-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_c00162{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls4_c00162{letter-spacing:-1.200000px;}
.ls2_c00162{letter-spacing:-0.720000px;}
.ls3_c00162{letter-spacing:-0.630000px;}
.ls1_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00162{word-spacing:-10.896000px;}
.ws1_c00162{word-spacing:-8.694000px;}
.ws2_c00162{word-spacing:-6.487200px;}
.ws3_c00162{word-spacing:0.000000px;}
.ws4_c00162{word-spacing:7.056000px;}
._0_c00162{margin-left:-2755.276200px;}
._4_c00162{margin-left:-6.946800px;}
._1_c00162{margin-left:-2.256000px;}
._3_c00162{margin-left:-1.200000px;}
._2_c00162{width:1.008000px;}
._7_c00162{width:7.776000px;}
._5_c00162{width:55.674000px;}
._6_c00162{width:59.136000px;}
.fc0_c00162{color:rgb(35,31,32);}
.fs5_c00162{font-size:30.600000px;}
.fs6_c00162{font-size:36.000000px;}
.fs3_c00162{font-size:42.000000px;}
.fs0_c00162{font-size:48.000000px;}
.fs4_c00162{font-size:54.000000px;}
.fs2_c00162{font-size:57.000000px;}
.fs1_c00162{font-size:60.000000px;}
.y0_c00162{bottom:0.000000px;}
.y18_c00162{bottom:318.421500px;}
.y17_c00162{bottom:379.649700px;}
.y16_c00162{bottom:393.149700px;}
.y15_c00162{bottom:415.401750px;}
.y14_c00162{bottom:428.901750px;}
.y13_c00162{bottom:455.405700px;}
.y12_c00162{bottom:468.905700px;}
.y11_c00162{bottom:482.405700px;}
.y10_c00162{bottom:504.657600px;}
.yf_c00162{bottom:522.657600px;}
.ye_c00162{bottom:549.161550px;}
.y19_c00162{bottom:551.765250px;}
.yc_c00162{bottom:854.740800px;}
.yb_c00162{bottom:868.240800px;}
.ya_c00162{bottom:881.740800px;}
.y9_c00162{bottom:903.992850px;}
.y8_c00162{bottom:917.492850px;}
.y7_c00162{bottom:943.996800px;}
.y6_c00162{bottom:957.496800px;}
.y5_c00162{bottom:970.996800px;}
.y4_c00162{bottom:993.248700px;}
.y3_c00162{bottom:1011.248700px;}
.y2_c00162{bottom:1037.752800px;}
.yd_c00162{bottom:1040.405400px;}
.y1_c00162{bottom:1093.600950px;}
.h8_c00162{height:25.200000px;}
.h7_c00162{height:30.282000px;}
.h5_c00162{height:34.080000px;}
.h2_c00162{height:39.264000px;}
.h3_c00162{height:39.984000px;}
.h4_c00162{height:43.260000px;}
.h6_c00162{height:43.740000px;}
.h1_c00162{height:1135.500000px;}
.h0_c00162{height:1135.506150px;}
.w0_c00162{width:893.950200px;}
.w1_c00162{width:894.000000px;}
.x0_c00162{left:0.000000px;}
.x4_c00162{left:128.626800px;}
.x5_c00162{left:141.382650px;}
.x2_c00162{left:188.061900px;}
.x3_c00162{left:190.513350px;}
.x6_c00162{left:322.332000px;}
.x1_c00162{left:800.165850px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls4_c00162{letter-spacing:-1.066667pt;}
.ls2_c00162{letter-spacing:-0.640000pt;}
.ls3_c00162{letter-spacing:-0.560000pt;}
.ls1_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.426667pt;}
.ws0_c00162{word-spacing:-9.685333pt;}
.ws1_c00162{word-spacing:-7.728000pt;}
.ws2_c00162{word-spacing:-5.766400pt;}
.ws3_c00162{word-spacing:0.000000pt;}
.ws4_c00162{word-spacing:6.272000pt;}
._0_c00162{margin-left:-2449.134400pt;}
._4_c00162{margin-left:-6.174933pt;}
._1_c00162{margin-left:-2.005333pt;}
._3_c00162{margin-left:-1.066667pt;}
._2_c00162{width:0.896000pt;}
._7_c00162{width:6.912000pt;}
._5_c00162{width:49.488000pt;}
._6_c00162{width:52.565333pt;}
.fs5_c00162{font-size:27.200000pt;}
.fs6_c00162{font-size:32.000000pt;}
.fs3_c00162{font-size:37.333333pt;}
.fs0_c00162{font-size:42.666667pt;}
.fs4_c00162{font-size:48.000000pt;}
.fs2_c00162{font-size:50.666667pt;}
.fs1_c00162{font-size:53.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y18_c00162{bottom:283.041333pt;}
.y17_c00162{bottom:337.466400pt;}
.y16_c00162{bottom:349.466400pt;}
.y15_c00162{bottom:369.246000pt;}
.y14_c00162{bottom:381.246000pt;}
.y13_c00162{bottom:404.805067pt;}
.y12_c00162{bottom:416.805067pt;}
.y11_c00162{bottom:428.805067pt;}
.y10_c00162{bottom:448.584533pt;}
.yf_c00162{bottom:464.584533pt;}
.ye_c00162{bottom:488.143600pt;}
.y19_c00162{bottom:490.458000pt;}
.yc_c00162{bottom:759.769600pt;}
.yb_c00162{bottom:771.769600pt;}
.ya_c00162{bottom:783.769600pt;}
.y9_c00162{bottom:803.549200pt;}
.y8_c00162{bottom:815.549200pt;}
.y7_c00162{bottom:839.108267pt;}
.y6_c00162{bottom:851.108267pt;}
.y5_c00162{bottom:863.108267pt;}
.y4_c00162{bottom:882.887733pt;}
.y3_c00162{bottom:898.887733pt;}
.y2_c00162{bottom:922.446933pt;}
.yd_c00162{bottom:924.804800pt;}
.y1_c00162{bottom:972.089733pt;}
.h8_c00162{height:22.400000pt;}
.h7_c00162{height:26.917333pt;}
.h5_c00162{height:30.293333pt;}
.h2_c00162{height:34.901333pt;}
.h3_c00162{height:35.541333pt;}
.h4_c00162{height:38.453333pt;}
.h6_c00162{height:38.880000pt;}
.h1_c00162{height:1009.333333pt;}
.h0_c00162{height:1009.338800pt;}
.w0_c00162{width:794.622400pt;}
.w1_c00162{width:794.666667pt;}
.x0_c00162{left:0.000000pt;}
.x4_c00162{left:114.334933pt;}
.x5_c00162{left:125.673467pt;}
.x2_c00162{left:167.166133pt;}
.x3_c00162{left:169.345200pt;}
.x6_c00162{left:286.517333pt;}
.x1_c00162{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00163;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;line-height:1.067000;font-style:normal;font-weight: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_c00163;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00163{font-family:ff7_c00163;line-height:0.710000;font-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_c00163{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls1_c00163{letter-spacing:-0.720000px;}
.ls2_c00163{letter-spacing:-0.630000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00163{word-spacing:-8.694000px;}
.ws2_c00163{word-spacing:-6.487200px;}
.ws3_c00163{word-spacing:0.000000px;}
.ws4_c00163{word-spacing:7.056000px;}
.ws0_c00163{word-spacing:1574.587200px;}
._3_c00163{margin-left:-7.042800px;}
._0_c00163{margin-left:-2.112000px;}
._1_c00163{margin-left:-1.104000px;}
._2_c00163{width:2.016000px;}
._6_c00163{width:7.776000px;}
._4_c00163{width:55.674000px;}
._5_c00163{width:59.136000px;}
.fc0_c00163{color:rgb(35,31,32);}
.fs5_c00163{font-size:30.600000px;}
.fs6_c00163{font-size:36.000000px;}
.fs3_c00163{font-size:42.000000px;}
.fs0_c00163{font-size:48.000000px;}
.fs4_c00163{font-size:54.000000px;}
.fs2_c00163{font-size:57.000000px;}
.fs1_c00163{font-size:60.000000px;}
.y0_c00163{bottom:0.000000px;}
.yc_c00163{bottom:366.042600px;}
.yb_c00163{bottom:379.542600px;}
.ya_c00163{bottom:393.042600px;}
.y9_c00163{bottom:415.294650px;}
.y8_c00163{bottom:428.794650px;}
.y7_c00163{bottom:455.298600px;}
.y6_c00163{bottom:468.798600px;}
.y5_c00163{bottom:482.298600px;}
.y4_c00163{bottom:504.550500px;}
.y3_c00163{bottom:522.550500px;}
.y2_c00163{bottom:549.054450px;}
.yd_c00163{bottom:551.323050px;}
.y18_c00163{bottom:854.488350px;}
.y17_c00163{bottom:867.988350px;}
.y16_c00163{bottom:881.488350px;}
.y15_c00163{bottom:903.740250px;}
.y14_c00163{bottom:917.240250px;}
.y13_c00163{bottom:943.744350px;}
.y12_c00163{bottom:957.244350px;}
.y11_c00163{bottom:970.744350px;}
.y10_c00163{bottom:992.996250px;}
.yf_c00163{bottom:1010.996250px;}
.ye_c00163{bottom:1037.500200px;}
.y19_c00163{bottom:1040.600550px;}
.y1_c00163{bottom:1093.601100px;}
.h7_c00163{height:25.200000px;}
.h6_c00163{height:30.282000px;}
.h4_c00163{height:34.080000px;}
.h2_c00163{height:39.264000px;}
.h3_c00163{height:43.260000px;}
.h5_c00163{height:43.740000px;}
.h1_c00163{height:1135.500000px;}
.h0_c00163{height:1135.506150px;}
.w0_c00163{width:893.950200px;}
.w1_c00163{width:894.000000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:77.603100px;}
.x4_c00163{left:424.138500px;}
.x2_c00163{left:599.532150px;}
.x3_c00163{left:612.288150px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls1_c00163{letter-spacing:-0.640000pt;}
.ls2_c00163{letter-spacing:-0.560000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws1_c00163{word-spacing:-7.728000pt;}
.ws2_c00163{word-spacing:-5.766400pt;}
.ws3_c00163{word-spacing:0.000000pt;}
.ws4_c00163{word-spacing:6.272000pt;}
.ws0_c00163{word-spacing:1399.633067pt;}
._3_c00163{margin-left:-6.260267pt;}
._0_c00163{margin-left:-1.877333pt;}
._1_c00163{margin-left:-0.981333pt;}
._2_c00163{width:1.792000pt;}
._6_c00163{width:6.912000pt;}
._4_c00163{width:49.488000pt;}
._5_c00163{width:52.565333pt;}
.fs5_c00163{font-size:27.200000pt;}
.fs6_c00163{font-size:32.000000pt;}
.fs3_c00163{font-size:37.333333pt;}
.fs0_c00163{font-size:42.666667pt;}
.fs4_c00163{font-size:48.000000pt;}
.fs2_c00163{font-size:50.666667pt;}
.fs1_c00163{font-size:53.333333pt;}
.y0_c00163{bottom:0.000000pt;}
.yc_c00163{bottom:325.371200pt;}
.yb_c00163{bottom:337.371200pt;}
.ya_c00163{bottom:349.371200pt;}
.y9_c00163{bottom:369.150800pt;}
.y8_c00163{bottom:381.150800pt;}
.y7_c00163{bottom:404.709867pt;}
.y6_c00163{bottom:416.709867pt;}
.y5_c00163{bottom:428.709867pt;}
.y4_c00163{bottom:448.489333pt;}
.y3_c00163{bottom:464.489333pt;}
.y2_c00163{bottom:488.048400pt;}
.yd_c00163{bottom:490.064933pt;}
.y18_c00163{bottom:759.545200pt;}
.y17_c00163{bottom:771.545200pt;}
.y16_c00163{bottom:783.545200pt;}
.y15_c00163{bottom:803.324667pt;}
.y14_c00163{bottom:815.324667pt;}
.y13_c00163{bottom:838.883867pt;}
.y12_c00163{bottom:850.883867pt;}
.y11_c00163{bottom:862.883867pt;}
.y10_c00163{bottom:882.663333pt;}
.yf_c00163{bottom:898.663333pt;}
.ye_c00163{bottom:922.222400pt;}
.y19_c00163{bottom:924.978267pt;}
.y1_c00163{bottom:972.089867pt;}
.h7_c00163{height:22.400000pt;}
.h6_c00163{height:26.917333pt;}
.h4_c00163{height:30.293333pt;}
.h2_c00163{height:34.901333pt;}
.h3_c00163{height:38.453333pt;}
.h5_c00163{height:38.880000pt;}
.h1_c00163{height:1009.333333pt;}
.h0_c00163{height:1009.338800pt;}
.w0_c00163{width:794.622400pt;}
.w1_c00163{width:794.666667pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:68.980533pt;}
.x4_c00163{left:377.012000pt;}
.x2_c00163{left:532.917467pt;}
.x3_c00163{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00164;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00164{font-family:ff6_c00164;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00164;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00164{font-family:ff7_c00164;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00164;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00164{font-family:ff8_c00164;line-height:0.710000;font-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_c00164{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls2_c00164{letter-spacing:-0.720000px;}
.ls3_c00164{letter-spacing:-0.630000px;}
.ls1_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00164{word-spacing:-10.896000px;}
.ws1_c00164{word-spacing:-8.694000px;}
.ws2_c00164{word-spacing:-6.487200px;}
.ws3_c00164{word-spacing:0.000000px;}
.ws4_c00164{word-spacing:7.056000px;}
._0_c00164{margin-left:-2755.276200px;}
._4_c00164{margin-left:-6.946800px;}
._6_c00164{margin-left:-5.022000px;}
._1_c00164{margin-left:-2.256000px;}
._3_c00164{margin-left:-1.200000px;}
._2_c00164{width:1.008000px;}
._8_c00164{width:7.776000px;}
._5_c00164{width:55.674000px;}
._7_c00164{width:59.136000px;}
.fc0_c00164{color:rgb(35,31,32);}
.fs5_c00164{font-size:30.600000px;}
.fs6_c00164{font-size:36.000000px;}
.fs3_c00164{font-size:42.000000px;}
.fs0_c00164{font-size:48.000000px;}
.fs4_c00164{font-size:54.000000px;}
.fs2_c00164{font-size:57.000000px;}
.fs1_c00164{font-size:60.000000px;}
.y0_c00164{bottom:0.000000px;}
.y19_c00164{bottom:348.239100px;}
.y18_c00164{bottom:361.739100px;}
.y17_c00164{bottom:375.239100px;}
.y16_c00164{bottom:397.491150px;}
.y15_c00164{bottom:410.991150px;}
.y14_c00164{bottom:437.494950px;}
.y13_c00164{bottom:450.994950px;}
.y12_c00164{bottom:464.494950px;}
.y11_c00164{bottom:486.747000px;}
.y10_c00164{bottom:504.747000px;}
.yf_c00164{bottom:522.747000px;}
.ye_c00164{bottom:549.250950px;}
.y1a_c00164{bottom:551.625000px;}
.yc_c00164{bottom:854.913450px;}
.yb_c00164{bottom:868.413450px;}
.ya_c00164{bottom:881.913450px;}
.y9_c00164{bottom:904.165500px;}
.y8_c00164{bottom:917.665500px;}
.y7_c00164{bottom:944.169450px;}
.y6_c00164{bottom:957.669450px;}
.y5_c00164{bottom:971.169450px;}
.y4_c00164{bottom:993.421500px;}
.y3_c00164{bottom:1011.421500px;}
.y2_c00164{bottom:1037.925450px;}
.yd_c00164{bottom:1040.600550px;}
.y1_c00164{bottom:1093.601100px;}
.h8_c00164{height:25.200000px;}
.h7_c00164{height:30.282000px;}
.h5_c00164{height:34.080000px;}
.h2_c00164{height:39.264000px;}
.h3_c00164{height:39.984000px;}
.h4_c00164{height:43.260000px;}
.h6_c00164{height:43.740000px;}
.h1_c00164{height:1135.500000px;}
.h0_c00164{height:1135.506150px;}
.w0_c00164{width:893.950200px;}
.w1_c00164{width:894.000000px;}
.x0_c00164{left:0.000000px;}
.x4_c00164{left:128.626800px;}
.x5_c00164{left:141.382650px;}
.x7_c00164{left:145.634700px;}
.x2_c00164{left:188.061900px;}
.x3_c00164{left:190.513350px;}
.x6_c00164{left:321.801150px;}
.x1_c00164{left:800.165850px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls2_c00164{letter-spacing:-0.640000pt;}
.ls3_c00164{letter-spacing:-0.560000pt;}
.ls1_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.426667pt;}
.ws0_c00164{word-spacing:-9.685333pt;}
.ws1_c00164{word-spacing:-7.728000pt;}
.ws2_c00164{word-spacing:-5.766400pt;}
.ws3_c00164{word-spacing:0.000000pt;}
.ws4_c00164{word-spacing:6.272000pt;}
._0_c00164{margin-left:-2449.134400pt;}
._4_c00164{margin-left:-6.174933pt;}
._6_c00164{margin-left:-4.464000pt;}
._1_c00164{margin-left:-2.005333pt;}
._3_c00164{margin-left:-1.066667pt;}
._2_c00164{width:0.896000pt;}
._8_c00164{width:6.912000pt;}
._5_c00164{width:49.488000pt;}
._7_c00164{width:52.565333pt;}
.fs5_c00164{font-size:27.200000pt;}
.fs6_c00164{font-size:32.000000pt;}
.fs3_c00164{font-size:37.333333pt;}
.fs0_c00164{font-size:42.666667pt;}
.fs4_c00164{font-size:48.000000pt;}
.fs2_c00164{font-size:50.666667pt;}
.fs1_c00164{font-size:53.333333pt;}
.y0_c00164{bottom:0.000000pt;}
.y19_c00164{bottom:309.545867pt;}
.y18_c00164{bottom:321.545867pt;}
.y17_c00164{bottom:333.545867pt;}
.y16_c00164{bottom:353.325467pt;}
.y15_c00164{bottom:365.325467pt;}
.y14_c00164{bottom:388.884400pt;}
.y13_c00164{bottom:400.884400pt;}
.y12_c00164{bottom:412.884400pt;}
.y11_c00164{bottom:432.664000pt;}
.y10_c00164{bottom:448.664000pt;}
.yf_c00164{bottom:464.664000pt;}
.ye_c00164{bottom:488.223067pt;}
.y1a_c00164{bottom:490.333333pt;}
.yc_c00164{bottom:759.923067pt;}
.yb_c00164{bottom:771.923067pt;}
.ya_c00164{bottom:783.923067pt;}
.y9_c00164{bottom:803.702667pt;}
.y8_c00164{bottom:815.702667pt;}
.y7_c00164{bottom:839.261733pt;}
.y6_c00164{bottom:851.261733pt;}
.y5_c00164{bottom:863.261733pt;}
.y4_c00164{bottom:883.041333pt;}
.y3_c00164{bottom:899.041333pt;}
.y2_c00164{bottom:922.600400pt;}
.yd_c00164{bottom:924.978267pt;}
.y1_c00164{bottom:972.089867pt;}
.h8_c00164{height:22.400000pt;}
.h7_c00164{height:26.917333pt;}
.h5_c00164{height:30.293333pt;}
.h2_c00164{height:34.901333pt;}
.h3_c00164{height:35.541333pt;}
.h4_c00164{height:38.453333pt;}
.h6_c00164{height:38.880000pt;}
.h1_c00164{height:1009.333333pt;}
.h0_c00164{height:1009.338800pt;}
.w0_c00164{width:794.622400pt;}
.w1_c00164{width:794.666667pt;}
.x0_c00164{left:0.000000pt;}
.x4_c00164{left:114.334933pt;}
.x5_c00164{left:125.673467pt;}
.x7_c00164{left:129.453067pt;}
.x2_c00164{left:167.166133pt;}
.x3_c00164{left:169.345200pt;}
.x6_c00164{left:286.045467pt;}
.x1_c00164{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00165;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:1.067000;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00165{font-family:ff7_c00165;line-height:0.710000;font-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_c00165{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls1_c00165{letter-spacing:-0.810000px;}
.ls2_c00165{letter-spacing:-0.720000px;}
.ls3_c00165{letter-spacing:-0.630000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00165{word-spacing:-12.366000px;}
.ws1_c00165{word-spacing:-8.694000px;}
.ws2_c00165{word-spacing:-6.487200px;}
.ws4_c00165{word-spacing:0.000000px;}
.ws5_c00165{word-spacing:7.056000px;}
.ws0_c00165{word-spacing:1574.587200px;}
._3_c00165{margin-left:-7.042800px;}
._0_c00165{margin-left:-2.112000px;}
._1_c00165{margin-left:-1.104000px;}
._2_c00165{width:2.016000px;}
._6_c00165{width:7.776000px;}
._4_c00165{width:56.484000px;}
._5_c00165{width:59.136000px;}
.fc0_c00165{color:rgb(35,31,32);}
.fs5_c00165{font-size:30.600000px;}
.fs6_c00165{font-size:36.000000px;}
.fs3_c00165{font-size:42.000000px;}
.fs0_c00165{font-size:48.000000px;}
.fs4_c00165{font-size:54.000000px;}
.fs2_c00165{font-size:57.000000px;}
.fs1_c00165{font-size:60.000000px;}
.y0_c00165{bottom:0.000000px;}
.yc_c00165{bottom:366.060600px;}
.yb_c00165{bottom:379.560600px;}
.ya_c00165{bottom:393.060600px;}
.y9_c00165{bottom:415.312500px;}
.y8_c00165{bottom:428.812500px;}
.y7_c00165{bottom:455.316450px;}
.y6_c00165{bottom:468.816450px;}
.y5_c00165{bottom:482.316450px;}
.y4_c00165{bottom:504.568500px;}
.y3_c00165{bottom:522.568500px;}
.y2_c00165{bottom:549.072300px;}
.yd_c00165{bottom:551.446350px;}
.y19_c00165{bottom:836.913450px;}
.y18_c00165{bottom:850.413450px;}
.y17_c00165{bottom:863.913450px;}
.y16_c00165{bottom:886.165500px;}
.y15_c00165{bottom:899.665500px;}
.y14_c00165{bottom:926.169450px;}
.y13_c00165{bottom:939.669450px;}
.y12_c00165{bottom:953.169450px;}
.y11_c00165{bottom:975.421500px;}
.y10_c00165{bottom:993.421500px;}
.yf_c00165{bottom:1011.421500px;}
.ye_c00165{bottom:1037.925450px;}
.y1a_c00165{bottom:1040.299500px;}
.y1_c00165{bottom:1093.601100px;}
.h7_c00165{height:25.200000px;}
.h6_c00165{height:30.282000px;}
.h4_c00165{height:34.080000px;}
.h2_c00165{height:39.264000px;}
.h3_c00165{height:43.260000px;}
.h5_c00165{height:43.740000px;}
.h1_c00165{height:1135.500000px;}
.h0_c00165{height:1135.506150px;}
.w0_c00165{width:893.950200px;}
.w1_c00165{width:894.000000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:77.603100px;}
.x4_c00165{left:424.138500px;}
.x2_c00165{left:599.532150px;}
.x3_c00165{left:612.288150px;}
.x5_c00165{left:616.540050px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls1_c00165{letter-spacing:-0.720000pt;}
.ls2_c00165{letter-spacing:-0.640000pt;}
.ls3_c00165{letter-spacing:-0.560000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws3_c00165{word-spacing:-10.992000pt;}
.ws1_c00165{word-spacing:-7.728000pt;}
.ws2_c00165{word-spacing:-5.766400pt;}
.ws4_c00165{word-spacing:0.000000pt;}
.ws5_c00165{word-spacing:6.272000pt;}
.ws0_c00165{word-spacing:1399.633067pt;}
._3_c00165{margin-left:-6.260267pt;}
._0_c00165{margin-left:-1.877333pt;}
._1_c00165{margin-left:-0.981333pt;}
._2_c00165{width:1.792000pt;}
._6_c00165{width:6.912000pt;}
._4_c00165{width:50.208000pt;}
._5_c00165{width:52.565333pt;}
.fs5_c00165{font-size:27.200000pt;}
.fs6_c00165{font-size:32.000000pt;}
.fs3_c00165{font-size:37.333333pt;}
.fs0_c00165{font-size:42.666667pt;}
.fs4_c00165{font-size:48.000000pt;}
.fs2_c00165{font-size:50.666667pt;}
.fs1_c00165{font-size:53.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.yc_c00165{bottom:325.387200pt;}
.yb_c00165{bottom:337.387200pt;}
.ya_c00165{bottom:349.387200pt;}
.y9_c00165{bottom:369.166667pt;}
.y8_c00165{bottom:381.166667pt;}
.y7_c00165{bottom:404.725733pt;}
.y6_c00165{bottom:416.725733pt;}
.y5_c00165{bottom:428.725733pt;}
.y4_c00165{bottom:448.505333pt;}
.y3_c00165{bottom:464.505333pt;}
.y2_c00165{bottom:488.064267pt;}
.yd_c00165{bottom:490.174533pt;}
.y19_c00165{bottom:743.923067pt;}
.y18_c00165{bottom:755.923067pt;}
.y17_c00165{bottom:767.923067pt;}
.y16_c00165{bottom:787.702667pt;}
.y15_c00165{bottom:799.702667pt;}
.y14_c00165{bottom:823.261733pt;}
.y13_c00165{bottom:835.261733pt;}
.y12_c00165{bottom:847.261733pt;}
.y11_c00165{bottom:867.041333pt;}
.y10_c00165{bottom:883.041333pt;}
.yf_c00165{bottom:899.041333pt;}
.ye_c00165{bottom:922.600400pt;}
.y1a_c00165{bottom:924.710667pt;}
.y1_c00165{bottom:972.089867pt;}
.h7_c00165{height:22.400000pt;}
.h6_c00165{height:26.917333pt;}
.h4_c00165{height:30.293333pt;}
.h2_c00165{height:34.901333pt;}
.h3_c00165{height:38.453333pt;}
.h5_c00165{height:38.880000pt;}
.h1_c00165{height:1009.333333pt;}
.h0_c00165{height:1009.338800pt;}
.w0_c00165{width:794.622400pt;}
.w1_c00165{width:794.666667pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:68.980533pt;}
.x4_c00165{left:377.012000pt;}
.x2_c00165{left:532.917467pt;}
.x3_c00165{left:544.256133pt;}
.x5_c00165{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:0.908000;font-style:normal;font-weight: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_c00166;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00166{font-family:ff7_c00166;line-height:1.067000;font-style:normal;font-weight: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_c00166;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00166{font-family:ff8_c00166;line-height:0.710000;font-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_c00166{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls2_c00166{letter-spacing:-0.720000px;}
.ls3_c00166{letter-spacing:-0.630000px;}
.ls1_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.480000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:-10.896000px;}
.ws1_c00166{word-spacing:-8.694000px;}
.ws2_c00166{word-spacing:-6.487200px;}
.ws3_c00166{word-spacing:0.000000px;}
.ws4_c00166{word-spacing:7.056000px;}
._0_c00166{margin-left:-2755.276200px;}
._4_c00166{margin-left:-6.946800px;}
._1_c00166{margin-left:-2.256000px;}
._3_c00166{margin-left:-1.200000px;}
._2_c00166{width:1.008000px;}
._7_c00166{width:7.776000px;}
._5_c00166{width:55.674000px;}
._6_c00166{width:59.136000px;}
.fc0_c00166{color:rgb(35,31,32);}
.fs5_c00166{font-size:30.600000px;}
.fs6_c00166{font-size:36.000000px;}
.fs3_c00166{font-size:42.000000px;}
.fs0_c00166{font-size:48.000000px;}
.fs4_c00166{font-size:54.000000px;}
.fs2_c00166{font-size:57.000000px;}
.fs1_c00166{font-size:60.000000px;}
.y0_c00166{bottom:0.000000px;}
.y18_c00166{bottom:365.299350px;}
.y17_c00166{bottom:378.799350px;}
.y16_c00166{bottom:392.299350px;}
.y15_c00166{bottom:414.551400px;}
.y14_c00166{bottom:428.051400px;}
.y13_c00166{bottom:454.555350px;}
.y12_c00166{bottom:468.055350px;}
.y11_c00166{bottom:481.555350px;}
.y10_c00166{bottom:503.807250px;}
.yf_c00166{bottom:521.807250px;}
.ye_c00166{bottom:548.311200px;}
.y19_c00166{bottom:550.897800px;}
.yc_c00166{bottom:854.913450px;}
.yb_c00166{bottom:868.413450px;}
.ya_c00166{bottom:881.913450px;}
.y9_c00166{bottom:904.165500px;}
.y8_c00166{bottom:917.665500px;}
.y7_c00166{bottom:944.169450px;}
.y6_c00166{bottom:957.669450px;}
.y5_c00166{bottom:971.169450px;}
.y4_c00166{bottom:993.421350px;}
.y3_c00166{bottom:1011.421350px;}
.y2_c00166{bottom:1037.925300px;}
.yd_c00166{bottom:1040.299350px;}
.y1_c00166{bottom:1093.600950px;}
.h8_c00166{height:25.200000px;}
.h7_c00166{height:30.282000px;}
.h5_c00166{height:34.080000px;}
.h2_c00166{height:39.264000px;}
.h3_c00166{height:39.984000px;}
.h4_c00166{height:43.260000px;}
.h6_c00166{height:43.740000px;}
.h1_c00166{height:1135.500000px;}
.h0_c00166{height:1135.506150px;}
.w0_c00166{width:893.950200px;}
.w1_c00166{width:894.000000px;}
.x0_c00166{left:0.000000px;}
.x4_c00166{left:128.626800px;}
.x5_c00166{left:141.382650px;}
.x2_c00166{left:188.061900px;}
.x3_c00166{left:190.513350px;}
.x6_c00166{left:321.801150px;}
.x1_c00166{left:800.165850px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls2_c00166{letter-spacing:-0.640000pt;}
.ls3_c00166{letter-spacing:-0.560000pt;}
.ls1_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.426667pt;}
.ws0_c00166{word-spacing:-9.685333pt;}
.ws1_c00166{word-spacing:-7.728000pt;}
.ws2_c00166{word-spacing:-5.766400pt;}
.ws3_c00166{word-spacing:0.000000pt;}
.ws4_c00166{word-spacing:6.272000pt;}
._0_c00166{margin-left:-2449.134400pt;}
._4_c00166{margin-left:-6.174933pt;}
._1_c00166{margin-left:-2.005333pt;}
._3_c00166{margin-left:-1.066667pt;}
._2_c00166{width:0.896000pt;}
._7_c00166{width:6.912000pt;}
._5_c00166{width:49.488000pt;}
._6_c00166{width:52.565333pt;}
.fs5_c00166{font-size:27.200000pt;}
.fs6_c00166{font-size:32.000000pt;}
.fs3_c00166{font-size:37.333333pt;}
.fs0_c00166{font-size:42.666667pt;}
.fs4_c00166{font-size:48.000000pt;}
.fs2_c00166{font-size:50.666667pt;}
.fs1_c00166{font-size:53.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y18_c00166{bottom:324.710533pt;}
.y17_c00166{bottom:336.710533pt;}
.y16_c00166{bottom:348.710533pt;}
.y15_c00166{bottom:368.490133pt;}
.y14_c00166{bottom:380.490133pt;}
.y13_c00166{bottom:404.049200pt;}
.y12_c00166{bottom:416.049200pt;}
.y11_c00166{bottom:428.049200pt;}
.y10_c00166{bottom:447.828667pt;}
.yf_c00166{bottom:463.828667pt;}
.ye_c00166{bottom:487.387733pt;}
.y19_c00166{bottom:489.686933pt;}
.yc_c00166{bottom:759.923067pt;}
.yb_c00166{bottom:771.923067pt;}
.ya_c00166{bottom:783.923067pt;}
.y9_c00166{bottom:803.702667pt;}
.y8_c00166{bottom:815.702667pt;}
.y7_c00166{bottom:839.261733pt;}
.y6_c00166{bottom:851.261733pt;}
.y5_c00166{bottom:863.261733pt;}
.y4_c00166{bottom:883.041200pt;}
.y3_c00166{bottom:899.041200pt;}
.y2_c00166{bottom:922.600267pt;}
.yd_c00166{bottom:924.710533pt;}
.y1_c00166{bottom:972.089733pt;}
.h8_c00166{height:22.400000pt;}
.h7_c00166{height:26.917333pt;}
.h5_c00166{height:30.293333pt;}
.h2_c00166{height:34.901333pt;}
.h3_c00166{height:35.541333pt;}
.h4_c00166{height:38.453333pt;}
.h6_c00166{height:38.880000pt;}
.h1_c00166{height:1009.333333pt;}
.h0_c00166{height:1009.338800pt;}
.w0_c00166{width:794.622400pt;}
.w1_c00166{width:794.666667pt;}
.x0_c00166{left:0.000000pt;}
.x4_c00166{left:114.334933pt;}
.x5_c00166{left:125.673467pt;}
.x2_c00166{left:167.166133pt;}
.x3_c00166{left:169.345200pt;}
.x6_c00166{left:286.045467pt;}
.x1_c00166{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00167;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00167{font-family:ff6_c00167;line-height:1.067000;font-style:normal;font-weight: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_c00167;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00167{font-family:ff7_c00167;line-height:0.710000;font-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_c00167{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls2_c00167{letter-spacing:-1.200000px;}
.ls3_c00167{letter-spacing:-0.720000px;}
.ls1_c00167{letter-spacing:-0.216000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00167{word-spacing:-8.694000px;}
.ws2_c00167{word-spacing:-6.487200px;}
.ws3_c00167{word-spacing:0.000000px;}
.ws5_c00167{word-spacing:0.216000px;}
.ws4_c00167{word-spacing:7.056000px;}
.ws0_c00167{word-spacing:1574.587200px;}
._3_c00167{margin-left:-7.042800px;}
._5_c00167{margin-left:-3.888000px;}
._0_c00167{margin-left:-2.112000px;}
._1_c00167{margin-left:-1.104000px;}
._2_c00167{width:2.016000px;}
._7_c00167{width:7.776000px;}
._4_c00167{width:55.674000px;}
._6_c00167{width:59.136000px;}
.fc0_c00167{color:rgb(35,31,32);}
.fs5_c00167{font-size:30.600000px;}
.fs6_c00167{font-size:36.000000px;}
.fs3_c00167{font-size:42.000000px;}
.fs0_c00167{font-size:48.000000px;}
.fs4_c00167{font-size:54.000000px;}
.fs2_c00167{font-size:57.000000px;}
.fs1_c00167{font-size:60.000000px;}
.y0_c00167{bottom:0.000000px;}
.yd_c00167{bottom:317.979150px;}
.yb_c00167{bottom:379.649700px;}
.ya_c00167{bottom:393.149700px;}
.y9_c00167{bottom:415.401750px;}
.y8_c00167{bottom:428.901750px;}
.y7_c00167{bottom:455.405700px;}
.y6_c00167{bottom:468.905700px;}
.y5_c00167{bottom:482.405700px;}
.y4_c00167{bottom:504.657600px;}
.y3_c00167{bottom:522.657600px;}
.y2_c00167{bottom:549.161550px;}
.yc_c00167{bottom:551.323050px;}
.y1a_c00167{bottom:806.742900px;}
.y18_c00167{bottom:849.350400px;}
.y17_c00167{bottom:862.850400px;}
.y16_c00167{bottom:885.102450px;}
.y15_c00167{bottom:898.602450px;}
.y14_c00167{bottom:925.106400px;}
.y13_c00167{bottom:938.606400px;}
.y12_c00167{bottom:952.106400px;}
.y11_c00167{bottom:974.358300px;}
.y10_c00167{bottom:992.358300px;}
.yf_c00167{bottom:1010.358300px;}
.ye_c00167{bottom:1036.862250px;}
.y19_c00167{bottom:1040.299350px;}
.y1_c00167{bottom:1093.600950px;}
.h7_c00167{height:25.200000px;}
.h6_c00167{height:30.282000px;}
.h4_c00167{height:34.080000px;}
.h2_c00167{height:39.264000px;}
.h3_c00167{height:43.260000px;}
.h5_c00167{height:43.740000px;}
.h1_c00167{height:1135.500000px;}
.h0_c00167{height:1135.506150px;}
.w0_c00167{width:893.950200px;}
.w1_c00167{width:894.000000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:77.603100px;}
.x4_c00167{left:424.138500px;}
.x2_c00167{left:599.532150px;}
.x3_c00167{left:612.288150px;}
.x5_c00167{left:616.540050px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls2_c00167{letter-spacing:-1.066667pt;}
.ls3_c00167{letter-spacing:-0.640000pt;}
.ls1_c00167{letter-spacing:-0.192000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws1_c00167{word-spacing:-7.728000pt;}
.ws2_c00167{word-spacing:-5.766400pt;}
.ws3_c00167{word-spacing:0.000000pt;}
.ws5_c00167{word-spacing:0.192000pt;}
.ws4_c00167{word-spacing:6.272000pt;}
.ws0_c00167{word-spacing:1399.633067pt;}
._3_c00167{margin-left:-6.260267pt;}
._5_c00167{margin-left:-3.456000pt;}
._0_c00167{margin-left:-1.877333pt;}
._1_c00167{margin-left:-0.981333pt;}
._2_c00167{width:1.792000pt;}
._7_c00167{width:6.912000pt;}
._4_c00167{width:49.488000pt;}
._6_c00167{width:52.565333pt;}
.fs5_c00167{font-size:27.200000pt;}
.fs6_c00167{font-size:32.000000pt;}
.fs3_c00167{font-size:37.333333pt;}
.fs0_c00167{font-size:42.666667pt;}
.fs4_c00167{font-size:48.000000pt;}
.fs2_c00167{font-size:50.666667pt;}
.fs1_c00167{font-size:53.333333pt;}
.y0_c00167{bottom:0.000000pt;}
.yd_c00167{bottom:282.648133pt;}
.yb_c00167{bottom:337.466400pt;}
.ya_c00167{bottom:349.466400pt;}
.y9_c00167{bottom:369.246000pt;}
.y8_c00167{bottom:381.246000pt;}
.y7_c00167{bottom:404.805067pt;}
.y6_c00167{bottom:416.805067pt;}
.y5_c00167{bottom:428.805067pt;}
.y4_c00167{bottom:448.584533pt;}
.y3_c00167{bottom:464.584533pt;}
.y2_c00167{bottom:488.143600pt;}
.yc_c00167{bottom:490.064933pt;}
.y1a_c00167{bottom:717.104800pt;}
.y18_c00167{bottom:754.978133pt;}
.y17_c00167{bottom:766.978133pt;}
.y16_c00167{bottom:786.757733pt;}
.y15_c00167{bottom:798.757733pt;}
.y14_c00167{bottom:822.316800pt;}
.y13_c00167{bottom:834.316800pt;}
.y12_c00167{bottom:846.316800pt;}
.y11_c00167{bottom:866.096267pt;}
.y10_c00167{bottom:882.096267pt;}
.yf_c00167{bottom:898.096267pt;}
.ye_c00167{bottom:921.655333pt;}
.y19_c00167{bottom:924.710533pt;}
.y1_c00167{bottom:972.089733pt;}
.h7_c00167{height:22.400000pt;}
.h6_c00167{height:26.917333pt;}
.h4_c00167{height:30.293333pt;}
.h2_c00167{height:34.901333pt;}
.h3_c00167{height:38.453333pt;}
.h5_c00167{height:38.880000pt;}
.h1_c00167{height:1009.333333pt;}
.h0_c00167{height:1009.338800pt;}
.w0_c00167{width:794.622400pt;}
.w1_c00167{width:794.666667pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:68.980533pt;}
.x4_c00167{left:377.012000pt;}
.x2_c00167{left:532.917467pt;}
.x3_c00167{left:544.256133pt;}
.x5_c00167{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:0.908000;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00168{font-family:ff7_c00168;line-height:1.067000;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00168{font-family:ff8_c00168;line-height:0.710000;font-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_c00168{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls5_c00168{letter-spacing:-1.200000px;}
.ls3_c00168{letter-spacing:-0.720000px;}
.ls4_c00168{letter-spacing:-0.630000px;}
.ls2_c00168{letter-spacing:-0.540000px;}
.ls1_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00168{word-spacing:-8.694000px;}
.ws2_c00168{word-spacing:-6.487200px;}
.ws3_c00168{word-spacing:0.000000px;}
.ws5_c00168{word-spacing:0.540000px;}
.ws4_c00168{word-spacing:7.056000px;}
._0_c00168{margin-left:-2755.276200px;}
._4_c00168{margin-left:-6.947400px;}
._1_c00168{margin-left:-2.256000px;}
._3_c00168{margin-left:-1.200000px;}
._2_c00168{width:1.008000px;}
._7_c00168{width:7.776000px;}
._5_c00168{width:55.674000px;}
._6_c00168{width:59.136000px;}
.fc0_c00168{color:rgb(35,31,32);}
.fs5_c00168{font-size:30.600000px;}
.fs6_c00168{font-size:36.000000px;}
.fs3_c00168{font-size:42.000000px;}
.fs0_c00168{font-size:48.000000px;}
.fs4_c00168{font-size:54.000000px;}
.fs2_c00168{font-size:57.000000px;}
.fs1_c00168{font-size:60.000000px;}
.y0_c00168{bottom:0.000000px;}
.y1a_c00168{bottom:317.979150px;}
.y18_c00168{bottom:379.224600px;}
.y17_c00168{bottom:392.724600px;}
.y16_c00168{bottom:414.976500px;}
.y15_c00168{bottom:428.476500px;}
.y14_c00168{bottom:454.980450px;}
.y13_c00168{bottom:468.480450px;}
.y12_c00168{bottom:481.980450px;}
.y11_c00168{bottom:504.232500px;}
.y10_c00168{bottom:522.232500px;}
.yf_c00168{bottom:548.736450px;}
.y19_c00168{bottom:551.110350px;}
.yd_c00168{bottom:836.913450px;}
.yc_c00168{bottom:850.413450px;}
.yb_c00168{bottom:863.913450px;}
.ya_c00168{bottom:886.165500px;}
.y9_c00168{bottom:899.665500px;}
.y8_c00168{bottom:926.169450px;}
.y7_c00168{bottom:939.669450px;}
.y6_c00168{bottom:953.169450px;}
.y5_c00168{bottom:975.421350px;}
.y4_c00168{bottom:993.421350px;}
.y3_c00168{bottom:1011.421350px;}
.y2_c00168{bottom:1037.925300px;}
.ye_c00168{bottom:1040.299350px;}
.y1_c00168{bottom:1093.600950px;}
.h8_c00168{height:25.200000px;}
.h7_c00168{height:30.282000px;}
.h5_c00168{height:34.080000px;}
.h2_c00168{height:39.264000px;}
.h3_c00168{height:39.984000px;}
.h4_c00168{height:43.260000px;}
.h6_c00168{height:43.740000px;}
.h1_c00168{height:1135.500000px;}
.h0_c00168{height:1135.506150px;}
.w0_c00168{width:893.950200px;}
.w1_c00168{width:894.000000px;}
.x0_c00168{left:0.000000px;}
.x4_c00168{left:128.744700px;}
.x5_c00168{left:141.500700px;}
.x6_c00168{left:145.752600px;}
.x2_c00168{left:188.061900px;}
.x3_c00168{left:190.513350px;}
.x7_c00168{left:321.801150px;}
.x1_c00168{left:800.165850px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls5_c00168{letter-spacing:-1.066667pt;}
.ls3_c00168{letter-spacing:-0.640000pt;}
.ls4_c00168{letter-spacing:-0.560000pt;}
.ls2_c00168{letter-spacing:-0.480000pt;}
.ls1_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.426667pt;}
.ws0_c00168{word-spacing:-9.685333pt;}
.ws1_c00168{word-spacing:-7.728000pt;}
.ws2_c00168{word-spacing:-5.766400pt;}
.ws3_c00168{word-spacing:0.000000pt;}
.ws5_c00168{word-spacing:0.480000pt;}
.ws4_c00168{word-spacing:6.272000pt;}
._0_c00168{margin-left:-2449.134400pt;}
._4_c00168{margin-left:-6.175467pt;}
._1_c00168{margin-left:-2.005333pt;}
._3_c00168{margin-left:-1.066667pt;}
._2_c00168{width:0.896000pt;}
._7_c00168{width:6.912000pt;}
._5_c00168{width:49.488000pt;}
._6_c00168{width:52.565333pt;}
.fs5_c00168{font-size:27.200000pt;}
.fs6_c00168{font-size:32.000000pt;}
.fs3_c00168{font-size:37.333333pt;}
.fs0_c00168{font-size:42.666667pt;}
.fs4_c00168{font-size:48.000000pt;}
.fs2_c00168{font-size:50.666667pt;}
.fs1_c00168{font-size:53.333333pt;}
.y0_c00168{bottom:0.000000pt;}
.y1a_c00168{bottom:282.648133pt;}
.y18_c00168{bottom:337.088533pt;}
.y17_c00168{bottom:349.088533pt;}
.y16_c00168{bottom:368.868000pt;}
.y15_c00168{bottom:380.868000pt;}
.y14_c00168{bottom:404.427067pt;}
.y13_c00168{bottom:416.427067pt;}
.y12_c00168{bottom:428.427067pt;}
.y11_c00168{bottom:448.206667pt;}
.y10_c00168{bottom:464.206667pt;}
.yf_c00168{bottom:487.765733pt;}
.y19_c00168{bottom:489.875867pt;}
.yd_c00168{bottom:743.923067pt;}
.yc_c00168{bottom:755.923067pt;}
.yb_c00168{bottom:767.923067pt;}
.ya_c00168{bottom:787.702667pt;}
.y9_c00168{bottom:799.702667pt;}
.y8_c00168{bottom:823.261733pt;}
.y7_c00168{bottom:835.261733pt;}
.y6_c00168{bottom:847.261733pt;}
.y5_c00168{bottom:867.041200pt;}
.y4_c00168{bottom:883.041200pt;}
.y3_c00168{bottom:899.041200pt;}
.y2_c00168{bottom:922.600267pt;}
.ye_c00168{bottom:924.710533pt;}
.y1_c00168{bottom:972.089733pt;}
.h8_c00168{height:22.400000pt;}
.h7_c00168{height:26.917333pt;}
.h5_c00168{height:30.293333pt;}
.h2_c00168{height:34.901333pt;}
.h3_c00168{height:35.541333pt;}
.h4_c00168{height:38.453333pt;}
.h6_c00168{height:38.880000pt;}
.h1_c00168{height:1009.333333pt;}
.h0_c00168{height:1009.338800pt;}
.w0_c00168{width:794.622400pt;}
.w1_c00168{width:794.666667pt;}
.x0_c00168{left:0.000000pt;}
.x4_c00168{left:114.439733pt;}
.x5_c00168{left:125.778400pt;}
.x6_c00168{left:129.557867pt;}
.x2_c00168{left:167.166133pt;}
.x3_c00168{left:169.345200pt;}
.x7_c00168{left:286.045467pt;}
.x1_c00168{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00169;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00169;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00169{font-family:ff7_c00169;line-height:0.710000;font-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_c00169{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls4_c00169{letter-spacing:-1.026000px;}
.ls2_c00169{letter-spacing:-0.720000px;}
.ls3_c00169{letter-spacing:-0.630000px;}
.ls1_c00169{letter-spacing:-0.540000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00169{word-spacing:-11.826000px;}
.ws1_c00169{word-spacing:-8.694000px;}
.ws3_c00169{word-spacing:-6.487200px;}
.ws4_c00169{word-spacing:0.000000px;}
.ws5_c00169{word-spacing:7.056000px;}
.ws6_c00169{word-spacing:56.700000px;}
.ws0_c00169{word-spacing:1574.587200px;}
._3_c00169{margin-left:-7.042800px;}
._5_c00169{margin-left:-4.854000px;}
._0_c00169{margin-left:-2.112000px;}
._1_c00169{margin-left:-1.104000px;}
._2_c00169{width:2.016000px;}
._7_c00169{width:7.776000px;}
._4_c00169{width:55.674000px;}
._6_c00169{width:59.136000px;}
.fc0_c00169{color:rgb(35,31,32);}
.fs5_c00169{font-size:30.600000px;}
.fs6_c00169{font-size:36.000000px;}
.fs3_c00169{font-size:42.000000px;}
.fs0_c00169{font-size:48.000000px;}
.fs4_c00169{font-size:54.000000px;}
.fs2_c00169{font-size:57.000000px;}
.fs1_c00169{font-size:60.000000px;}
.y0_c00169{bottom:0.000000px;}
.yd_c00169{bottom:348.149700px;}
.yc_c00169{bottom:361.649700px;}
.yb_c00169{bottom:375.149700px;}
.ya_c00169{bottom:397.401750px;}
.y9_c00169{bottom:410.901750px;}
.y8_c00169{bottom:437.405700px;}
.y7_c00169{bottom:450.905700px;}
.y6_c00169{bottom:464.405700px;}
.y5_c00169{bottom:486.657600px;}
.y4_c00169{bottom:504.657600px;}
.y3_c00169{bottom:522.657600px;}
.y2_c00169{bottom:549.161550px;}
.ye_c00169{bottom:551.323050px;}
.y19_c00169{bottom:855.338700px;}
.y18_c00169{bottom:868.838700px;}
.y17_c00169{bottom:882.338700px;}
.y16_c00169{bottom:904.590600px;}
.y15_c00169{bottom:918.090600px;}
.y14_c00169{bottom:944.594700px;}
.y13_c00169{bottom:958.094700px;}
.y12_c00169{bottom:971.594700px;}
.y11_c00169{bottom:993.846600px;}
.y10_c00169{bottom:1011.846600px;}
.yf_c00169{bottom:1038.350550px;}
.y1a_c00169{bottom:1040.299350px;}
.y1_c00169{bottom:1093.600950px;}
.h7_c00169{height:25.200000px;}
.h6_c00169{height:30.282000px;}
.h4_c00169{height:34.080000px;}
.h2_c00169{height:39.264000px;}
.h3_c00169{height:43.260000px;}
.h5_c00169{height:43.740000px;}
.h1_c00169{height:1135.500000px;}
.h0_c00169{height:1135.506150px;}
.w0_c00169{width:893.950200px;}
.w1_c00169{width:894.000000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:77.603100px;}
.x5_c00169{left:424.138500px;}
.x2_c00169{left:599.532150px;}
.x3_c00169{left:612.288150px;}
.x4_c00169{left:616.540050px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls4_c00169{letter-spacing:-0.912000pt;}
.ls2_c00169{letter-spacing:-0.640000pt;}
.ls3_c00169{letter-spacing:-0.560000pt;}
.ls1_c00169{letter-spacing:-0.480000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws2_c00169{word-spacing:-10.512000pt;}
.ws1_c00169{word-spacing:-7.728000pt;}
.ws3_c00169{word-spacing:-5.766400pt;}
.ws4_c00169{word-spacing:0.000000pt;}
.ws5_c00169{word-spacing:6.272000pt;}
.ws6_c00169{word-spacing:50.400000pt;}
.ws0_c00169{word-spacing:1399.633067pt;}
._3_c00169{margin-left:-6.260267pt;}
._5_c00169{margin-left:-4.314667pt;}
._0_c00169{margin-left:-1.877333pt;}
._1_c00169{margin-left:-0.981333pt;}
._2_c00169{width:1.792000pt;}
._7_c00169{width:6.912000pt;}
._4_c00169{width:49.488000pt;}
._6_c00169{width:52.565333pt;}
.fs5_c00169{font-size:27.200000pt;}
.fs6_c00169{font-size:32.000000pt;}
.fs3_c00169{font-size:37.333333pt;}
.fs0_c00169{font-size:42.666667pt;}
.fs4_c00169{font-size:48.000000pt;}
.fs2_c00169{font-size:50.666667pt;}
.fs1_c00169{font-size:53.333333pt;}
.y0_c00169{bottom:0.000000pt;}
.yd_c00169{bottom:309.466400pt;}
.yc_c00169{bottom:321.466400pt;}
.yb_c00169{bottom:333.466400pt;}
.ya_c00169{bottom:353.246000pt;}
.y9_c00169{bottom:365.246000pt;}
.y8_c00169{bottom:388.805067pt;}
.y7_c00169{bottom:400.805067pt;}
.y6_c00169{bottom:412.805067pt;}
.y5_c00169{bottom:432.584533pt;}
.y4_c00169{bottom:448.584533pt;}
.y3_c00169{bottom:464.584533pt;}
.y2_c00169{bottom:488.143600pt;}
.ye_c00169{bottom:490.064933pt;}
.y19_c00169{bottom:760.301067pt;}
.y18_c00169{bottom:772.301067pt;}
.y17_c00169{bottom:784.301067pt;}
.y16_c00169{bottom:804.080533pt;}
.y15_c00169{bottom:816.080533pt;}
.y14_c00169{bottom:839.639733pt;}
.y13_c00169{bottom:851.639733pt;}
.y12_c00169{bottom:863.639733pt;}
.y11_c00169{bottom:883.419200pt;}
.y10_c00169{bottom:899.419200pt;}
.yf_c00169{bottom:922.978267pt;}
.y1a_c00169{bottom:924.710533pt;}
.y1_c00169{bottom:972.089733pt;}
.h7_c00169{height:22.400000pt;}
.h6_c00169{height:26.917333pt;}
.h4_c00169{height:30.293333pt;}
.h2_c00169{height:34.901333pt;}
.h3_c00169{height:38.453333pt;}
.h5_c00169{height:38.880000pt;}
.h1_c00169{height:1009.333333pt;}
.h0_c00169{height:1009.338800pt;}
.w0_c00169{width:794.622400pt;}
.w1_c00169{width:794.666667pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:68.980533pt;}
.x5_c00169{left:377.012000pt;}
.x2_c00169{left:532.917467pt;}
.x3_c00169{left:544.256133pt;}
.x4_c00169{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00170;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:0.908000;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00170{font-family:ff7_c00170;line-height:1.067000;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00170{font-family:ff8_c00170;line-height:0.710000;font-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_c00170{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls2_c00170{letter-spacing:-0.720000px;}
.ls3_c00170{letter-spacing:-0.540000px;}
.ls1_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00170{word-spacing:-8.694000px;}
.ws2_c00170{word-spacing:-6.487200px;}
.ws3_c00170{word-spacing:0.000000px;}
.ws5_c00170{word-spacing:0.540000px;}
.ws4_c00170{word-spacing:7.056000px;}
._0_c00170{margin-left:-2755.276200px;}
._4_c00170{margin-left:-6.946800px;}
._8_c00170{margin-left:-4.590000px;}
._1_c00170{margin-left:-2.256000px;}
._3_c00170{margin-left:-1.200000px;}
._2_c00170{width:1.008000px;}
._7_c00170{width:7.776000px;}
._5_c00170{width:55.674000px;}
._6_c00170{width:59.136000px;}
.fc0_c00170{color:rgb(35,31,32);}
.fs5_c00170{font-size:30.600000px;}
.fs6_c00170{font-size:36.000000px;}
.fs3_c00170{font-size:42.000000px;}
.fs0_c00170{font-size:48.000000px;}
.fs4_c00170{font-size:54.000000px;}
.fs2_c00170{font-size:57.000000px;}
.fs1_c00170{font-size:60.000000px;}
.y0_c00170{bottom:0.000000px;}
.yd_c00170{bottom:318.085500px;}
.yb_c00170{bottom:379.330950px;}
.ya_c00170{bottom:392.830950px;}
.y9_c00170{bottom:415.082850px;}
.y8_c00170{bottom:428.582850px;}
.y7_c00170{bottom:455.086800px;}
.y6_c00170{bottom:468.586800px;}
.y5_c00170{bottom:482.086800px;}
.y4_c00170{bottom:504.338700px;}
.y3_c00170{bottom:522.338700px;}
.y2_c00170{bottom:548.842650px;}
.yc_c00170{bottom:551.216700px;}
.y1a_c00170{bottom:806.955600px;}
.y18_c00170{bottom:849.775500px;}
.y17_c00170{bottom:863.275500px;}
.y16_c00170{bottom:885.527550px;}
.y15_c00170{bottom:899.027550px;}
.y14_c00170{bottom:925.531500px;}
.y13_c00170{bottom:939.031500px;}
.y12_c00170{bottom:952.531500px;}
.y11_c00170{bottom:974.783550px;}
.y10_c00170{bottom:992.783550px;}
.yf_c00170{bottom:1010.783550px;}
.ye_c00170{bottom:1037.287500px;}
.y19_c00170{bottom:1040.299350px;}
.y1_c00170{bottom:1093.600950px;}
.h8_c00170{height:25.200000px;}
.h7_c00170{height:30.282000px;}
.h5_c00170{height:34.080000px;}
.h2_c00170{height:39.264000px;}
.h3_c00170{height:39.984000px;}
.h4_c00170{height:43.260000px;}
.h6_c00170{height:43.740000px;}
.h1_c00170{height:1135.500000px;}
.h0_c00170{height:1135.506150px;}
.w0_c00170{width:893.950200px;}
.w1_c00170{width:894.000000px;}
.x0_c00170{left:0.000000px;}
.x4_c00170{left:128.626800px;}
.x5_c00170{left:141.382650px;}
.x7_c00170{left:145.752600px;}
.x2_c00170{left:188.061900px;}
.x3_c00170{left:190.513350px;}
.x6_c00170{left:321.799800px;}
.x1_c00170{left:800.165850px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls2_c00170{letter-spacing:-0.640000pt;}
.ls3_c00170{letter-spacing:-0.480000pt;}
.ls1_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.426667pt;}
.ws0_c00170{word-spacing:-9.685333pt;}
.ws1_c00170{word-spacing:-7.728000pt;}
.ws2_c00170{word-spacing:-5.766400pt;}
.ws3_c00170{word-spacing:0.000000pt;}
.ws5_c00170{word-spacing:0.480000pt;}
.ws4_c00170{word-spacing:6.272000pt;}
._0_c00170{margin-left:-2449.134400pt;}
._4_c00170{margin-left:-6.174933pt;}
._8_c00170{margin-left:-4.080000pt;}
._1_c00170{margin-left:-2.005333pt;}
._3_c00170{margin-left:-1.066667pt;}
._2_c00170{width:0.896000pt;}
._7_c00170{width:6.912000pt;}
._5_c00170{width:49.488000pt;}
._6_c00170{width:52.565333pt;}
.fs5_c00170{font-size:27.200000pt;}
.fs6_c00170{font-size:32.000000pt;}
.fs3_c00170{font-size:37.333333pt;}
.fs0_c00170{font-size:42.666667pt;}
.fs4_c00170{font-size:48.000000pt;}
.fs2_c00170{font-size:50.666667pt;}
.fs1_c00170{font-size:53.333333pt;}
.y0_c00170{bottom:0.000000pt;}
.yd_c00170{bottom:282.742667pt;}
.yb_c00170{bottom:337.183067pt;}
.ya_c00170{bottom:349.183067pt;}
.y9_c00170{bottom:368.962533pt;}
.y8_c00170{bottom:380.962533pt;}
.y7_c00170{bottom:404.521600pt;}
.y6_c00170{bottom:416.521600pt;}
.y5_c00170{bottom:428.521600pt;}
.y4_c00170{bottom:448.301067pt;}
.y3_c00170{bottom:464.301067pt;}
.y2_c00170{bottom:487.860133pt;}
.yc_c00170{bottom:489.970400pt;}
.y1a_c00170{bottom:717.293867pt;}
.y18_c00170{bottom:755.356000pt;}
.y17_c00170{bottom:767.356000pt;}
.y16_c00170{bottom:787.135600pt;}
.y15_c00170{bottom:799.135600pt;}
.y14_c00170{bottom:822.694667pt;}
.y13_c00170{bottom:834.694667pt;}
.y12_c00170{bottom:846.694667pt;}
.y11_c00170{bottom:866.474267pt;}
.y10_c00170{bottom:882.474267pt;}
.yf_c00170{bottom:898.474267pt;}
.ye_c00170{bottom:922.033333pt;}
.y19_c00170{bottom:924.710533pt;}
.y1_c00170{bottom:972.089733pt;}
.h8_c00170{height:22.400000pt;}
.h7_c00170{height:26.917333pt;}
.h5_c00170{height:30.293333pt;}
.h2_c00170{height:34.901333pt;}
.h3_c00170{height:35.541333pt;}
.h4_c00170{height:38.453333pt;}
.h6_c00170{height:38.880000pt;}
.h1_c00170{height:1009.333333pt;}
.h0_c00170{height:1009.338800pt;}
.w0_c00170{width:794.622400pt;}
.w1_c00170{width:794.666667pt;}
.x0_c00170{left:0.000000pt;}
.x4_c00170{left:114.334933pt;}
.x5_c00170{left:125.673467pt;}
.x7_c00170{left:129.557867pt;}
.x2_c00170{left:167.166133pt;}
.x3_c00170{left:169.345200pt;}
.x6_c00170{left:286.044267pt;}
.x1_c00170{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00171;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:1.067000;font-style:normal;font-weight: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_c00171;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00171{font-family:ff7_c00171;line-height:0.710000;font-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_c00171{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls5_c00171{letter-spacing:-1.026000px;}
.ls2_c00171{letter-spacing:-0.960000px;}
.ls3_c00171{letter-spacing:-0.840000px;}
.ls4_c00171{letter-spacing:-0.810000px;}
.ls6_c00171{letter-spacing:-0.720000px;}
.ls1_c00171{letter-spacing:-0.216000px;}
.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;}
}
.ws2_c00171{word-spacing:-12.150000px;}
.ws4_c00171{word-spacing:-11.340000px;}
.ws1_c00171{word-spacing:-8.694000px;}
.ws3_c00171{word-spacing:-6.487200px;}
.ws5_c00171{word-spacing:0.000000px;}
.ws6_c00171{word-spacing:7.056000px;}
.ws0_c00171{word-spacing:1574.587200px;}
._3_c00171{margin-left:-7.042800px;}
._0_c00171{margin-left:-2.112000px;}
._1_c00171{margin-left:-1.104000px;}
._2_c00171{width:2.016000px;}
._6_c00171{width:7.776000px;}
._4_c00171{width:55.674000px;}
._5_c00171{width:59.136000px;}
.fc0_c00171{color:rgb(35,31,32);}
.fs5_c00171{font-size:30.600000px;}
.fs6_c00171{font-size:36.000000px;}
.fs3_c00171{font-size:42.000000px;}
.fs0_c00171{font-size:48.000000px;}
.fs4_c00171{font-size:54.000000px;}
.fs2_c00171{font-size:57.000000px;}
.fs1_c00171{font-size:60.000000px;}
.y0_c00171{bottom:0.000000px;}
.yd_c00171{bottom:343.260150px;}
.yc_c00171{bottom:356.760000px;}
.yb_c00171{bottom:370.260000px;}
.ya_c00171{bottom:396.763950px;}
.y9_c00171{bottom:410.263950px;}
.y8_c00171{bottom:436.767900px;}
.y7_c00171{bottom:450.267900px;}
.y6_c00171{bottom:463.767900px;}
.y5_c00171{bottom:486.019800px;}
.y4_c00171{bottom:504.019800px;}
.y3_c00171{bottom:522.019800px;}
.y2_c00171{bottom:548.523750px;}
.ye_c00171{bottom:550.897800px;}
.y1b_c00171{bottom:806.725950px;}
.y19_c00171{bottom:850.346100px;}
.y18_c00171{bottom:863.846100px;}
.y17_c00171{bottom:886.098150px;}
.y16_c00171{bottom:899.598150px;}
.y15_c00171{bottom:926.102100px;}
.y14_c00171{bottom:939.602100px;}
.y13_c00171{bottom:953.102100px;}
.y12_c00171{bottom:975.354000px;}
.y11_c00171{bottom:993.354000px;}
.y10_c00171{bottom:1011.354000px;}
.yf_c00171{bottom:1037.858100px;}
.y1a_c00171{bottom:1040.707650px;}
.y1_c00171{bottom:1093.600950px;}
.h7_c00171{height:25.200000px;}
.h6_c00171{height:30.282000px;}
.h4_c00171{height:34.080000px;}
.h2_c00171{height:39.264000px;}
.h3_c00171{height:43.260000px;}
.h5_c00171{height:43.740000px;}
.h1_c00171{height:1135.500000px;}
.h0_c00171{height:1135.506150px;}
.w0_c00171{width:893.950200px;}
.w1_c00171{width:894.000000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:77.603100px;}
.x5_c00171{left:424.137150px;}
.x2_c00171{left:599.532150px;}
.x3_c00171{left:612.288150px;}
.x4_c00171{left:616.540050px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls5_c00171{letter-spacing:-0.912000pt;}
.ls2_c00171{letter-spacing:-0.853333pt;}
.ls3_c00171{letter-spacing:-0.746667pt;}
.ls4_c00171{letter-spacing:-0.720000pt;}
.ls6_c00171{letter-spacing:-0.640000pt;}
.ls1_c00171{letter-spacing:-0.192000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws2_c00171{word-spacing:-10.800000pt;}
.ws4_c00171{word-spacing:-10.080000pt;}
.ws1_c00171{word-spacing:-7.728000pt;}
.ws3_c00171{word-spacing:-5.766400pt;}
.ws5_c00171{word-spacing:0.000000pt;}
.ws6_c00171{word-spacing:6.272000pt;}
.ws0_c00171{word-spacing:1399.633067pt;}
._3_c00171{margin-left:-6.260267pt;}
._0_c00171{margin-left:-1.877333pt;}
._1_c00171{margin-left:-0.981333pt;}
._2_c00171{width:1.792000pt;}
._6_c00171{width:6.912000pt;}
._4_c00171{width:49.488000pt;}
._5_c00171{width:52.565333pt;}
.fs5_c00171{font-size:27.200000pt;}
.fs6_c00171{font-size:32.000000pt;}
.fs3_c00171{font-size:37.333333pt;}
.fs0_c00171{font-size:42.666667pt;}
.fs4_c00171{font-size:48.000000pt;}
.fs2_c00171{font-size:50.666667pt;}
.fs1_c00171{font-size:53.333333pt;}
.y0_c00171{bottom:0.000000pt;}
.yd_c00171{bottom:305.120133pt;}
.yc_c00171{bottom:317.120000pt;}
.yb_c00171{bottom:329.120000pt;}
.ya_c00171{bottom:352.679067pt;}
.y9_c00171{bottom:364.679067pt;}
.y8_c00171{bottom:388.238133pt;}
.y7_c00171{bottom:400.238133pt;}
.y6_c00171{bottom:412.238133pt;}
.y5_c00171{bottom:432.017600pt;}
.y4_c00171{bottom:448.017600pt;}
.y3_c00171{bottom:464.017600pt;}
.y2_c00171{bottom:487.576667pt;}
.ye_c00171{bottom:489.686933pt;}
.y1b_c00171{bottom:717.089733pt;}
.y19_c00171{bottom:755.863200pt;}
.y18_c00171{bottom:767.863200pt;}
.y17_c00171{bottom:787.642800pt;}
.y16_c00171{bottom:799.642800pt;}
.y15_c00171{bottom:823.201867pt;}
.y14_c00171{bottom:835.201867pt;}
.y13_c00171{bottom:847.201867pt;}
.y12_c00171{bottom:866.981333pt;}
.y11_c00171{bottom:882.981333pt;}
.y10_c00171{bottom:898.981333pt;}
.yf_c00171{bottom:922.540533pt;}
.y1a_c00171{bottom:925.073467pt;}
.y1_c00171{bottom:972.089733pt;}
.h7_c00171{height:22.400000pt;}
.h6_c00171{height:26.917333pt;}
.h4_c00171{height:30.293333pt;}
.h2_c00171{height:34.901333pt;}
.h3_c00171{height:38.453333pt;}
.h5_c00171{height:38.880000pt;}
.h1_c00171{height:1009.333333pt;}
.h0_c00171{height:1009.338800pt;}
.w0_c00171{width:794.622400pt;}
.w1_c00171{width:794.666667pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:68.980533pt;}
.x5_c00171{left:377.010800pt;}
.x2_c00171{left:532.917467pt;}
.x3_c00171{left:544.256133pt;}
.x4_c00171{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:0.908000;font-style:normal;font-weight: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_c00172;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00172{font-family:ff7_c00172;line-height:1.067000;font-style:normal;font-weight: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_c00172;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00172{font-family:ff8_c00172;line-height:0.710000;font-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_c00172{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls4_c00172{letter-spacing:-0.960000px;}
.ls5_c00172{letter-spacing:-0.840000px;}
.ls3_c00172{letter-spacing:-0.720000px;}
.ls2_c00172{letter-spacing:-0.540000px;}
.ls1_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00172{word-spacing:-8.694000px;}
.ws2_c00172{word-spacing:-6.487200px;}
.ws3_c00172{word-spacing:0.000000px;}
.ws4_c00172{word-spacing:7.056000px;}
.ws5_c00172{word-spacing:56.214000px;}
._0_c00172{margin-left:-2755.276200px;}
._4_c00172{margin-left:-6.946800px;}
._1_c00172{margin-left:-2.256000px;}
._3_c00172{margin-left:-1.200000px;}
._2_c00172{width:1.008000px;}
._6_c00172{width:7.776000px;}
._7_c00172{width:55.674000px;}
._5_c00172{width:59.136000px;}
.fc0_c00172{color:rgb(35,31,32);}
.fs5_c00172{font-size:30.600000px;}
.fs6_c00172{font-size:36.000000px;}
.fs3_c00172{font-size:42.000000px;}
.fs0_c00172{font-size:48.000000px;}
.fs4_c00172{font-size:54.000000px;}
.fs2_c00172{font-size:57.000000px;}
.fs1_c00172{font-size:60.000000px;}
.y0_c00172{bottom:0.000000px;}
.yd_c00172{bottom:317.979150px;}
.yb_c00172{bottom:374.972550px;}
.ya_c00172{bottom:388.472550px;}
.y9_c00172{bottom:414.976500px;}
.y8_c00172{bottom:428.476500px;}
.y7_c00172{bottom:454.980450px;}
.y6_c00172{bottom:468.480450px;}
.y5_c00172{bottom:481.980450px;}
.y4_c00172{bottom:504.232500px;}
.y3_c00172{bottom:522.232500px;}
.y2_c00172{bottom:548.736450px;}
.yc_c00172{bottom:551.323050px;}
.y18_c00172{bottom:854.790150px;}
.y17_c00172{bottom:868.290150px;}
.y16_c00172{bottom:881.790150px;}
.y15_c00172{bottom:904.042050px;}
.y14_c00172{bottom:917.542050px;}
.y13_c00172{bottom:944.046000px;}
.y12_c00172{bottom:957.546000px;}
.y11_c00172{bottom:971.046000px;}
.y10_c00172{bottom:993.298050px;}
.yf_c00172{bottom:1011.298050px;}
.ye_c00172{bottom:1037.802000px;}
.y19_c00172{bottom:1040.299350px;}
.y1_c00172{bottom:1093.600950px;}
.h8_c00172{height:25.200000px;}
.h7_c00172{height:30.282000px;}
.h5_c00172{height:34.080000px;}
.h2_c00172{height:39.264000px;}
.h3_c00172{height:39.984000px;}
.h4_c00172{height:43.260000px;}
.h6_c00172{height:43.740000px;}
.h1_c00172{height:1135.500000px;}
.h0_c00172{height:1135.506150px;}
.w0_c00172{width:893.950200px;}
.w1_c00172{width:894.000000px;}
.x0_c00172{left:0.000000px;}
.x4_c00172{left:128.626800px;}
.x5_c00172{left:141.382650px;}
.x2_c00172{left:188.061900px;}
.x3_c00172{left:190.513350px;}
.x6_c00172{left:321.799800px;}
.x1_c00172{left:800.165850px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls4_c00172{letter-spacing:-0.853333pt;}
.ls5_c00172{letter-spacing:-0.746667pt;}
.ls3_c00172{letter-spacing:-0.640000pt;}
.ls2_c00172{letter-spacing:-0.480000pt;}
.ls1_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:0.426667pt;}
.ws0_c00172{word-spacing:-9.685333pt;}
.ws1_c00172{word-spacing:-7.728000pt;}
.ws2_c00172{word-spacing:-5.766400pt;}
.ws3_c00172{word-spacing:0.000000pt;}
.ws4_c00172{word-spacing:6.272000pt;}
.ws5_c00172{word-spacing:49.968000pt;}
._0_c00172{margin-left:-2449.134400pt;}
._4_c00172{margin-left:-6.174933pt;}
._1_c00172{margin-left:-2.005333pt;}
._3_c00172{margin-left:-1.066667pt;}
._2_c00172{width:0.896000pt;}
._6_c00172{width:6.912000pt;}
._7_c00172{width:49.488000pt;}
._5_c00172{width:52.565333pt;}
.fs5_c00172{font-size:27.200000pt;}
.fs6_c00172{font-size:32.000000pt;}
.fs3_c00172{font-size:37.333333pt;}
.fs0_c00172{font-size:42.666667pt;}
.fs4_c00172{font-size:48.000000pt;}
.fs2_c00172{font-size:50.666667pt;}
.fs1_c00172{font-size:53.333333pt;}
.y0_c00172{bottom:0.000000pt;}
.yd_c00172{bottom:282.648133pt;}
.yb_c00172{bottom:333.308933pt;}
.ya_c00172{bottom:345.308933pt;}
.y9_c00172{bottom:368.868000pt;}
.y8_c00172{bottom:380.868000pt;}
.y7_c00172{bottom:404.427067pt;}
.y6_c00172{bottom:416.427067pt;}
.y5_c00172{bottom:428.427067pt;}
.y4_c00172{bottom:448.206667pt;}
.y3_c00172{bottom:464.206667pt;}
.y2_c00172{bottom:487.765733pt;}
.yc_c00172{bottom:490.064933pt;}
.y18_c00172{bottom:759.813467pt;}
.y17_c00172{bottom:771.813467pt;}
.y16_c00172{bottom:783.813467pt;}
.y15_c00172{bottom:803.592933pt;}
.y14_c00172{bottom:815.592933pt;}
.y13_c00172{bottom:839.152000pt;}
.y12_c00172{bottom:851.152000pt;}
.y11_c00172{bottom:863.152000pt;}
.y10_c00172{bottom:882.931600pt;}
.yf_c00172{bottom:898.931600pt;}
.ye_c00172{bottom:922.490667pt;}
.y19_c00172{bottom:924.710533pt;}
.y1_c00172{bottom:972.089733pt;}
.h8_c00172{height:22.400000pt;}
.h7_c00172{height:26.917333pt;}
.h5_c00172{height:30.293333pt;}
.h2_c00172{height:34.901333pt;}
.h3_c00172{height:35.541333pt;}
.h4_c00172{height:38.453333pt;}
.h6_c00172{height:38.880000pt;}
.h1_c00172{height:1009.333333pt;}
.h0_c00172{height:1009.338800pt;}
.w0_c00172{width:794.622400pt;}
.w1_c00172{width:794.666667pt;}
.x0_c00172{left:0.000000pt;}
.x4_c00172{left:114.334933pt;}
.x5_c00172{left:125.673467pt;}
.x2_c00172{left:167.166133pt;}
.x3_c00172{left:169.345200pt;}
.x6_c00172{left:286.044267pt;}
.x1_c00172{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00173;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00173{font-family:ff6_c00173;line-height:1.067000;font-style:normal;font-weight: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_c00173;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00173{font-family:ff7_c00173;line-height:0.710000;font-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_c00173{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls2_c00173{letter-spacing:-0.810000px;}
.ls1_c00173{letter-spacing:-0.720000px;}
.ls3_c00173{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00173{word-spacing:-8.694000px;}
.ws2_c00173{word-spacing:-6.487200px;}
.ws3_c00173{word-spacing:0.000000px;}
.ws4_c00173{word-spacing:7.056000px;}
.ws0_c00173{word-spacing:1574.587200px;}
._3_c00173{margin-left:-7.042800px;}
._7_c00173{margin-left:-3.240000px;}
._0_c00173{margin-left:-2.112000px;}
._1_c00173{margin-left:-1.104000px;}
._2_c00173{width:2.016000px;}
._6_c00173{width:7.776000px;}
._4_c00173{width:55.674000px;}
._5_c00173{width:59.136000px;}
.fc0_c00173{color:rgb(35,31,32);}
.fs5_c00173{font-size:30.600000px;}
.fs6_c00173{font-size:36.000000px;}
.fs3_c00173{font-size:42.000000px;}
.fs0_c00173{font-size:48.000000px;}
.fs4_c00173{font-size:54.000000px;}
.fs2_c00173{font-size:57.000000px;}
.fs1_c00173{font-size:60.000000px;}
.y0_c00173{bottom:0.000000px;}
.ye_c00173{bottom:317.766600px;}
.yc_c00173{bottom:361.472700px;}
.yb_c00173{bottom:374.972550px;}
.ya_c00173{bottom:401.476500px;}
.y9_c00173{bottom:414.976500px;}
.y8_c00173{bottom:441.480450px;}
.y7_c00173{bottom:454.980450px;}
.y6_c00173{bottom:468.480450px;}
.y5_c00173{bottom:481.980450px;}
.y4_c00173{bottom:504.232500px;}
.y3_c00173{bottom:522.232500px;}
.y2_c00173{bottom:548.736450px;}
.yd_c00173{bottom:551.323050px;}
.y1a_c00173{bottom:837.161550px;}
.y19_c00173{bottom:850.661550px;}
.y18_c00173{bottom:864.161550px;}
.y17_c00173{bottom:890.665500px;}
.y16_c00173{bottom:904.165500px;}
.y15_c00173{bottom:930.669450px;}
.y14_c00173{bottom:944.169450px;}
.y13_c00173{bottom:957.669450px;}
.y12_c00173{bottom:971.169450px;}
.y11_c00173{bottom:993.421350px;}
.y10_c00173{bottom:1011.421350px;}
.yf_c00173{bottom:1037.925300px;}
.y1b_c00173{bottom:1040.299350px;}
.y1_c00173{bottom:1093.600950px;}
.h7_c00173{height:25.200000px;}
.h6_c00173{height:30.282000px;}
.h4_c00173{height:34.080000px;}
.h2_c00173{height:39.264000px;}
.h3_c00173{height:43.260000px;}
.h5_c00173{height:43.740000px;}
.h1_c00173{height:1135.500000px;}
.h0_c00173{height:1135.506150px;}
.w0_c00173{width:893.950200px;}
.w1_c00173{width:894.000000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:77.603100px;}
.x5_c00173{left:424.138500px;}
.x2_c00173{left:599.532150px;}
.x3_c00173{left:612.288150px;}
.x4_c00173{left:616.540050px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls2_c00173{letter-spacing:-0.720000pt;}
.ls1_c00173{letter-spacing:-0.640000pt;}
.ls3_c00173{letter-spacing:-0.560000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws1_c00173{word-spacing:-7.728000pt;}
.ws2_c00173{word-spacing:-5.766400pt;}
.ws3_c00173{word-spacing:0.000000pt;}
.ws4_c00173{word-spacing:6.272000pt;}
.ws0_c00173{word-spacing:1399.633067pt;}
._3_c00173{margin-left:-6.260267pt;}
._7_c00173{margin-left:-2.880000pt;}
._0_c00173{margin-left:-1.877333pt;}
._1_c00173{margin-left:-0.981333pt;}
._2_c00173{width:1.792000pt;}
._6_c00173{width:6.912000pt;}
._4_c00173{width:49.488000pt;}
._5_c00173{width:52.565333pt;}
.fs5_c00173{font-size:27.200000pt;}
.fs6_c00173{font-size:32.000000pt;}
.fs3_c00173{font-size:37.333333pt;}
.fs0_c00173{font-size:42.666667pt;}
.fs4_c00173{font-size:48.000000pt;}
.fs2_c00173{font-size:50.666667pt;}
.fs1_c00173{font-size:53.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.ye_c00173{bottom:282.459200pt;}
.yc_c00173{bottom:321.309067pt;}
.yb_c00173{bottom:333.308933pt;}
.ya_c00173{bottom:356.868000pt;}
.y9_c00173{bottom:368.868000pt;}
.y8_c00173{bottom:392.427067pt;}
.y7_c00173{bottom:404.427067pt;}
.y6_c00173{bottom:416.427067pt;}
.y5_c00173{bottom:428.427067pt;}
.y4_c00173{bottom:448.206667pt;}
.y3_c00173{bottom:464.206667pt;}
.y2_c00173{bottom:487.765733pt;}
.yd_c00173{bottom:490.064933pt;}
.y1a_c00173{bottom:744.143600pt;}
.y19_c00173{bottom:756.143600pt;}
.y18_c00173{bottom:768.143600pt;}
.y17_c00173{bottom:791.702667pt;}
.y16_c00173{bottom:803.702667pt;}
.y15_c00173{bottom:827.261733pt;}
.y14_c00173{bottom:839.261733pt;}
.y13_c00173{bottom:851.261733pt;}
.y12_c00173{bottom:863.261733pt;}
.y11_c00173{bottom:883.041200pt;}
.y10_c00173{bottom:899.041200pt;}
.yf_c00173{bottom:922.600267pt;}
.y1b_c00173{bottom:924.710533pt;}
.y1_c00173{bottom:972.089733pt;}
.h7_c00173{height:22.400000pt;}
.h6_c00173{height:26.917333pt;}
.h4_c00173{height:30.293333pt;}
.h2_c00173{height:34.901333pt;}
.h3_c00173{height:38.453333pt;}
.h5_c00173{height:38.880000pt;}
.h1_c00173{height:1009.333333pt;}
.h0_c00173{height:1009.338800pt;}
.w0_c00173{width:794.622400pt;}
.w1_c00173{width:794.666667pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:68.980533pt;}
.x5_c00173{left:377.012000pt;}
.x2_c00173{left:532.917467pt;}
.x3_c00173{left:544.256133pt;}
.x4_c00173{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00174;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00174{font-family:ff7_c00174;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00174;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00174{font-family:ff8_c00174;line-height:0.710000;font-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_c00174{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls3_c00174{letter-spacing:-0.720000px;}
.ls4_c00174{letter-spacing:-0.630000px;}
.ls2_c00174{letter-spacing:-0.378000px;}
.ls1_c00174{letter-spacing:0.000000px;}
.ls0_c00174{letter-spacing:0.480000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:-10.896000px;}
.ws1_c00174{word-spacing:-8.694000px;}
.ws2_c00174{word-spacing:-6.487200px;}
.ws3_c00174{word-spacing:0.000000px;}
.ws5_c00174{word-spacing:0.378000px;}
.ws4_c00174{word-spacing:7.056000px;}
._0_c00174{margin-left:-2755.276200px;}
._4_c00174{margin-left:-6.946800px;}
._1_c00174{margin-left:-2.256000px;}
._3_c00174{margin-left:-1.200000px;}
._2_c00174{width:1.008000px;}
._7_c00174{width:7.776000px;}
._5_c00174{width:55.674000px;}
._6_c00174{width:59.136000px;}
.fc0_c00174{color:rgb(35,31,32);}
.fs5_c00174{font-size:30.600000px;}
.fs6_c00174{font-size:36.000000px;}
.fs3_c00174{font-size:42.000000px;}
.fs0_c00174{font-size:48.000000px;}
.fs4_c00174{font-size:54.000000px;}
.fs2_c00174{font-size:57.000000px;}
.fs1_c00174{font-size:60.000000px;}
.y0_c00174{bottom:0.000000px;}
.yc_c00174{bottom:361.047450px;}
.yb_c00174{bottom:374.547450px;}
.ya_c00174{bottom:388.047450px;}
.y9_c00174{bottom:414.551400px;}
.y8_c00174{bottom:428.051400px;}
.y7_c00174{bottom:454.555350px;}
.y6_c00174{bottom:468.055350px;}
.y5_c00174{bottom:481.555350px;}
.y4_c00174{bottom:503.807250px;}
.y3_c00174{bottom:521.807250px;}
.y2_c00174{bottom:548.311200px;}
.yd_c00174{bottom:551.323050px;}
.y1a_c00174{bottom:806.955600px;}
.y18_c00174{bottom:845.592750px;}
.y17_c00174{bottom:859.092750px;}
.y16_c00174{bottom:885.596700px;}
.y15_c00174{bottom:899.096700px;}
.y14_c00174{bottom:925.600800px;}
.y13_c00174{bottom:939.100800px;}
.y12_c00174{bottom:952.600800px;}
.y11_c00174{bottom:974.852700px;}
.y10_c00174{bottom:992.852700px;}
.yf_c00174{bottom:1010.852700px;}
.ye_c00174{bottom:1037.356650px;}
.y19_c00174{bottom:1040.299350px;}
.y1_c00174{bottom:1093.600950px;}
.h8_c00174{height:25.200000px;}
.h7_c00174{height:30.282000px;}
.h5_c00174{height:34.080000px;}
.h2_c00174{height:39.264000px;}
.h3_c00174{height:39.984000px;}
.h4_c00174{height:43.260000px;}
.h6_c00174{height:43.740000px;}
.h1_c00174{height:1135.500000px;}
.h0_c00174{height:1135.506150px;}
.w0_c00174{width:893.950200px;}
.w1_c00174{width:894.000000px;}
.x0_c00174{left:0.000000px;}
.x4_c00174{left:128.626800px;}
.x5_c00174{left:141.382650px;}
.x7_c00174{left:145.752600px;}
.x2_c00174{left:188.061900px;}
.x3_c00174{left:190.513350px;}
.x6_c00174{left:321.799800px;}
.x1_c00174{left:800.165850px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls3_c00174{letter-spacing:-0.640000pt;}
.ls4_c00174{letter-spacing:-0.560000pt;}
.ls2_c00174{letter-spacing:-0.336000pt;}
.ls1_c00174{letter-spacing:0.000000pt;}
.ls0_c00174{letter-spacing:0.426667pt;}
.ws0_c00174{word-spacing:-9.685333pt;}
.ws1_c00174{word-spacing:-7.728000pt;}
.ws2_c00174{word-spacing:-5.766400pt;}
.ws3_c00174{word-spacing:0.000000pt;}
.ws5_c00174{word-spacing:0.336000pt;}
.ws4_c00174{word-spacing:6.272000pt;}
._0_c00174{margin-left:-2449.134400pt;}
._4_c00174{margin-left:-6.174933pt;}
._1_c00174{margin-left:-2.005333pt;}
._3_c00174{margin-left:-1.066667pt;}
._2_c00174{width:0.896000pt;}
._7_c00174{width:6.912000pt;}
._5_c00174{width:49.488000pt;}
._6_c00174{width:52.565333pt;}
.fs5_c00174{font-size:27.200000pt;}
.fs6_c00174{font-size:32.000000pt;}
.fs3_c00174{font-size:37.333333pt;}
.fs0_c00174{font-size:42.666667pt;}
.fs4_c00174{font-size:48.000000pt;}
.fs2_c00174{font-size:50.666667pt;}
.fs1_c00174{font-size:53.333333pt;}
.y0_c00174{bottom:0.000000pt;}
.yc_c00174{bottom:320.931067pt;}
.yb_c00174{bottom:332.931067pt;}
.ya_c00174{bottom:344.931067pt;}
.y9_c00174{bottom:368.490133pt;}
.y8_c00174{bottom:380.490133pt;}
.y7_c00174{bottom:404.049200pt;}
.y6_c00174{bottom:416.049200pt;}
.y5_c00174{bottom:428.049200pt;}
.y4_c00174{bottom:447.828667pt;}
.y3_c00174{bottom:463.828667pt;}
.y2_c00174{bottom:487.387733pt;}
.yd_c00174{bottom:490.064933pt;}
.y1a_c00174{bottom:717.293867pt;}
.y18_c00174{bottom:751.638000pt;}
.y17_c00174{bottom:763.638000pt;}
.y16_c00174{bottom:787.197067pt;}
.y15_c00174{bottom:799.197067pt;}
.y14_c00174{bottom:822.756267pt;}
.y13_c00174{bottom:834.756267pt;}
.y12_c00174{bottom:846.756267pt;}
.y11_c00174{bottom:866.535733pt;}
.y10_c00174{bottom:882.535733pt;}
.yf_c00174{bottom:898.535733pt;}
.ye_c00174{bottom:922.094800pt;}
.y19_c00174{bottom:924.710533pt;}
.y1_c00174{bottom:972.089733pt;}
.h8_c00174{height:22.400000pt;}
.h7_c00174{height:26.917333pt;}
.h5_c00174{height:30.293333pt;}
.h2_c00174{height:34.901333pt;}
.h3_c00174{height:35.541333pt;}
.h4_c00174{height:38.453333pt;}
.h6_c00174{height:38.880000pt;}
.h1_c00174{height:1009.333333pt;}
.h0_c00174{height:1009.338800pt;}
.w0_c00174{width:794.622400pt;}
.w1_c00174{width:794.666667pt;}
.x0_c00174{left:0.000000pt;}
.x4_c00174{left:114.334933pt;}
.x5_c00174{left:125.673467pt;}
.x7_c00174{left:129.557867pt;}
.x2_c00174{left:167.166133pt;}
.x3_c00174{left:169.345200pt;}
.x6_c00174{left:286.044267pt;}
.x1_c00174{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00175;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.067000;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00175{font-family:ff7_c00175;line-height:0.710000;font-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_c00175{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls4_c00175{letter-spacing:-0.810000px;}
.ls2_c00175{letter-spacing:-0.720000px;}
.ls3_c00175{letter-spacing:-0.630000px;}
.ls1_c00175{letter-spacing:-0.540000px;}
.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;}
}
.ws1_c00175{word-spacing:-8.694000px;}
.ws2_c00175{word-spacing:-6.487200px;}
.ws3_c00175{word-spacing:0.000000px;}
.ws5_c00175{word-spacing:0.540000px;}
.ws4_c00175{word-spacing:7.056000px;}
.ws0_c00175{word-spacing:1574.587200px;}
._3_c00175{margin-left:-7.042800px;}
._0_c00175{margin-left:-2.112000px;}
._1_c00175{margin-left:-1.104000px;}
._2_c00175{width:2.016000px;}
._6_c00175{width:7.776000px;}
._4_c00175{width:55.674000px;}
._5_c00175{width:59.136000px;}
.fc0_c00175{color:rgb(35,31,32);}
.fs5_c00175{font-size:30.600000px;}
.fs6_c00175{font-size:36.000000px;}
.fs3_c00175{font-size:42.000000px;}
.fs0_c00175{font-size:48.000000px;}
.fs4_c00175{font-size:54.000000px;}
.fs2_c00175{font-size:57.000000px;}
.fs1_c00175{font-size:60.000000px;}
.y0_c00175{bottom:0.000000px;}
.yc_c00175{bottom:361.685250px;}
.yb_c00175{bottom:375.185250px;}
.ya_c00175{bottom:388.685250px;}
.y9_c00175{bottom:415.189200px;}
.y8_c00175{bottom:428.689200px;}
.y7_c00175{bottom:455.193150px;}
.y6_c00175{bottom:468.693150px;}
.y5_c00175{bottom:482.193150px;}
.y4_c00175{bottom:504.445050px;}
.y3_c00175{bottom:522.445050px;}
.y2_c00175{bottom:548.949000px;}
.yd_c00175{bottom:551.323050px;}
.y19_c00175{bottom:832.261500px;}
.y18_c00175{bottom:845.761500px;}
.y17_c00175{bottom:859.261500px;}
.y16_c00175{bottom:885.765450px;}
.y15_c00175{bottom:899.265450px;}
.y14_c00175{bottom:925.769400px;}
.y13_c00175{bottom:939.269400px;}
.y12_c00175{bottom:952.769400px;}
.y11_c00175{bottom:975.021300px;}
.y10_c00175{bottom:993.021300px;}
.yf_c00175{bottom:1011.021300px;}
.ye_c00175{bottom:1037.525250px;}
.y1a_c00175{bottom:1040.299350px;}
.y1_c00175{bottom:1093.600950px;}
.h7_c00175{height:25.200000px;}
.h6_c00175{height:30.282000px;}
.h4_c00175{height:34.080000px;}
.h2_c00175{height:39.264000px;}
.h3_c00175{height:43.260000px;}
.h5_c00175{height:43.740000px;}
.h1_c00175{height:1135.500000px;}
.h0_c00175{height:1135.506150px;}
.w0_c00175{width:893.950200px;}
.w1_c00175{width:894.000000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:77.603100px;}
.x4_c00175{left:424.137150px;}
.x2_c00175{left:599.532150px;}
.x3_c00175{left:612.288150px;}
.x5_c00175{left:616.540050px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls4_c00175{letter-spacing:-0.720000pt;}
.ls2_c00175{letter-spacing:-0.640000pt;}
.ls3_c00175{letter-spacing:-0.560000pt;}
.ls1_c00175{letter-spacing:-0.480000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws1_c00175{word-spacing:-7.728000pt;}
.ws2_c00175{word-spacing:-5.766400pt;}
.ws3_c00175{word-spacing:0.000000pt;}
.ws5_c00175{word-spacing:0.480000pt;}
.ws4_c00175{word-spacing:6.272000pt;}
.ws0_c00175{word-spacing:1399.633067pt;}
._3_c00175{margin-left:-6.260267pt;}
._0_c00175{margin-left:-1.877333pt;}
._1_c00175{margin-left:-0.981333pt;}
._2_c00175{width:1.792000pt;}
._6_c00175{width:6.912000pt;}
._4_c00175{width:49.488000pt;}
._5_c00175{width:52.565333pt;}
.fs5_c00175{font-size:27.200000pt;}
.fs6_c00175{font-size:32.000000pt;}
.fs3_c00175{font-size:37.333333pt;}
.fs0_c00175{font-size:42.666667pt;}
.fs4_c00175{font-size:48.000000pt;}
.fs2_c00175{font-size:50.666667pt;}
.fs1_c00175{font-size:53.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.yc_c00175{bottom:321.498000pt;}
.yb_c00175{bottom:333.498000pt;}
.ya_c00175{bottom:345.498000pt;}
.y9_c00175{bottom:369.057067pt;}
.y8_c00175{bottom:381.057067pt;}
.y7_c00175{bottom:404.616133pt;}
.y6_c00175{bottom:416.616133pt;}
.y5_c00175{bottom:428.616133pt;}
.y4_c00175{bottom:448.395600pt;}
.y3_c00175{bottom:464.395600pt;}
.y2_c00175{bottom:487.954667pt;}
.yd_c00175{bottom:490.064933pt;}
.y19_c00175{bottom:739.788000pt;}
.y18_c00175{bottom:751.788000pt;}
.y17_c00175{bottom:763.788000pt;}
.y16_c00175{bottom:787.347067pt;}
.y15_c00175{bottom:799.347067pt;}
.y14_c00175{bottom:822.906133pt;}
.y13_c00175{bottom:834.906133pt;}
.y12_c00175{bottom:846.906133pt;}
.y11_c00175{bottom:866.685600pt;}
.y10_c00175{bottom:882.685600pt;}
.yf_c00175{bottom:898.685600pt;}
.ye_c00175{bottom:922.244667pt;}
.y1a_c00175{bottom:924.710533pt;}
.y1_c00175{bottom:972.089733pt;}
.h7_c00175{height:22.400000pt;}
.h6_c00175{height:26.917333pt;}
.h4_c00175{height:30.293333pt;}
.h2_c00175{height:34.901333pt;}
.h3_c00175{height:38.453333pt;}
.h5_c00175{height:38.880000pt;}
.h1_c00175{height:1009.333333pt;}
.h0_c00175{height:1009.338800pt;}
.w0_c00175{width:794.622400pt;}
.w1_c00175{width:794.666667pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:68.980533pt;}
.x4_c00175{left:377.010800pt;}
.x2_c00175{left:532.917467pt;}
.x3_c00175{left:544.256133pt;}
.x5_c00175{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:0.908000;font-style:normal;font-weight: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_c00176;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00176{font-family:ff7_c00176;line-height:1.067000;font-style:normal;font-weight: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_c00176;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00176{font-family:ff8_c00176;line-height:0.710000;font-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_c00176{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls2_c00176{letter-spacing:-0.720000px;}
.ls3_c00176{letter-spacing:-0.630000px;}
.ls1_c00176{letter-spacing:0.000000px;}
.ls0_c00176{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00176{word-spacing:-10.896000px;}
.ws1_c00176{word-spacing:-8.694000px;}
.ws2_c00176{word-spacing:-6.487200px;}
.ws3_c00176{word-spacing:0.000000px;}
.ws4_c00176{word-spacing:7.056000px;}
._0_c00176{margin-left:-2755.276200px;}
._4_c00176{margin-left:-6.946800px;}
._1_c00176{margin-left:-2.256000px;}
._3_c00176{margin-left:-1.200000px;}
._2_c00176{width:1.008000px;}
._7_c00176{width:7.776000px;}
._5_c00176{width:55.674000px;}
._6_c00176{width:59.136000px;}
.fc0_c00176{color:rgb(35,31,32);}
.fs5_c00176{font-size:30.600000px;}
.fs6_c00176{font-size:36.000000px;}
.fs3_c00176{font-size:42.000000px;}
.fs0_c00176{font-size:48.000000px;}
.fs4_c00176{font-size:54.000000px;}
.fs2_c00176{font-size:57.000000px;}
.fs1_c00176{font-size:60.000000px;}
.y0_c00176{bottom:0.000000px;}
.yc_c00176{bottom:361.260000px;}
.yb_c00176{bottom:374.760000px;}
.ya_c00176{bottom:388.260000px;}
.y9_c00176{bottom:414.763950px;}
.y8_c00176{bottom:428.263950px;}
.y7_c00176{bottom:454.767900px;}
.y6_c00176{bottom:468.267900px;}
.y5_c00176{bottom:481.767900px;}
.y4_c00176{bottom:504.019800px;}
.y3_c00176{bottom:522.019800px;}
.y2_c00176{bottom:548.523750px;}
.yd_c00176{bottom:550.897800px;}
.y18_c00176{bottom:849.598350px;}
.y17_c00176{bottom:863.098350px;}
.y16_c00176{bottom:876.598350px;}
.y15_c00176{bottom:903.102450px;}
.y14_c00176{bottom:916.602450px;}
.y13_c00176{bottom:943.106400px;}
.y12_c00176{bottom:956.606400px;}
.y11_c00176{bottom:970.106400px;}
.y10_c00176{bottom:992.358300px;}
.yf_c00176{bottom:1010.358300px;}
.ye_c00176{bottom:1036.862250px;}
.y19_c00176{bottom:1040.299350px;}
.y1_c00176{bottom:1093.600950px;}
.h8_c00176{height:25.200000px;}
.h7_c00176{height:30.282000px;}
.h5_c00176{height:34.080000px;}
.h2_c00176{height:39.264000px;}
.h3_c00176{height:39.984000px;}
.h4_c00176{height:43.260000px;}
.h6_c00176{height:43.740000px;}
.h1_c00176{height:1135.500000px;}
.h0_c00176{height:1135.506150px;}
.w0_c00176{width:893.950200px;}
.w1_c00176{width:894.000000px;}
.x0_c00176{left:0.000000px;}
.x4_c00176{left:128.626800px;}
.x5_c00176{left:141.382650px;}
.x2_c00176{left:188.061900px;}
.x3_c00176{left:190.513350px;}
.x6_c00176{left:321.799800px;}
.x1_c00176{left:800.165850px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls2_c00176{letter-spacing:-0.640000pt;}
.ls3_c00176{letter-spacing:-0.560000pt;}
.ls1_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:0.426667pt;}
.ws0_c00176{word-spacing:-9.685333pt;}
.ws1_c00176{word-spacing:-7.728000pt;}
.ws2_c00176{word-spacing:-5.766400pt;}
.ws3_c00176{word-spacing:0.000000pt;}
.ws4_c00176{word-spacing:6.272000pt;}
._0_c00176{margin-left:-2449.134400pt;}
._4_c00176{margin-left:-6.174933pt;}
._1_c00176{margin-left:-2.005333pt;}
._3_c00176{margin-left:-1.066667pt;}
._2_c00176{width:0.896000pt;}
._7_c00176{width:6.912000pt;}
._5_c00176{width:49.488000pt;}
._6_c00176{width:52.565333pt;}
.fs5_c00176{font-size:27.200000pt;}
.fs6_c00176{font-size:32.000000pt;}
.fs3_c00176{font-size:37.333333pt;}
.fs0_c00176{font-size:42.666667pt;}
.fs4_c00176{font-size:48.000000pt;}
.fs2_c00176{font-size:50.666667pt;}
.fs1_c00176{font-size:53.333333pt;}
.y0_c00176{bottom:0.000000pt;}
.yc_c00176{bottom:321.120000pt;}
.yb_c00176{bottom:333.120000pt;}
.ya_c00176{bottom:345.120000pt;}
.y9_c00176{bottom:368.679067pt;}
.y8_c00176{bottom:380.679067pt;}
.y7_c00176{bottom:404.238133pt;}
.y6_c00176{bottom:416.238133pt;}
.y5_c00176{bottom:428.238133pt;}
.y4_c00176{bottom:448.017600pt;}
.y3_c00176{bottom:464.017600pt;}
.y2_c00176{bottom:487.576667pt;}
.yd_c00176{bottom:489.686933pt;}
.y18_c00176{bottom:755.198533pt;}
.y17_c00176{bottom:767.198533pt;}
.y16_c00176{bottom:779.198533pt;}
.y15_c00176{bottom:802.757733pt;}
.y14_c00176{bottom:814.757733pt;}
.y13_c00176{bottom:838.316800pt;}
.y12_c00176{bottom:850.316800pt;}
.y11_c00176{bottom:862.316800pt;}
.y10_c00176{bottom:882.096267pt;}
.yf_c00176{bottom:898.096267pt;}
.ye_c00176{bottom:921.655333pt;}
.y19_c00176{bottom:924.710533pt;}
.y1_c00176{bottom:972.089733pt;}
.h8_c00176{height:22.400000pt;}
.h7_c00176{height:26.917333pt;}
.h5_c00176{height:30.293333pt;}
.h2_c00176{height:34.901333pt;}
.h3_c00176{height:35.541333pt;}
.h4_c00176{height:38.453333pt;}
.h6_c00176{height:38.880000pt;}
.h1_c00176{height:1009.333333pt;}
.h0_c00176{height:1009.338800pt;}
.w0_c00176{width:794.622400pt;}
.w1_c00176{width:794.666667pt;}
.x0_c00176{left:0.000000pt;}
.x4_c00176{left:114.334933pt;}
.x5_c00176{left:125.673467pt;}
.x2_c00176{left:167.166133pt;}
.x3_c00176{left:169.345200pt;}
.x6_c00176{left:286.044267pt;}
.x1_c00176{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00177;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00177;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00177{font-family:ff7_c00177;line-height:0.710000;font-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_c00177{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls3_c00177{letter-spacing:-1.026000px;}
.ls2_c00177{letter-spacing:-0.720000px;}
.ls4_c00177{letter-spacing:-0.630000px;}
.ls1_c00177{letter-spacing:-0.216000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00177{word-spacing:-8.694000px;}
.ws2_c00177{word-spacing:-6.487200px;}
.ws3_c00177{word-spacing:0.000000px;}
.ws5_c00177{word-spacing:0.216000px;}
.ws4_c00177{word-spacing:7.056000px;}
.ws0_c00177{word-spacing:1574.587200px;}
._3_c00177{margin-left:-7.042800px;}
._0_c00177{margin-left:-2.112000px;}
._1_c00177{margin-left:-1.104000px;}
._7_c00177{width:1.002000px;}
._2_c00177{width:2.016000px;}
._6_c00177{width:7.776000px;}
._4_c00177{width:55.674000px;}
._5_c00177{width:59.136000px;}
.fc0_c00177{color:rgb(35,31,32);}
.fs5_c00177{font-size:30.600000px;}
.fs6_c00177{font-size:36.000000px;}
.fs3_c00177{font-size:42.000000px;}
.fs0_c00177{font-size:48.000000px;}
.fs4_c00177{font-size:54.000000px;}
.fs2_c00177{font-size:57.000000px;}
.fs1_c00177{font-size:60.000000px;}
.y0_c00177{bottom:0.000000px;}
.ye_c00177{bottom:317.979150px;}
.yb_c00177{bottom:375.185250px;}
.ya_c00177{bottom:388.685250px;}
.y9_c00177{bottom:415.189200px;}
.y8_c00177{bottom:428.689200px;}
.y7_c00177{bottom:455.193150px;}
.y6_c00177{bottom:468.693150px;}
.y5_c00177{bottom:482.193150px;}
.y4_c00177{bottom:504.445050px;}
.y3_c00177{bottom:522.445050px;}
.y2_c00177{bottom:548.949000px;}
.yc_c00177{bottom:551.323050px;}
.y19_c00177{bottom:850.342350px;}
.y18_c00177{bottom:863.842350px;}
.y17_c00177{bottom:877.342350px;}
.y16_c00177{bottom:903.846300px;}
.y15_c00177{bottom:917.346300px;}
.y14_c00177{bottom:943.850250px;}
.y13_c00177{bottom:957.350250px;}
.y12_c00177{bottom:970.850250px;}
.y11_c00177{bottom:993.102300px;}
.y10_c00177{bottom:1011.102300px;}
.yf_c00177{bottom:1037.606250px;}
.yd_c00177{bottom:1040.299350px;}
.y1_c00177{bottom:1093.600950px;}
.h7_c00177{height:25.200000px;}
.h6_c00177{height:30.282000px;}
.h4_c00177{height:34.080000px;}
.h2_c00177{height:39.264000px;}
.h3_c00177{height:43.260000px;}
.h5_c00177{height:43.740000px;}
.h1_c00177{height:1135.500000px;}
.h0_c00177{height:1135.506150px;}
.w0_c00177{width:893.950200px;}
.w1_c00177{width:894.000000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:77.603100px;}
.x4_c00177{left:424.138500px;}
.x2_c00177{left:599.532150px;}
.x3_c00177{left:612.288150px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls3_c00177{letter-spacing:-0.912000pt;}
.ls2_c00177{letter-spacing:-0.640000pt;}
.ls4_c00177{letter-spacing:-0.560000pt;}
.ls1_c00177{letter-spacing:-0.192000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws1_c00177{word-spacing:-7.728000pt;}
.ws2_c00177{word-spacing:-5.766400pt;}
.ws3_c00177{word-spacing:0.000000pt;}
.ws5_c00177{word-spacing:0.192000pt;}
.ws4_c00177{word-spacing:6.272000pt;}
.ws0_c00177{word-spacing:1399.633067pt;}
._3_c00177{margin-left:-6.260267pt;}
._0_c00177{margin-left:-1.877333pt;}
._1_c00177{margin-left:-0.981333pt;}
._7_c00177{width:0.890667pt;}
._2_c00177{width:1.792000pt;}
._6_c00177{width:6.912000pt;}
._4_c00177{width:49.488000pt;}
._5_c00177{width:52.565333pt;}
.fs5_c00177{font-size:27.200000pt;}
.fs6_c00177{font-size:32.000000pt;}
.fs3_c00177{font-size:37.333333pt;}
.fs0_c00177{font-size:42.666667pt;}
.fs4_c00177{font-size:48.000000pt;}
.fs2_c00177{font-size:50.666667pt;}
.fs1_c00177{font-size:53.333333pt;}
.y0_c00177{bottom:0.000000pt;}
.ye_c00177{bottom:282.648133pt;}
.yb_c00177{bottom:333.498000pt;}
.ya_c00177{bottom:345.498000pt;}
.y9_c00177{bottom:369.057067pt;}
.y8_c00177{bottom:381.057067pt;}
.y7_c00177{bottom:404.616133pt;}
.y6_c00177{bottom:416.616133pt;}
.y5_c00177{bottom:428.616133pt;}
.y4_c00177{bottom:448.395600pt;}
.y3_c00177{bottom:464.395600pt;}
.y2_c00177{bottom:487.954667pt;}
.yc_c00177{bottom:490.064933pt;}
.y19_c00177{bottom:755.859867pt;}
.y18_c00177{bottom:767.859867pt;}
.y17_c00177{bottom:779.859867pt;}
.y16_c00177{bottom:803.418933pt;}
.y15_c00177{bottom:815.418933pt;}
.y14_c00177{bottom:838.978000pt;}
.y13_c00177{bottom:850.978000pt;}
.y12_c00177{bottom:862.978000pt;}
.y11_c00177{bottom:882.757600pt;}
.y10_c00177{bottom:898.757600pt;}
.yf_c00177{bottom:922.316667pt;}
.yd_c00177{bottom:924.710533pt;}
.y1_c00177{bottom:972.089733pt;}
.h7_c00177{height:22.400000pt;}
.h6_c00177{height:26.917333pt;}
.h4_c00177{height:30.293333pt;}
.h2_c00177{height:34.901333pt;}
.h3_c00177{height:38.453333pt;}
.h5_c00177{height:38.880000pt;}
.h1_c00177{height:1009.333333pt;}
.h0_c00177{height:1009.338800pt;}
.w0_c00177{width:794.622400pt;}
.w1_c00177{width:794.666667pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:68.980533pt;}
.x4_c00177{left:377.012000pt;}
.x2_c00177{left:532.917467pt;}
.x3_c00177{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00178;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00178{font-family:ff7_c00178;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00178;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00178{font-family:ff8_c00178;line-height:0.710000;font-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_c00178{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls2_c00178{letter-spacing:-0.864000px;}
.ls5_c00178{letter-spacing:-0.810000px;}
.ls3_c00178{letter-spacing:-0.720000px;}
.ls4_c00178{letter-spacing:-0.630000px;}
.ls6_c00178{letter-spacing:-0.486000px;}
.ls1_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00178{word-spacing:-11.880000px;}
.ws0_c00178{word-spacing:-10.896000px;}
.ws1_c00178{word-spacing:-8.694000px;}
.ws3_c00178{word-spacing:-6.487200px;}
.ws4_c00178{word-spacing:0.000000px;}
.ws6_c00178{word-spacing:0.864000px;}
.ws5_c00178{word-spacing:7.056000px;}
._0_c00178{margin-left:-2755.276200px;}
._4_c00178{margin-left:-6.946800px;}
._1_c00178{margin-left:-2.256000px;}
._3_c00178{margin-left:-1.200000px;}
._2_c00178{width:1.008000px;}
._7_c00178{width:7.776000px;}
._5_c00178{width:55.674000px;}
._6_c00178{width:59.136000px;}
.fc0_c00178{color:rgb(35,31,32);}
.fs5_c00178{font-size:30.600000px;}
.fs6_c00178{font-size:36.000000px;}
.fs3_c00178{font-size:42.000000px;}
.fs0_c00178{font-size:48.000000px;}
.fs4_c00178{font-size:54.000000px;}
.fs2_c00178{font-size:57.000000px;}
.fs1_c00178{font-size:60.000000px;}
.y0_c00178{bottom:0.000000px;}
.y19_c00178{bottom:343.685250px;}
.y18_c00178{bottom:357.185250px;}
.y17_c00178{bottom:370.685250px;}
.y16_c00178{bottom:397.189200px;}
.y15_c00178{bottom:410.689200px;}
.y14_c00178{bottom:437.193150px;}
.y13_c00178{bottom:450.693150px;}
.y12_c00178{bottom:464.193150px;}
.y11_c00178{bottom:486.445050px;}
.y10_c00178{bottom:504.445050px;}
.yf_c00178{bottom:522.445050px;}
.ye_c00178{bottom:548.949000px;}
.y1a_c00178{bottom:551.323050px;}
.yd_c00178{bottom:837.161550px;}
.yc_c00178{bottom:850.661550px;}
.yb_c00178{bottom:864.161550px;}
.ya_c00178{bottom:890.665500px;}
.y9_c00178{bottom:904.165500px;}
.y8_c00178{bottom:917.665500px;}
.y7_c00178{bottom:944.169450px;}
.y6_c00178{bottom:957.669450px;}
.y5_c00178{bottom:971.169450px;}
.y4_c00178{bottom:993.421350px;}
.y3_c00178{bottom:1011.421350px;}
.y2_c00178{bottom:1037.925300px;}
.y1_c00178{bottom:1093.600950px;}
.h8_c00178{height:25.200000px;}
.h7_c00178{height:30.282000px;}
.h5_c00178{height:34.080000px;}
.h2_c00178{height:39.264000px;}
.h3_c00178{height:39.984000px;}
.h4_c00178{height:43.260000px;}
.h6_c00178{height:43.740000px;}
.h1_c00178{height:1135.500000px;}
.h0_c00178{height:1135.506150px;}
.w0_c00178{width:893.950200px;}
.w1_c00178{width:894.000000px;}
.x0_c00178{left:0.000000px;}
.x4_c00178{left:128.626800px;}
.x5_c00178{left:141.382650px;}
.x6_c00178{left:145.634700px;}
.x2_c00178{left:188.061900px;}
.x3_c00178{left:190.513350px;}
.x7_c00178{left:321.801150px;}
.x1_c00178{left:800.165850px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls2_c00178{letter-spacing:-0.768000pt;}
.ls5_c00178{letter-spacing:-0.720000pt;}
.ls3_c00178{letter-spacing:-0.640000pt;}
.ls4_c00178{letter-spacing:-0.560000pt;}
.ls6_c00178{letter-spacing:-0.432000pt;}
.ls1_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:0.426667pt;}
.ws2_c00178{word-spacing:-10.560000pt;}
.ws0_c00178{word-spacing:-9.685333pt;}
.ws1_c00178{word-spacing:-7.728000pt;}
.ws3_c00178{word-spacing:-5.766400pt;}
.ws4_c00178{word-spacing:0.000000pt;}
.ws6_c00178{word-spacing:0.768000pt;}
.ws5_c00178{word-spacing:6.272000pt;}
._0_c00178{margin-left:-2449.134400pt;}
._4_c00178{margin-left:-6.174933pt;}
._1_c00178{margin-left:-2.005333pt;}
._3_c00178{margin-left:-1.066667pt;}
._2_c00178{width:0.896000pt;}
._7_c00178{width:6.912000pt;}
._5_c00178{width:49.488000pt;}
._6_c00178{width:52.565333pt;}
.fs5_c00178{font-size:27.200000pt;}
.fs6_c00178{font-size:32.000000pt;}
.fs3_c00178{font-size:37.333333pt;}
.fs0_c00178{font-size:42.666667pt;}
.fs4_c00178{font-size:48.000000pt;}
.fs2_c00178{font-size:50.666667pt;}
.fs1_c00178{font-size:53.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y19_c00178{bottom:305.498000pt;}
.y18_c00178{bottom:317.498000pt;}
.y17_c00178{bottom:329.498000pt;}
.y16_c00178{bottom:353.057067pt;}
.y15_c00178{bottom:365.057067pt;}
.y14_c00178{bottom:388.616133pt;}
.y13_c00178{bottom:400.616133pt;}
.y12_c00178{bottom:412.616133pt;}
.y11_c00178{bottom:432.395600pt;}
.y10_c00178{bottom:448.395600pt;}
.yf_c00178{bottom:464.395600pt;}
.ye_c00178{bottom:487.954667pt;}
.y1a_c00178{bottom:490.064933pt;}
.yd_c00178{bottom:744.143600pt;}
.yc_c00178{bottom:756.143600pt;}
.yb_c00178{bottom:768.143600pt;}
.ya_c00178{bottom:791.702667pt;}
.y9_c00178{bottom:803.702667pt;}
.y8_c00178{bottom:815.702667pt;}
.y7_c00178{bottom:839.261733pt;}
.y6_c00178{bottom:851.261733pt;}
.y5_c00178{bottom:863.261733pt;}
.y4_c00178{bottom:883.041200pt;}
.y3_c00178{bottom:899.041200pt;}
.y2_c00178{bottom:922.600267pt;}
.y1_c00178{bottom:972.089733pt;}
.h8_c00178{height:22.400000pt;}
.h7_c00178{height:26.917333pt;}
.h5_c00178{height:30.293333pt;}
.h2_c00178{height:34.901333pt;}
.h3_c00178{height:35.541333pt;}
.h4_c00178{height:38.453333pt;}
.h6_c00178{height:38.880000pt;}
.h1_c00178{height:1009.333333pt;}
.h0_c00178{height:1009.338800pt;}
.w0_c00178{width:794.622400pt;}
.w1_c00178{width:794.666667pt;}
.x0_c00178{left:0.000000pt;}
.x4_c00178{left:114.334933pt;}
.x5_c00178{left:125.673467pt;}
.x6_c00178{left:129.453067pt;}
.x2_c00178{left:167.166133pt;}
.x3_c00178{left:169.345200pt;}
.x7_c00178{left:286.045467pt;}
.x1_c00178{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00179;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00179;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00179{font-family:ff7_c00179;line-height:0.710000;font-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_c00179{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls1_c00179{letter-spacing:-1.890000px;}
.ls2_c00179{letter-spacing:-0.720000px;}
.ls3_c00179{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00179{word-spacing:-8.694000px;}
.ws2_c00179{word-spacing:-6.487200px;}
.ws3_c00179{word-spacing:0.000000px;}
.ws5_c00179{word-spacing:1.890000px;}
.ws4_c00179{word-spacing:7.056000px;}
.ws0_c00179{word-spacing:1574.587200px;}
._3_c00179{margin-left:-7.042800px;}
._0_c00179{margin-left:-2.112000px;}
._1_c00179{margin-left:-1.104000px;}
._2_c00179{width:2.016000px;}
._6_c00179{width:7.776000px;}
._4_c00179{width:55.674000px;}
._5_c00179{width:59.136000px;}
.fc0_c00179{color:rgb(35,31,32);}
.fs5_c00179{font-size:30.600000px;}
.fs6_c00179{font-size:36.000000px;}
.fs3_c00179{font-size:42.000000px;}
.fs0_c00179{font-size:48.000000px;}
.fs4_c00179{font-size:54.000000px;}
.fs2_c00179{font-size:57.000000px;}
.fs1_c00179{font-size:60.000000px;}
.y0_c00179{bottom:0.000000px;}
.y19_c00179{bottom:317.979150px;}
.y16_c00179{bottom:375.185250px;}
.y15_c00179{bottom:388.685250px;}
.y14_c00179{bottom:415.189200px;}
.y13_c00179{bottom:428.689200px;}
.y12_c00179{bottom:455.193150px;}
.y11_c00179{bottom:468.693150px;}
.y10_c00179{bottom:482.193150px;}
.yf_c00179{bottom:504.445050px;}
.ye_c00179{bottom:522.445050px;}
.yd_c00179{bottom:548.949000px;}
.y17_c00179{bottom:551.323050px;}
.yc_c00179{bottom:850.661550px;}
.yb_c00179{bottom:864.161550px;}
.ya_c00179{bottom:877.661550px;}
.y9_c00179{bottom:904.165500px;}
.y8_c00179{bottom:917.665500px;}
.y7_c00179{bottom:944.169450px;}
.y6_c00179{bottom:957.669450px;}
.y5_c00179{bottom:971.169450px;}
.y4_c00179{bottom:993.421350px;}
.y3_c00179{bottom:1011.421350px;}
.y2_c00179{bottom:1037.925300px;}
.y18_c00179{bottom:1040.299350px;}
.y1_c00179{bottom:1093.600950px;}
.h7_c00179{height:25.200000px;}
.h6_c00179{height:30.282000px;}
.h4_c00179{height:34.080000px;}
.h2_c00179{height:39.264000px;}
.h3_c00179{height:43.260000px;}
.h5_c00179{height:43.740000px;}
.h1_c00179{height:1135.500000px;}
.h0_c00179{height:1135.506150px;}
.w0_c00179{width:893.950200px;}
.w1_c00179{width:894.000000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:77.603100px;}
.x4_c00179{left:424.138500px;}
.x2_c00179{left:599.532150px;}
.x3_c00179{left:612.288150px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls1_c00179{letter-spacing:-1.680000pt;}
.ls2_c00179{letter-spacing:-0.640000pt;}
.ls3_c00179{letter-spacing:-0.560000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws1_c00179{word-spacing:-7.728000pt;}
.ws2_c00179{word-spacing:-5.766400pt;}
.ws3_c00179{word-spacing:0.000000pt;}
.ws5_c00179{word-spacing:1.680000pt;}
.ws4_c00179{word-spacing:6.272000pt;}
.ws0_c00179{word-spacing:1399.633067pt;}
._3_c00179{margin-left:-6.260267pt;}
._0_c00179{margin-left:-1.877333pt;}
._1_c00179{margin-left:-0.981333pt;}
._2_c00179{width:1.792000pt;}
._6_c00179{width:6.912000pt;}
._4_c00179{width:49.488000pt;}
._5_c00179{width:52.565333pt;}
.fs5_c00179{font-size:27.200000pt;}
.fs6_c00179{font-size:32.000000pt;}
.fs3_c00179{font-size:37.333333pt;}
.fs0_c00179{font-size:42.666667pt;}
.fs4_c00179{font-size:48.000000pt;}
.fs2_c00179{font-size:50.666667pt;}
.fs1_c00179{font-size:53.333333pt;}
.y0_c00179{bottom:0.000000pt;}
.y19_c00179{bottom:282.648133pt;}
.y16_c00179{bottom:333.498000pt;}
.y15_c00179{bottom:345.498000pt;}
.y14_c00179{bottom:369.057067pt;}
.y13_c00179{bottom:381.057067pt;}
.y12_c00179{bottom:404.616133pt;}
.y11_c00179{bottom:416.616133pt;}
.y10_c00179{bottom:428.616133pt;}
.yf_c00179{bottom:448.395600pt;}
.ye_c00179{bottom:464.395600pt;}
.yd_c00179{bottom:487.954667pt;}
.y17_c00179{bottom:490.064933pt;}
.yc_c00179{bottom:756.143600pt;}
.yb_c00179{bottom:768.143600pt;}
.ya_c00179{bottom:780.143600pt;}
.y9_c00179{bottom:803.702667pt;}
.y8_c00179{bottom:815.702667pt;}
.y7_c00179{bottom:839.261733pt;}
.y6_c00179{bottom:851.261733pt;}
.y5_c00179{bottom:863.261733pt;}
.y4_c00179{bottom:883.041200pt;}
.y3_c00179{bottom:899.041200pt;}
.y2_c00179{bottom:922.600267pt;}
.y18_c00179{bottom:924.710533pt;}
.y1_c00179{bottom:972.089733pt;}
.h7_c00179{height:22.400000pt;}
.h6_c00179{height:26.917333pt;}
.h4_c00179{height:30.293333pt;}
.h2_c00179{height:34.901333pt;}
.h3_c00179{height:38.453333pt;}
.h5_c00179{height:38.880000pt;}
.h1_c00179{height:1009.333333pt;}
.h0_c00179{height:1009.338800pt;}
.w0_c00179{width:794.622400pt;}
.w1_c00179{width:794.666667pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:68.980533pt;}
.x4_c00179{left:377.012000pt;}
.x2_c00179{left:532.917467pt;}
.x3_c00179{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00180;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00180{font-family:ff7_c00180;line-height:1.067000;font-style:normal;font-weight: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_c00180;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00180{font-family:ff8_c00180;line-height:0.710000;font-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_c00180{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls5_c00180{letter-spacing:-0.810000px;}
.ls3_c00180{letter-spacing:-0.720000px;}
.ls4_c00180{letter-spacing:-0.630000px;}
.ls2_c00180{letter-spacing:-0.378000px;}
.ls1_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00180{word-spacing:-8.694000px;}
.ws2_c00180{word-spacing:-6.487200px;}
.ws3_c00180{word-spacing:0.000000px;}
.ws5_c00180{word-spacing:0.378000px;}
.ws4_c00180{word-spacing:7.056000px;}
._0_c00180{margin-left:-2755.276200px;}
._4_c00180{margin-left:-6.946800px;}
._1_c00180{margin-left:-2.256000px;}
._3_c00180{margin-left:-1.200000px;}
._2_c00180{width:1.008000px;}
._7_c00180{width:7.776000px;}
._5_c00180{width:55.674000px;}
._6_c00180{width:59.136000px;}
.fc0_c00180{color:rgb(35,31,32);}
.fs5_c00180{font-size:30.600000px;}
.fs6_c00180{font-size:36.000000px;}
.fs3_c00180{font-size:42.000000px;}
.fs0_c00180{font-size:48.000000px;}
.fs4_c00180{font-size:54.000000px;}
.fs2_c00180{font-size:57.000000px;}
.fs1_c00180{font-size:60.000000px;}
.y0_c00180{bottom:0.000000px;}
.y17_c00180{bottom:361.472700px;}
.y16_c00180{bottom:374.972550px;}
.y15_c00180{bottom:388.472550px;}
.y14_c00180{bottom:414.976500px;}
.y13_c00180{bottom:428.476500px;}
.y12_c00180{bottom:454.980450px;}
.y11_c00180{bottom:468.480450px;}
.y10_c00180{bottom:481.980450px;}
.yf_c00180{bottom:504.232500px;}
.ye_c00180{bottom:522.232500px;}
.yd_c00180{bottom:548.736450px;}
.y18_c00180{bottom:551.110350px;}
.yc_c00180{bottom:850.449000px;}
.yb_c00180{bottom:863.949000px;}
.ya_c00180{bottom:877.449000px;}
.y9_c00180{bottom:903.952950px;}
.y8_c00180{bottom:917.452950px;}
.y7_c00180{bottom:943.956900px;}
.y6_c00180{bottom:957.456900px;}
.y5_c00180{bottom:970.956900px;}
.y4_c00180{bottom:993.208800px;}
.y3_c00180{bottom:1011.208800px;}
.y2_c00180{bottom:1037.712750px;}
.y19_c00180{bottom:1040.299350px;}
.y1_c00180{bottom:1093.600950px;}
.h8_c00180{height:25.200000px;}
.h7_c00180{height:30.282000px;}
.h5_c00180{height:34.080000px;}
.h2_c00180{height:39.264000px;}
.h3_c00180{height:39.984000px;}
.h4_c00180{height:43.260000px;}
.h6_c00180{height:43.740000px;}
.h1_c00180{height:1135.500000px;}
.h0_c00180{height:1135.506150px;}
.w0_c00180{width:893.950200px;}
.w1_c00180{width:894.000000px;}
.x0_c00180{left:0.000000px;}
.x4_c00180{left:128.626800px;}
.x5_c00180{left:141.382650px;}
.x2_c00180{left:188.061900px;}
.x3_c00180{left:190.513350px;}
.x6_c00180{left:321.801150px;}
.x1_c00180{left:800.165850px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls5_c00180{letter-spacing:-0.720000pt;}
.ls3_c00180{letter-spacing:-0.640000pt;}
.ls4_c00180{letter-spacing:-0.560000pt;}
.ls2_c00180{letter-spacing:-0.336000pt;}
.ls1_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.426667pt;}
.ws0_c00180{word-spacing:-9.685333pt;}
.ws1_c00180{word-spacing:-7.728000pt;}
.ws2_c00180{word-spacing:-5.766400pt;}
.ws3_c00180{word-spacing:0.000000pt;}
.ws5_c00180{word-spacing:0.336000pt;}
.ws4_c00180{word-spacing:6.272000pt;}
._0_c00180{margin-left:-2449.134400pt;}
._4_c00180{margin-left:-6.174933pt;}
._1_c00180{margin-left:-2.005333pt;}
._3_c00180{margin-left:-1.066667pt;}
._2_c00180{width:0.896000pt;}
._7_c00180{width:6.912000pt;}
._5_c00180{width:49.488000pt;}
._6_c00180{width:52.565333pt;}
.fs5_c00180{font-size:27.200000pt;}
.fs6_c00180{font-size:32.000000pt;}
.fs3_c00180{font-size:37.333333pt;}
.fs0_c00180{font-size:42.666667pt;}
.fs4_c00180{font-size:48.000000pt;}
.fs2_c00180{font-size:50.666667pt;}
.fs1_c00180{font-size:53.333333pt;}
.y0_c00180{bottom:0.000000pt;}
.y17_c00180{bottom:321.309067pt;}
.y16_c00180{bottom:333.308933pt;}
.y15_c00180{bottom:345.308933pt;}
.y14_c00180{bottom:368.868000pt;}
.y13_c00180{bottom:380.868000pt;}
.y12_c00180{bottom:404.427067pt;}
.y11_c00180{bottom:416.427067pt;}
.y10_c00180{bottom:428.427067pt;}
.yf_c00180{bottom:448.206667pt;}
.ye_c00180{bottom:464.206667pt;}
.yd_c00180{bottom:487.765733pt;}
.y18_c00180{bottom:489.875867pt;}
.yc_c00180{bottom:755.954667pt;}
.yb_c00180{bottom:767.954667pt;}
.ya_c00180{bottom:779.954667pt;}
.y9_c00180{bottom:803.513733pt;}
.y8_c00180{bottom:815.513733pt;}
.y7_c00180{bottom:839.072800pt;}
.y6_c00180{bottom:851.072800pt;}
.y5_c00180{bottom:863.072800pt;}
.y4_c00180{bottom:882.852267pt;}
.y3_c00180{bottom:898.852267pt;}
.y2_c00180{bottom:922.411333pt;}
.y19_c00180{bottom:924.710533pt;}
.y1_c00180{bottom:972.089733pt;}
.h8_c00180{height:22.400000pt;}
.h7_c00180{height:26.917333pt;}
.h5_c00180{height:30.293333pt;}
.h2_c00180{height:34.901333pt;}
.h3_c00180{height:35.541333pt;}
.h4_c00180{height:38.453333pt;}
.h6_c00180{height:38.880000pt;}
.h1_c00180{height:1009.333333pt;}
.h0_c00180{height:1009.338800pt;}
.w0_c00180{width:794.622400pt;}
.w1_c00180{width:794.666667pt;}
.x0_c00180{left:0.000000pt;}
.x4_c00180{left:114.334933pt;}
.x5_c00180{left:125.673467pt;}
.x2_c00180{left:167.166133pt;}
.x3_c00180{left:169.345200pt;}
.x6_c00180{left:286.045467pt;}
.x1_c00180{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00181;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls1_c00181{letter-spacing:-0.720000px;}
.ls2_c00181{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00181{word-spacing:-8.694000px;}
.ws2_c00181{word-spacing:0.000000px;}
.ws3_c00181{word-spacing:7.056000px;}
.ws0_c00181{word-spacing:1574.587200px;}
._3_c00181{margin-left:-7.042800px;}
._0_c00181{margin-left:-2.112000px;}
._1_c00181{margin-left:-1.104000px;}
._2_c00181{width:2.016000px;}
._6_c00181{width:7.776000px;}
._4_c00181{width:55.674000px;}
._5_c00181{width:59.136000px;}
.fc0_c00181{color:rgb(35,31,32);}
.fs3_c00181{font-size:42.000000px;}
.fs0_c00181{font-size:48.000000px;}
.fs4_c00181{font-size:54.000000px;}
.fs2_c00181{font-size:57.000000px;}
.fs1_c00181{font-size:60.000000px;}
.y0_c00181{bottom:0.000000px;}
.y19_c00181{bottom:348.185250px;}
.y18_c00181{bottom:361.685250px;}
.y17_c00181{bottom:375.185250px;}
.y16_c00181{bottom:401.689200px;}
.y15_c00181{bottom:415.189200px;}
.y14_c00181{bottom:428.689200px;}
.y13_c00181{bottom:455.193150px;}
.y12_c00181{bottom:468.693150px;}
.y11_c00181{bottom:482.193150px;}
.y10_c00181{bottom:504.445050px;}
.yf_c00181{bottom:522.445050px;}
.ye_c00181{bottom:548.949000px;}
.yd_c00181{bottom:837.161550px;}
.yc_c00181{bottom:850.661550px;}
.yb_c00181{bottom:864.161550px;}
.ya_c00181{bottom:890.665500px;}
.y9_c00181{bottom:904.165500px;}
.y8_c00181{bottom:917.665500px;}
.y7_c00181{bottom:944.169450px;}
.y6_c00181{bottom:957.669450px;}
.y5_c00181{bottom:971.169450px;}
.y4_c00181{bottom:993.421350px;}
.y3_c00181{bottom:1011.421350px;}
.y2_c00181{bottom:1037.925300px;}
.y1_c00181{bottom:1093.600950px;}
.h6_c00181{height:30.282000px;}
.h4_c00181{height:34.080000px;}
.h2_c00181{height:39.264000px;}
.h3_c00181{height:43.260000px;}
.h5_c00181{height:43.740000px;}
.h1_c00181{height:1135.500000px;}
.h0_c00181{height:1135.506150px;}
.w0_c00181{width:893.950200px;}
.w1_c00181{width:894.000000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:77.603100px;}
.x2_c00181{left:599.532150px;}
.x3_c00181{left:612.288150px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls1_c00181{letter-spacing:-0.640000pt;}
.ls2_c00181{letter-spacing:-0.560000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws1_c00181{word-spacing:-7.728000pt;}
.ws2_c00181{word-spacing:0.000000pt;}
.ws3_c00181{word-spacing:6.272000pt;}
.ws0_c00181{word-spacing:1399.633067pt;}
._3_c00181{margin-left:-6.260267pt;}
._0_c00181{margin-left:-1.877333pt;}
._1_c00181{margin-left:-0.981333pt;}
._2_c00181{width:1.792000pt;}
._6_c00181{width:6.912000pt;}
._4_c00181{width:49.488000pt;}
._5_c00181{width:52.565333pt;}
.fs3_c00181{font-size:37.333333pt;}
.fs0_c00181{font-size:42.666667pt;}
.fs4_c00181{font-size:48.000000pt;}
.fs2_c00181{font-size:50.666667pt;}
.fs1_c00181{font-size:53.333333pt;}
.y0_c00181{bottom:0.000000pt;}
.y19_c00181{bottom:309.498000pt;}
.y18_c00181{bottom:321.498000pt;}
.y17_c00181{bottom:333.498000pt;}
.y16_c00181{bottom:357.057067pt;}
.y15_c00181{bottom:369.057067pt;}
.y14_c00181{bottom:381.057067pt;}
.y13_c00181{bottom:404.616133pt;}
.y12_c00181{bottom:416.616133pt;}
.y11_c00181{bottom:428.616133pt;}
.y10_c00181{bottom:448.395600pt;}
.yf_c00181{bottom:464.395600pt;}
.ye_c00181{bottom:487.954667pt;}
.yd_c00181{bottom:744.143600pt;}
.yc_c00181{bottom:756.143600pt;}
.yb_c00181{bottom:768.143600pt;}
.ya_c00181{bottom:791.702667pt;}
.y9_c00181{bottom:803.702667pt;}
.y8_c00181{bottom:815.702667pt;}
.y7_c00181{bottom:839.261733pt;}
.y6_c00181{bottom:851.261733pt;}
.y5_c00181{bottom:863.261733pt;}
.y4_c00181{bottom:883.041200pt;}
.y3_c00181{bottom:899.041200pt;}
.y2_c00181{bottom:922.600267pt;}
.y1_c00181{bottom:972.089733pt;}
.h6_c00181{height:26.917333pt;}
.h4_c00181{height:30.293333pt;}
.h2_c00181{height:34.901333pt;}
.h3_c00181{height:38.453333pt;}
.h5_c00181{height:38.880000pt;}
.h1_c00181{height:1009.333333pt;}
.h0_c00181{height:1009.338800pt;}
.w0_c00181{width:794.622400pt;}
.w1_c00181{width:794.666667pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:68.980533pt;}
.x2_c00181{left:532.917467pt;}
.x3_c00181{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00182;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00182{font-family:ff6_c00182;line-height:0.908000;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00182{font-family:ff7_c00182;line-height:1.067000;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00182{font-family:ff8_c00182;line-height:0.710000;font-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_c00182{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls4_c00182{letter-spacing:-0.810000px;}
.ls2_c00182{letter-spacing:-0.720000px;}
.ls3_c00182{letter-spacing:-0.630000px;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00182{word-spacing:-8.694000px;}
.ws2_c00182{word-spacing:-6.487200px;}
.ws3_c00182{word-spacing:0.000000px;}
.ws4_c00182{word-spacing:7.056000px;}
._0_c00182{margin-left:-2755.276200px;}
._4_c00182{margin-left:-6.946800px;}
._8_c00182{margin-left:-4.560000px;}
._1_c00182{margin-left:-2.256000px;}
._3_c00182{margin-left:-1.200000px;}
._2_c00182{width:1.008000px;}
._7_c00182{width:7.776000px;}
._5_c00182{width:55.674000px;}
._6_c00182{width:59.136000px;}
.fc0_c00182{color:rgb(35,31,32);}
.fs5_c00182{font-size:30.600000px;}
.fs6_c00182{font-size:36.000000px;}
.fs3_c00182{font-size:42.000000px;}
.fs0_c00182{font-size:48.000000px;}
.fs4_c00182{font-size:54.000000px;}
.fs2_c00182{font-size:57.000000px;}
.fs1_c00182{font-size:60.000000px;}
.y0_c00182{bottom:0.000000px;}
.y19_c00182{bottom:317.979150px;}
.y16_c00182{bottom:374.972550px;}
.y15_c00182{bottom:388.472550px;}
.y14_c00182{bottom:414.976500px;}
.y13_c00182{bottom:428.476500px;}
.y12_c00182{bottom:454.980450px;}
.y11_c00182{bottom:468.480450px;}
.y10_c00182{bottom:481.980450px;}
.yf_c00182{bottom:504.232500px;}
.ye_c00182{bottom:522.232500px;}
.yd_c00182{bottom:548.736450px;}
.y17_c00182{bottom:551.110350px;}
.yc_c00182{bottom:850.449000px;}
.yb_c00182{bottom:863.949000px;}
.ya_c00182{bottom:877.449000px;}
.y9_c00182{bottom:903.952950px;}
.y8_c00182{bottom:917.452950px;}
.y7_c00182{bottom:943.956900px;}
.y6_c00182{bottom:957.456900px;}
.y5_c00182{bottom:970.956900px;}
.y4_c00182{bottom:993.208800px;}
.y3_c00182{bottom:1011.208800px;}
.y2_c00182{bottom:1037.712750px;}
.y18_c00182{bottom:1040.299350px;}
.y1_c00182{bottom:1093.600950px;}
.h8_c00182{height:25.200000px;}
.h7_c00182{height:30.282000px;}
.h5_c00182{height:34.080000px;}
.h2_c00182{height:39.264000px;}
.h3_c00182{height:39.984000px;}
.h4_c00182{height:43.260000px;}
.h6_c00182{height:43.740000px;}
.h1_c00182{height:1135.500000px;}
.h0_c00182{height:1135.506150px;}
.w0_c00182{width:893.950200px;}
.w1_c00182{width:894.000000px;}
.x0_c00182{left:0.000000px;}
.x4_c00182{left:128.626800px;}
.x5_c00182{left:141.382650px;}
.x2_c00182{left:188.061900px;}
.x3_c00182{left:190.513350px;}
.x6_c00182{left:321.801150px;}
.x1_c00182{left:800.165850px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls4_c00182{letter-spacing:-0.720000pt;}
.ls2_c00182{letter-spacing:-0.640000pt;}
.ls3_c00182{letter-spacing:-0.560000pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.426667pt;}
.ws0_c00182{word-spacing:-9.685333pt;}
.ws1_c00182{word-spacing:-7.728000pt;}
.ws2_c00182{word-spacing:-5.766400pt;}
.ws3_c00182{word-spacing:0.000000pt;}
.ws4_c00182{word-spacing:6.272000pt;}
._0_c00182{margin-left:-2449.134400pt;}
._4_c00182{margin-left:-6.174933pt;}
._8_c00182{margin-left:-4.053333pt;}
._1_c00182{margin-left:-2.005333pt;}
._3_c00182{margin-left:-1.066667pt;}
._2_c00182{width:0.896000pt;}
._7_c00182{width:6.912000pt;}
._5_c00182{width:49.488000pt;}
._6_c00182{width:52.565333pt;}
.fs5_c00182{font-size:27.200000pt;}
.fs6_c00182{font-size:32.000000pt;}
.fs3_c00182{font-size:37.333333pt;}
.fs0_c00182{font-size:42.666667pt;}
.fs4_c00182{font-size:48.000000pt;}
.fs2_c00182{font-size:50.666667pt;}
.fs1_c00182{font-size:53.333333pt;}
.y0_c00182{bottom:0.000000pt;}
.y19_c00182{bottom:282.648133pt;}
.y16_c00182{bottom:333.308933pt;}
.y15_c00182{bottom:345.308933pt;}
.y14_c00182{bottom:368.868000pt;}
.y13_c00182{bottom:380.868000pt;}
.y12_c00182{bottom:404.427067pt;}
.y11_c00182{bottom:416.427067pt;}
.y10_c00182{bottom:428.427067pt;}
.yf_c00182{bottom:448.206667pt;}
.ye_c00182{bottom:464.206667pt;}
.yd_c00182{bottom:487.765733pt;}
.y17_c00182{bottom:489.875867pt;}
.yc_c00182{bottom:755.954667pt;}
.yb_c00182{bottom:767.954667pt;}
.ya_c00182{bottom:779.954667pt;}
.y9_c00182{bottom:803.513733pt;}
.y8_c00182{bottom:815.513733pt;}
.y7_c00182{bottom:839.072800pt;}
.y6_c00182{bottom:851.072800pt;}
.y5_c00182{bottom:863.072800pt;}
.y4_c00182{bottom:882.852267pt;}
.y3_c00182{bottom:898.852267pt;}
.y2_c00182{bottom:922.411333pt;}
.y18_c00182{bottom:924.710533pt;}
.y1_c00182{bottom:972.089733pt;}
.h8_c00182{height:22.400000pt;}
.h7_c00182{height:26.917333pt;}
.h5_c00182{height:30.293333pt;}
.h2_c00182{height:34.901333pt;}
.h3_c00182{height:35.541333pt;}
.h4_c00182{height:38.453333pt;}
.h6_c00182{height:38.880000pt;}
.h1_c00182{height:1009.333333pt;}
.h0_c00182{height:1009.338800pt;}
.w0_c00182{width:794.622400pt;}
.w1_c00182{width:794.666667pt;}
.x0_c00182{left:0.000000pt;}
.x4_c00182{left:114.334933pt;}
.x5_c00182{left:125.673467pt;}
.x2_c00182{left:167.166133pt;}
.x3_c00182{left:169.345200pt;}
.x6_c00182{left:286.045467pt;}
.x1_c00182{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:1.067000;font-style:normal;font-weight: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_c00183;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00183{font-family:ff7_c00183;line-height:0.710000;font-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_c00183{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls2_c00183{letter-spacing:-0.720000px;}
.ls4_c00183{letter-spacing:-0.702000px;}
.ls3_c00183{letter-spacing:-0.630000px;}
.ls1_c00183{letter-spacing:-0.540000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00183{word-spacing:-8.694000px;}
.ws2_c00183{word-spacing:-6.487200px;}
.ws3_c00183{word-spacing:0.000000px;}
.ws6_c00183{word-spacing:0.702000px;}
.ws4_c00183{word-spacing:7.056000px;}
.ws5_c00183{word-spacing:56.214000px;}
.ws0_c00183{word-spacing:1574.587200px;}
._3_c00183{margin-left:-7.042800px;}
._4_c00183{margin-left:-4.481400px;}
._0_c00183{margin-left:-2.112000px;}
._1_c00183{margin-left:-1.104000px;}
._2_c00183{width:2.016000px;}
._6_c00183{width:7.776000px;}
._7_c00183{width:55.674000px;}
._5_c00183{width:59.136000px;}
.fc0_c00183{color:rgb(35,31,32);}
.fs5_c00183{font-size:30.600000px;}
.fs6_c00183{font-size:36.000000px;}
.fs3_c00183{font-size:42.000000px;}
.fs0_c00183{font-size:48.000000px;}
.fs4_c00183{font-size:54.000000px;}
.fs2_c00183{font-size:57.000000px;}
.fs1_c00183{font-size:60.000000px;}
.y0_c00183{bottom:0.000000px;}
.y18_c00183{bottom:348.185250px;}
.y17_c00183{bottom:361.685250px;}
.y16_c00183{bottom:375.185250px;}
.y15_c00183{bottom:401.689200px;}
.y14_c00183{bottom:415.189200px;}
.y13_c00183{bottom:428.689200px;}
.y12_c00183{bottom:455.193150px;}
.y11_c00183{bottom:468.693150px;}
.y10_c00183{bottom:482.193150px;}
.yf_c00183{bottom:504.445050px;}
.ye_c00183{bottom:522.445050px;}
.yd_c00183{bottom:548.949000px;}
.yc_c00183{bottom:850.661550px;}
.yb_c00183{bottom:864.161550px;}
.ya_c00183{bottom:877.661550px;}
.y9_c00183{bottom:904.165500px;}
.y8_c00183{bottom:917.665500px;}
.y7_c00183{bottom:944.169450px;}
.y6_c00183{bottom:957.669450px;}
.y5_c00183{bottom:971.169450px;}
.y4_c00183{bottom:993.421350px;}
.y3_c00183{bottom:1011.421350px;}
.y2_c00183{bottom:1037.925300px;}
.y19_c00183{bottom:1040.299350px;}
.y1_c00183{bottom:1093.600950px;}
.h7_c00183{height:25.200000px;}
.h6_c00183{height:30.282000px;}
.h4_c00183{height:34.080000px;}
.h2_c00183{height:39.264000px;}
.h3_c00183{height:43.260000px;}
.h5_c00183{height:43.740000px;}
.h1_c00183{height:1135.500000px;}
.h0_c00183{height:1135.506150px;}
.w0_c00183{width:893.950200px;}
.w1_c00183{width:894.000000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:77.603100px;}
.x4_c00183{left:424.138500px;}
.x2_c00183{left:599.532150px;}
.x3_c00183{left:612.288150px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls2_c00183{letter-spacing:-0.640000pt;}
.ls4_c00183{letter-spacing:-0.624000pt;}
.ls3_c00183{letter-spacing:-0.560000pt;}
.ls1_c00183{letter-spacing:-0.480000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws1_c00183{word-spacing:-7.728000pt;}
.ws2_c00183{word-spacing:-5.766400pt;}
.ws3_c00183{word-spacing:0.000000pt;}
.ws6_c00183{word-spacing:0.624000pt;}
.ws4_c00183{word-spacing:6.272000pt;}
.ws5_c00183{word-spacing:49.968000pt;}
.ws0_c00183{word-spacing:1399.633067pt;}
._3_c00183{margin-left:-6.260267pt;}
._4_c00183{margin-left:-3.983467pt;}
._0_c00183{margin-left:-1.877333pt;}
._1_c00183{margin-left:-0.981333pt;}
._2_c00183{width:1.792000pt;}
._6_c00183{width:6.912000pt;}
._7_c00183{width:49.488000pt;}
._5_c00183{width:52.565333pt;}
.fs5_c00183{font-size:27.200000pt;}
.fs6_c00183{font-size:32.000000pt;}
.fs3_c00183{font-size:37.333333pt;}
.fs0_c00183{font-size:42.666667pt;}
.fs4_c00183{font-size:48.000000pt;}
.fs2_c00183{font-size:50.666667pt;}
.fs1_c00183{font-size:53.333333pt;}
.y0_c00183{bottom:0.000000pt;}
.y18_c00183{bottom:309.498000pt;}
.y17_c00183{bottom:321.498000pt;}
.y16_c00183{bottom:333.498000pt;}
.y15_c00183{bottom:357.057067pt;}
.y14_c00183{bottom:369.057067pt;}
.y13_c00183{bottom:381.057067pt;}
.y12_c00183{bottom:404.616133pt;}
.y11_c00183{bottom:416.616133pt;}
.y10_c00183{bottom:428.616133pt;}
.yf_c00183{bottom:448.395600pt;}
.ye_c00183{bottom:464.395600pt;}
.yd_c00183{bottom:487.954667pt;}
.yc_c00183{bottom:756.143600pt;}
.yb_c00183{bottom:768.143600pt;}
.ya_c00183{bottom:780.143600pt;}
.y9_c00183{bottom:803.702667pt;}
.y8_c00183{bottom:815.702667pt;}
.y7_c00183{bottom:839.261733pt;}
.y6_c00183{bottom:851.261733pt;}
.y5_c00183{bottom:863.261733pt;}
.y4_c00183{bottom:883.041200pt;}
.y3_c00183{bottom:899.041200pt;}
.y2_c00183{bottom:922.600267pt;}
.y19_c00183{bottom:924.710533pt;}
.y1_c00183{bottom:972.089733pt;}
.h7_c00183{height:22.400000pt;}
.h6_c00183{height:26.917333pt;}
.h4_c00183{height:30.293333pt;}
.h2_c00183{height:34.901333pt;}
.h3_c00183{height:38.453333pt;}
.h5_c00183{height:38.880000pt;}
.h1_c00183{height:1009.333333pt;}
.h0_c00183{height:1009.338800pt;}
.w0_c00183{width:794.622400pt;}
.w1_c00183{width:794.666667pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:68.980533pt;}
.x4_c00183{left:377.012000pt;}
.x2_c00183{left:532.917467pt;}
.x3_c00183{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:0.908000;font-style:normal;font-weight: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_c00184;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00184{font-family:ff7_c00184;line-height:1.067000;font-style:normal;font-weight: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_c00184;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00184{font-family:ff8_c00184;line-height:0.710000;font-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_c00184{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls5_c00184{letter-spacing:-0.810000px;}
.ls3_c00184{letter-spacing:-0.720000px;}
.ls4_c00184{letter-spacing:-0.630000px;}
.ls2_c00184{letter-spacing:-0.540000px;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00184{word-spacing:-8.694000px;}
.ws2_c00184{word-spacing:-6.487200px;}
.ws3_c00184{word-spacing:0.000000px;}
.ws5_c00184{word-spacing:0.540000px;}
.ws4_c00184{word-spacing:7.056000px;}
._0_c00184{margin-left:-2755.276200px;}
._4_c00184{margin-left:-6.946800px;}
._8_c00184{margin-left:-3.780000px;}
._1_c00184{margin-left:-2.256000px;}
._3_c00184{margin-left:-1.200000px;}
._2_c00184{width:1.008000px;}
._7_c00184{width:7.776000px;}
._5_c00184{width:55.674000px;}
._6_c00184{width:59.136000px;}
.fc0_c00184{color:rgb(35,31,32);}
.fs5_c00184{font-size:30.600000px;}
.fs6_c00184{font-size:36.000000px;}
.fs3_c00184{font-size:42.000000px;}
.fs0_c00184{font-size:48.000000px;}
.fs4_c00184{font-size:54.000000px;}
.fs2_c00184{font-size:57.000000px;}
.fs1_c00184{font-size:60.000000px;}
.y0_c00184{bottom:0.000000px;}
.y17_c00184{bottom:361.472700px;}
.y16_c00184{bottom:374.972550px;}
.y15_c00184{bottom:388.472550px;}
.y14_c00184{bottom:414.976500px;}
.y13_c00184{bottom:428.476500px;}
.y12_c00184{bottom:454.980450px;}
.y11_c00184{bottom:468.480450px;}
.y10_c00184{bottom:481.980450px;}
.yf_c00184{bottom:504.232500px;}
.ye_c00184{bottom:522.232500px;}
.yd_c00184{bottom:548.736450px;}
.y18_c00184{bottom:551.110350px;}
.yc_c00184{bottom:850.449000px;}
.yb_c00184{bottom:863.949000px;}
.ya_c00184{bottom:877.449000px;}
.y9_c00184{bottom:903.952950px;}
.y8_c00184{bottom:917.452950px;}
.y7_c00184{bottom:943.956900px;}
.y6_c00184{bottom:957.456900px;}
.y5_c00184{bottom:970.956900px;}
.y4_c00184{bottom:993.208800px;}
.y3_c00184{bottom:1011.208800px;}
.y2_c00184{bottom:1037.712750px;}
.y19_c00184{bottom:1040.299350px;}
.y1_c00184{bottom:1093.600950px;}
.h8_c00184{height:25.200000px;}
.h7_c00184{height:30.282000px;}
.h5_c00184{height:34.080000px;}
.h2_c00184{height:39.264000px;}
.h3_c00184{height:39.984000px;}
.h4_c00184{height:43.260000px;}
.h6_c00184{height:43.740000px;}
.h1_c00184{height:1135.500000px;}
.h0_c00184{height:1135.506150px;}
.w0_c00184{width:893.950200px;}
.w1_c00184{width:894.000000px;}
.x0_c00184{left:0.000000px;}
.x4_c00184{left:128.626800px;}
.x5_c00184{left:141.382650px;}
.x2_c00184{left:188.061900px;}
.x3_c00184{left:190.513350px;}
.x6_c00184{left:321.801150px;}
.x1_c00184{left:800.165850px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls5_c00184{letter-spacing:-0.720000pt;}
.ls3_c00184{letter-spacing:-0.640000pt;}
.ls4_c00184{letter-spacing:-0.560000pt;}
.ls2_c00184{letter-spacing:-0.480000pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.426667pt;}
.ws0_c00184{word-spacing:-9.685333pt;}
.ws1_c00184{word-spacing:-7.728000pt;}
.ws2_c00184{word-spacing:-5.766400pt;}
.ws3_c00184{word-spacing:0.000000pt;}
.ws5_c00184{word-spacing:0.480000pt;}
.ws4_c00184{word-spacing:6.272000pt;}
._0_c00184{margin-left:-2449.134400pt;}
._4_c00184{margin-left:-6.174933pt;}
._8_c00184{margin-left:-3.360000pt;}
._1_c00184{margin-left:-2.005333pt;}
._3_c00184{margin-left:-1.066667pt;}
._2_c00184{width:0.896000pt;}
._7_c00184{width:6.912000pt;}
._5_c00184{width:49.488000pt;}
._6_c00184{width:52.565333pt;}
.fs5_c00184{font-size:27.200000pt;}
.fs6_c00184{font-size:32.000000pt;}
.fs3_c00184{font-size:37.333333pt;}
.fs0_c00184{font-size:42.666667pt;}
.fs4_c00184{font-size:48.000000pt;}
.fs2_c00184{font-size:50.666667pt;}
.fs1_c00184{font-size:53.333333pt;}
.y0_c00184{bottom:0.000000pt;}
.y17_c00184{bottom:321.309067pt;}
.y16_c00184{bottom:333.308933pt;}
.y15_c00184{bottom:345.308933pt;}
.y14_c00184{bottom:368.868000pt;}
.y13_c00184{bottom:380.868000pt;}
.y12_c00184{bottom:404.427067pt;}
.y11_c00184{bottom:416.427067pt;}
.y10_c00184{bottom:428.427067pt;}
.yf_c00184{bottom:448.206667pt;}
.ye_c00184{bottom:464.206667pt;}
.yd_c00184{bottom:487.765733pt;}
.y18_c00184{bottom:489.875867pt;}
.yc_c00184{bottom:755.954667pt;}
.yb_c00184{bottom:767.954667pt;}
.ya_c00184{bottom:779.954667pt;}
.y9_c00184{bottom:803.513733pt;}
.y8_c00184{bottom:815.513733pt;}
.y7_c00184{bottom:839.072800pt;}
.y6_c00184{bottom:851.072800pt;}
.y5_c00184{bottom:863.072800pt;}
.y4_c00184{bottom:882.852267pt;}
.y3_c00184{bottom:898.852267pt;}
.y2_c00184{bottom:922.411333pt;}
.y19_c00184{bottom:924.710533pt;}
.y1_c00184{bottom:972.089733pt;}
.h8_c00184{height:22.400000pt;}
.h7_c00184{height:26.917333pt;}
.h5_c00184{height:30.293333pt;}
.h2_c00184{height:34.901333pt;}
.h3_c00184{height:35.541333pt;}
.h4_c00184{height:38.453333pt;}
.h6_c00184{height:38.880000pt;}
.h1_c00184{height:1009.333333pt;}
.h0_c00184{height:1009.338800pt;}
.w0_c00184{width:794.622400pt;}
.w1_c00184{width:794.666667pt;}
.x0_c00184{left:0.000000pt;}
.x4_c00184{left:114.334933pt;}
.x5_c00184{left:125.673467pt;}
.x2_c00184{left:167.166133pt;}
.x3_c00184{left:169.345200pt;}
.x6_c00184{left:286.045467pt;}
.x1_c00184{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00185;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00185{font-family:ff6_c00185;line-height:1.067000;font-style:normal;font-weight: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_c00185;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00185{font-family:ff7_c00185;line-height:0.710000;font-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_c00185{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls1_c00185{letter-spacing:-0.864000px;}
.ls2_c00185{letter-spacing:-0.720000px;}
.ls3_c00185{letter-spacing:-0.630000px;}
.ls4_c00185{letter-spacing:-0.378000px;}
.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;}
}
.ws1_c00185{word-spacing:-8.694000px;}
.ws2_c00185{word-spacing:-6.487200px;}
.ws3_c00185{word-spacing:0.000000px;}
.ws5_c00185{word-spacing:0.864000px;}
.ws4_c00185{word-spacing:7.056000px;}
.ws6_c00185{word-spacing:56.052000px;}
.ws0_c00185{word-spacing:1574.587200px;}
._3_c00185{margin-left:-7.042800px;}
._0_c00185{margin-left:-2.112000px;}
._1_c00185{margin-left:-1.104000px;}
._2_c00185{width:2.016000px;}
._6_c00185{width:7.776000px;}
._4_c00185{width:55.674000px;}
._5_c00185{width:59.136000px;}
.fc0_c00185{color:rgb(35,31,32);}
.fs5_c00185{font-size:30.600000px;}
.fs6_c00185{font-size:36.000000px;}
.fs3_c00185{font-size:42.000000px;}
.fs0_c00185{font-size:48.000000px;}
.fs4_c00185{font-size:54.000000px;}
.fs2_c00185{font-size:57.000000px;}
.fs1_c00185{font-size:60.000000px;}
.y0_c00185{bottom:0.000000px;}
.y18_c00185{bottom:361.685250px;}
.y17_c00185{bottom:375.185250px;}
.y16_c00185{bottom:388.685250px;}
.y15_c00185{bottom:415.189200px;}
.y14_c00185{bottom:428.689200px;}
.y13_c00185{bottom:455.193150px;}
.y12_c00185{bottom:468.693150px;}
.y11_c00185{bottom:482.193150px;}
.y10_c00185{bottom:504.445050px;}
.yf_c00185{bottom:522.445050px;}
.ye_c00185{bottom:548.949000px;}
.y19_c00185{bottom:551.323050px;}
.yd_c00185{bottom:837.161550px;}
.yc_c00185{bottom:850.661550px;}
.yb_c00185{bottom:864.161550px;}
.ya_c00185{bottom:890.665500px;}
.y9_c00185{bottom:904.165500px;}
.y8_c00185{bottom:917.665500px;}
.y7_c00185{bottom:944.169450px;}
.y6_c00185{bottom:957.669450px;}
.y5_c00185{bottom:971.169450px;}
.y4_c00185{bottom:993.421350px;}
.y3_c00185{bottom:1011.421350px;}
.y2_c00185{bottom:1037.925300px;}
.y1_c00185{bottom:1093.600950px;}
.h7_c00185{height:25.200000px;}
.h6_c00185{height:30.282000px;}
.h4_c00185{height:34.080000px;}
.h2_c00185{height:39.264000px;}
.h3_c00185{height:43.260000px;}
.h5_c00185{height:43.740000px;}
.h1_c00185{height:1135.500000px;}
.h0_c00185{height:1135.506150px;}
.w0_c00185{width:893.950200px;}
.w1_c00185{width:894.000000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:77.603100px;}
.x4_c00185{left:424.138500px;}
.x2_c00185{left:599.532150px;}
.x3_c00185{left:612.288150px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls1_c00185{letter-spacing:-0.768000pt;}
.ls2_c00185{letter-spacing:-0.640000pt;}
.ls3_c00185{letter-spacing:-0.560000pt;}
.ls4_c00185{letter-spacing:-0.336000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws1_c00185{word-spacing:-7.728000pt;}
.ws2_c00185{word-spacing:-5.766400pt;}
.ws3_c00185{word-spacing:0.000000pt;}
.ws5_c00185{word-spacing:0.768000pt;}
.ws4_c00185{word-spacing:6.272000pt;}
.ws6_c00185{word-spacing:49.824000pt;}
.ws0_c00185{word-spacing:1399.633067pt;}
._3_c00185{margin-left:-6.260267pt;}
._0_c00185{margin-left:-1.877333pt;}
._1_c00185{margin-left:-0.981333pt;}
._2_c00185{width:1.792000pt;}
._6_c00185{width:6.912000pt;}
._4_c00185{width:49.488000pt;}
._5_c00185{width:52.565333pt;}
.fs5_c00185{font-size:27.200000pt;}
.fs6_c00185{font-size:32.000000pt;}
.fs3_c00185{font-size:37.333333pt;}
.fs0_c00185{font-size:42.666667pt;}
.fs4_c00185{font-size:48.000000pt;}
.fs2_c00185{font-size:50.666667pt;}
.fs1_c00185{font-size:53.333333pt;}
.y0_c00185{bottom:0.000000pt;}
.y18_c00185{bottom:321.498000pt;}
.y17_c00185{bottom:333.498000pt;}
.y16_c00185{bottom:345.498000pt;}
.y15_c00185{bottom:369.057067pt;}
.y14_c00185{bottom:381.057067pt;}
.y13_c00185{bottom:404.616133pt;}
.y12_c00185{bottom:416.616133pt;}
.y11_c00185{bottom:428.616133pt;}
.y10_c00185{bottom:448.395600pt;}
.yf_c00185{bottom:464.395600pt;}
.ye_c00185{bottom:487.954667pt;}
.y19_c00185{bottom:490.064933pt;}
.yd_c00185{bottom:744.143600pt;}
.yc_c00185{bottom:756.143600pt;}
.yb_c00185{bottom:768.143600pt;}
.ya_c00185{bottom:791.702667pt;}
.y9_c00185{bottom:803.702667pt;}
.y8_c00185{bottom:815.702667pt;}
.y7_c00185{bottom:839.261733pt;}
.y6_c00185{bottom:851.261733pt;}
.y5_c00185{bottom:863.261733pt;}
.y4_c00185{bottom:883.041200pt;}
.y3_c00185{bottom:899.041200pt;}
.y2_c00185{bottom:922.600267pt;}
.y1_c00185{bottom:972.089733pt;}
.h7_c00185{height:22.400000pt;}
.h6_c00185{height:26.917333pt;}
.h4_c00185{height:30.293333pt;}
.h2_c00185{height:34.901333pt;}
.h3_c00185{height:38.453333pt;}
.h5_c00185{height:38.880000pt;}
.h1_c00185{height:1009.333333pt;}
.h0_c00185{height:1009.338800pt;}
.w0_c00185{width:794.622400pt;}
.w1_c00185{width:794.666667pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:68.980533pt;}
.x4_c00185{left:377.012000pt;}
.x2_c00185{left:532.917467pt;}
.x3_c00185{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00186;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00186{font-family:ff7_c00186;line-height:1.067000;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00186{font-family:ff8_c00186;line-height:0.710000;font-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_c00186{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls5_c00186{letter-spacing:-0.810000px;}
.ls3_c00186{letter-spacing:-0.720000px;}
.ls4_c00186{letter-spacing:-0.630000px;}
.ls2_c00186{letter-spacing:-0.540000px;}
.ls1_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.480000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-10.896000px;}
.ws1_c00186{word-spacing:-8.694000px;}
.ws2_c00186{word-spacing:-6.487200px;}
.ws3_c00186{word-spacing:0.000000px;}
.ws5_c00186{word-spacing:0.540000px;}
.ws4_c00186{word-spacing:7.056000px;}
._0_c00186{margin-left:-2755.276200px;}
._4_c00186{margin-left:-6.946800px;}
._1_c00186{margin-left:-2.256000px;}
._3_c00186{margin-left:-1.200000px;}
._2_c00186{width:1.008000px;}
._7_c00186{width:7.776000px;}
._5_c00186{width:55.674000px;}
._6_c00186{width:59.136000px;}
.fc0_c00186{color:rgb(35,31,32);}
.fs5_c00186{font-size:30.600000px;}
.fs6_c00186{font-size:36.000000px;}
.fs3_c00186{font-size:42.000000px;}
.fs0_c00186{font-size:48.000000px;}
.fs4_c00186{font-size:54.000000px;}
.fs2_c00186{font-size:57.000000px;}
.fs1_c00186{font-size:60.000000px;}
.y0_c00186{bottom:0.000000px;}
.y19_c00186{bottom:317.979150px;}
.y16_c00186{bottom:374.972550px;}
.y15_c00186{bottom:388.472550px;}
.y14_c00186{bottom:414.976500px;}
.y13_c00186{bottom:428.476500px;}
.y12_c00186{bottom:454.980450px;}
.y11_c00186{bottom:468.480450px;}
.y10_c00186{bottom:481.980450px;}
.yf_c00186{bottom:504.232500px;}
.ye_c00186{bottom:522.232500px;}
.yd_c00186{bottom:548.736450px;}
.y17_c00186{bottom:551.110350px;}
.yc_c00186{bottom:850.449000px;}
.yb_c00186{bottom:863.949000px;}
.ya_c00186{bottom:877.449000px;}
.y9_c00186{bottom:903.952950px;}
.y8_c00186{bottom:917.452950px;}
.y7_c00186{bottom:943.956900px;}
.y6_c00186{bottom:957.456900px;}
.y5_c00186{bottom:970.956900px;}
.y4_c00186{bottom:993.208800px;}
.y3_c00186{bottom:1011.208800px;}
.y2_c00186{bottom:1037.712750px;}
.y18_c00186{bottom:1040.299350px;}
.y1_c00186{bottom:1093.600950px;}
.h8_c00186{height:25.200000px;}
.h7_c00186{height:30.282000px;}
.h5_c00186{height:34.080000px;}
.h2_c00186{height:39.264000px;}
.h3_c00186{height:39.984000px;}
.h4_c00186{height:43.260000px;}
.h6_c00186{height:43.740000px;}
.h1_c00186{height:1135.500000px;}
.h0_c00186{height:1135.506150px;}
.w0_c00186{width:893.950200px;}
.w1_c00186{width:894.000000px;}
.x0_c00186{left:0.000000px;}
.x4_c00186{left:128.626800px;}
.x5_c00186{left:141.382650px;}
.x2_c00186{left:188.061900px;}
.x3_c00186{left:190.513350px;}
.x6_c00186{left:321.801150px;}
.x1_c00186{left:800.165850px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls5_c00186{letter-spacing:-0.720000pt;}
.ls3_c00186{letter-spacing:-0.640000pt;}
.ls4_c00186{letter-spacing:-0.560000pt;}
.ls2_c00186{letter-spacing:-0.480000pt;}
.ls1_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.426667pt;}
.ws0_c00186{word-spacing:-9.685333pt;}
.ws1_c00186{word-spacing:-7.728000pt;}
.ws2_c00186{word-spacing:-5.766400pt;}
.ws3_c00186{word-spacing:0.000000pt;}
.ws5_c00186{word-spacing:0.480000pt;}
.ws4_c00186{word-spacing:6.272000pt;}
._0_c00186{margin-left:-2449.134400pt;}
._4_c00186{margin-left:-6.174933pt;}
._1_c00186{margin-left:-2.005333pt;}
._3_c00186{margin-left:-1.066667pt;}
._2_c00186{width:0.896000pt;}
._7_c00186{width:6.912000pt;}
._5_c00186{width:49.488000pt;}
._6_c00186{width:52.565333pt;}
.fs5_c00186{font-size:27.200000pt;}
.fs6_c00186{font-size:32.000000pt;}
.fs3_c00186{font-size:37.333333pt;}
.fs0_c00186{font-size:42.666667pt;}
.fs4_c00186{font-size:48.000000pt;}
.fs2_c00186{font-size:50.666667pt;}
.fs1_c00186{font-size:53.333333pt;}
.y0_c00186{bottom:0.000000pt;}
.y19_c00186{bottom:282.648133pt;}
.y16_c00186{bottom:333.308933pt;}
.y15_c00186{bottom:345.308933pt;}
.y14_c00186{bottom:368.868000pt;}
.y13_c00186{bottom:380.868000pt;}
.y12_c00186{bottom:404.427067pt;}
.y11_c00186{bottom:416.427067pt;}
.y10_c00186{bottom:428.427067pt;}
.yf_c00186{bottom:448.206667pt;}
.ye_c00186{bottom:464.206667pt;}
.yd_c00186{bottom:487.765733pt;}
.y17_c00186{bottom:489.875867pt;}
.yc_c00186{bottom:755.954667pt;}
.yb_c00186{bottom:767.954667pt;}
.ya_c00186{bottom:779.954667pt;}
.y9_c00186{bottom:803.513733pt;}
.y8_c00186{bottom:815.513733pt;}
.y7_c00186{bottom:839.072800pt;}
.y6_c00186{bottom:851.072800pt;}
.y5_c00186{bottom:863.072800pt;}
.y4_c00186{bottom:882.852267pt;}
.y3_c00186{bottom:898.852267pt;}
.y2_c00186{bottom:922.411333pt;}
.y18_c00186{bottom:924.710533pt;}
.y1_c00186{bottom:972.089733pt;}
.h8_c00186{height:22.400000pt;}
.h7_c00186{height:26.917333pt;}
.h5_c00186{height:30.293333pt;}
.h2_c00186{height:34.901333pt;}
.h3_c00186{height:35.541333pt;}
.h4_c00186{height:38.453333pt;}
.h6_c00186{height:38.880000pt;}
.h1_c00186{height:1009.333333pt;}
.h0_c00186{height:1009.338800pt;}
.w0_c00186{width:794.622400pt;}
.w1_c00186{width:794.666667pt;}
.x0_c00186{left:0.000000pt;}
.x4_c00186{left:114.334933pt;}
.x5_c00186{left:125.673467pt;}
.x2_c00186{left:167.166133pt;}
.x3_c00186{left:169.345200pt;}
.x6_c00186{left:286.045467pt;}
.x1_c00186{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00187;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00187{font-family:ff7_c00187;line-height:0.710000;font-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_c00187{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls1_c00187{letter-spacing:-0.720000px;}
.ls2_c00187{letter-spacing:-0.378000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00187{word-spacing:-8.694000px;}
.ws2_c00187{word-spacing:-6.487200px;}
.ws3_c00187{word-spacing:0.000000px;}
.ws5_c00187{word-spacing:0.378000px;}
.ws4_c00187{word-spacing:7.056000px;}
.ws0_c00187{word-spacing:1574.587200px;}
._3_c00187{margin-left:-7.042800px;}
._0_c00187{margin-left:-2.112000px;}
._1_c00187{margin-left:-1.104000px;}
._2_c00187{width:2.016000px;}
._6_c00187{width:7.776000px;}
._4_c00187{width:55.674000px;}
._5_c00187{width:59.136000px;}
.fc0_c00187{color:rgb(35,31,32);}
.fs5_c00187{font-size:30.600000px;}
.fs6_c00187{font-size:36.000000px;}
.fs3_c00187{font-size:42.000000px;}
.fs0_c00187{font-size:48.000000px;}
.fs4_c00187{font-size:54.000000px;}
.fs2_c00187{font-size:57.000000px;}
.fs1_c00187{font-size:60.000000px;}
.y0_c00187{bottom:0.000000px;}
.y19_c00187{bottom:317.979150px;}
.y15_c00187{bottom:375.185250px;}
.y14_c00187{bottom:388.685250px;}
.y13_c00187{bottom:415.189200px;}
.y12_c00187{bottom:428.689200px;}
.y11_c00187{bottom:455.193150px;}
.y10_c00187{bottom:468.693150px;}
.yf_c00187{bottom:482.193150px;}
.ye_c00187{bottom:504.445050px;}
.yd_c00187{bottom:522.445050px;}
.yc_c00187{bottom:548.949000px;}
.y16_c00187{bottom:551.323050px;}
.y17_c00187{bottom:806.955600px;}
.yb_c00187{bottom:864.161550px;}
.ya_c00187{bottom:877.661550px;}
.y9_c00187{bottom:904.165500px;}
.y8_c00187{bottom:917.665500px;}
.y7_c00187{bottom:944.169450px;}
.y6_c00187{bottom:957.669450px;}
.y5_c00187{bottom:971.169450px;}
.y4_c00187{bottom:993.421350px;}
.y3_c00187{bottom:1011.421350px;}
.y2_c00187{bottom:1037.925300px;}
.y18_c00187{bottom:1040.299350px;}
.y1_c00187{bottom:1093.600950px;}
.h7_c00187{height:25.200000px;}
.h6_c00187{height:30.282000px;}
.h4_c00187{height:34.080000px;}
.h2_c00187{height:39.264000px;}
.h3_c00187{height:43.260000px;}
.h5_c00187{height:43.740000px;}
.h1_c00187{height:1135.500000px;}
.h0_c00187{height:1135.506150px;}
.w0_c00187{width:893.950200px;}
.w1_c00187{width:894.000000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:77.603100px;}
.x4_c00187{left:424.138500px;}
.x2_c00187{left:599.532150px;}
.x3_c00187{left:612.288150px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls1_c00187{letter-spacing:-0.640000pt;}
.ls2_c00187{letter-spacing:-0.336000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws1_c00187{word-spacing:-7.728000pt;}
.ws2_c00187{word-spacing:-5.766400pt;}
.ws3_c00187{word-spacing:0.000000pt;}
.ws5_c00187{word-spacing:0.336000pt;}
.ws4_c00187{word-spacing:6.272000pt;}
.ws0_c00187{word-spacing:1399.633067pt;}
._3_c00187{margin-left:-6.260267pt;}
._0_c00187{margin-left:-1.877333pt;}
._1_c00187{margin-left:-0.981333pt;}
._2_c00187{width:1.792000pt;}
._6_c00187{width:6.912000pt;}
._4_c00187{width:49.488000pt;}
._5_c00187{width:52.565333pt;}
.fs5_c00187{font-size:27.200000pt;}
.fs6_c00187{font-size:32.000000pt;}
.fs3_c00187{font-size:37.333333pt;}
.fs0_c00187{font-size:42.666667pt;}
.fs4_c00187{font-size:48.000000pt;}
.fs2_c00187{font-size:50.666667pt;}
.fs1_c00187{font-size:53.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y19_c00187{bottom:282.648133pt;}
.y15_c00187{bottom:333.498000pt;}
.y14_c00187{bottom:345.498000pt;}
.y13_c00187{bottom:369.057067pt;}
.y12_c00187{bottom:381.057067pt;}
.y11_c00187{bottom:404.616133pt;}
.y10_c00187{bottom:416.616133pt;}
.yf_c00187{bottom:428.616133pt;}
.ye_c00187{bottom:448.395600pt;}
.yd_c00187{bottom:464.395600pt;}
.yc_c00187{bottom:487.954667pt;}
.y16_c00187{bottom:490.064933pt;}
.y17_c00187{bottom:717.293867pt;}
.yb_c00187{bottom:768.143600pt;}
.ya_c00187{bottom:780.143600pt;}
.y9_c00187{bottom:803.702667pt;}
.y8_c00187{bottom:815.702667pt;}
.y7_c00187{bottom:839.261733pt;}
.y6_c00187{bottom:851.261733pt;}
.y5_c00187{bottom:863.261733pt;}
.y4_c00187{bottom:883.041200pt;}
.y3_c00187{bottom:899.041200pt;}
.y2_c00187{bottom:922.600267pt;}
.y18_c00187{bottom:924.710533pt;}
.y1_c00187{bottom:972.089733pt;}
.h7_c00187{height:22.400000pt;}
.h6_c00187{height:26.917333pt;}
.h4_c00187{height:30.293333pt;}
.h2_c00187{height:34.901333pt;}
.h3_c00187{height:38.453333pt;}
.h5_c00187{height:38.880000pt;}
.h1_c00187{height:1009.333333pt;}
.h0_c00187{height:1009.338800pt;}
.w0_c00187{width:794.622400pt;}
.w1_c00187{width:794.666667pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:68.980533pt;}
.x4_c00187{left:377.012000pt;}
.x2_c00187{left:532.917467pt;}
.x3_c00187{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:0.908000;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00188{font-family:ff7_c00188;line-height:1.067000;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00188{font-family:ff8_c00188;line-height:0.710000;font-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_c00188{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls3_c00188{letter-spacing:-0.810000px;}
.ls2_c00188{letter-spacing:-0.720000px;}
.ls4_c00188{letter-spacing:-0.630000px;}
.ls1_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00188{word-spacing:-8.694000px;}
.ws2_c00188{word-spacing:-6.487200px;}
.ws3_c00188{word-spacing:0.000000px;}
.ws4_c00188{word-spacing:7.056000px;}
._0_c00188{margin-left:-2755.276200px;}
._4_c00188{margin-left:-6.946800px;}
._1_c00188{margin-left:-2.256000px;}
._3_c00188{margin-left:-1.200000px;}
._2_c00188{width:1.008000px;}
._7_c00188{width:7.776000px;}
._5_c00188{width:55.674000px;}
._6_c00188{width:59.136000px;}
.fc0_c00188{color:rgb(35,31,32);}
.fs5_c00188{font-size:30.600000px;}
.fs6_c00188{font-size:36.000000px;}
.fs3_c00188{font-size:42.000000px;}
.fs0_c00188{font-size:48.000000px;}
.fs4_c00188{font-size:54.000000px;}
.fs2_c00188{font-size:57.000000px;}
.fs1_c00188{font-size:60.000000px;}
.y0_c00188{bottom:0.000000px;}
.y17_c00188{bottom:361.472700px;}
.y16_c00188{bottom:374.972550px;}
.y15_c00188{bottom:388.472550px;}
.y14_c00188{bottom:414.976500px;}
.y13_c00188{bottom:428.476500px;}
.y12_c00188{bottom:454.980450px;}
.y11_c00188{bottom:468.480450px;}
.y10_c00188{bottom:481.980450px;}
.yf_c00188{bottom:504.232500px;}
.ye_c00188{bottom:522.232500px;}
.yd_c00188{bottom:548.736450px;}
.y18_c00188{bottom:551.110350px;}
.y19_c00188{bottom:807.168150px;}
.yc_c00188{bottom:850.449000px;}
.yb_c00188{bottom:863.949000px;}
.ya_c00188{bottom:890.452950px;}
.y9_c00188{bottom:903.952950px;}
.y8_c00188{bottom:917.452950px;}
.y7_c00188{bottom:943.956900px;}
.y6_c00188{bottom:957.456900px;}
.y5_c00188{bottom:970.956900px;}
.y4_c00188{bottom:993.208800px;}
.y3_c00188{bottom:1011.208800px;}
.y2_c00188{bottom:1037.712750px;}
.y1_c00188{bottom:1093.600950px;}
.h8_c00188{height:25.200000px;}
.h7_c00188{height:30.282000px;}
.h5_c00188{height:34.080000px;}
.h2_c00188{height:39.264000px;}
.h3_c00188{height:39.984000px;}
.h4_c00188{height:43.260000px;}
.h6_c00188{height:43.740000px;}
.h1_c00188{height:1135.500000px;}
.h0_c00188{height:1135.506150px;}
.w0_c00188{width:893.950200px;}
.w1_c00188{width:894.000000px;}
.x0_c00188{left:0.000000px;}
.x4_c00188{left:128.626800px;}
.x5_c00188{left:141.382650px;}
.x2_c00188{left:188.061900px;}
.x3_c00188{left:190.513350px;}
.x6_c00188{left:321.801150px;}
.x1_c00188{left:800.165850px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls3_c00188{letter-spacing:-0.720000pt;}
.ls2_c00188{letter-spacing:-0.640000pt;}
.ls4_c00188{letter-spacing:-0.560000pt;}
.ls1_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.426667pt;}
.ws0_c00188{word-spacing:-9.685333pt;}
.ws1_c00188{word-spacing:-7.728000pt;}
.ws2_c00188{word-spacing:-5.766400pt;}
.ws3_c00188{word-spacing:0.000000pt;}
.ws4_c00188{word-spacing:6.272000pt;}
._0_c00188{margin-left:-2449.134400pt;}
._4_c00188{margin-left:-6.174933pt;}
._1_c00188{margin-left:-2.005333pt;}
._3_c00188{margin-left:-1.066667pt;}
._2_c00188{width:0.896000pt;}
._7_c00188{width:6.912000pt;}
._5_c00188{width:49.488000pt;}
._6_c00188{width:52.565333pt;}
.fs5_c00188{font-size:27.200000pt;}
.fs6_c00188{font-size:32.000000pt;}
.fs3_c00188{font-size:37.333333pt;}
.fs0_c00188{font-size:42.666667pt;}
.fs4_c00188{font-size:48.000000pt;}
.fs2_c00188{font-size:50.666667pt;}
.fs1_c00188{font-size:53.333333pt;}
.y0_c00188{bottom:0.000000pt;}
.y17_c00188{bottom:321.309067pt;}
.y16_c00188{bottom:333.308933pt;}
.y15_c00188{bottom:345.308933pt;}
.y14_c00188{bottom:368.868000pt;}
.y13_c00188{bottom:380.868000pt;}
.y12_c00188{bottom:404.427067pt;}
.y11_c00188{bottom:416.427067pt;}
.y10_c00188{bottom:428.427067pt;}
.yf_c00188{bottom:448.206667pt;}
.ye_c00188{bottom:464.206667pt;}
.yd_c00188{bottom:487.765733pt;}
.y18_c00188{bottom:489.875867pt;}
.y19_c00188{bottom:717.482800pt;}
.yc_c00188{bottom:755.954667pt;}
.yb_c00188{bottom:767.954667pt;}
.ya_c00188{bottom:791.513733pt;}
.y9_c00188{bottom:803.513733pt;}
.y8_c00188{bottom:815.513733pt;}
.y7_c00188{bottom:839.072800pt;}
.y6_c00188{bottom:851.072800pt;}
.y5_c00188{bottom:863.072800pt;}
.y4_c00188{bottom:882.852267pt;}
.y3_c00188{bottom:898.852267pt;}
.y2_c00188{bottom:922.411333pt;}
.y1_c00188{bottom:972.089733pt;}
.h8_c00188{height:22.400000pt;}
.h7_c00188{height:26.917333pt;}
.h5_c00188{height:30.293333pt;}
.h2_c00188{height:34.901333pt;}
.h3_c00188{height:35.541333pt;}
.h4_c00188{height:38.453333pt;}
.h6_c00188{height:38.880000pt;}
.h1_c00188{height:1009.333333pt;}
.h0_c00188{height:1009.338800pt;}
.w0_c00188{width:794.622400pt;}
.w1_c00188{width:794.666667pt;}
.x0_c00188{left:0.000000pt;}
.x4_c00188{left:114.334933pt;}
.x5_c00188{left:125.673467pt;}
.x2_c00188{left:167.166133pt;}
.x3_c00188{left:169.345200pt;}
.x6_c00188{left:286.045467pt;}
.x1_c00188{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00189;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:1.067000;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00189{font-family:ff7_c00189;line-height:0.710000;font-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_c00189{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls2_c00189{letter-spacing:-0.720000px;}
.ls3_c00189{letter-spacing:-0.630000px;}
.ls1_c00189{letter-spacing:0.000000px;}
.ls0_c00189{letter-spacing:59.127600px;}
.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;}
}
.ws1_c00189{word-spacing:-8.694000px;}
.ws2_c00189{word-spacing:-6.487200px;}
.ws3_c00189{word-spacing:0.000000px;}
.ws4_c00189{word-spacing:7.056000px;}
.ws0_c00189{word-spacing:1574.587200px;}
._3_c00189{margin-left:-7.042800px;}
._0_c00189{margin-left:-2.112000px;}
._1_c00189{margin-left:-1.104000px;}
._2_c00189{width:2.016000px;}
._6_c00189{width:7.776000px;}
._4_c00189{width:55.674000px;}
._5_c00189{width:59.136000px;}
.fc1_c00189{color:rgb(210,32,39);}
.fc0_c00189{color:rgb(35,31,32);}
.fs5_c00189{font-size:30.600000px;}
.fs6_c00189{font-size:36.000000px;}
.fs3_c00189{font-size:42.000000px;}
.fs0_c00189{font-size:48.000000px;}
.fs4_c00189{font-size:54.000000px;}
.fs2_c00189{font-size:57.000000px;}
.fs1_c00189{font-size:60.000000px;}
.y0_c00189{bottom:0.000000px;}
.y17_c00189{bottom:361.685250px;}
.y16_c00189{bottom:375.185250px;}
.y15_c00189{bottom:388.685250px;}
.y14_c00189{bottom:415.189200px;}
.y13_c00189{bottom:428.689200px;}
.y12_c00189{bottom:455.193150px;}
.y11_c00189{bottom:468.693150px;}
.y10_c00189{bottom:482.193150px;}
.yf_c00189{bottom:504.445050px;}
.ye_c00189{bottom:522.445050px;}
.yd_c00189{bottom:548.949000px;}
.y18_c00189{bottom:551.323050px;}
.yc_c00189{bottom:850.661550px;}
.yb_c00189{bottom:864.161550px;}
.ya_c00189{bottom:877.661550px;}
.y9_c00189{bottom:904.165500px;}
.y8_c00189{bottom:917.665500px;}
.y7_c00189{bottom:944.169450px;}
.y6_c00189{bottom:957.669450px;}
.y5_c00189{bottom:971.169450px;}
.y4_c00189{bottom:993.421350px;}
.y3_c00189{bottom:1011.421350px;}
.y2_c00189{bottom:1037.925300px;}
.y19_c00189{bottom:1040.299350px;}
.y1_c00189{bottom:1093.600950px;}
.h7_c00189{height:25.200000px;}
.h6_c00189{height:30.282000px;}
.h4_c00189{height:34.080000px;}
.h2_c00189{height:39.264000px;}
.h3_c00189{height:43.260000px;}
.h5_c00189{height:43.740000px;}
.h1_c00189{height:1135.500000px;}
.h0_c00189{height:1135.506150px;}
.w0_c00189{width:893.950200px;}
.w1_c00189{width:894.000000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:77.603100px;}
.x4_c00189{left:424.138500px;}
.x2_c00189{left:599.532150px;}
.x3_c00189{left:612.288150px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls2_c00189{letter-spacing:-0.640000pt;}
.ls3_c00189{letter-spacing:-0.560000pt;}
.ls1_c00189{letter-spacing:0.000000pt;}
.ls0_c00189{letter-spacing:52.557867pt;}
.ws1_c00189{word-spacing:-7.728000pt;}
.ws2_c00189{word-spacing:-5.766400pt;}
.ws3_c00189{word-spacing:0.000000pt;}
.ws4_c00189{word-spacing:6.272000pt;}
.ws0_c00189{word-spacing:1399.633067pt;}
._3_c00189{margin-left:-6.260267pt;}
._0_c00189{margin-left:-1.877333pt;}
._1_c00189{margin-left:-0.981333pt;}
._2_c00189{width:1.792000pt;}
._6_c00189{width:6.912000pt;}
._4_c00189{width:49.488000pt;}
._5_c00189{width:52.565333pt;}
.fs5_c00189{font-size:27.200000pt;}
.fs6_c00189{font-size:32.000000pt;}
.fs3_c00189{font-size:37.333333pt;}
.fs0_c00189{font-size:42.666667pt;}
.fs4_c00189{font-size:48.000000pt;}
.fs2_c00189{font-size:50.666667pt;}
.fs1_c00189{font-size:53.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y17_c00189{bottom:321.498000pt;}
.y16_c00189{bottom:333.498000pt;}
.y15_c00189{bottom:345.498000pt;}
.y14_c00189{bottom:369.057067pt;}
.y13_c00189{bottom:381.057067pt;}
.y12_c00189{bottom:404.616133pt;}
.y11_c00189{bottom:416.616133pt;}
.y10_c00189{bottom:428.616133pt;}
.yf_c00189{bottom:448.395600pt;}
.ye_c00189{bottom:464.395600pt;}
.yd_c00189{bottom:487.954667pt;}
.y18_c00189{bottom:490.064933pt;}
.yc_c00189{bottom:756.143600pt;}
.yb_c00189{bottom:768.143600pt;}
.ya_c00189{bottom:780.143600pt;}
.y9_c00189{bottom:803.702667pt;}
.y8_c00189{bottom:815.702667pt;}
.y7_c00189{bottom:839.261733pt;}
.y6_c00189{bottom:851.261733pt;}
.y5_c00189{bottom:863.261733pt;}
.y4_c00189{bottom:883.041200pt;}
.y3_c00189{bottom:899.041200pt;}
.y2_c00189{bottom:922.600267pt;}
.y19_c00189{bottom:924.710533pt;}
.y1_c00189{bottom:972.089733pt;}
.h7_c00189{height:22.400000pt;}
.h6_c00189{height:26.917333pt;}
.h4_c00189{height:30.293333pt;}
.h2_c00189{height:34.901333pt;}
.h3_c00189{height:38.453333pt;}
.h5_c00189{height:38.880000pt;}
.h1_c00189{height:1009.333333pt;}
.h0_c00189{height:1009.338800pt;}
.w0_c00189{width:794.622400pt;}
.w1_c00189{width:794.666667pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:68.980533pt;}
.x4_c00189{left:377.012000pt;}
.x2_c00189{left:532.917467pt;}
.x3_c00189{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00190;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:0.908000;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00190{font-family:ff7_c00190;line-height:1.067000;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00190{font-family:ff8_c00190;line-height:0.710000;font-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_c00190{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls2_c00190{letter-spacing:-1.620000px;}
.ls5_c00190{letter-spacing:-1.350000px;}
.ls3_c00190{letter-spacing:-0.720000px;}
.ls4_c00190{letter-spacing:-0.630000px;}
.ls1_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws2_c00190{word-spacing:-10.746000px;}
.ws1_c00190{word-spacing:-8.694000px;}
.ws3_c00190{word-spacing:-6.487200px;}
.ws4_c00190{word-spacing:0.000000px;}
.ws5_c00190{word-spacing:7.056000px;}
.ws6_c00190{word-spacing:57.024000px;}
._0_c00190{margin-left:-2755.276200px;}
._4_c00190{margin-left:-6.946800px;}
._6_c00190{margin-left:-4.590000px;}
._1_c00190{margin-left:-2.256000px;}
._3_c00190{margin-left:-1.200000px;}
._2_c00190{width:1.008000px;}
._7_c00190{width:2.862000px;}
._9_c00190{width:7.776000px;}
._5_c00190{width:55.674000px;}
._8_c00190{width:59.136000px;}
.fc0_c00190{color:rgb(35,31,32);}
.fs5_c00190{font-size:30.600000px;}
.fs6_c00190{font-size:36.000000px;}
.fs3_c00190{font-size:42.000000px;}
.fs0_c00190{font-size:48.000000px;}
.fs4_c00190{font-size:54.000000px;}
.fs2_c00190{font-size:57.000000px;}
.fs1_c00190{font-size:60.000000px;}
.y0_c00190{bottom:0.000000px;}
.y19_c00190{bottom:347.972700px;}
.y18_c00190{bottom:361.472700px;}
.y17_c00190{bottom:374.972550px;}
.y16_c00190{bottom:401.476500px;}
.y15_c00190{bottom:414.976500px;}
.y14_c00190{bottom:428.476500px;}
.y13_c00190{bottom:454.980450px;}
.y12_c00190{bottom:468.480450px;}
.y11_c00190{bottom:481.980450px;}
.y10_c00190{bottom:504.232500px;}
.yf_c00190{bottom:522.232500px;}
.ye_c00190{bottom:548.736450px;}
.yd_c00190{bottom:832.449000px;}
.yc_c00190{bottom:845.949000px;}
.yb_c00190{bottom:859.449000px;}
.ya_c00190{bottom:885.952950px;}
.y9_c00190{bottom:899.452950px;}
.y8_c00190{bottom:925.956900px;}
.y7_c00190{bottom:939.456900px;}
.y6_c00190{bottom:952.956900px;}
.y5_c00190{bottom:975.208800px;}
.y4_c00190{bottom:993.208800px;}
.y3_c00190{bottom:1011.208800px;}
.y2_c00190{bottom:1037.712750px;}
.y1a_c00190{bottom:1040.299350px;}
.y1_c00190{bottom:1093.600950px;}
.h8_c00190{height:25.200000px;}
.h7_c00190{height:30.282000px;}
.h5_c00190{height:34.080000px;}
.h2_c00190{height:39.264000px;}
.h3_c00190{height:39.984000px;}
.h4_c00190{height:43.260000px;}
.h6_c00190{height:43.740000px;}
.h1_c00190{height:1135.500000px;}
.h0_c00190{height:1135.506150px;}
.w0_c00190{width:893.950200px;}
.w1_c00190{width:894.000000px;}
.x0_c00190{left:0.000000px;}
.x4_c00190{left:128.626800px;}
.x5_c00190{left:141.382650px;}
.x6_c00190{left:145.634700px;}
.x2_c00190{left:188.061900px;}
.x3_c00190{left:190.513350px;}
.x7_c00190{left:321.801150px;}
.x1_c00190{left:800.165850px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls2_c00190{letter-spacing:-1.440000pt;}
.ls5_c00190{letter-spacing:-1.200000pt;}
.ls3_c00190{letter-spacing:-0.640000pt;}
.ls4_c00190{letter-spacing:-0.560000pt;}
.ls1_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:0.426667pt;}
.ws0_c00190{word-spacing:-9.685333pt;}
.ws2_c00190{word-spacing:-9.552000pt;}
.ws1_c00190{word-spacing:-7.728000pt;}
.ws3_c00190{word-spacing:-5.766400pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.ws5_c00190{word-spacing:6.272000pt;}
.ws6_c00190{word-spacing:50.688000pt;}
._0_c00190{margin-left:-2449.134400pt;}
._4_c00190{margin-left:-6.174933pt;}
._6_c00190{margin-left:-4.080000pt;}
._1_c00190{margin-left:-2.005333pt;}
._3_c00190{margin-left:-1.066667pt;}
._2_c00190{width:0.896000pt;}
._7_c00190{width:2.544000pt;}
._9_c00190{width:6.912000pt;}
._5_c00190{width:49.488000pt;}
._8_c00190{width:52.565333pt;}
.fs5_c00190{font-size:27.200000pt;}
.fs6_c00190{font-size:32.000000pt;}
.fs3_c00190{font-size:37.333333pt;}
.fs0_c00190{font-size:42.666667pt;}
.fs4_c00190{font-size:48.000000pt;}
.fs2_c00190{font-size:50.666667pt;}
.fs1_c00190{font-size:53.333333pt;}
.y0_c00190{bottom:0.000000pt;}
.y19_c00190{bottom:309.309067pt;}
.y18_c00190{bottom:321.309067pt;}
.y17_c00190{bottom:333.308933pt;}
.y16_c00190{bottom:356.868000pt;}
.y15_c00190{bottom:368.868000pt;}
.y14_c00190{bottom:380.868000pt;}
.y13_c00190{bottom:404.427067pt;}
.y12_c00190{bottom:416.427067pt;}
.y11_c00190{bottom:428.427067pt;}
.y10_c00190{bottom:448.206667pt;}
.yf_c00190{bottom:464.206667pt;}
.ye_c00190{bottom:487.765733pt;}
.yd_c00190{bottom:739.954667pt;}
.yc_c00190{bottom:751.954667pt;}
.yb_c00190{bottom:763.954667pt;}
.ya_c00190{bottom:787.513733pt;}
.y9_c00190{bottom:799.513733pt;}
.y8_c00190{bottom:823.072800pt;}
.y7_c00190{bottom:835.072800pt;}
.y6_c00190{bottom:847.072800pt;}
.y5_c00190{bottom:866.852267pt;}
.y4_c00190{bottom:882.852267pt;}
.y3_c00190{bottom:898.852267pt;}
.y2_c00190{bottom:922.411333pt;}
.y1a_c00190{bottom:924.710533pt;}
.y1_c00190{bottom:972.089733pt;}
.h8_c00190{height:22.400000pt;}
.h7_c00190{height:26.917333pt;}
.h5_c00190{height:30.293333pt;}
.h2_c00190{height:34.901333pt;}
.h3_c00190{height:35.541333pt;}
.h4_c00190{height:38.453333pt;}
.h6_c00190{height:38.880000pt;}
.h1_c00190{height:1009.333333pt;}
.h0_c00190{height:1009.338800pt;}
.w0_c00190{width:794.622400pt;}
.w1_c00190{width:794.666667pt;}
.x0_c00190{left:0.000000pt;}
.x4_c00190{left:114.334933pt;}
.x5_c00190{left:125.673467pt;}
.x6_c00190{left:129.453067pt;}
.x2_c00190{left:167.166133pt;}
.x3_c00190{left:169.345200pt;}
.x7_c00190{left:286.045467pt;}
.x1_c00190{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00191;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:0.710000;font-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_c00191{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls1_c00191{letter-spacing:-1.620000px;}
.ls2_c00191{letter-spacing:-0.720000px;}
.ls3_c00191{letter-spacing:-0.630000px;}
.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;}
}
.ws2_c00191{word-spacing:-10.746000px;}
.ws1_c00191{word-spacing:-8.694000px;}
.ws3_c00191{word-spacing:-6.487200px;}
.ws4_c00191{word-spacing:0.000000px;}
.ws5_c00191{word-spacing:7.056000px;}
.ws0_c00191{word-spacing:1574.587200px;}
._3_c00191{margin-left:-7.042800px;}
._0_c00191{margin-left:-2.112000px;}
._1_c00191{margin-left:-1.104000px;}
._2_c00191{width:2.016000px;}
._6_c00191{width:7.776000px;}
._4_c00191{width:55.674000px;}
._5_c00191{width:59.136000px;}
.fc0_c00191{color:rgb(35,31,32);}
.fs5_c00191{font-size:30.600000px;}
.fs6_c00191{font-size:36.000000px;}
.fs3_c00191{font-size:42.000000px;}
.fs0_c00191{font-size:48.000000px;}
.fs4_c00191{font-size:54.000000px;}
.fs2_c00191{font-size:57.000000px;}
.fs1_c00191{font-size:60.000000px;}
.y0_c00191{bottom:0.000000px;}
.y1a_c00191{bottom:317.979150px;}
.y18_c00191{bottom:375.185250px;}
.y17_c00191{bottom:388.685250px;}
.y16_c00191{bottom:415.189200px;}
.y15_c00191{bottom:428.689200px;}
.y14_c00191{bottom:455.193150px;}
.y13_c00191{bottom:468.693150px;}
.y12_c00191{bottom:482.193150px;}
.y11_c00191{bottom:504.445050px;}
.y10_c00191{bottom:522.445050px;}
.yf_c00191{bottom:548.949000px;}
.y19_c00191{bottom:551.323050px;}
.ye_c00191{bottom:819.161550px;}
.yd_c00191{bottom:832.661550px;}
.yc_c00191{bottom:846.161550px;}
.yb_c00191{bottom:872.665500px;}
.ya_c00191{bottom:886.165500px;}
.y9_c00191{bottom:899.665500px;}
.y8_c00191{bottom:926.169450px;}
.y7_c00191{bottom:939.669450px;}
.y6_c00191{bottom:953.169450px;}
.y5_c00191{bottom:975.421350px;}
.y4_c00191{bottom:993.421350px;}
.y3_c00191{bottom:1011.421350px;}
.y2_c00191{bottom:1037.925300px;}
.y1_c00191{bottom:1093.600950px;}
.h7_c00191{height:25.200000px;}
.h6_c00191{height:30.282000px;}
.h4_c00191{height:34.080000px;}
.h2_c00191{height:39.264000px;}
.h3_c00191{height:43.260000px;}
.h5_c00191{height:43.740000px;}
.h1_c00191{height:1135.500000px;}
.h0_c00191{height:1135.506150px;}
.w0_c00191{width:893.950200px;}
.w1_c00191{width:894.000000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:77.603100px;}
.x5_c00191{left:424.138500px;}
.x2_c00191{left:599.532150px;}
.x3_c00191{left:612.288150px;}
.x4_c00191{left:616.540050px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls1_c00191{letter-spacing:-1.440000pt;}
.ls2_c00191{letter-spacing:-0.640000pt;}
.ls3_c00191{letter-spacing:-0.560000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws2_c00191{word-spacing:-9.552000pt;}
.ws1_c00191{word-spacing:-7.728000pt;}
.ws3_c00191{word-spacing:-5.766400pt;}
.ws4_c00191{word-spacing:0.000000pt;}
.ws5_c00191{word-spacing:6.272000pt;}
.ws0_c00191{word-spacing:1399.633067pt;}
._3_c00191{margin-left:-6.260267pt;}
._0_c00191{margin-left:-1.877333pt;}
._1_c00191{margin-left:-0.981333pt;}
._2_c00191{width:1.792000pt;}
._6_c00191{width:6.912000pt;}
._4_c00191{width:49.488000pt;}
._5_c00191{width:52.565333pt;}
.fs5_c00191{font-size:27.200000pt;}
.fs6_c00191{font-size:32.000000pt;}
.fs3_c00191{font-size:37.333333pt;}
.fs0_c00191{font-size:42.666667pt;}
.fs4_c00191{font-size:48.000000pt;}
.fs2_c00191{font-size:50.666667pt;}
.fs1_c00191{font-size:53.333333pt;}
.y0_c00191{bottom:0.000000pt;}
.y1a_c00191{bottom:282.648133pt;}
.y18_c00191{bottom:333.498000pt;}
.y17_c00191{bottom:345.498000pt;}
.y16_c00191{bottom:369.057067pt;}
.y15_c00191{bottom:381.057067pt;}
.y14_c00191{bottom:404.616133pt;}
.y13_c00191{bottom:416.616133pt;}
.y12_c00191{bottom:428.616133pt;}
.y11_c00191{bottom:448.395600pt;}
.y10_c00191{bottom:464.395600pt;}
.yf_c00191{bottom:487.954667pt;}
.y19_c00191{bottom:490.064933pt;}
.ye_c00191{bottom:728.143600pt;}
.yd_c00191{bottom:740.143600pt;}
.yc_c00191{bottom:752.143600pt;}
.yb_c00191{bottom:775.702667pt;}
.ya_c00191{bottom:787.702667pt;}
.y9_c00191{bottom:799.702667pt;}
.y8_c00191{bottom:823.261733pt;}
.y7_c00191{bottom:835.261733pt;}
.y6_c00191{bottom:847.261733pt;}
.y5_c00191{bottom:867.041200pt;}
.y4_c00191{bottom:883.041200pt;}
.y3_c00191{bottom:899.041200pt;}
.y2_c00191{bottom:922.600267pt;}
.y1_c00191{bottom:972.089733pt;}
.h7_c00191{height:22.400000pt;}
.h6_c00191{height:26.917333pt;}
.h4_c00191{height:30.293333pt;}
.h2_c00191{height:34.901333pt;}
.h3_c00191{height:38.453333pt;}
.h5_c00191{height:38.880000pt;}
.h1_c00191{height:1009.333333pt;}
.h0_c00191{height:1009.338800pt;}
.w0_c00191{width:794.622400pt;}
.w1_c00191{width:794.666667pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:68.980533pt;}
.x5_c00191{left:377.012000pt;}
.x2_c00191{left:532.917467pt;}
.x3_c00191{left:544.256133pt;}
.x4_c00191{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00192;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00192{font-family:ff7_c00192;line-height:1.067000;font-style:normal;font-weight: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_c00192;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00192{font-family:ff8_c00192;line-height:0.710000;font-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_c00192{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls2_c00192{letter-spacing:-1.566000px;}
.ls5_c00192{letter-spacing:-0.810000px;}
.ls3_c00192{letter-spacing:-0.720000px;}
.ls4_c00192{letter-spacing:-0.630000px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00192{word-spacing:-8.694000px;}
.ws2_c00192{word-spacing:-6.487200px;}
.ws3_c00192{word-spacing:0.000000px;}
.ws4_c00192{word-spacing:7.056000px;}
.ws5_c00192{word-spacing:57.240000px;}
._0_c00192{margin-left:-2755.276200px;}
._4_c00192{margin-left:-6.946800px;}
._1_c00192{margin-left:-2.256000px;}
._3_c00192{margin-left:-1.200000px;}
._2_c00192{width:1.008000px;}
._6_c00192{width:7.776000px;}
._7_c00192{width:56.484000px;}
._5_c00192{width:59.136000px;}
.fc0_c00192{color:rgb(35,31,32);}
.fs5_c00192{font-size:30.600000px;}
.fs6_c00192{font-size:36.000000px;}
.fs3_c00192{font-size:42.000000px;}
.fs0_c00192{font-size:48.000000px;}
.fs4_c00192{font-size:54.000000px;}
.fs2_c00192{font-size:57.000000px;}
.fs1_c00192{font-size:60.000000px;}
.y0_c00192{bottom:0.000000px;}
.y17_c00192{bottom:361.472700px;}
.y16_c00192{bottom:374.972550px;}
.y15_c00192{bottom:388.472550px;}
.y14_c00192{bottom:414.976500px;}
.y13_c00192{bottom:428.476500px;}
.y12_c00192{bottom:454.980450px;}
.y11_c00192{bottom:468.480450px;}
.y10_c00192{bottom:481.980450px;}
.yf_c00192{bottom:504.232500px;}
.ye_c00192{bottom:522.232500px;}
.yd_c00192{bottom:548.736450px;}
.y19_c00192{bottom:551.323050px;}
.yc_c00192{bottom:850.449000px;}
.yb_c00192{bottom:863.949000px;}
.ya_c00192{bottom:877.449000px;}
.y9_c00192{bottom:903.952950px;}
.y8_c00192{bottom:917.452950px;}
.y7_c00192{bottom:943.956900px;}
.y6_c00192{bottom:957.456900px;}
.y5_c00192{bottom:970.956900px;}
.y4_c00192{bottom:993.208800px;}
.y3_c00192{bottom:1011.208800px;}
.y2_c00192{bottom:1037.712750px;}
.y18_c00192{bottom:1040.299350px;}
.y1_c00192{bottom:1093.600950px;}
.h8_c00192{height:25.200000px;}
.h7_c00192{height:30.282000px;}
.h5_c00192{height:34.080000px;}
.h2_c00192{height:39.264000px;}
.h3_c00192{height:39.984000px;}
.h4_c00192{height:43.260000px;}
.h6_c00192{height:43.740000px;}
.h1_c00192{height:1135.500000px;}
.h0_c00192{height:1135.506150px;}
.w0_c00192{width:893.950200px;}
.w1_c00192{width:894.000000px;}
.x0_c00192{left:0.000000px;}
.x4_c00192{left:128.626800px;}
.x5_c00192{left:141.382650px;}
.x2_c00192{left:188.061900px;}
.x3_c00192{left:190.513350px;}
.x6_c00192{left:321.801150px;}
.x1_c00192{left:800.165850px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls2_c00192{letter-spacing:-1.392000pt;}
.ls5_c00192{letter-spacing:-0.720000pt;}
.ls3_c00192{letter-spacing:-0.640000pt;}
.ls4_c00192{letter-spacing:-0.560000pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:0.426667pt;}
.ws0_c00192{word-spacing:-9.685333pt;}
.ws1_c00192{word-spacing:-7.728000pt;}
.ws2_c00192{word-spacing:-5.766400pt;}
.ws3_c00192{word-spacing:0.000000pt;}
.ws4_c00192{word-spacing:6.272000pt;}
.ws5_c00192{word-spacing:50.880000pt;}
._0_c00192{margin-left:-2449.134400pt;}
._4_c00192{margin-left:-6.174933pt;}
._1_c00192{margin-left:-2.005333pt;}
._3_c00192{margin-left:-1.066667pt;}
._2_c00192{width:0.896000pt;}
._6_c00192{width:6.912000pt;}
._7_c00192{width:50.208000pt;}
._5_c00192{width:52.565333pt;}
.fs5_c00192{font-size:27.200000pt;}
.fs6_c00192{font-size:32.000000pt;}
.fs3_c00192{font-size:37.333333pt;}
.fs0_c00192{font-size:42.666667pt;}
.fs4_c00192{font-size:48.000000pt;}
.fs2_c00192{font-size:50.666667pt;}
.fs1_c00192{font-size:53.333333pt;}
.y0_c00192{bottom:0.000000pt;}
.y17_c00192{bottom:321.309067pt;}
.y16_c00192{bottom:333.308933pt;}
.y15_c00192{bottom:345.308933pt;}
.y14_c00192{bottom:368.868000pt;}
.y13_c00192{bottom:380.868000pt;}
.y12_c00192{bottom:404.427067pt;}
.y11_c00192{bottom:416.427067pt;}
.y10_c00192{bottom:428.427067pt;}
.yf_c00192{bottom:448.206667pt;}
.ye_c00192{bottom:464.206667pt;}
.yd_c00192{bottom:487.765733pt;}
.y19_c00192{bottom:490.064933pt;}
.yc_c00192{bottom:755.954667pt;}
.yb_c00192{bottom:767.954667pt;}
.ya_c00192{bottom:779.954667pt;}
.y9_c00192{bottom:803.513733pt;}
.y8_c00192{bottom:815.513733pt;}
.y7_c00192{bottom:839.072800pt;}
.y6_c00192{bottom:851.072800pt;}
.y5_c00192{bottom:863.072800pt;}
.y4_c00192{bottom:882.852267pt;}
.y3_c00192{bottom:898.852267pt;}
.y2_c00192{bottom:922.411333pt;}
.y18_c00192{bottom:924.710533pt;}
.y1_c00192{bottom:972.089733pt;}
.h8_c00192{height:22.400000pt;}
.h7_c00192{height:26.917333pt;}
.h5_c00192{height:30.293333pt;}
.h2_c00192{height:34.901333pt;}
.h3_c00192{height:35.541333pt;}
.h4_c00192{height:38.453333pt;}
.h6_c00192{height:38.880000pt;}
.h1_c00192{height:1009.333333pt;}
.h0_c00192{height:1009.338800pt;}
.w0_c00192{width:794.622400pt;}
.w1_c00192{width:794.666667pt;}
.x0_c00192{left:0.000000pt;}
.x4_c00192{left:114.334933pt;}
.x5_c00192{left:125.673467pt;}
.x2_c00192{left:167.166133pt;}
.x3_c00192{left:169.345200pt;}
.x6_c00192{left:286.045467pt;}
.x1_c00192{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00193;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00193{font-family:ff6_c00193;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00193;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00193{font-family:ff7_c00193;line-height:0.710000;font-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_c00193{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls3_c00193{letter-spacing:-1.188000px;}
.ls2_c00193{letter-spacing:-0.720000px;}
.ls1_c00193{letter-spacing:-0.486000px;}
.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;}
}
.ws1_c00193{word-spacing:-8.694000px;}
.ws2_c00193{word-spacing:-6.487200px;}
.ws3_c00193{word-spacing:0.000000px;}
.ws6_c00193{word-spacing:0.378000px;}
.ws4_c00193{word-spacing:7.056000px;}
.ws5_c00193{word-spacing:56.160000px;}
.ws0_c00193{word-spacing:1574.587200px;}
._3_c00193{margin-left:-7.042800px;}
._0_c00193{margin-left:-2.112000px;}
._1_c00193{margin-left:-1.104000px;}
._2_c00193{width:2.016000px;}
._5_c00193{width:7.776000px;}
._6_c00193{width:56.484000px;}
._4_c00193{width:59.136000px;}
.fc0_c00193{color:rgb(35,31,32);}
.fs5_c00193{font-size:30.600000px;}
.fs6_c00193{font-size:36.000000px;}
.fs3_c00193{font-size:42.000000px;}
.fs0_c00193{font-size:48.000000px;}
.fs4_c00193{font-size:54.000000px;}
.fs2_c00193{font-size:57.000000px;}
.fs1_c00193{font-size:60.000000px;}
.y0_c00193{bottom:0.000000px;}
.y18_c00193{bottom:317.979150px;}
.y16_c00193{bottom:374.972550px;}
.y15_c00193{bottom:388.472550px;}
.y14_c00193{bottom:414.976500px;}
.y13_c00193{bottom:428.476500px;}
.y12_c00193{bottom:454.980450px;}
.y11_c00193{bottom:468.480450px;}
.y10_c00193{bottom:481.980450px;}
.yf_c00193{bottom:504.232500px;}
.ye_c00193{bottom:522.232500px;}
.yd_c00193{bottom:548.736450px;}
.y19_c00193{bottom:551.323050px;}
.y17_c00193{bottom:807.716700px;}
.yc_c00193{bottom:849.385800px;}
.yb_c00193{bottom:862.885800px;}
.ya_c00193{bottom:889.389750px;}
.y9_c00193{bottom:902.889750px;}
.y8_c00193{bottom:916.389750px;}
.y7_c00193{bottom:942.893700px;}
.y6_c00193{bottom:956.393700px;}
.y5_c00193{bottom:969.893700px;}
.y4_c00193{bottom:992.145750px;}
.y3_c00193{bottom:1010.145750px;}
.y2_c00193{bottom:1036.649700px;}
.y1_c00193{bottom:1093.600950px;}
.h7_c00193{height:25.200000px;}
.h6_c00193{height:30.282000px;}
.h4_c00193{height:34.080000px;}
.h2_c00193{height:39.264000px;}
.h3_c00193{height:43.260000px;}
.h5_c00193{height:43.740000px;}
.h1_c00193{height:1135.500000px;}
.h0_c00193{height:1135.506150px;}
.w0_c00193{width:893.950200px;}
.w1_c00193{width:894.000000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:77.603100px;}
.x4_c00193{left:424.138500px;}
.x2_c00193{left:599.532150px;}
.x3_c00193{left:612.288150px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls3_c00193{letter-spacing:-1.056000pt;}
.ls2_c00193{letter-spacing:-0.640000pt;}
.ls1_c00193{letter-spacing:-0.432000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws1_c00193{word-spacing:-7.728000pt;}
.ws2_c00193{word-spacing:-5.766400pt;}
.ws3_c00193{word-spacing:0.000000pt;}
.ws6_c00193{word-spacing:0.336000pt;}
.ws4_c00193{word-spacing:6.272000pt;}
.ws5_c00193{word-spacing:49.920000pt;}
.ws0_c00193{word-spacing:1399.633067pt;}
._3_c00193{margin-left:-6.260267pt;}
._0_c00193{margin-left:-1.877333pt;}
._1_c00193{margin-left:-0.981333pt;}
._2_c00193{width:1.792000pt;}
._5_c00193{width:6.912000pt;}
._6_c00193{width:50.208000pt;}
._4_c00193{width:52.565333pt;}
.fs5_c00193{font-size:27.200000pt;}
.fs6_c00193{font-size:32.000000pt;}
.fs3_c00193{font-size:37.333333pt;}
.fs0_c00193{font-size:42.666667pt;}
.fs4_c00193{font-size:48.000000pt;}
.fs2_c00193{font-size:50.666667pt;}
.fs1_c00193{font-size:53.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.y18_c00193{bottom:282.648133pt;}
.y16_c00193{bottom:333.308933pt;}
.y15_c00193{bottom:345.308933pt;}
.y14_c00193{bottom:368.868000pt;}
.y13_c00193{bottom:380.868000pt;}
.y12_c00193{bottom:404.427067pt;}
.y11_c00193{bottom:416.427067pt;}
.y10_c00193{bottom:428.427067pt;}
.yf_c00193{bottom:448.206667pt;}
.ye_c00193{bottom:464.206667pt;}
.yd_c00193{bottom:487.765733pt;}
.y19_c00193{bottom:490.064933pt;}
.y17_c00193{bottom:717.970400pt;}
.yc_c00193{bottom:755.009600pt;}
.yb_c00193{bottom:767.009600pt;}
.ya_c00193{bottom:790.568667pt;}
.y9_c00193{bottom:802.568667pt;}
.y8_c00193{bottom:814.568667pt;}
.y7_c00193{bottom:838.127733pt;}
.y6_c00193{bottom:850.127733pt;}
.y5_c00193{bottom:862.127733pt;}
.y4_c00193{bottom:881.907333pt;}
.y3_c00193{bottom:897.907333pt;}
.y2_c00193{bottom:921.466400pt;}
.y1_c00193{bottom:972.089733pt;}
.h7_c00193{height:22.400000pt;}
.h6_c00193{height:26.917333pt;}
.h4_c00193{height:30.293333pt;}
.h2_c00193{height:34.901333pt;}
.h3_c00193{height:38.453333pt;}
.h5_c00193{height:38.880000pt;}
.h1_c00193{height:1009.333333pt;}
.h0_c00193{height:1009.338800pt;}
.w0_c00193{width:794.622400pt;}
.w1_c00193{width:794.666667pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:68.980533pt;}
.x4_c00193{left:377.012000pt;}
.x2_c00193{left:532.917467pt;}
.x3_c00193{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00194;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00194;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00194{font-family:ff7_c00194;line-height:1.067000;font-style:normal;font-weight: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_c00194;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00194{font-family:ff8_c00194;line-height:0.710000;font-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_c00194{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls2_c00194{letter-spacing:-0.720000px;}
.ls3_c00194{letter-spacing:-0.630000px;}
.ls1_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:0.480000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-10.896000px;}
.ws1_c00194{word-spacing:-8.694000px;}
.ws2_c00194{word-spacing:-6.487200px;}
.ws3_c00194{word-spacing:0.000000px;}
.ws4_c00194{word-spacing:7.056000px;}
._0_c00194{margin-left:-2755.276200px;}
._4_c00194{margin-left:-6.946800px;}
._1_c00194{margin-left:-2.256000px;}
._3_c00194{margin-left:-1.200000px;}
._2_c00194{width:1.008000px;}
._7_c00194{width:7.776000px;}
._5_c00194{width:55.674000px;}
._6_c00194{width:59.136000px;}
.fc0_c00194{color:rgb(35,31,32);}
.fs5_c00194{font-size:30.600000px;}
.fs6_c00194{font-size:36.000000px;}
.fs3_c00194{font-size:42.000000px;}
.fs0_c00194{font-size:48.000000px;}
.fs4_c00194{font-size:54.000000px;}
.fs2_c00194{font-size:57.000000px;}
.fs1_c00194{font-size:60.000000px;}
.y0_c00194{bottom:0.000000px;}
.y18_c00194{bottom:347.334900px;}
.y17_c00194{bottom:360.834900px;}
.y16_c00194{bottom:374.334900px;}
.y15_c00194{bottom:400.838700px;}
.y14_c00194{bottom:414.338700px;}
.y13_c00194{bottom:427.838700px;}
.y12_c00194{bottom:454.342650px;}
.y11_c00194{bottom:467.842650px;}
.y10_c00194{bottom:481.342650px;}
.yf_c00194{bottom:503.594700px;}
.ye_c00194{bottom:521.594700px;}
.yd_c00194{bottom:548.098650px;}
.y19_c00194{bottom:806.654550px;}
.yc_c00194{bottom:850.874100px;}
.yb_c00194{bottom:864.374100px;}
.ya_c00194{bottom:890.878050px;}
.y9_c00194{bottom:904.378050px;}
.y8_c00194{bottom:917.878050px;}
.y7_c00194{bottom:944.382000px;}
.y6_c00194{bottom:957.882000px;}
.y5_c00194{bottom:971.382000px;}
.y4_c00194{bottom:993.633900px;}
.y3_c00194{bottom:1011.633900px;}
.y2_c00194{bottom:1038.137850px;}
.y1_c00194{bottom:1093.600950px;}
.h8_c00194{height:25.200000px;}
.h7_c00194{height:30.282000px;}
.h5_c00194{height:34.080000px;}
.h2_c00194{height:39.264000px;}
.h3_c00194{height:39.984000px;}
.h4_c00194{height:43.260000px;}
.h6_c00194{height:43.740000px;}
.h1_c00194{height:1135.500000px;}
.h0_c00194{height:1135.506150px;}
.w0_c00194{width:893.950200px;}
.w1_c00194{width:894.000000px;}
.x0_c00194{left:0.000000px;}
.x4_c00194{left:128.626800px;}
.x5_c00194{left:141.382650px;}
.x2_c00194{left:188.061900px;}
.x3_c00194{left:190.513350px;}
.x6_c00194{left:321.919050px;}
.x1_c00194{left:800.165850px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls2_c00194{letter-spacing:-0.640000pt;}
.ls3_c00194{letter-spacing:-0.560000pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:0.426667pt;}
.ws0_c00194{word-spacing:-9.685333pt;}
.ws1_c00194{word-spacing:-7.728000pt;}
.ws2_c00194{word-spacing:-5.766400pt;}
.ws3_c00194{word-spacing:0.000000pt;}
.ws4_c00194{word-spacing:6.272000pt;}
._0_c00194{margin-left:-2449.134400pt;}
._4_c00194{margin-left:-6.174933pt;}
._1_c00194{margin-left:-2.005333pt;}
._3_c00194{margin-left:-1.066667pt;}
._2_c00194{width:0.896000pt;}
._7_c00194{width:6.912000pt;}
._5_c00194{width:49.488000pt;}
._6_c00194{width:52.565333pt;}
.fs5_c00194{font-size:27.200000pt;}
.fs6_c00194{font-size:32.000000pt;}
.fs3_c00194{font-size:37.333333pt;}
.fs0_c00194{font-size:42.666667pt;}
.fs4_c00194{font-size:48.000000pt;}
.fs2_c00194{font-size:50.666667pt;}
.fs1_c00194{font-size:53.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y18_c00194{bottom:308.742133pt;}
.y17_c00194{bottom:320.742133pt;}
.y16_c00194{bottom:332.742133pt;}
.y15_c00194{bottom:356.301067pt;}
.y14_c00194{bottom:368.301067pt;}
.y13_c00194{bottom:380.301067pt;}
.y12_c00194{bottom:403.860133pt;}
.y11_c00194{bottom:415.860133pt;}
.y10_c00194{bottom:427.860133pt;}
.yf_c00194{bottom:447.639733pt;}
.ye_c00194{bottom:463.639733pt;}
.yd_c00194{bottom:487.198800pt;}
.y19_c00194{bottom:717.026267pt;}
.yc_c00194{bottom:756.332533pt;}
.yb_c00194{bottom:768.332533pt;}
.ya_c00194{bottom:791.891600pt;}
.y9_c00194{bottom:803.891600pt;}
.y8_c00194{bottom:815.891600pt;}
.y7_c00194{bottom:839.450667pt;}
.y6_c00194{bottom:851.450667pt;}
.y5_c00194{bottom:863.450667pt;}
.y4_c00194{bottom:883.230133pt;}
.y3_c00194{bottom:899.230133pt;}
.y2_c00194{bottom:922.789200pt;}
.y1_c00194{bottom:972.089733pt;}
.h8_c00194{height:22.400000pt;}
.h7_c00194{height:26.917333pt;}
.h5_c00194{height:30.293333pt;}
.h2_c00194{height:34.901333pt;}
.h3_c00194{height:35.541333pt;}
.h4_c00194{height:38.453333pt;}
.h6_c00194{height:38.880000pt;}
.h1_c00194{height:1009.333333pt;}
.h0_c00194{height:1009.338800pt;}
.w0_c00194{width:794.622400pt;}
.w1_c00194{width:794.666667pt;}
.x0_c00194{left:0.000000pt;}
.x4_c00194{left:114.334933pt;}
.x5_c00194{left:125.673467pt;}
.x2_c00194{left:167.166133pt;}
.x3_c00194{left:169.345200pt;}
.x6_c00194{left:286.150267pt;}
.x1_c00194{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00195;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:1.067000;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00195{font-family:ff7_c00195;line-height:0.710000;font-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_c00195{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls4_c00195{letter-spacing:-0.810000px;}
.ls2_c00195{letter-spacing:-0.720000px;}
.ls3_c00195{letter-spacing:-0.630000px;}
.ls1_c00195{letter-spacing:-0.540000px;}
.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;}
}
.ws1_c00195{word-spacing:-8.694000px;}
.ws2_c00195{word-spacing:-6.487200px;}
.ws3_c00195{word-spacing:0.000000px;}
.ws5_c00195{word-spacing:0.540000px;}
.ws4_c00195{word-spacing:7.056000px;}
.ws0_c00195{word-spacing:1574.587200px;}
._3_c00195{margin-left:-7.042800px;}
._0_c00195{margin-left:-2.112000px;}
._1_c00195{margin-left:-1.104000px;}
._2_c00195{width:2.016000px;}
._6_c00195{width:7.776000px;}
._4_c00195{width:55.674000px;}
._5_c00195{width:59.136000px;}
.fc0_c00195{color:rgb(35,31,32);}
.fs5_c00195{font-size:30.600000px;}
.fs6_c00195{font-size:36.000000px;}
.fs3_c00195{font-size:42.000000px;}
.fs0_c00195{font-size:48.000000px;}
.fs4_c00195{font-size:54.000000px;}
.fs2_c00195{font-size:57.000000px;}
.fs1_c00195{font-size:60.000000px;}
.y0_c00195{bottom:0.000000px;}
.y18_c00195{bottom:347.547450px;}
.y17_c00195{bottom:361.047450px;}
.y16_c00195{bottom:374.547450px;}
.y15_c00195{bottom:401.051400px;}
.y14_c00195{bottom:414.551400px;}
.y13_c00195{bottom:428.051400px;}
.y12_c00195{bottom:454.555350px;}
.y11_c00195{bottom:468.055350px;}
.y10_c00195{bottom:481.555350px;}
.yf_c00195{bottom:503.807250px;}
.ye_c00195{bottom:521.807250px;}
.yd_c00195{bottom:548.311200px;}
.yc_c00195{bottom:850.023600px;}
.yb_c00195{bottom:863.523600px;}
.ya_c00195{bottom:877.023600px;}
.y9_c00195{bottom:903.527550px;}
.y8_c00195{bottom:917.027550px;}
.y7_c00195{bottom:943.531500px;}
.y6_c00195{bottom:957.031500px;}
.y5_c00195{bottom:970.531500px;}
.y4_c00195{bottom:992.783550px;}
.y3_c00195{bottom:1010.783550px;}
.y2_c00195{bottom:1037.287500px;}
.y19_c00195{bottom:1040.299350px;}
.y1_c00195{bottom:1093.600950px;}
.h7_c00195{height:25.200000px;}
.h6_c00195{height:30.282000px;}
.h4_c00195{height:34.080000px;}
.h2_c00195{height:39.264000px;}
.h3_c00195{height:43.260000px;}
.h5_c00195{height:43.740000px;}
.h1_c00195{height:1135.500000px;}
.h0_c00195{height:1135.506150px;}
.w0_c00195{width:893.950200px;}
.w1_c00195{width:894.000000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:77.603100px;}
.x4_c00195{left:424.138500px;}
.x2_c00195{left:599.532150px;}
.x3_c00195{left:612.288150px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls4_c00195{letter-spacing:-0.720000pt;}
.ls2_c00195{letter-spacing:-0.640000pt;}
.ls3_c00195{letter-spacing:-0.560000pt;}
.ls1_c00195{letter-spacing:-0.480000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws1_c00195{word-spacing:-7.728000pt;}
.ws2_c00195{word-spacing:-5.766400pt;}
.ws3_c00195{word-spacing:0.000000pt;}
.ws5_c00195{word-spacing:0.480000pt;}
.ws4_c00195{word-spacing:6.272000pt;}
.ws0_c00195{word-spacing:1399.633067pt;}
._3_c00195{margin-left:-6.260267pt;}
._0_c00195{margin-left:-1.877333pt;}
._1_c00195{margin-left:-0.981333pt;}
._2_c00195{width:1.792000pt;}
._6_c00195{width:6.912000pt;}
._4_c00195{width:49.488000pt;}
._5_c00195{width:52.565333pt;}
.fs5_c00195{font-size:27.200000pt;}
.fs6_c00195{font-size:32.000000pt;}
.fs3_c00195{font-size:37.333333pt;}
.fs0_c00195{font-size:42.666667pt;}
.fs4_c00195{font-size:48.000000pt;}
.fs2_c00195{font-size:50.666667pt;}
.fs1_c00195{font-size:53.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y18_c00195{bottom:308.931067pt;}
.y17_c00195{bottom:320.931067pt;}
.y16_c00195{bottom:332.931067pt;}
.y15_c00195{bottom:356.490133pt;}
.y14_c00195{bottom:368.490133pt;}
.y13_c00195{bottom:380.490133pt;}
.y12_c00195{bottom:404.049200pt;}
.y11_c00195{bottom:416.049200pt;}
.y10_c00195{bottom:428.049200pt;}
.yf_c00195{bottom:447.828667pt;}
.ye_c00195{bottom:463.828667pt;}
.yd_c00195{bottom:487.387733pt;}
.yc_c00195{bottom:755.576533pt;}
.yb_c00195{bottom:767.576533pt;}
.ya_c00195{bottom:779.576533pt;}
.y9_c00195{bottom:803.135600pt;}
.y8_c00195{bottom:815.135600pt;}
.y7_c00195{bottom:838.694667pt;}
.y6_c00195{bottom:850.694667pt;}
.y5_c00195{bottom:862.694667pt;}
.y4_c00195{bottom:882.474267pt;}
.y3_c00195{bottom:898.474267pt;}
.y2_c00195{bottom:922.033333pt;}
.y19_c00195{bottom:924.710533pt;}
.y1_c00195{bottom:972.089733pt;}
.h7_c00195{height:22.400000pt;}
.h6_c00195{height:26.917333pt;}
.h4_c00195{height:30.293333pt;}
.h2_c00195{height:34.901333pt;}
.h3_c00195{height:38.453333pt;}
.h5_c00195{height:38.880000pt;}
.h1_c00195{height:1009.333333pt;}
.h0_c00195{height:1009.338800pt;}
.w0_c00195{width:794.622400pt;}
.w1_c00195{width:794.666667pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:68.980533pt;}
.x4_c00195{left:377.012000pt;}
.x2_c00195{left:532.917467pt;}
.x3_c00195{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00196;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00196{font-family:ff7_c00196;line-height:1.067000;font-style:normal;font-weight: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_c00196;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00196{font-family:ff8_c00196;line-height:0.710000;font-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_c00196{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls2_c00196{letter-spacing:-0.720000px;}
.ls3_c00196{letter-spacing:-0.630000px;}
.ls1_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00196{word-spacing:-8.694000px;}
.ws2_c00196{word-spacing:-6.487200px;}
.ws3_c00196{word-spacing:0.000000px;}
.ws4_c00196{word-spacing:7.056000px;}
._0_c00196{margin-left:-2755.276200px;}
._4_c00196{margin-left:-6.947400px;}
._1_c00196{margin-left:-2.256000px;}
._3_c00196{margin-left:-1.200000px;}
._2_c00196{width:1.008000px;}
._7_c00196{width:7.776000px;}
._5_c00196{width:55.674000px;}
._6_c00196{width:59.136000px;}
.fc0_c00196{color:rgb(35,31,32);}
.fs5_c00196{font-size:30.600000px;}
.fs6_c00196{font-size:36.000000px;}
.fs3_c00196{font-size:42.000000px;}
.fs0_c00196{font-size:48.000000px;}
.fs4_c00196{font-size:54.000000px;}
.fs2_c00196{font-size:57.000000px;}
.fs1_c00196{font-size:60.000000px;}
.y0_c00196{bottom:0.000000px;}
.y18_c00196{bottom:360.834900px;}
.y17_c00196{bottom:374.334900px;}
.y16_c00196{bottom:387.834900px;}
.y15_c00196{bottom:414.338700px;}
.y14_c00196{bottom:427.838700px;}
.y13_c00196{bottom:454.342650px;}
.y12_c00196{bottom:467.842650px;}
.y11_c00196{bottom:481.342650px;}
.y10_c00196{bottom:503.594700px;}
.yf_c00196{bottom:521.594700px;}
.ye_c00196{bottom:548.098650px;}
.y19_c00196{bottom:551.323050px;}
.yd_c00196{bottom:837.374100px;}
.yc_c00196{bottom:850.874100px;}
.yb_c00196{bottom:864.374100px;}
.ya_c00196{bottom:890.878050px;}
.y9_c00196{bottom:904.378050px;}
.y8_c00196{bottom:917.878050px;}
.y7_c00196{bottom:944.382000px;}
.y6_c00196{bottom:957.882000px;}
.y5_c00196{bottom:971.382000px;}
.y4_c00196{bottom:993.633900px;}
.y3_c00196{bottom:1011.633900px;}
.y2_c00196{bottom:1038.137850px;}
.y1_c00196{bottom:1093.600950px;}
.h8_c00196{height:25.200000px;}
.h7_c00196{height:30.282000px;}
.h5_c00196{height:34.080000px;}
.h2_c00196{height:39.264000px;}
.h3_c00196{height:39.984000px;}
.h4_c00196{height:43.260000px;}
.h6_c00196{height:43.740000px;}
.h1_c00196{height:1135.500000px;}
.h0_c00196{height:1135.506150px;}
.w0_c00196{width:893.950200px;}
.w1_c00196{width:894.000000px;}
.x0_c00196{left:0.000000px;}
.x4_c00196{left:128.744700px;}
.x5_c00196{left:141.500700px;}
.x2_c00196{left:188.061900px;}
.x3_c00196{left:190.513350px;}
.x6_c00196{left:321.919050px;}
.x1_c00196{left:800.165850px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls2_c00196{letter-spacing:-0.640000pt;}
.ls3_c00196{letter-spacing:-0.560000pt;}
.ls1_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.426667pt;}
.ws0_c00196{word-spacing:-9.685333pt;}
.ws1_c00196{word-spacing:-7.728000pt;}
.ws2_c00196{word-spacing:-5.766400pt;}
.ws3_c00196{word-spacing:0.000000pt;}
.ws4_c00196{word-spacing:6.272000pt;}
._0_c00196{margin-left:-2449.134400pt;}
._4_c00196{margin-left:-6.175467pt;}
._1_c00196{margin-left:-2.005333pt;}
._3_c00196{margin-left:-1.066667pt;}
._2_c00196{width:0.896000pt;}
._7_c00196{width:6.912000pt;}
._5_c00196{width:49.488000pt;}
._6_c00196{width:52.565333pt;}
.fs5_c00196{font-size:27.200000pt;}
.fs6_c00196{font-size:32.000000pt;}
.fs3_c00196{font-size:37.333333pt;}
.fs0_c00196{font-size:42.666667pt;}
.fs4_c00196{font-size:48.000000pt;}
.fs2_c00196{font-size:50.666667pt;}
.fs1_c00196{font-size:53.333333pt;}
.y0_c00196{bottom:0.000000pt;}
.y18_c00196{bottom:320.742133pt;}
.y17_c00196{bottom:332.742133pt;}
.y16_c00196{bottom:344.742133pt;}
.y15_c00196{bottom:368.301067pt;}
.y14_c00196{bottom:380.301067pt;}
.y13_c00196{bottom:403.860133pt;}
.y12_c00196{bottom:415.860133pt;}
.y11_c00196{bottom:427.860133pt;}
.y10_c00196{bottom:447.639733pt;}
.yf_c00196{bottom:463.639733pt;}
.ye_c00196{bottom:487.198800pt;}
.y19_c00196{bottom:490.064933pt;}
.yd_c00196{bottom:744.332533pt;}
.yc_c00196{bottom:756.332533pt;}
.yb_c00196{bottom:768.332533pt;}
.ya_c00196{bottom:791.891600pt;}
.y9_c00196{bottom:803.891600pt;}
.y8_c00196{bottom:815.891600pt;}
.y7_c00196{bottom:839.450667pt;}
.y6_c00196{bottom:851.450667pt;}
.y5_c00196{bottom:863.450667pt;}
.y4_c00196{bottom:883.230133pt;}
.y3_c00196{bottom:899.230133pt;}
.y2_c00196{bottom:922.789200pt;}
.y1_c00196{bottom:972.089733pt;}
.h8_c00196{height:22.400000pt;}
.h7_c00196{height:26.917333pt;}
.h5_c00196{height:30.293333pt;}
.h2_c00196{height:34.901333pt;}
.h3_c00196{height:35.541333pt;}
.h4_c00196{height:38.453333pt;}
.h6_c00196{height:38.880000pt;}
.h1_c00196{height:1009.333333pt;}
.h0_c00196{height:1009.338800pt;}
.w0_c00196{width:794.622400pt;}
.w1_c00196{width:794.666667pt;}
.x0_c00196{left:0.000000pt;}
.x4_c00196{left:114.439733pt;}
.x5_c00196{left:125.778400pt;}
.x2_c00196{left:167.166133pt;}
.x3_c00196{left:169.345200pt;}
.x6_c00196{left:286.150267pt;}
.x1_c00196{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00197;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00197{font-family:ff6_c00197;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls3_c00197{letter-spacing:-1.026000px;}
.ls1_c00197{letter-spacing:-0.720000px;}
.ls2_c00197{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00197{word-spacing:-8.694000px;}
.ws2_c00197{word-spacing:0.000000px;}
.ws4_c00197{word-spacing:0.216000px;}
.ws3_c00197{word-spacing:7.056000px;}
.ws0_c00197{word-spacing:1574.587200px;}
._3_c00197{margin-left:-7.042800px;}
._0_c00197{margin-left:-2.112000px;}
._1_c00197{margin-left:-1.104000px;}
._2_c00197{width:2.016000px;}
._6_c00197{width:7.776000px;}
._4_c00197{width:55.674000px;}
._5_c00197{width:59.136000px;}
.fc0_c00197{color:rgb(35,31,32);}
.fs3_c00197{font-size:42.000000px;}
.fs0_c00197{font-size:48.000000px;}
.fs4_c00197{font-size:54.000000px;}
.fs2_c00197{font-size:57.000000px;}
.fs1_c00197{font-size:60.000000px;}
.y0_c00197{bottom:0.000000px;}
.y19_c00197{bottom:347.547450px;}
.y18_c00197{bottom:361.047450px;}
.y17_c00197{bottom:374.547450px;}
.y16_c00197{bottom:401.051400px;}
.y15_c00197{bottom:414.551400px;}
.y14_c00197{bottom:428.051400px;}
.y13_c00197{bottom:454.555350px;}
.y12_c00197{bottom:468.055350px;}
.y11_c00197{bottom:481.555350px;}
.y10_c00197{bottom:503.807250px;}
.yf_c00197{bottom:521.807250px;}
.ye_c00197{bottom:548.311200px;}
.yd_c00197{bottom:840.775500px;}
.yc_c00197{bottom:854.275500px;}
.yb_c00197{bottom:867.775500px;}
.ya_c00197{bottom:890.027550px;}
.y9_c00197{bottom:903.527550px;}
.y8_c00197{bottom:917.027550px;}
.y7_c00197{bottom:943.531500px;}
.y6_c00197{bottom:957.031500px;}
.y5_c00197{bottom:970.531500px;}
.y4_c00197{bottom:992.783550px;}
.y3_c00197{bottom:1010.783550px;}
.y2_c00197{bottom:1037.287500px;}
.y1_c00197{bottom:1093.600950px;}
.h6_c00197{height:30.282000px;}
.h4_c00197{height:34.080000px;}
.h2_c00197{height:39.264000px;}
.h3_c00197{height:43.260000px;}
.h5_c00197{height:43.740000px;}
.h1_c00197{height:1135.500000px;}
.h0_c00197{height:1135.506150px;}
.w0_c00197{width:893.950200px;}
.w1_c00197{width:894.000000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:77.603100px;}
.x2_c00197{left:599.532150px;}
.x3_c00197{left:612.288150px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls3_c00197{letter-spacing:-0.912000pt;}
.ls1_c00197{letter-spacing:-0.640000pt;}
.ls2_c00197{letter-spacing:-0.560000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws1_c00197{word-spacing:-7.728000pt;}
.ws2_c00197{word-spacing:0.000000pt;}
.ws4_c00197{word-spacing:0.192000pt;}
.ws3_c00197{word-spacing:6.272000pt;}
.ws0_c00197{word-spacing:1399.633067pt;}
._3_c00197{margin-left:-6.260267pt;}
._0_c00197{margin-left:-1.877333pt;}
._1_c00197{margin-left:-0.981333pt;}
._2_c00197{width:1.792000pt;}
._6_c00197{width:6.912000pt;}
._4_c00197{width:49.488000pt;}
._5_c00197{width:52.565333pt;}
.fs3_c00197{font-size:37.333333pt;}
.fs0_c00197{font-size:42.666667pt;}
.fs4_c00197{font-size:48.000000pt;}
.fs2_c00197{font-size:50.666667pt;}
.fs1_c00197{font-size:53.333333pt;}
.y0_c00197{bottom:0.000000pt;}
.y19_c00197{bottom:308.931067pt;}
.y18_c00197{bottom:320.931067pt;}
.y17_c00197{bottom:332.931067pt;}
.y16_c00197{bottom:356.490133pt;}
.y15_c00197{bottom:368.490133pt;}
.y14_c00197{bottom:380.490133pt;}
.y13_c00197{bottom:404.049200pt;}
.y12_c00197{bottom:416.049200pt;}
.y11_c00197{bottom:428.049200pt;}
.y10_c00197{bottom:447.828667pt;}
.yf_c00197{bottom:463.828667pt;}
.ye_c00197{bottom:487.387733pt;}
.yd_c00197{bottom:747.356000pt;}
.yc_c00197{bottom:759.356000pt;}
.yb_c00197{bottom:771.356000pt;}
.ya_c00197{bottom:791.135600pt;}
.y9_c00197{bottom:803.135600pt;}
.y8_c00197{bottom:815.135600pt;}
.y7_c00197{bottom:838.694667pt;}
.y6_c00197{bottom:850.694667pt;}
.y5_c00197{bottom:862.694667pt;}
.y4_c00197{bottom:882.474267pt;}
.y3_c00197{bottom:898.474267pt;}
.y2_c00197{bottom:922.033333pt;}
.y1_c00197{bottom:972.089733pt;}
.h6_c00197{height:26.917333pt;}
.h4_c00197{height:30.293333pt;}
.h2_c00197{height:34.901333pt;}
.h3_c00197{height:38.453333pt;}
.h5_c00197{height:38.880000pt;}
.h1_c00197{height:1009.333333pt;}
.h0_c00197{height:1009.338800pt;}
.w0_c00197{width:794.622400pt;}
.w1_c00197{width:794.666667pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:68.980533pt;}
.x2_c00197{left:532.917467pt;}
.x3_c00197{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:0.908000;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00198{font-family:ff7_c00198;line-height:1.067000;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00198{font-family:ff8_c00198;line-height:0.710000;font-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_c00198{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls2_c00198{letter-spacing:-0.720000px;}
.ls3_c00198{letter-spacing:-0.630000px;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00198{word-spacing:-8.694000px;}
.ws2_c00198{word-spacing:-6.487200px;}
.ws3_c00198{word-spacing:0.000000px;}
.ws4_c00198{word-spacing:7.056000px;}
._0_c00198{margin-left:-2755.276200px;}
._4_c00198{margin-left:-6.946800px;}
._6_c00198{margin-left:-4.590000px;}
._1_c00198{margin-left:-2.256000px;}
._3_c00198{margin-left:-1.200000px;}
._2_c00198{width:1.008000px;}
._8_c00198{width:7.776000px;}
._5_c00198{width:55.674000px;}
._7_c00198{width:59.136000px;}
.fc0_c00198{color:rgb(35,31,32);}
.fs5_c00198{font-size:30.600000px;}
.fs6_c00198{font-size:36.000000px;}
.fs3_c00198{font-size:42.000000px;}
.fs0_c00198{font-size:48.000000px;}
.fs4_c00198{font-size:54.000000px;}
.fs2_c00198{font-size:57.000000px;}
.fs1_c00198{font-size:60.000000px;}
.y0_c00198{bottom:0.000000px;}
.y19_c00198{bottom:330.018600px;}
.y18_c00198{bottom:343.518600px;}
.y17_c00198{bottom:357.018600px;}
.y16_c00198{bottom:383.522550px;}
.y15_c00198{bottom:397.022550px;}
.y14_c00198{bottom:410.522550px;}
.y13_c00198{bottom:437.026500px;}
.y12_c00198{bottom:450.526500px;}
.y11_c00198{bottom:464.026500px;}
.y10_c00198{bottom:486.278400px;}
.yf_c00198{bottom:504.278400px;}
.ye_c00198{bottom:522.278400px;}
.yd_c00198{bottom:548.782350px;}
.yc_c00198{bottom:850.494900px;}
.yb_c00198{bottom:863.994900px;}
.ya_c00198{bottom:877.494900px;}
.y9_c00198{bottom:903.998850px;}
.y8_c00198{bottom:917.498850px;}
.y7_c00198{bottom:944.002800px;}
.y6_c00198{bottom:957.502800px;}
.y5_c00198{bottom:971.002800px;}
.y4_c00198{bottom:993.254700px;}
.y3_c00198{bottom:1011.254700px;}
.y2_c00198{bottom:1037.758650px;}
.y1a_c00198{bottom:1040.299350px;}
.y1_c00198{bottom:1093.600950px;}
.h8_c00198{height:25.200000px;}
.h7_c00198{height:30.282000px;}
.h5_c00198{height:34.080000px;}
.h2_c00198{height:39.264000px;}
.h3_c00198{height:39.984000px;}
.h4_c00198{height:43.260000px;}
.h6_c00198{height:43.740000px;}
.h1_c00198{height:1135.500000px;}
.h0_c00198{height:1135.506150px;}
.w0_c00198{width:893.950200px;}
.w1_c00198{width:894.000000px;}
.x0_c00198{left:0.000000px;}
.x4_c00198{left:128.626800px;}
.x5_c00198{left:141.382650px;}
.x6_c00198{left:145.634700px;}
.x2_c00198{left:188.061900px;}
.x3_c00198{left:190.513350px;}
.x7_c00198{left:321.919050px;}
.x1_c00198{left:800.165850px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls2_c00198{letter-spacing:-0.640000pt;}
.ls3_c00198{letter-spacing:-0.560000pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.426667pt;}
.ws0_c00198{word-spacing:-9.685333pt;}
.ws1_c00198{word-spacing:-7.728000pt;}
.ws2_c00198{word-spacing:-5.766400pt;}
.ws3_c00198{word-spacing:0.000000pt;}
.ws4_c00198{word-spacing:6.272000pt;}
._0_c00198{margin-left:-2449.134400pt;}
._4_c00198{margin-left:-6.174933pt;}
._6_c00198{margin-left:-4.080000pt;}
._1_c00198{margin-left:-2.005333pt;}
._3_c00198{margin-left:-1.066667pt;}
._2_c00198{width:0.896000pt;}
._8_c00198{width:6.912000pt;}
._5_c00198{width:49.488000pt;}
._7_c00198{width:52.565333pt;}
.fs5_c00198{font-size:27.200000pt;}
.fs6_c00198{font-size:32.000000pt;}
.fs3_c00198{font-size:37.333333pt;}
.fs0_c00198{font-size:42.666667pt;}
.fs4_c00198{font-size:48.000000pt;}
.fs2_c00198{font-size:50.666667pt;}
.fs1_c00198{font-size:53.333333pt;}
.y0_c00198{bottom:0.000000pt;}
.y19_c00198{bottom:293.349867pt;}
.y18_c00198{bottom:305.349867pt;}
.y17_c00198{bottom:317.349867pt;}
.y16_c00198{bottom:340.908933pt;}
.y15_c00198{bottom:352.908933pt;}
.y14_c00198{bottom:364.908933pt;}
.y13_c00198{bottom:388.468000pt;}
.y12_c00198{bottom:400.468000pt;}
.y11_c00198{bottom:412.468000pt;}
.y10_c00198{bottom:432.247467pt;}
.yf_c00198{bottom:448.247467pt;}
.ye_c00198{bottom:464.247467pt;}
.yd_c00198{bottom:487.806533pt;}
.yc_c00198{bottom:755.995467pt;}
.yb_c00198{bottom:767.995467pt;}
.ya_c00198{bottom:779.995467pt;}
.y9_c00198{bottom:803.554533pt;}
.y8_c00198{bottom:815.554533pt;}
.y7_c00198{bottom:839.113600pt;}
.y6_c00198{bottom:851.113600pt;}
.y5_c00198{bottom:863.113600pt;}
.y4_c00198{bottom:882.893067pt;}
.y3_c00198{bottom:898.893067pt;}
.y2_c00198{bottom:922.452133pt;}
.y1a_c00198{bottom:924.710533pt;}
.y1_c00198{bottom:972.089733pt;}
.h8_c00198{height:22.400000pt;}
.h7_c00198{height:26.917333pt;}
.h5_c00198{height:30.293333pt;}
.h2_c00198{height:34.901333pt;}
.h3_c00198{height:35.541333pt;}
.h4_c00198{height:38.453333pt;}
.h6_c00198{height:38.880000pt;}
.h1_c00198{height:1009.333333pt;}
.h0_c00198{height:1009.338800pt;}
.w0_c00198{width:794.622400pt;}
.w1_c00198{width:794.666667pt;}
.x0_c00198{left:0.000000pt;}
.x4_c00198{left:114.334933pt;}
.x5_c00198{left:125.673467pt;}
.x6_c00198{left:129.453067pt;}
.x2_c00198{left:167.166133pt;}
.x3_c00198{left:169.345200pt;}
.x7_c00198{left:286.150267pt;}
.x1_c00198{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.067000;font-style:normal;font-weight: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_c00199;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00199{font-family:ff7_c00199;line-height:0.710000;font-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_c00199{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls2_c00199{letter-spacing:-1.026000px;}
.ls1_c00199{letter-spacing:-0.720000px;}
.ls3_c00199{letter-spacing:-0.630000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-8.694000px;}
.ws2_c00199{word-spacing:-6.487200px;}
.ws3_c00199{word-spacing:0.000000px;}
.ws5_c00199{word-spacing:0.216000px;}
.ws4_c00199{word-spacing:7.056000px;}
.ws0_c00199{word-spacing:1574.587200px;}
._3_c00199{margin-left:-7.042800px;}
._0_c00199{margin-left:-2.112000px;}
._1_c00199{margin-left:-1.104000px;}
._2_c00199{width:2.016000px;}
._6_c00199{width:7.776000px;}
._4_c00199{width:55.674000px;}
._5_c00199{width:59.136000px;}
.fc0_c00199{color:rgb(35,31,32);}
.fs5_c00199{font-size:30.600000px;}
.fs6_c00199{font-size:36.000000px;}
.fs3_c00199{font-size:42.000000px;}
.fs0_c00199{font-size:48.000000px;}
.fs4_c00199{font-size:54.000000px;}
.fs2_c00199{font-size:57.000000px;}
.fs1_c00199{font-size:60.000000px;}
.y0_c00199{bottom:0.000000px;}
.y17_c00199{bottom:361.047450px;}
.y16_c00199{bottom:374.547450px;}
.y15_c00199{bottom:388.047450px;}
.y14_c00199{bottom:414.551400px;}
.y13_c00199{bottom:428.051400px;}
.y12_c00199{bottom:454.555350px;}
.y11_c00199{bottom:468.055350px;}
.y10_c00199{bottom:481.555350px;}
.yf_c00199{bottom:503.807250px;}
.ye_c00199{bottom:521.807250px;}
.yd_c00199{bottom:548.311200px;}
.y19_c00199{bottom:551.323050px;}
.y18_c00199{bottom:806.275350px;}
.yc_c00199{bottom:850.023600px;}
.yb_c00199{bottom:863.523600px;}
.ya_c00199{bottom:890.027550px;}
.y9_c00199{bottom:903.527550px;}
.y8_c00199{bottom:917.027550px;}
.y7_c00199{bottom:943.531500px;}
.y6_c00199{bottom:957.031500px;}
.y5_c00199{bottom:970.531500px;}
.y4_c00199{bottom:992.783550px;}
.y3_c00199{bottom:1010.783550px;}
.y2_c00199{bottom:1037.287500px;}
.y1_c00199{bottom:1093.600950px;}
.h7_c00199{height:25.200000px;}
.h6_c00199{height:30.282000px;}
.h4_c00199{height:34.080000px;}
.h2_c00199{height:39.264000px;}
.h3_c00199{height:43.260000px;}
.h5_c00199{height:43.740000px;}
.h1_c00199{height:1135.500000px;}
.h0_c00199{height:1135.506150px;}
.w0_c00199{width:893.950200px;}
.w1_c00199{width:894.000000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:77.603100px;}
.x4_c00199{left:424.138500px;}
.x2_c00199{left:599.532150px;}
.x3_c00199{left:612.288150px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls2_c00199{letter-spacing:-0.912000pt;}
.ls1_c00199{letter-spacing:-0.640000pt;}
.ls3_c00199{letter-spacing:-0.560000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws1_c00199{word-spacing:-7.728000pt;}
.ws2_c00199{word-spacing:-5.766400pt;}
.ws3_c00199{word-spacing:0.000000pt;}
.ws5_c00199{word-spacing:0.192000pt;}
.ws4_c00199{word-spacing:6.272000pt;}
.ws0_c00199{word-spacing:1399.633067pt;}
._3_c00199{margin-left:-6.260267pt;}
._0_c00199{margin-left:-1.877333pt;}
._1_c00199{margin-left:-0.981333pt;}
._2_c00199{width:1.792000pt;}
._6_c00199{width:6.912000pt;}
._4_c00199{width:49.488000pt;}
._5_c00199{width:52.565333pt;}
.fs5_c00199{font-size:27.200000pt;}
.fs6_c00199{font-size:32.000000pt;}
.fs3_c00199{font-size:37.333333pt;}
.fs0_c00199{font-size:42.666667pt;}
.fs4_c00199{font-size:48.000000pt;}
.fs2_c00199{font-size:50.666667pt;}
.fs1_c00199{font-size:53.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y17_c00199{bottom:320.931067pt;}
.y16_c00199{bottom:332.931067pt;}
.y15_c00199{bottom:344.931067pt;}
.y14_c00199{bottom:368.490133pt;}
.y13_c00199{bottom:380.490133pt;}
.y12_c00199{bottom:404.049200pt;}
.y11_c00199{bottom:416.049200pt;}
.y10_c00199{bottom:428.049200pt;}
.yf_c00199{bottom:447.828667pt;}
.ye_c00199{bottom:463.828667pt;}
.yd_c00199{bottom:487.387733pt;}
.y19_c00199{bottom:490.064933pt;}
.y18_c00199{bottom:716.689200pt;}
.yc_c00199{bottom:755.576533pt;}
.yb_c00199{bottom:767.576533pt;}
.ya_c00199{bottom:791.135600pt;}
.y9_c00199{bottom:803.135600pt;}
.y8_c00199{bottom:815.135600pt;}
.y7_c00199{bottom:838.694667pt;}
.y6_c00199{bottom:850.694667pt;}
.y5_c00199{bottom:862.694667pt;}
.y4_c00199{bottom:882.474267pt;}
.y3_c00199{bottom:898.474267pt;}
.y2_c00199{bottom:922.033333pt;}
.y1_c00199{bottom:972.089733pt;}
.h7_c00199{height:22.400000pt;}
.h6_c00199{height:26.917333pt;}
.h4_c00199{height:30.293333pt;}
.h2_c00199{height:34.901333pt;}
.h3_c00199{height:38.453333pt;}
.h5_c00199{height:38.880000pt;}
.h1_c00199{height:1009.333333pt;}
.h0_c00199{height:1009.338800pt;}
.w0_c00199{width:794.622400pt;}
.w1_c00199{width:794.666667pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:68.980533pt;}
.x4_c00199{left:377.012000pt;}
.x2_c00199{left:532.917467pt;}
.x3_c00199{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00200;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;line-height:0.908000;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00200{font-family:ff7_c00200;line-height:1.067000;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00200{font-family:ff8_c00200;line-height:0.710000;font-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_c00200{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls2_c00200{letter-spacing:-0.720000px;}
.ls3_c00200{letter-spacing:-0.630000px;}
.ls1_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00200{word-spacing:-8.694000px;}
.ws2_c00200{word-spacing:-6.487200px;}
.ws3_c00200{word-spacing:0.000000px;}
.ws4_c00200{word-spacing:7.056000px;}
._0_c00200{margin-left:-2755.276200px;}
._4_c00200{margin-left:-6.947400px;}
._1_c00200{margin-left:-2.256000px;}
._3_c00200{margin-left:-1.200000px;}
._2_c00200{width:1.008000px;}
._7_c00200{width:7.776000px;}
._5_c00200{width:55.674000px;}
._6_c00200{width:59.136000px;}
.fc0_c00200{color:rgb(35,31,32);}
.fs5_c00200{font-size:30.600000px;}
.fs6_c00200{font-size:36.000000px;}
.fs3_c00200{font-size:42.000000px;}
.fs0_c00200{font-size:48.000000px;}
.fs4_c00200{font-size:54.000000px;}
.fs2_c00200{font-size:57.000000px;}
.fs1_c00200{font-size:60.000000px;}
.y0_c00200{bottom:0.000000px;}
.y18_c00200{bottom:364.812150px;}
.y17_c00200{bottom:378.312150px;}
.y16_c00200{bottom:391.812150px;}
.y15_c00200{bottom:414.064050px;}
.y14_c00200{bottom:427.564050px;}
.y13_c00200{bottom:454.068000px;}
.y12_c00200{bottom:467.568000px;}
.y11_c00200{bottom:481.068000px;}
.y10_c00200{bottom:503.320050px;}
.yf_c00200{bottom:521.320050px;}
.ye_c00200{bottom:547.824000px;}
.y19_c00200{bottom:551.048400px;}
.yd_c00200{bottom:837.099450px;}
.yc_c00200{bottom:850.599450px;}
.yb_c00200{bottom:864.099450px;}
.ya_c00200{bottom:890.603400px;}
.y9_c00200{bottom:904.103400px;}
.y8_c00200{bottom:917.603400px;}
.y7_c00200{bottom:944.107350px;}
.y6_c00200{bottom:957.607350px;}
.y5_c00200{bottom:971.107350px;}
.y4_c00200{bottom:993.359250px;}
.y3_c00200{bottom:1011.359250px;}
.y2_c00200{bottom:1037.863200px;}
.y1_c00200{bottom:1093.600950px;}
.h8_c00200{height:25.200000px;}
.h7_c00200{height:30.282000px;}
.h5_c00200{height:34.080000px;}
.h2_c00200{height:39.264000px;}
.h3_c00200{height:39.984000px;}
.h4_c00200{height:43.260000px;}
.h6_c00200{height:43.740000px;}
.h1_c00200{height:1135.500000px;}
.h0_c00200{height:1135.506150px;}
.w0_c00200{width:893.950200px;}
.w1_c00200{width:894.000000px;}
.x0_c00200{left:0.000000px;}
.x4_c00200{left:128.744700px;}
.x5_c00200{left:141.500700px;}
.x2_c00200{left:188.061900px;}
.x3_c00200{left:190.513350px;}
.x6_c00200{left:321.919050px;}
.x1_c00200{left:800.165850px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls2_c00200{letter-spacing:-0.640000pt;}
.ls3_c00200{letter-spacing:-0.560000pt;}
.ls1_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:0.426667pt;}
.ws0_c00200{word-spacing:-9.685333pt;}
.ws1_c00200{word-spacing:-7.728000pt;}
.ws2_c00200{word-spacing:-5.766400pt;}
.ws3_c00200{word-spacing:0.000000pt;}
.ws4_c00200{word-spacing:6.272000pt;}
._0_c00200{margin-left:-2449.134400pt;}
._4_c00200{margin-left:-6.175467pt;}
._1_c00200{margin-left:-2.005333pt;}
._3_c00200{margin-left:-1.066667pt;}
._2_c00200{width:0.896000pt;}
._7_c00200{width:6.912000pt;}
._5_c00200{width:49.488000pt;}
._6_c00200{width:52.565333pt;}
.fs5_c00200{font-size:27.200000pt;}
.fs6_c00200{font-size:32.000000pt;}
.fs3_c00200{font-size:37.333333pt;}
.fs0_c00200{font-size:42.666667pt;}
.fs4_c00200{font-size:48.000000pt;}
.fs2_c00200{font-size:50.666667pt;}
.fs1_c00200{font-size:53.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y18_c00200{bottom:324.277467pt;}
.y17_c00200{bottom:336.277467pt;}
.y16_c00200{bottom:348.277467pt;}
.y15_c00200{bottom:368.056933pt;}
.y14_c00200{bottom:380.056933pt;}
.y13_c00200{bottom:403.616000pt;}
.y12_c00200{bottom:415.616000pt;}
.y11_c00200{bottom:427.616000pt;}
.y10_c00200{bottom:447.395600pt;}
.yf_c00200{bottom:463.395600pt;}
.ye_c00200{bottom:486.954667pt;}
.y19_c00200{bottom:489.820800pt;}
.yd_c00200{bottom:744.088400pt;}
.yc_c00200{bottom:756.088400pt;}
.yb_c00200{bottom:768.088400pt;}
.ya_c00200{bottom:791.647467pt;}
.y9_c00200{bottom:803.647467pt;}
.y8_c00200{bottom:815.647467pt;}
.y7_c00200{bottom:839.206533pt;}
.y6_c00200{bottom:851.206533pt;}
.y5_c00200{bottom:863.206533pt;}
.y4_c00200{bottom:882.986000pt;}
.y3_c00200{bottom:898.986000pt;}
.y2_c00200{bottom:922.545067pt;}
.y1_c00200{bottom:972.089733pt;}
.h8_c00200{height:22.400000pt;}
.h7_c00200{height:26.917333pt;}
.h5_c00200{height:30.293333pt;}
.h2_c00200{height:34.901333pt;}
.h3_c00200{height:35.541333pt;}
.h4_c00200{height:38.453333pt;}
.h6_c00200{height:38.880000pt;}
.h1_c00200{height:1009.333333pt;}
.h0_c00200{height:1009.338800pt;}
.w0_c00200{width:794.622400pt;}
.w1_c00200{width:794.666667pt;}
.x0_c00200{left:0.000000pt;}
.x4_c00200{left:114.439733pt;}
.x5_c00200{left:125.778400pt;}
.x2_c00200{left:167.166133pt;}
.x3_c00200{left:169.345200pt;}
.x6_c00200{left:286.150267pt;}
.x1_c00200{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00201;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00201{font-family:ff5_c00201;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00201;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00201{font-family:ff6_c00201;line-height:1.067000;font-style:normal;font-weight: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_c00201;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00201{font-family:ff7_c00201;line-height:0.710000;font-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_c00201{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls4_c00201{letter-spacing:-1.188000px;}
.ls2_c00201{letter-spacing:-0.720000px;}
.ls3_c00201{letter-spacing:-0.630000px;}
.ls1_c00201{letter-spacing:-0.378000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00201{word-spacing:-8.694000px;}
.ws2_c00201{word-spacing:-6.487200px;}
.ws3_c00201{word-spacing:0.000000px;}
.ws5_c00201{word-spacing:0.378000px;}
.ws4_c00201{word-spacing:7.056000px;}
.ws6_c00201{word-spacing:56.862000px;}
.ws0_c00201{word-spacing:1574.587200px;}
._3_c00201{margin-left:-7.042800px;}
._0_c00201{margin-left:-2.112000px;}
._1_c00201{margin-left:-1.104000px;}
._2_c00201{width:2.016000px;}
._6_c00201{width:7.776000px;}
._4_c00201{width:55.674000px;}
._5_c00201{width:59.136000px;}
.fc0_c00201{color:rgb(35,31,32);}
.fs5_c00201{font-size:30.600000px;}
.fs6_c00201{font-size:36.000000px;}
.fs3_c00201{font-size:42.000000px;}
.fs0_c00201{font-size:48.000000px;}
.fs4_c00201{font-size:54.000000px;}
.fs2_c00201{font-size:57.000000px;}
.fs1_c00201{font-size:60.000000px;}
.y0_c00201{bottom:0.000000px;}
.y18_c00201{bottom:347.547450px;}
.y17_c00201{bottom:361.047450px;}
.y16_c00201{bottom:374.547450px;}
.y15_c00201{bottom:401.051400px;}
.y14_c00201{bottom:414.551400px;}
.y13_c00201{bottom:428.051400px;}
.y12_c00201{bottom:454.555350px;}
.y11_c00201{bottom:468.055350px;}
.y10_c00201{bottom:481.555350px;}
.yf_c00201{bottom:503.807250px;}
.ye_c00201{bottom:521.807250px;}
.yd_c00201{bottom:548.311200px;}
.yc_c00201{bottom:850.023600px;}
.yb_c00201{bottom:863.523600px;}
.ya_c00201{bottom:877.023600px;}
.y9_c00201{bottom:903.527550px;}
.y8_c00201{bottom:917.027550px;}
.y7_c00201{bottom:943.531500px;}
.y6_c00201{bottom:957.031500px;}
.y5_c00201{bottom:970.531500px;}
.y4_c00201{bottom:992.783550px;}
.y3_c00201{bottom:1010.783550px;}
.y2_c00201{bottom:1037.287500px;}
.y19_c00201{bottom:1040.299350px;}
.y1_c00201{bottom:1093.600950px;}
.h7_c00201{height:25.200000px;}
.h6_c00201{height:30.282000px;}
.h4_c00201{height:34.080000px;}
.h2_c00201{height:39.264000px;}
.h3_c00201{height:43.260000px;}
.h5_c00201{height:43.740000px;}
.h1_c00201{height:1135.500000px;}
.h0_c00201{height:1135.506150px;}
.w0_c00201{width:893.950200px;}
.w1_c00201{width:894.000000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:77.603100px;}
.x4_c00201{left:424.138500px;}
.x2_c00201{left:599.532150px;}
.x3_c00201{left:612.288150px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls4_c00201{letter-spacing:-1.056000pt;}
.ls2_c00201{letter-spacing:-0.640000pt;}
.ls3_c00201{letter-spacing:-0.560000pt;}
.ls1_c00201{letter-spacing:-0.336000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws1_c00201{word-spacing:-7.728000pt;}
.ws2_c00201{word-spacing:-5.766400pt;}
.ws3_c00201{word-spacing:0.000000pt;}
.ws5_c00201{word-spacing:0.336000pt;}
.ws4_c00201{word-spacing:6.272000pt;}
.ws6_c00201{word-spacing:50.544000pt;}
.ws0_c00201{word-spacing:1399.633067pt;}
._3_c00201{margin-left:-6.260267pt;}
._0_c00201{margin-left:-1.877333pt;}
._1_c00201{margin-left:-0.981333pt;}
._2_c00201{width:1.792000pt;}
._6_c00201{width:6.912000pt;}
._4_c00201{width:49.488000pt;}
._5_c00201{width:52.565333pt;}
.fs5_c00201{font-size:27.200000pt;}
.fs6_c00201{font-size:32.000000pt;}
.fs3_c00201{font-size:37.333333pt;}
.fs0_c00201{font-size:42.666667pt;}
.fs4_c00201{font-size:48.000000pt;}
.fs2_c00201{font-size:50.666667pt;}
.fs1_c00201{font-size:53.333333pt;}
.y0_c00201{bottom:0.000000pt;}
.y18_c00201{bottom:308.931067pt;}
.y17_c00201{bottom:320.931067pt;}
.y16_c00201{bottom:332.931067pt;}
.y15_c00201{bottom:356.490133pt;}
.y14_c00201{bottom:368.490133pt;}
.y13_c00201{bottom:380.490133pt;}
.y12_c00201{bottom:404.049200pt;}
.y11_c00201{bottom:416.049200pt;}
.y10_c00201{bottom:428.049200pt;}
.yf_c00201{bottom:447.828667pt;}
.ye_c00201{bottom:463.828667pt;}
.yd_c00201{bottom:487.387733pt;}
.yc_c00201{bottom:755.576533pt;}
.yb_c00201{bottom:767.576533pt;}
.ya_c00201{bottom:779.576533pt;}
.y9_c00201{bottom:803.135600pt;}
.y8_c00201{bottom:815.135600pt;}
.y7_c00201{bottom:838.694667pt;}
.y6_c00201{bottom:850.694667pt;}
.y5_c00201{bottom:862.694667pt;}
.y4_c00201{bottom:882.474267pt;}
.y3_c00201{bottom:898.474267pt;}
.y2_c00201{bottom:922.033333pt;}
.y19_c00201{bottom:924.710533pt;}
.y1_c00201{bottom:972.089733pt;}
.h7_c00201{height:22.400000pt;}
.h6_c00201{height:26.917333pt;}
.h4_c00201{height:30.293333pt;}
.h2_c00201{height:34.901333pt;}
.h3_c00201{height:38.453333pt;}
.h5_c00201{height:38.880000pt;}
.h1_c00201{height:1009.333333pt;}
.h0_c00201{height:1009.338800pt;}
.w0_c00201{width:794.622400pt;}
.w1_c00201{width:794.666667pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:68.980533pt;}
.x4_c00201{left:377.012000pt;}
.x2_c00201{left:532.917467pt;}
.x3_c00201{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:0.908000;font-style:normal;font-weight: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_c00202;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00202{font-family:ff7_c00202;line-height:1.067000;font-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_c00202{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls5_c00202{letter-spacing:-1.026000px;}
.ls3_c00202{letter-spacing:-0.720000px;}
.ls4_c00202{letter-spacing:-0.630000px;}
.ls2_c00202{letter-spacing:-0.540000px;}
.ls1_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.480000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00202{word-spacing:-8.694000px;}
.ws0_c00202{word-spacing:-0.048000px;}
.ws2_c00202{word-spacing:0.000000px;}
.ws5_c00202{word-spacing:0.216000px;}
.ws4_c00202{word-spacing:0.540000px;}
.ws3_c00202{word-spacing:7.056000px;}
._0_c00202{margin-left:-2755.276200px;}
._4_c00202{margin-left:-6.947400px;}
._1_c00202{margin-left:-2.256000px;}
._3_c00202{margin-left:-1.200000px;}
._2_c00202{width:1.008000px;}
._7_c00202{width:7.776000px;}
._5_c00202{width:55.674000px;}
._6_c00202{width:59.136000px;}
.fc0_c00202{color:rgb(35,31,32);}
.fs3_c00202{font-size:42.000000px;}
.fs0_c00202{font-size:48.000000px;}
.fs4_c00202{font-size:54.000000px;}
.fs2_c00202{font-size:57.000000px;}
.fs1_c00202{font-size:60.000000px;}
.y0_c00202{bottom:0.000000px;}
.y19_c00202{bottom:347.547450px;}
.y18_c00202{bottom:361.047450px;}
.y17_c00202{bottom:374.547450px;}
.y16_c00202{bottom:401.051400px;}
.y15_c00202{bottom:414.551400px;}
.y14_c00202{bottom:428.051400px;}
.y13_c00202{bottom:454.555350px;}
.y12_c00202{bottom:468.055350px;}
.y11_c00202{bottom:481.555350px;}
.y10_c00202{bottom:503.807250px;}
.yf_c00202{bottom:521.807250px;}
.ye_c00202{bottom:548.311200px;}
.yd_c00202{bottom:836.523600px;}
.yc_c00202{bottom:850.023600px;}
.yb_c00202{bottom:863.523600px;}
.ya_c00202{bottom:890.027550px;}
.y9_c00202{bottom:903.527550px;}
.y8_c00202{bottom:917.027550px;}
.y7_c00202{bottom:943.531500px;}
.y6_c00202{bottom:957.031500px;}
.y5_c00202{bottom:970.531500px;}
.y4_c00202{bottom:992.783550px;}
.y3_c00202{bottom:1010.783550px;}
.y2_c00202{bottom:1037.287500px;}
.y1_c00202{bottom:1093.600950px;}
.h7_c00202{height:30.282000px;}
.h5_c00202{height:34.080000px;}
.h2_c00202{height:39.264000px;}
.h3_c00202{height:39.984000px;}
.h4_c00202{height:43.260000px;}
.h6_c00202{height:43.740000px;}
.h1_c00202{height:1135.500000px;}
.h0_c00202{height:1135.506150px;}
.w0_c00202{width:893.950200px;}
.w1_c00202{width:894.000000px;}
.x0_c00202{left:0.000000px;}
.x4_c00202{left:128.744700px;}
.x5_c00202{left:141.500700px;}
.x2_c00202{left:188.061900px;}
.x3_c00202{left:190.513350px;}
.x1_c00202{left:800.165850px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls5_c00202{letter-spacing:-0.912000pt;}
.ls3_c00202{letter-spacing:-0.640000pt;}
.ls4_c00202{letter-spacing:-0.560000pt;}
.ls2_c00202{letter-spacing:-0.480000pt;}
.ls1_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.426667pt;}
.ws1_c00202{word-spacing:-7.728000pt;}
.ws0_c00202{word-spacing:-0.042667pt;}
.ws2_c00202{word-spacing:0.000000pt;}
.ws5_c00202{word-spacing:0.192000pt;}
.ws4_c00202{word-spacing:0.480000pt;}
.ws3_c00202{word-spacing:6.272000pt;}
._0_c00202{margin-left:-2449.134400pt;}
._4_c00202{margin-left:-6.175467pt;}
._1_c00202{margin-left:-2.005333pt;}
._3_c00202{margin-left:-1.066667pt;}
._2_c00202{width:0.896000pt;}
._7_c00202{width:6.912000pt;}
._5_c00202{width:49.488000pt;}
._6_c00202{width:52.565333pt;}
.fs3_c00202{font-size:37.333333pt;}
.fs0_c00202{font-size:42.666667pt;}
.fs4_c00202{font-size:48.000000pt;}
.fs2_c00202{font-size:50.666667pt;}
.fs1_c00202{font-size:53.333333pt;}
.y0_c00202{bottom:0.000000pt;}
.y19_c00202{bottom:308.931067pt;}
.y18_c00202{bottom:320.931067pt;}
.y17_c00202{bottom:332.931067pt;}
.y16_c00202{bottom:356.490133pt;}
.y15_c00202{bottom:368.490133pt;}
.y14_c00202{bottom:380.490133pt;}
.y13_c00202{bottom:404.049200pt;}
.y12_c00202{bottom:416.049200pt;}
.y11_c00202{bottom:428.049200pt;}
.y10_c00202{bottom:447.828667pt;}
.yf_c00202{bottom:463.828667pt;}
.ye_c00202{bottom:487.387733pt;}
.yd_c00202{bottom:743.576533pt;}
.yc_c00202{bottom:755.576533pt;}
.yb_c00202{bottom:767.576533pt;}
.ya_c00202{bottom:791.135600pt;}
.y9_c00202{bottom:803.135600pt;}
.y8_c00202{bottom:815.135600pt;}
.y7_c00202{bottom:838.694667pt;}
.y6_c00202{bottom:850.694667pt;}
.y5_c00202{bottom:862.694667pt;}
.y4_c00202{bottom:882.474267pt;}
.y3_c00202{bottom:898.474267pt;}
.y2_c00202{bottom:922.033333pt;}
.y1_c00202{bottom:972.089733pt;}
.h7_c00202{height:26.917333pt;}
.h5_c00202{height:30.293333pt;}
.h2_c00202{height:34.901333pt;}
.h3_c00202{height:35.541333pt;}
.h4_c00202{height:38.453333pt;}
.h6_c00202{height:38.880000pt;}
.h1_c00202{height:1009.333333pt;}
.h0_c00202{height:1009.338800pt;}
.w0_c00202{width:794.622400pt;}
.w1_c00202{width:794.666667pt;}
.x0_c00202{left:0.000000pt;}
.x4_c00202{left:114.439733pt;}
.x5_c00202{left:125.778400pt;}
.x2_c00202{left:167.166133pt;}
.x3_c00202{left:169.345200pt;}
.x1_c00202{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00203;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls1_c00203{letter-spacing:-0.864000px;}
.ls2_c00203{letter-spacing:-0.720000px;}
.ls3_c00203{letter-spacing:-0.630000px;}
.ls4_c00203{letter-spacing:-0.216000px;}
.ls0_c00203{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00203{word-spacing:-11.502000px;}
.ws1_c00203{word-spacing:-8.694000px;}
.ws3_c00203{word-spacing:0.000000px;}
.ws5_c00203{word-spacing:0.216000px;}
.ws4_c00203{word-spacing:7.056000px;}
.ws0_c00203{word-spacing:1574.587200px;}
._3_c00203{margin-left:-7.042800px;}
._0_c00203{margin-left:-2.112000px;}
._1_c00203{margin-left:-1.104000px;}
._2_c00203{width:2.016000px;}
._6_c00203{width:7.776000px;}
._4_c00203{width:55.674000px;}
._5_c00203{width:59.136000px;}
.fc0_c00203{color:rgb(35,31,32);}
.fs3_c00203{font-size:42.000000px;}
.fs0_c00203{font-size:48.000000px;}
.fs4_c00203{font-size:54.000000px;}
.fs2_c00203{font-size:57.000000px;}
.fs1_c00203{font-size:60.000000px;}
.y0_c00203{bottom:0.000000px;}
.y1a_c00203{bottom:346.785600px;}
.y19_c00203{bottom:360.285600px;}
.y18_c00203{bottom:373.785600px;}
.y17_c00203{bottom:400.289400px;}
.y16_c00203{bottom:413.789400px;}
.y15_c00203{bottom:427.289400px;}
.y14_c00203{bottom:453.793350px;}
.y13_c00203{bottom:467.293350px;}
.y12_c00203{bottom:480.793350px;}
.y11_c00203{bottom:503.045400px;}
.y10_c00203{bottom:521.045400px;}
.yf_c00203{bottom:547.549350px;}
.ye_c00203{bottom:818.824800px;}
.yd_c00203{bottom:832.324800px;}
.yc_c00203{bottom:845.824800px;}
.yb_c00203{bottom:872.328750px;}
.ya_c00203{bottom:885.828750px;}
.y9_c00203{bottom:899.328750px;}
.y8_c00203{bottom:925.832700px;}
.y7_c00203{bottom:939.332700px;}
.y6_c00203{bottom:952.832700px;}
.y5_c00203{bottom:975.084750px;}
.y4_c00203{bottom:993.084750px;}
.y3_c00203{bottom:1011.084750px;}
.y2_c00203{bottom:1037.588700px;}
.y1_c00203{bottom:1093.600950px;}
.h6_c00203{height:30.282000px;}
.h4_c00203{height:34.080000px;}
.h2_c00203{height:39.264000px;}
.h3_c00203{height:43.260000px;}
.h5_c00203{height:43.740000px;}
.h1_c00203{height:1135.500000px;}
.h0_c00203{height:1135.506150px;}
.w0_c00203{width:893.950200px;}
.w1_c00203{width:894.000000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:77.603100px;}
.x2_c00203{left:599.532150px;}
.x3_c00203{left:612.288150px;}
.x4_c00203{left:616.540050px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls1_c00203{letter-spacing:-0.768000pt;}
.ls2_c00203{letter-spacing:-0.640000pt;}
.ls3_c00203{letter-spacing:-0.560000pt;}
.ls4_c00203{letter-spacing:-0.192000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws2_c00203{word-spacing:-10.224000pt;}
.ws1_c00203{word-spacing:-7.728000pt;}
.ws3_c00203{word-spacing:0.000000pt;}
.ws5_c00203{word-spacing:0.192000pt;}
.ws4_c00203{word-spacing:6.272000pt;}
.ws0_c00203{word-spacing:1399.633067pt;}
._3_c00203{margin-left:-6.260267pt;}
._0_c00203{margin-left:-1.877333pt;}
._1_c00203{margin-left:-0.981333pt;}
._2_c00203{width:1.792000pt;}
._6_c00203{width:6.912000pt;}
._4_c00203{width:49.488000pt;}
._5_c00203{width:52.565333pt;}
.fs3_c00203{font-size:37.333333pt;}
.fs0_c00203{font-size:42.666667pt;}
.fs4_c00203{font-size:48.000000pt;}
.fs2_c00203{font-size:50.666667pt;}
.fs1_c00203{font-size:53.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y1a_c00203{bottom:308.253867pt;}
.y19_c00203{bottom:320.253867pt;}
.y18_c00203{bottom:332.253867pt;}
.y17_c00203{bottom:355.812800pt;}
.y16_c00203{bottom:367.812800pt;}
.y15_c00203{bottom:379.812800pt;}
.y14_c00203{bottom:403.371867pt;}
.y13_c00203{bottom:415.371867pt;}
.y12_c00203{bottom:427.371867pt;}
.y11_c00203{bottom:447.151467pt;}
.y10_c00203{bottom:463.151467pt;}
.yf_c00203{bottom:486.710533pt;}
.ye_c00203{bottom:727.844267pt;}
.yd_c00203{bottom:739.844267pt;}
.yc_c00203{bottom:751.844267pt;}
.yb_c00203{bottom:775.403333pt;}
.ya_c00203{bottom:787.403333pt;}
.y9_c00203{bottom:799.403333pt;}
.y8_c00203{bottom:822.962400pt;}
.y7_c00203{bottom:834.962400pt;}
.y6_c00203{bottom:846.962400pt;}
.y5_c00203{bottom:866.742000pt;}
.y4_c00203{bottom:882.742000pt;}
.y3_c00203{bottom:898.742000pt;}
.y2_c00203{bottom:922.301067pt;}
.y1_c00203{bottom:972.089733pt;}
.h6_c00203{height:26.917333pt;}
.h4_c00203{height:30.293333pt;}
.h2_c00203{height:34.901333pt;}
.h3_c00203{height:38.453333pt;}
.h5_c00203{height:38.880000pt;}
.h1_c00203{height:1009.333333pt;}
.h0_c00203{height:1009.338800pt;}
.w0_c00203{width:794.622400pt;}
.w1_c00203{width:794.666667pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:68.980533pt;}
.x2_c00203{left:532.917467pt;}
.x3_c00203{left:544.256133pt;}
.x4_c00203{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:0.908000;font-style:normal;font-weight: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_c00204;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:1.067000;font-style:normal;font-weight: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_c00204;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00204{font-family:ff8_c00204;line-height:0.710000;font-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_c00204{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls2_c00204{letter-spacing:-1.620000px;}
.ls5_c00204{letter-spacing:-1.350000px;}
.ls6_c00204{letter-spacing:-1.200000px;}
.ls3_c00204{letter-spacing:-0.720000px;}
.ls4_c00204{letter-spacing:-0.630000px;}
.ls1_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:0.480000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-8.694000px;}
.ws2_c00204{word-spacing:-6.487200px;}
.ws0_c00204{word-spacing:-0.048000px;}
.ws3_c00204{word-spacing:0.000000px;}
.ws6_c00204{word-spacing:0.540000px;}
.ws5_c00204{word-spacing:1.620000px;}
.ws4_c00204{word-spacing:7.056000px;}
._0_c00204{margin-left:-2755.276200px;}
._4_c00204{margin-left:-6.947400px;}
._1_c00204{margin-left:-2.256000px;}
._3_c00204{margin-left:-1.200000px;}
._2_c00204{width:1.008000px;}
._6_c00204{width:2.106000px;}
._8_c00204{width:7.776000px;}
._5_c00204{width:55.674000px;}
._7_c00204{width:59.136000px;}
.fc0_c00204{color:rgb(35,31,32);}
.fs5_c00204{font-size:30.600000px;}
.fs6_c00204{font-size:36.000000px;}
.fs3_c00204{font-size:42.000000px;}
.fs0_c00204{font-size:48.000000px;}
.fs4_c00204{font-size:54.000000px;}
.fs2_c00204{font-size:57.000000px;}
.fs1_c00204{font-size:60.000000px;}
.y0_c00204{bottom:0.000000px;}
.y19_c00204{bottom:317.979150px;}
.y16_c00204{bottom:378.799350px;}
.y15_c00204{bottom:392.299350px;}
.y14_c00204{bottom:414.551400px;}
.y13_c00204{bottom:428.051400px;}
.y12_c00204{bottom:454.555350px;}
.y11_c00204{bottom:468.055350px;}
.y10_c00204{bottom:481.555350px;}
.yf_c00204{bottom:503.807250px;}
.ye_c00204{bottom:521.807250px;}
.yd_c00204{bottom:548.311200px;}
.y18_c00204{bottom:551.898750px;}
.yc_c00204{bottom:854.275500px;}
.yb_c00204{bottom:867.775500px;}
.ya_c00204{bottom:881.275500px;}
.y9_c00204{bottom:903.527550px;}
.y8_c00204{bottom:917.027550px;}
.y7_c00204{bottom:943.531500px;}
.y6_c00204{bottom:957.031500px;}
.y5_c00204{bottom:970.531500px;}
.y4_c00204{bottom:992.783550px;}
.y3_c00204{bottom:1010.783550px;}
.y2_c00204{bottom:1037.287500px;}
.y17_c00204{bottom:1040.299350px;}
.y1_c00204{bottom:1093.600950px;}
.h8_c00204{height:25.200000px;}
.h7_c00204{height:30.282000px;}
.h5_c00204{height:34.080000px;}
.h2_c00204{height:39.264000px;}
.h3_c00204{height:39.984000px;}
.h4_c00204{height:43.260000px;}
.h6_c00204{height:43.740000px;}
.h1_c00204{height:1135.500000px;}
.h0_c00204{height:1135.506150px;}
.w0_c00204{width:893.950200px;}
.w1_c00204{width:894.000000px;}
.x0_c00204{left:0.000000px;}
.x4_c00204{left:128.744700px;}
.x5_c00204{left:141.500700px;}
.x2_c00204{left:188.061900px;}
.x3_c00204{left:190.513350px;}
.x6_c00204{left:321.430200px;}
.x1_c00204{left:800.165850px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls2_c00204{letter-spacing:-1.440000pt;}
.ls5_c00204{letter-spacing:-1.200000pt;}
.ls6_c00204{letter-spacing:-1.066667pt;}
.ls3_c00204{letter-spacing:-0.640000pt;}
.ls4_c00204{letter-spacing:-0.560000pt;}
.ls1_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:0.426667pt;}
.ws1_c00204{word-spacing:-7.728000pt;}
.ws2_c00204{word-spacing:-5.766400pt;}
.ws0_c00204{word-spacing:-0.042667pt;}
.ws3_c00204{word-spacing:0.000000pt;}
.ws6_c00204{word-spacing:0.480000pt;}
.ws5_c00204{word-spacing:1.440000pt;}
.ws4_c00204{word-spacing:6.272000pt;}
._0_c00204{margin-left:-2449.134400pt;}
._4_c00204{margin-left:-6.175467pt;}
._1_c00204{margin-left:-2.005333pt;}
._3_c00204{margin-left:-1.066667pt;}
._2_c00204{width:0.896000pt;}
._6_c00204{width:1.872000pt;}
._8_c00204{width:6.912000pt;}
._5_c00204{width:49.488000pt;}
._7_c00204{width:52.565333pt;}
.fs5_c00204{font-size:27.200000pt;}
.fs6_c00204{font-size:32.000000pt;}
.fs3_c00204{font-size:37.333333pt;}
.fs0_c00204{font-size:42.666667pt;}
.fs4_c00204{font-size:48.000000pt;}
.fs2_c00204{font-size:50.666667pt;}
.fs1_c00204{font-size:53.333333pt;}
.y0_c00204{bottom:0.000000pt;}
.y19_c00204{bottom:282.648133pt;}
.y16_c00204{bottom:336.710533pt;}
.y15_c00204{bottom:348.710533pt;}
.y14_c00204{bottom:368.490133pt;}
.y13_c00204{bottom:380.490133pt;}
.y12_c00204{bottom:404.049200pt;}
.y11_c00204{bottom:416.049200pt;}
.y10_c00204{bottom:428.049200pt;}
.yf_c00204{bottom:447.828667pt;}
.ye_c00204{bottom:463.828667pt;}
.yd_c00204{bottom:487.387733pt;}
.y18_c00204{bottom:490.576667pt;}
.yc_c00204{bottom:759.356000pt;}
.yb_c00204{bottom:771.356000pt;}
.ya_c00204{bottom:783.356000pt;}
.y9_c00204{bottom:803.135600pt;}
.y8_c00204{bottom:815.135600pt;}
.y7_c00204{bottom:838.694667pt;}
.y6_c00204{bottom:850.694667pt;}
.y5_c00204{bottom:862.694667pt;}
.y4_c00204{bottom:882.474267pt;}
.y3_c00204{bottom:898.474267pt;}
.y2_c00204{bottom:922.033333pt;}
.y17_c00204{bottom:924.710533pt;}
.y1_c00204{bottom:972.089733pt;}
.h8_c00204{height:22.400000pt;}
.h7_c00204{height:26.917333pt;}
.h5_c00204{height:30.293333pt;}
.h2_c00204{height:34.901333pt;}
.h3_c00204{height:35.541333pt;}
.h4_c00204{height:38.453333pt;}
.h6_c00204{height:38.880000pt;}
.h1_c00204{height:1009.333333pt;}
.h0_c00204{height:1009.338800pt;}
.w0_c00204{width:794.622400pt;}
.w1_c00204{width:794.666667pt;}
.x0_c00204{left:0.000000pt;}
.x4_c00204{left:114.439733pt;}
.x5_c00204{left:125.778400pt;}
.x2_c00204{left:167.166133pt;}
.x3_c00204{left:169.345200pt;}
.x6_c00204{left:285.715733pt;}
.x1_c00204{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00205;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00205{font-family:ff6_c00205;line-height:1.067000;font-style:normal;font-weight: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_c00205;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00205{font-family:ff7_c00205;line-height:0.710000;font-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_c00205{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls1_c00205{letter-spacing:-0.720000px;}
.ls2_c00205{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00205{word-spacing:-8.694000px;}
.ws2_c00205{word-spacing:-6.487200px;}
.ws3_c00205{word-spacing:0.000000px;}
.ws4_c00205{word-spacing:7.056000px;}
.ws0_c00205{word-spacing:1574.587200px;}
._3_c00205{margin-left:-7.042800px;}
._0_c00205{margin-left:-2.112000px;}
._1_c00205{margin-left:-1.104000px;}
._2_c00205{width:2.016000px;}
._6_c00205{width:7.776000px;}
._4_c00205{width:55.674000px;}
._5_c00205{width:59.136000px;}
.fc0_c00205{color:rgb(35,31,32);}
.fs5_c00205{font-size:30.600000px;}
.fs6_c00205{font-size:36.000000px;}
.fs3_c00205{font-size:42.000000px;}
.fs0_c00205{font-size:48.000000px;}
.fs4_c00205{font-size:54.000000px;}
.fs2_c00205{font-size:57.000000px;}
.fs1_c00205{font-size:60.000000px;}
.y0_c00205{bottom:0.000000px;}
.y18_c00205{bottom:365.600550px;}
.y17_c00205{bottom:379.100550px;}
.y16_c00205{bottom:392.600550px;}
.y15_c00205{bottom:414.852450px;}
.y14_c00205{bottom:428.352450px;}
.y13_c00205{bottom:454.856400px;}
.y12_c00205{bottom:468.356400px;}
.y11_c00205{bottom:481.856400px;}
.y10_c00205{bottom:504.108450px;}
.yf_c00205{bottom:522.108450px;}
.ye_c00205{bottom:548.612250px;}
.y19_c00205{bottom:551.323050px;}
.yd_c00205{bottom:836.824800px;}
.yc_c00205{bottom:850.324800px;}
.yb_c00205{bottom:863.824800px;}
.ya_c00205{bottom:890.328750px;}
.y9_c00205{bottom:903.828750px;}
.y8_c00205{bottom:917.328750px;}
.y7_c00205{bottom:943.832700px;}
.y6_c00205{bottom:957.332700px;}
.y5_c00205{bottom:970.832700px;}
.y4_c00205{bottom:993.084750px;}
.y3_c00205{bottom:1011.084750px;}
.y2_c00205{bottom:1037.588700px;}
.y1_c00205{bottom:1093.600950px;}
.h7_c00205{height:25.200000px;}
.h6_c00205{height:30.282000px;}
.h4_c00205{height:34.080000px;}
.h2_c00205{height:39.264000px;}
.h3_c00205{height:43.260000px;}
.h5_c00205{height:43.740000px;}
.h1_c00205{height:1135.500000px;}
.h0_c00205{height:1135.506150px;}
.w0_c00205{width:893.950200px;}
.w1_c00205{width:894.000000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:77.603100px;}
.x4_c00205{left:424.489350px;}
.x2_c00205{left:599.532150px;}
.x3_c00205{left:612.288150px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls1_c00205{letter-spacing:-0.640000pt;}
.ls2_c00205{letter-spacing:-0.560000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws1_c00205{word-spacing:-7.728000pt;}
.ws2_c00205{word-spacing:-5.766400pt;}
.ws3_c00205{word-spacing:0.000000pt;}
.ws4_c00205{word-spacing:6.272000pt;}
.ws0_c00205{word-spacing:1399.633067pt;}
._3_c00205{margin-left:-6.260267pt;}
._0_c00205{margin-left:-1.877333pt;}
._1_c00205{margin-left:-0.981333pt;}
._2_c00205{width:1.792000pt;}
._6_c00205{width:6.912000pt;}
._4_c00205{width:49.488000pt;}
._5_c00205{width:52.565333pt;}
.fs5_c00205{font-size:27.200000pt;}
.fs6_c00205{font-size:32.000000pt;}
.fs3_c00205{font-size:37.333333pt;}
.fs0_c00205{font-size:42.666667pt;}
.fs4_c00205{font-size:48.000000pt;}
.fs2_c00205{font-size:50.666667pt;}
.fs1_c00205{font-size:53.333333pt;}
.y0_c00205{bottom:0.000000pt;}
.y18_c00205{bottom:324.978267pt;}
.y17_c00205{bottom:336.978267pt;}
.y16_c00205{bottom:348.978267pt;}
.y15_c00205{bottom:368.757733pt;}
.y14_c00205{bottom:380.757733pt;}
.y13_c00205{bottom:404.316800pt;}
.y12_c00205{bottom:416.316800pt;}
.y11_c00205{bottom:428.316800pt;}
.y10_c00205{bottom:448.096400pt;}
.yf_c00205{bottom:464.096400pt;}
.ye_c00205{bottom:487.655333pt;}
.y19_c00205{bottom:490.064933pt;}
.yd_c00205{bottom:743.844267pt;}
.yc_c00205{bottom:755.844267pt;}
.yb_c00205{bottom:767.844267pt;}
.ya_c00205{bottom:791.403333pt;}
.y9_c00205{bottom:803.403333pt;}
.y8_c00205{bottom:815.403333pt;}
.y7_c00205{bottom:838.962400pt;}
.y6_c00205{bottom:850.962400pt;}
.y5_c00205{bottom:862.962400pt;}
.y4_c00205{bottom:882.742000pt;}
.y3_c00205{bottom:898.742000pt;}
.y2_c00205{bottom:922.301067pt;}
.y1_c00205{bottom:972.089733pt;}
.h7_c00205{height:22.400000pt;}
.h6_c00205{height:26.917333pt;}
.h4_c00205{height:30.293333pt;}
.h2_c00205{height:34.901333pt;}
.h3_c00205{height:38.453333pt;}
.h5_c00205{height:38.880000pt;}
.h1_c00205{height:1009.333333pt;}
.h0_c00205{height:1009.338800pt;}
.w0_c00205{width:794.622400pt;}
.w1_c00205{width:794.666667pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:68.980533pt;}
.x4_c00205{left:377.323867pt;}
.x2_c00205{left:532.917467pt;}
.x3_c00205{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00206;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:0.908000;font-style:normal;font-weight: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_c00206;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00206{font-family:ff7_c00206;line-height:1.067000;font-style:normal;font-weight: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_c00206;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00206{font-family:ff8_c00206;line-height:0.710000;font-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_c00206{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls2_c00206{letter-spacing:-3.348000px;}
.ls6_c00206{letter-spacing:-1.728000px;}
.ls7_c00206{letter-spacing:-1.200000px;}
.ls5_c00206{letter-spacing:-0.810000px;}
.ls3_c00206{letter-spacing:-0.720000px;}
.ls4_c00206{letter-spacing:-0.630000px;}
.ls1_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws2_c00206{word-spacing:-9.018000px;}
.ws1_c00206{word-spacing:-8.694000px;}
.ws3_c00206{word-spacing:-6.487200px;}
.ws7_c00206{word-spacing:-0.420000px;}
.ws4_c00206{word-spacing:0.000000px;}
.ws6_c00206{word-spacing:1.728000px;}
.ws5_c00206{word-spacing:7.056000px;}
._0_c00206{margin-left:-2755.276200px;}
._4_c00206{margin-left:-6.946800px;}
._1_c00206{margin-left:-2.256000px;}
._3_c00206{margin-left:-1.200000px;}
._2_c00206{width:1.008000px;}
._7_c00206{width:2.970000px;}
._6_c00206{width:4.050000px;}
._9_c00206{width:7.776000px;}
._5_c00206{width:55.674000px;}
._8_c00206{width:59.136000px;}
.fc0_c00206{color:rgb(35,31,32);}
.fs5_c00206{font-size:30.600000px;}
.fs6_c00206{font-size:36.000000px;}
.fs3_c00206{font-size:42.000000px;}
.fs0_c00206{font-size:48.000000px;}
.fs4_c00206{font-size:54.000000px;}
.fs2_c00206{font-size:57.000000px;}
.fs1_c00206{font-size:60.000000px;}
.y0_c00206{bottom:0.000000px;}
.y1a_c00206{bottom:347.299350px;}
.y19_c00206{bottom:360.799350px;}
.y18_c00206{bottom:374.299350px;}
.y17_c00206{bottom:396.551400px;}
.y16_c00206{bottom:410.051400px;}
.y15_c00206{bottom:436.555350px;}
.y14_c00206{bottom:450.055350px;}
.y13_c00206{bottom:463.555350px;}
.y12_c00206{bottom:485.807250px;}
.y11_c00206{bottom:503.807250px;}
.y10_c00206{bottom:521.807250px;}
.yf_c00206{bottom:548.311200px;}
.y1b_c00206{bottom:551.898750px;}
.ye_c00206{bottom:818.523600px;}
.yd_c00206{bottom:832.023600px;}
.yc_c00206{bottom:845.523600px;}
.yb_c00206{bottom:872.027550px;}
.ya_c00206{bottom:885.527550px;}
.y9_c00206{bottom:899.027550px;}
.y8_c00206{bottom:925.531500px;}
.y7_c00206{bottom:939.031500px;}
.y6_c00206{bottom:952.531500px;}
.y5_c00206{bottom:974.783550px;}
.y4_c00206{bottom:992.783550px;}
.y3_c00206{bottom:1010.783550px;}
.y2_c00206{bottom:1037.287500px;}
.y1_c00206{bottom:1093.600950px;}
.h8_c00206{height:25.200000px;}
.h7_c00206{height:30.282000px;}
.h5_c00206{height:34.080000px;}
.h2_c00206{height:39.264000px;}
.h3_c00206{height:39.984000px;}
.h4_c00206{height:43.260000px;}
.h6_c00206{height:43.740000px;}
.h1_c00206{height:1135.500000px;}
.h0_c00206{height:1135.506150px;}
.w0_c00206{width:893.950200px;}
.w1_c00206{width:894.000000px;}
.x0_c00206{left:0.000000px;}
.x4_c00206{left:128.626800px;}
.x5_c00206{left:141.382650px;}
.x6_c00206{left:145.634700px;}
.x2_c00206{left:188.061900px;}
.x3_c00206{left:190.513350px;}
.x7_c00206{left:321.801150px;}
.x1_c00206{left:800.165850px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls2_c00206{letter-spacing:-2.976000pt;}
.ls6_c00206{letter-spacing:-1.536000pt;}
.ls7_c00206{letter-spacing:-1.066667pt;}
.ls5_c00206{letter-spacing:-0.720000pt;}
.ls3_c00206{letter-spacing:-0.640000pt;}
.ls4_c00206{letter-spacing:-0.560000pt;}
.ls1_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.426667pt;}
.ws0_c00206{word-spacing:-9.685333pt;}
.ws2_c00206{word-spacing:-8.016000pt;}
.ws1_c00206{word-spacing:-7.728000pt;}
.ws3_c00206{word-spacing:-5.766400pt;}
.ws7_c00206{word-spacing:-0.373333pt;}
.ws4_c00206{word-spacing:0.000000pt;}
.ws6_c00206{word-spacing:1.536000pt;}
.ws5_c00206{word-spacing:6.272000pt;}
._0_c00206{margin-left:-2449.134400pt;}
._4_c00206{margin-left:-6.174933pt;}
._1_c00206{margin-left:-2.005333pt;}
._3_c00206{margin-left:-1.066667pt;}
._2_c00206{width:0.896000pt;}
._7_c00206{width:2.640000pt;}
._6_c00206{width:3.600000pt;}
._9_c00206{width:6.912000pt;}
._5_c00206{width:49.488000pt;}
._8_c00206{width:52.565333pt;}
.fs5_c00206{font-size:27.200000pt;}
.fs6_c00206{font-size:32.000000pt;}
.fs3_c00206{font-size:37.333333pt;}
.fs0_c00206{font-size:42.666667pt;}
.fs4_c00206{font-size:48.000000pt;}
.fs2_c00206{font-size:50.666667pt;}
.fs1_c00206{font-size:53.333333pt;}
.y0_c00206{bottom:0.000000pt;}
.y1a_c00206{bottom:308.710533pt;}
.y19_c00206{bottom:320.710533pt;}
.y18_c00206{bottom:332.710533pt;}
.y17_c00206{bottom:352.490133pt;}
.y16_c00206{bottom:364.490133pt;}
.y15_c00206{bottom:388.049200pt;}
.y14_c00206{bottom:400.049200pt;}
.y13_c00206{bottom:412.049200pt;}
.y12_c00206{bottom:431.828667pt;}
.y11_c00206{bottom:447.828667pt;}
.y10_c00206{bottom:463.828667pt;}
.yf_c00206{bottom:487.387733pt;}
.y1b_c00206{bottom:490.576667pt;}
.ye_c00206{bottom:727.576533pt;}
.yd_c00206{bottom:739.576533pt;}
.yc_c00206{bottom:751.576533pt;}
.yb_c00206{bottom:775.135600pt;}
.ya_c00206{bottom:787.135600pt;}
.y9_c00206{bottom:799.135600pt;}
.y8_c00206{bottom:822.694667pt;}
.y7_c00206{bottom:834.694667pt;}
.y6_c00206{bottom:846.694667pt;}
.y5_c00206{bottom:866.474267pt;}
.y4_c00206{bottom:882.474267pt;}
.y3_c00206{bottom:898.474267pt;}
.y2_c00206{bottom:922.033333pt;}
.y1_c00206{bottom:972.089733pt;}
.h8_c00206{height:22.400000pt;}
.h7_c00206{height:26.917333pt;}
.h5_c00206{height:30.293333pt;}
.h2_c00206{height:34.901333pt;}
.h3_c00206{height:35.541333pt;}
.h4_c00206{height:38.453333pt;}
.h6_c00206{height:38.880000pt;}
.h1_c00206{height:1009.333333pt;}
.h0_c00206{height:1009.338800pt;}
.w0_c00206{width:794.622400pt;}
.w1_c00206{width:794.666667pt;}
.x0_c00206{left:0.000000pt;}
.x4_c00206{left:114.334933pt;}
.x5_c00206{left:125.673467pt;}
.x6_c00206{left:129.453067pt;}
.x2_c00206{left:167.166133pt;}
.x3_c00206{left:169.345200pt;}
.x7_c00206{left:286.045467pt;}
.x1_c00206{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00207;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00207{font-family:ff7_c00207;line-height:0.710000;font-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_c00207{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls4_c00207{letter-spacing:-0.864000px;}
.ls2_c00207{letter-spacing:-0.720000px;}
.ls3_c00207{letter-spacing:-0.630000px;}
.ls1_c00207{letter-spacing:-0.216000px;}
.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;}
}
.ws1_c00207{word-spacing:-8.694000px;}
.ws2_c00207{word-spacing:-6.487200px;}
.ws3_c00207{word-spacing:0.000000px;}
.ws6_c00207{word-spacing:0.864000px;}
.ws4_c00207{word-spacing:7.056000px;}
.ws5_c00207{word-spacing:55.890000px;}
.ws0_c00207{word-spacing:1574.587200px;}
._3_c00207{margin-left:-7.042800px;}
._0_c00207{margin-left:-2.112000px;}
._1_c00207{margin-left:-1.104000px;}
._2_c00207{width:2.016000px;}
._5_c00207{width:7.776000px;}
._6_c00207{width:55.674000px;}
._4_c00207{width:59.136000px;}
.fc0_c00207{color:rgb(35,31,32);}
.fs5_c00207{font-size:30.600000px;}
.fs6_c00207{font-size:36.000000px;}
.fs3_c00207{font-size:42.000000px;}
.fs0_c00207{font-size:48.000000px;}
.fs4_c00207{font-size:54.000000px;}
.fs2_c00207{font-size:57.000000px;}
.fs1_c00207{font-size:60.000000px;}
.y0_c00207{bottom:0.000000px;}
.y18_c00207{bottom:365.600550px;}
.y17_c00207{bottom:379.100550px;}
.y16_c00207{bottom:392.600550px;}
.y15_c00207{bottom:414.852450px;}
.y14_c00207{bottom:428.352450px;}
.y13_c00207{bottom:454.856400px;}
.y12_c00207{bottom:468.356400px;}
.y11_c00207{bottom:481.856400px;}
.y10_c00207{bottom:504.108450px;}
.yf_c00207{bottom:522.108450px;}
.ye_c00207{bottom:548.612250px;}
.y19_c00207{bottom:550.773750px;}
.yd_c00207{bottom:836.824800px;}
.yc_c00207{bottom:850.324800px;}
.yb_c00207{bottom:863.824800px;}
.ya_c00207{bottom:890.328750px;}
.y9_c00207{bottom:903.828750px;}
.y8_c00207{bottom:917.328750px;}
.y7_c00207{bottom:943.832700px;}
.y6_c00207{bottom:957.332700px;}
.y5_c00207{bottom:970.832700px;}
.y4_c00207{bottom:993.084750px;}
.y3_c00207{bottom:1011.084750px;}
.y2_c00207{bottom:1037.588700px;}
.y1_c00207{bottom:1093.600950px;}
.h7_c00207{height:25.200000px;}
.h6_c00207{height:30.282000px;}
.h4_c00207{height:34.080000px;}
.h2_c00207{height:39.264000px;}
.h3_c00207{height:43.260000px;}
.h5_c00207{height:43.740000px;}
.h1_c00207{height:1135.500000px;}
.h0_c00207{height:1135.506150px;}
.w0_c00207{width:893.950200px;}
.w1_c00207{width:894.000000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:77.603100px;}
.x4_c00207{left:424.138500px;}
.x2_c00207{left:599.532150px;}
.x3_c00207{left:612.288150px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls4_c00207{letter-spacing:-0.768000pt;}
.ls2_c00207{letter-spacing:-0.640000pt;}
.ls3_c00207{letter-spacing:-0.560000pt;}
.ls1_c00207{letter-spacing:-0.192000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws1_c00207{word-spacing:-7.728000pt;}
.ws2_c00207{word-spacing:-5.766400pt;}
.ws3_c00207{word-spacing:0.000000pt;}
.ws6_c00207{word-spacing:0.768000pt;}
.ws4_c00207{word-spacing:6.272000pt;}
.ws5_c00207{word-spacing:49.680000pt;}
.ws0_c00207{word-spacing:1399.633067pt;}
._3_c00207{margin-left:-6.260267pt;}
._0_c00207{margin-left:-1.877333pt;}
._1_c00207{margin-left:-0.981333pt;}
._2_c00207{width:1.792000pt;}
._5_c00207{width:6.912000pt;}
._6_c00207{width:49.488000pt;}
._4_c00207{width:52.565333pt;}
.fs5_c00207{font-size:27.200000pt;}
.fs6_c00207{font-size:32.000000pt;}
.fs3_c00207{font-size:37.333333pt;}
.fs0_c00207{font-size:42.666667pt;}
.fs4_c00207{font-size:48.000000pt;}
.fs2_c00207{font-size:50.666667pt;}
.fs1_c00207{font-size:53.333333pt;}
.y0_c00207{bottom:0.000000pt;}
.y18_c00207{bottom:324.978267pt;}
.y17_c00207{bottom:336.978267pt;}
.y16_c00207{bottom:348.978267pt;}
.y15_c00207{bottom:368.757733pt;}
.y14_c00207{bottom:380.757733pt;}
.y13_c00207{bottom:404.316800pt;}
.y12_c00207{bottom:416.316800pt;}
.y11_c00207{bottom:428.316800pt;}
.y10_c00207{bottom:448.096400pt;}
.yf_c00207{bottom:464.096400pt;}
.ye_c00207{bottom:487.655333pt;}
.y19_c00207{bottom:489.576667pt;}
.yd_c00207{bottom:743.844267pt;}
.yc_c00207{bottom:755.844267pt;}
.yb_c00207{bottom:767.844267pt;}
.ya_c00207{bottom:791.403333pt;}
.y9_c00207{bottom:803.403333pt;}
.y8_c00207{bottom:815.403333pt;}
.y7_c00207{bottom:838.962400pt;}
.y6_c00207{bottom:850.962400pt;}
.y5_c00207{bottom:862.962400pt;}
.y4_c00207{bottom:882.742000pt;}
.y3_c00207{bottom:898.742000pt;}
.y2_c00207{bottom:922.301067pt;}
.y1_c00207{bottom:972.089733pt;}
.h7_c00207{height:22.400000pt;}
.h6_c00207{height:26.917333pt;}
.h4_c00207{height:30.293333pt;}
.h2_c00207{height:34.901333pt;}
.h3_c00207{height:38.453333pt;}
.h5_c00207{height:38.880000pt;}
.h1_c00207{height:1009.333333pt;}
.h0_c00207{height:1009.338800pt;}
.w0_c00207{width:794.622400pt;}
.w1_c00207{width:794.666667pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:68.980533pt;}
.x4_c00207{left:377.012000pt;}
.x2_c00207{left:532.917467pt;}
.x3_c00207{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00208;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00208{font-family:ff7_c00208;line-height:1.067000;font-style:normal;font-weight: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_c00208;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00208{font-family:ff8_c00208;line-height:0.710000;font-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_c00208{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls6_c00208{letter-spacing:-1.200000px;}
.ls5_c00208{letter-spacing:-0.810000px;}
.ls3_c00208{letter-spacing:-0.720000px;}
.ls4_c00208{letter-spacing:-0.630000px;}
.ls2_c00208{letter-spacing:-0.540000px;}
.ls1_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00208{word-spacing:-11.826000px;}
.ws0_c00208{word-spacing:-10.896000px;}
.ws1_c00208{word-spacing:-8.694000px;}
.ws3_c00208{word-spacing:-6.487200px;}
.ws4_c00208{word-spacing:0.000000px;}
.ws5_c00208{word-spacing:7.056000px;}
._0_c00208{margin-left:-2755.276200px;}
._4_c00208{margin-left:-6.946800px;}
._1_c00208{margin-left:-2.256000px;}
._3_c00208{margin-left:-1.200000px;}
._2_c00208{width:1.008000px;}
._7_c00208{width:7.776000px;}
._5_c00208{width:55.674000px;}
._6_c00208{width:59.136000px;}
.fc0_c00208{color:rgb(35,31,32);}
.fs5_c00208{font-size:30.600000px;}
.fs6_c00208{font-size:36.000000px;}
.fs3_c00208{font-size:42.000000px;}
.fs0_c00208{font-size:48.000000px;}
.fs4_c00208{font-size:54.000000px;}
.fs2_c00208{font-size:57.000000px;}
.fs1_c00208{font-size:60.000000px;}
.y0_c00208{bottom:0.000000px;}
.y1a_c00208{bottom:317.979150px;}
.y18_c00208{bottom:378.799350px;}
.y17_c00208{bottom:392.299350px;}
.y16_c00208{bottom:414.551400px;}
.y15_c00208{bottom:428.051400px;}
.y14_c00208{bottom:454.555350px;}
.y13_c00208{bottom:468.055350px;}
.y12_c00208{bottom:481.555350px;}
.y11_c00208{bottom:503.807250px;}
.y10_c00208{bottom:521.807250px;}
.yf_c00208{bottom:548.311200px;}
.y19_c00208{bottom:551.898750px;}
.ye_c00208{bottom:818.523600px;}
.yd_c00208{bottom:832.023600px;}
.yc_c00208{bottom:845.523600px;}
.yb_c00208{bottom:872.027550px;}
.ya_c00208{bottom:885.527550px;}
.y9_c00208{bottom:899.027550px;}
.y8_c00208{bottom:925.531500px;}
.y7_c00208{bottom:939.031500px;}
.y6_c00208{bottom:952.531500px;}
.y5_c00208{bottom:974.783550px;}
.y4_c00208{bottom:992.783550px;}
.y3_c00208{bottom:1010.783550px;}
.y2_c00208{bottom:1037.287500px;}
.y1_c00208{bottom:1093.600950px;}
.h8_c00208{height:25.200000px;}
.h7_c00208{height:30.282000px;}
.h5_c00208{height:34.080000px;}
.h2_c00208{height:39.264000px;}
.h3_c00208{height:39.984000px;}
.h4_c00208{height:43.260000px;}
.h6_c00208{height:43.740000px;}
.h1_c00208{height:1135.500000px;}
.h0_c00208{height:1135.506150px;}
.w0_c00208{width:893.950200px;}
.w1_c00208{width:894.000000px;}
.x0_c00208{left:0.000000px;}
.x4_c00208{left:128.626800px;}
.x5_c00208{left:141.382650px;}
.x6_c00208{left:145.634700px;}
.x2_c00208{left:188.061900px;}
.x3_c00208{left:190.513350px;}
.x7_c00208{left:321.801150px;}
.x1_c00208{left:800.165850px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls6_c00208{letter-spacing:-1.066667pt;}
.ls5_c00208{letter-spacing:-0.720000pt;}
.ls3_c00208{letter-spacing:-0.640000pt;}
.ls4_c00208{letter-spacing:-0.560000pt;}
.ls2_c00208{letter-spacing:-0.480000pt;}
.ls1_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.426667pt;}
.ws2_c00208{word-spacing:-10.512000pt;}
.ws0_c00208{word-spacing:-9.685333pt;}
.ws1_c00208{word-spacing:-7.728000pt;}
.ws3_c00208{word-spacing:-5.766400pt;}
.ws4_c00208{word-spacing:0.000000pt;}
.ws5_c00208{word-spacing:6.272000pt;}
._0_c00208{margin-left:-2449.134400pt;}
._4_c00208{margin-left:-6.174933pt;}
._1_c00208{margin-left:-2.005333pt;}
._3_c00208{margin-left:-1.066667pt;}
._2_c00208{width:0.896000pt;}
._7_c00208{width:6.912000pt;}
._5_c00208{width:49.488000pt;}
._6_c00208{width:52.565333pt;}
.fs5_c00208{font-size:27.200000pt;}
.fs6_c00208{font-size:32.000000pt;}
.fs3_c00208{font-size:37.333333pt;}
.fs0_c00208{font-size:42.666667pt;}
.fs4_c00208{font-size:48.000000pt;}
.fs2_c00208{font-size:50.666667pt;}
.fs1_c00208{font-size:53.333333pt;}
.y0_c00208{bottom:0.000000pt;}
.y1a_c00208{bottom:282.648133pt;}
.y18_c00208{bottom:336.710533pt;}
.y17_c00208{bottom:348.710533pt;}
.y16_c00208{bottom:368.490133pt;}
.y15_c00208{bottom:380.490133pt;}
.y14_c00208{bottom:404.049200pt;}
.y13_c00208{bottom:416.049200pt;}
.y12_c00208{bottom:428.049200pt;}
.y11_c00208{bottom:447.828667pt;}
.y10_c00208{bottom:463.828667pt;}
.yf_c00208{bottom:487.387733pt;}
.y19_c00208{bottom:490.576667pt;}
.ye_c00208{bottom:727.576533pt;}
.yd_c00208{bottom:739.576533pt;}
.yc_c00208{bottom:751.576533pt;}
.yb_c00208{bottom:775.135600pt;}
.ya_c00208{bottom:787.135600pt;}
.y9_c00208{bottom:799.135600pt;}
.y8_c00208{bottom:822.694667pt;}
.y7_c00208{bottom:834.694667pt;}
.y6_c00208{bottom:846.694667pt;}
.y5_c00208{bottom:866.474267pt;}
.y4_c00208{bottom:882.474267pt;}
.y3_c00208{bottom:898.474267pt;}
.y2_c00208{bottom:922.033333pt;}
.y1_c00208{bottom:972.089733pt;}
.h8_c00208{height:22.400000pt;}
.h7_c00208{height:26.917333pt;}
.h5_c00208{height:30.293333pt;}
.h2_c00208{height:34.901333pt;}
.h3_c00208{height:35.541333pt;}
.h4_c00208{height:38.453333pt;}
.h6_c00208{height:38.880000pt;}
.h1_c00208{height:1009.333333pt;}
.h0_c00208{height:1009.338800pt;}
.w0_c00208{width:794.622400pt;}
.w1_c00208{width:794.666667pt;}
.x0_c00208{left:0.000000pt;}
.x4_c00208{left:114.334933pt;}
.x5_c00208{left:125.673467pt;}
.x6_c00208{left:129.453067pt;}
.x2_c00208{left:167.166133pt;}
.x3_c00208{left:169.345200pt;}
.x7_c00208{left:286.045467pt;}
.x1_c00208{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00209;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:1.067000;font-style:normal;font-weight: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_c00209;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00209{font-family:ff7_c00209;line-height:0.710000;font-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_c00209{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls1_c00209{letter-spacing:-0.720000px;}
.ls2_c00209{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00209{word-spacing:-8.694000px;}
.ws2_c00209{word-spacing:-6.487200px;}
.ws3_c00209{word-spacing:0.000000px;}
.ws4_c00209{word-spacing:7.056000px;}
.ws0_c00209{word-spacing:1574.587200px;}
._3_c00209{margin-left:-7.042800px;}
._0_c00209{margin-left:-2.112000px;}
._1_c00209{margin-left:-1.104000px;}
._2_c00209{width:2.016000px;}
._6_c00209{width:7.776000px;}
._4_c00209{width:55.674000px;}
._5_c00209{width:59.136000px;}
.fc0_c00209{color:rgb(35,31,32);}
.fs5_c00209{font-size:30.600000px;}
.fs6_c00209{font-size:36.000000px;}
.fs3_c00209{font-size:42.000000px;}
.fs0_c00209{font-size:48.000000px;}
.fs4_c00209{font-size:54.000000px;}
.fs2_c00209{font-size:57.000000px;}
.fs1_c00209{font-size:60.000000px;}
.y0_c00209{bottom:0.000000px;}
.y17_c00209{bottom:347.848650px;}
.y16_c00209{bottom:361.348650px;}
.y15_c00209{bottom:374.848500px;}
.y14_c00209{bottom:401.352450px;}
.y13_c00209{bottom:414.852450px;}
.y12_c00209{bottom:428.352450px;}
.y11_c00209{bottom:454.856400px;}
.y10_c00209{bottom:468.356400px;}
.yf_c00209{bottom:481.856400px;}
.ye_c00209{bottom:504.108450px;}
.yd_c00209{bottom:522.108450px;}
.yc_c00209{bottom:548.612250px;}
.y19_c00209{bottom:806.654550px;}
.yb_c00209{bottom:863.824800px;}
.ya_c00209{bottom:877.324800px;}
.y9_c00209{bottom:903.828750px;}
.y8_c00209{bottom:917.328750px;}
.y7_c00209{bottom:943.832700px;}
.y6_c00209{bottom:957.332700px;}
.y5_c00209{bottom:970.832700px;}
.y4_c00209{bottom:993.084750px;}
.y3_c00209{bottom:1011.084750px;}
.y2_c00209{bottom:1037.588700px;}
.y18_c00209{bottom:1040.299350px;}
.y1_c00209{bottom:1093.600950px;}
.h7_c00209{height:25.200000px;}
.h6_c00209{height:30.282000px;}
.h4_c00209{height:34.080000px;}
.h2_c00209{height:39.264000px;}
.h3_c00209{height:43.260000px;}
.h5_c00209{height:43.740000px;}
.h1_c00209{height:1135.500000px;}
.h0_c00209{height:1135.506150px;}
.w0_c00209{width:893.950200px;}
.w1_c00209{width:894.000000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:77.603100px;}
.x4_c00209{left:424.138500px;}
.x2_c00209{left:599.532150px;}
.x3_c00209{left:612.288150px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:-0.640000pt;}
.ls2_c00209{letter-spacing:-0.560000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws1_c00209{word-spacing:-7.728000pt;}
.ws2_c00209{word-spacing:-5.766400pt;}
.ws3_c00209{word-spacing:0.000000pt;}
.ws4_c00209{word-spacing:6.272000pt;}
.ws0_c00209{word-spacing:1399.633067pt;}
._3_c00209{margin-left:-6.260267pt;}
._0_c00209{margin-left:-1.877333pt;}
._1_c00209{margin-left:-0.981333pt;}
._2_c00209{width:1.792000pt;}
._6_c00209{width:6.912000pt;}
._4_c00209{width:49.488000pt;}
._5_c00209{width:52.565333pt;}
.fs5_c00209{font-size:27.200000pt;}
.fs6_c00209{font-size:32.000000pt;}
.fs3_c00209{font-size:37.333333pt;}
.fs0_c00209{font-size:42.666667pt;}
.fs4_c00209{font-size:48.000000pt;}
.fs2_c00209{font-size:50.666667pt;}
.fs1_c00209{font-size:53.333333pt;}
.y0_c00209{bottom:0.000000pt;}
.y17_c00209{bottom:309.198800pt;}
.y16_c00209{bottom:321.198800pt;}
.y15_c00209{bottom:333.198667pt;}
.y14_c00209{bottom:356.757733pt;}
.y13_c00209{bottom:368.757733pt;}
.y12_c00209{bottom:380.757733pt;}
.y11_c00209{bottom:404.316800pt;}
.y10_c00209{bottom:416.316800pt;}
.yf_c00209{bottom:428.316800pt;}
.ye_c00209{bottom:448.096400pt;}
.yd_c00209{bottom:464.096400pt;}
.yc_c00209{bottom:487.655333pt;}
.y19_c00209{bottom:717.026267pt;}
.yb_c00209{bottom:767.844267pt;}
.ya_c00209{bottom:779.844267pt;}
.y9_c00209{bottom:803.403333pt;}
.y8_c00209{bottom:815.403333pt;}
.y7_c00209{bottom:838.962400pt;}
.y6_c00209{bottom:850.962400pt;}
.y5_c00209{bottom:862.962400pt;}
.y4_c00209{bottom:882.742000pt;}
.y3_c00209{bottom:898.742000pt;}
.y2_c00209{bottom:922.301067pt;}
.y18_c00209{bottom:924.710533pt;}
.y1_c00209{bottom:972.089733pt;}
.h7_c00209{height:22.400000pt;}
.h6_c00209{height:26.917333pt;}
.h4_c00209{height:30.293333pt;}
.h2_c00209{height:34.901333pt;}
.h3_c00209{height:38.453333pt;}
.h5_c00209{height:38.880000pt;}
.h1_c00209{height:1009.333333pt;}
.h0_c00209{height:1009.338800pt;}
.w0_c00209{width:794.622400pt;}
.w1_c00209{width:794.666667pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:68.980533pt;}
.x4_c00209{left:377.012000pt;}
.x2_c00209{left:532.917467pt;}
.x3_c00209{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:0.908000;font-style:normal;font-weight: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_c00210;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00210{font-family:ff7_c00210;line-height:1.067000;font-style:normal;font-weight: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_c00210;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00210{font-family:ff8_c00210;line-height:0.710000;font-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_c00210{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls6_c00210{letter-spacing:-1.200000px;}
.ls5_c00210{letter-spacing:-1.026000px;}
.ls2_c00210{letter-spacing:-0.864000px;}
.ls3_c00210{letter-spacing:-0.720000px;}
.ls4_c00210{letter-spacing:-0.630000px;}
.ls1_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00210{word-spacing:-8.694000px;}
.ws2_c00210{word-spacing:-6.487200px;}
.ws3_c00210{word-spacing:0.000000px;}
.ws6_c00210{word-spacing:0.216000px;}
.ws4_c00210{word-spacing:7.056000px;}
.ws5_c00210{word-spacing:56.538000px;}
._0_c00210{margin-left:-2755.276200px;}
._4_c00210{margin-left:-6.946800px;}
._5_c00210{margin-left:-4.158600px;}
._1_c00210{margin-left:-2.256000px;}
._3_c00210{margin-left:-1.200000px;}
._2_c00210{width:1.008000px;}
._7_c00210{width:7.776000px;}
._8_c00210{width:56.484000px;}
._6_c00210{width:59.136000px;}
.fc0_c00210{color:rgb(35,31,32);}
.fs5_c00210{font-size:30.600000px;}
.fs6_c00210{font-size:36.000000px;}
.fs3_c00210{font-size:42.000000px;}
.fs0_c00210{font-size:48.000000px;}
.fs4_c00210{font-size:54.000000px;}
.fs2_c00210{font-size:57.000000px;}
.fs1_c00210{font-size:60.000000px;}
.y0_c00210{bottom:0.000000px;}
.y19_c00210{bottom:317.509350px;}
.y17_c00210{bottom:378.799350px;}
.y16_c00210{bottom:392.299350px;}
.y15_c00210{bottom:414.551400px;}
.y14_c00210{bottom:428.051400px;}
.y13_c00210{bottom:454.555350px;}
.y12_c00210{bottom:468.055350px;}
.y11_c00210{bottom:481.555350px;}
.y10_c00210{bottom:503.807250px;}
.yf_c00210{bottom:521.807250px;}
.ye_c00210{bottom:548.311200px;}
.y18_c00210{bottom:551.898750px;}
.yd_c00210{bottom:836.523600px;}
.yc_c00210{bottom:850.023600px;}
.yb_c00210{bottom:863.523600px;}
.ya_c00210{bottom:890.027550px;}
.y9_c00210{bottom:903.527550px;}
.y8_c00210{bottom:917.027550px;}
.y7_c00210{bottom:943.531500px;}
.y6_c00210{bottom:957.031500px;}
.y5_c00210{bottom:970.531500px;}
.y4_c00210{bottom:992.783550px;}
.y3_c00210{bottom:1010.783550px;}
.y2_c00210{bottom:1037.287500px;}
.y1_c00210{bottom:1093.600950px;}
.h8_c00210{height:25.200000px;}
.h7_c00210{height:30.282000px;}
.h5_c00210{height:34.080000px;}
.h2_c00210{height:39.264000px;}
.h3_c00210{height:39.984000px;}
.h4_c00210{height:43.260000px;}
.h6_c00210{height:43.740000px;}
.h1_c00210{height:1135.500000px;}
.h0_c00210{height:1135.506150px;}
.w0_c00210{width:893.950200px;}
.w1_c00210{width:894.000000px;}
.x0_c00210{left:0.000000px;}
.x4_c00210{left:128.626800px;}
.x5_c00210{left:141.382650px;}
.x2_c00210{left:188.061900px;}
.x3_c00210{left:190.513350px;}
.x6_c00210{left:321.801150px;}
.x1_c00210{left:800.165850px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls6_c00210{letter-spacing:-1.066667pt;}
.ls5_c00210{letter-spacing:-0.912000pt;}
.ls2_c00210{letter-spacing:-0.768000pt;}
.ls3_c00210{letter-spacing:-0.640000pt;}
.ls4_c00210{letter-spacing:-0.560000pt;}
.ls1_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.426667pt;}
.ws0_c00210{word-spacing:-9.685333pt;}
.ws1_c00210{word-spacing:-7.728000pt;}
.ws2_c00210{word-spacing:-5.766400pt;}
.ws3_c00210{word-spacing:0.000000pt;}
.ws6_c00210{word-spacing:0.192000pt;}
.ws4_c00210{word-spacing:6.272000pt;}
.ws5_c00210{word-spacing:50.256000pt;}
._0_c00210{margin-left:-2449.134400pt;}
._4_c00210{margin-left:-6.174933pt;}
._5_c00210{margin-left:-3.696533pt;}
._1_c00210{margin-left:-2.005333pt;}
._3_c00210{margin-left:-1.066667pt;}
._2_c00210{width:0.896000pt;}
._7_c00210{width:6.912000pt;}
._8_c00210{width:50.208000pt;}
._6_c00210{width:52.565333pt;}
.fs5_c00210{font-size:27.200000pt;}
.fs6_c00210{font-size:32.000000pt;}
.fs3_c00210{font-size:37.333333pt;}
.fs0_c00210{font-size:42.666667pt;}
.fs4_c00210{font-size:48.000000pt;}
.fs2_c00210{font-size:50.666667pt;}
.fs1_c00210{font-size:53.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y19_c00210{bottom:282.230533pt;}
.y17_c00210{bottom:336.710533pt;}
.y16_c00210{bottom:348.710533pt;}
.y15_c00210{bottom:368.490133pt;}
.y14_c00210{bottom:380.490133pt;}
.y13_c00210{bottom:404.049200pt;}
.y12_c00210{bottom:416.049200pt;}
.y11_c00210{bottom:428.049200pt;}
.y10_c00210{bottom:447.828667pt;}
.yf_c00210{bottom:463.828667pt;}
.ye_c00210{bottom:487.387733pt;}
.y18_c00210{bottom:490.576667pt;}
.yd_c00210{bottom:743.576533pt;}
.yc_c00210{bottom:755.576533pt;}
.yb_c00210{bottom:767.576533pt;}
.ya_c00210{bottom:791.135600pt;}
.y9_c00210{bottom:803.135600pt;}
.y8_c00210{bottom:815.135600pt;}
.y7_c00210{bottom:838.694667pt;}
.y6_c00210{bottom:850.694667pt;}
.y5_c00210{bottom:862.694667pt;}
.y4_c00210{bottom:882.474267pt;}
.y3_c00210{bottom:898.474267pt;}
.y2_c00210{bottom:922.033333pt;}
.y1_c00210{bottom:972.089733pt;}
.h8_c00210{height:22.400000pt;}
.h7_c00210{height:26.917333pt;}
.h5_c00210{height:30.293333pt;}
.h2_c00210{height:34.901333pt;}
.h3_c00210{height:35.541333pt;}
.h4_c00210{height:38.453333pt;}
.h6_c00210{height:38.880000pt;}
.h1_c00210{height:1009.333333pt;}
.h0_c00210{height:1009.338800pt;}
.w0_c00210{width:794.622400pt;}
.w1_c00210{width:794.666667pt;}
.x0_c00210{left:0.000000pt;}
.x4_c00210{left:114.334933pt;}
.x5_c00210{left:125.673467pt;}
.x2_c00210{left:167.166133pt;}
.x3_c00210{left:169.345200pt;}
.x6_c00210{left:286.045467pt;}
.x1_c00210{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.067000;font-style:normal;font-weight: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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00211{font-family:ff7_c00211;line-height:0.710000;font-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_c00211{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls2_c00211{letter-spacing:-0.720000px;}
.ls3_c00211{letter-spacing:-0.630000px;}
.ls4_c00211{letter-spacing:-0.378000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.ls1_c00211{letter-spacing:0.216000px;}
.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;}
}
.ws2_c00211{word-spacing:-12.582000px;}
.ws1_c00211{word-spacing:-8.694000px;}
.ws3_c00211{word-spacing:-6.487200px;}
.ws4_c00211{word-spacing:0.000000px;}
.ws6_c00211{word-spacing:0.378000px;}
.ws5_c00211{word-spacing:7.056000px;}
.ws0_c00211{word-spacing:1574.587200px;}
._3_c00211{margin-left:-7.042800px;}
._0_c00211{margin-left:-2.112000px;}
._1_c00211{margin-left:-1.104000px;}
._2_c00211{width:2.016000px;}
._6_c00211{width:7.776000px;}
._4_c00211{width:55.674000px;}
._5_c00211{width:59.136000px;}
.fc0_c00211{color:rgb(35,31,32);}
.fs5_c00211{font-size:30.600000px;}
.fs6_c00211{font-size:36.000000px;}
.fs3_c00211{font-size:42.000000px;}
.fs0_c00211{font-size:48.000000px;}
.fs4_c00211{font-size:54.000000px;}
.fs2_c00211{font-size:57.000000px;}
.fs1_c00211{font-size:60.000000px;}
.y0_c00211{bottom:0.000000px;}
.y1a_c00211{bottom:329.848500px;}
.y19_c00211{bottom:343.348500px;}
.y18_c00211{bottom:356.848500px;}
.y17_c00211{bottom:383.352450px;}
.y16_c00211{bottom:396.852450px;}
.y15_c00211{bottom:410.352450px;}
.y14_c00211{bottom:436.856400px;}
.y13_c00211{bottom:450.356400px;}
.y12_c00211{bottom:463.856400px;}
.y11_c00211{bottom:486.108450px;}
.y10_c00211{bottom:504.108450px;}
.yf_c00211{bottom:522.108450px;}
.ye_c00211{bottom:548.612250px;}
.yd_c00211{bottom:832.324800px;}
.yc_c00211{bottom:845.824800px;}
.yb_c00211{bottom:859.324800px;}
.ya_c00211{bottom:885.828750px;}
.y9_c00211{bottom:899.328750px;}
.y8_c00211{bottom:925.832700px;}
.y7_c00211{bottom:939.332700px;}
.y6_c00211{bottom:952.832700px;}
.y5_c00211{bottom:975.084750px;}
.y4_c00211{bottom:993.084750px;}
.y3_c00211{bottom:1011.084750px;}
.y2_c00211{bottom:1037.588700px;}
.y1b_c00211{bottom:1040.299350px;}
.y1_c00211{bottom:1093.600950px;}
.h7_c00211{height:25.200000px;}
.h6_c00211{height:30.282000px;}
.h4_c00211{height:34.080000px;}
.h2_c00211{height:39.264000px;}
.h3_c00211{height:43.260000px;}
.h5_c00211{height:43.740000px;}
.h1_c00211{height:1135.500000px;}
.h0_c00211{height:1135.506150px;}
.w0_c00211{width:893.950200px;}
.w1_c00211{width:894.000000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:77.603100px;}
.x5_c00211{left:424.138500px;}
.x2_c00211{left:599.532150px;}
.x3_c00211{left:612.288150px;}
.x4_c00211{left:616.540050px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls2_c00211{letter-spacing:-0.640000pt;}
.ls3_c00211{letter-spacing:-0.560000pt;}
.ls4_c00211{letter-spacing:-0.336000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ls1_c00211{letter-spacing:0.192000pt;}
.ws2_c00211{word-spacing:-11.184000pt;}
.ws1_c00211{word-spacing:-7.728000pt;}
.ws3_c00211{word-spacing:-5.766400pt;}
.ws4_c00211{word-spacing:0.000000pt;}
.ws6_c00211{word-spacing:0.336000pt;}
.ws5_c00211{word-spacing:6.272000pt;}
.ws0_c00211{word-spacing:1399.633067pt;}
._3_c00211{margin-left:-6.260267pt;}
._0_c00211{margin-left:-1.877333pt;}
._1_c00211{margin-left:-0.981333pt;}
._2_c00211{width:1.792000pt;}
._6_c00211{width:6.912000pt;}
._4_c00211{width:49.488000pt;}
._5_c00211{width:52.565333pt;}
.fs5_c00211{font-size:27.200000pt;}
.fs6_c00211{font-size:32.000000pt;}
.fs3_c00211{font-size:37.333333pt;}
.fs0_c00211{font-size:42.666667pt;}
.fs4_c00211{font-size:48.000000pt;}
.fs2_c00211{font-size:50.666667pt;}
.fs1_c00211{font-size:53.333333pt;}
.y0_c00211{bottom:0.000000pt;}
.y1a_c00211{bottom:293.198667pt;}
.y19_c00211{bottom:305.198667pt;}
.y18_c00211{bottom:317.198667pt;}
.y17_c00211{bottom:340.757733pt;}
.y16_c00211{bottom:352.757733pt;}
.y15_c00211{bottom:364.757733pt;}
.y14_c00211{bottom:388.316800pt;}
.y13_c00211{bottom:400.316800pt;}
.y12_c00211{bottom:412.316800pt;}
.y11_c00211{bottom:432.096400pt;}
.y10_c00211{bottom:448.096400pt;}
.yf_c00211{bottom:464.096400pt;}
.ye_c00211{bottom:487.655333pt;}
.yd_c00211{bottom:739.844267pt;}
.yc_c00211{bottom:751.844267pt;}
.yb_c00211{bottom:763.844267pt;}
.ya_c00211{bottom:787.403333pt;}
.y9_c00211{bottom:799.403333pt;}
.y8_c00211{bottom:822.962400pt;}
.y7_c00211{bottom:834.962400pt;}
.y6_c00211{bottom:846.962400pt;}
.y5_c00211{bottom:866.742000pt;}
.y4_c00211{bottom:882.742000pt;}
.y3_c00211{bottom:898.742000pt;}
.y2_c00211{bottom:922.301067pt;}
.y1b_c00211{bottom:924.710533pt;}
.y1_c00211{bottom:972.089733pt;}
.h7_c00211{height:22.400000pt;}
.h6_c00211{height:26.917333pt;}
.h4_c00211{height:30.293333pt;}
.h2_c00211{height:34.901333pt;}
.h3_c00211{height:38.453333pt;}
.h5_c00211{height:38.880000pt;}
.h1_c00211{height:1009.333333pt;}
.h0_c00211{height:1009.338800pt;}
.w0_c00211{width:794.622400pt;}
.w1_c00211{width:794.666667pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:68.980533pt;}
.x5_c00211{left:377.012000pt;}
.x2_c00211{left:532.917467pt;}
.x3_c00211{left:544.256133pt;}
.x4_c00211{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:0.908000;font-style:normal;font-weight: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_c00212;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00212{font-family:ff7_c00212;line-height:1.067000;font-style:normal;font-weight: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_c00212;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00212{font-family:ff8_c00212;line-height:0.710000;font-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_c00212{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls4_c00212{letter-spacing:-1.350000px;}
.ls5_c00212{letter-spacing:-1.200000px;}
.ls2_c00212{letter-spacing:-0.720000px;}
.ls3_c00212{letter-spacing:-0.630000px;}
.ls1_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00212{word-spacing:-8.694000px;}
.ws2_c00212{word-spacing:-6.487200px;}
.ws6_c00212{word-spacing:-0.420000px;}
.ws3_c00212{word-spacing:0.000000px;}
.ws5_c00212{word-spacing:0.540000px;}
.ws4_c00212{word-spacing:7.056000px;}
._0_c00212{margin-left:-2755.276200px;}
._4_c00212{margin-left:-6.946800px;}
._1_c00212{margin-left:-2.256000px;}
._3_c00212{margin-left:-1.200000px;}
._2_c00212{width:1.008000px;}
._8_c00212{width:2.016000px;}
._7_c00212{width:7.776000px;}
._5_c00212{width:55.674000px;}
._6_c00212{width:59.136000px;}
.fc0_c00212{color:rgb(35,31,32);}
.fs5_c00212{font-size:30.600000px;}
.fs6_c00212{font-size:36.000000px;}
.fs3_c00212{font-size:42.000000px;}
.fs0_c00212{font-size:48.000000px;}
.fs4_c00212{font-size:54.000000px;}
.fs2_c00212{font-size:57.000000px;}
.fs1_c00212{font-size:60.000000px;}
.y0_c00212{bottom:0.000000px;}
.y18_c00212{bottom:365.299350px;}
.y17_c00212{bottom:378.799350px;}
.y16_c00212{bottom:392.299350px;}
.y15_c00212{bottom:414.551400px;}
.y14_c00212{bottom:428.051400px;}
.y13_c00212{bottom:454.555350px;}
.y12_c00212{bottom:468.055350px;}
.y11_c00212{bottom:481.555350px;}
.y10_c00212{bottom:503.807250px;}
.yf_c00212{bottom:521.807250px;}
.ye_c00212{bottom:548.311200px;}
.y19_c00212{bottom:551.898750px;}
.yd_c00212{bottom:836.523600px;}
.yc_c00212{bottom:850.023600px;}
.yb_c00212{bottom:863.523600px;}
.ya_c00212{bottom:890.027550px;}
.y9_c00212{bottom:903.527550px;}
.y8_c00212{bottom:917.027550px;}
.y7_c00212{bottom:943.531500px;}
.y6_c00212{bottom:957.031500px;}
.y5_c00212{bottom:970.531500px;}
.y4_c00212{bottom:992.783550px;}
.y3_c00212{bottom:1010.783550px;}
.y2_c00212{bottom:1037.287500px;}
.y1_c00212{bottom:1093.600950px;}
.h8_c00212{height:25.200000px;}
.h7_c00212{height:30.282000px;}
.h5_c00212{height:34.080000px;}
.h2_c00212{height:39.264000px;}
.h3_c00212{height:39.984000px;}
.h4_c00212{height:43.260000px;}
.h6_c00212{height:43.740000px;}
.h1_c00212{height:1135.500000px;}
.h0_c00212{height:1135.506150px;}
.w0_c00212{width:893.950200px;}
.w1_c00212{width:894.000000px;}
.x0_c00212{left:0.000000px;}
.x4_c00212{left:128.626800px;}
.x5_c00212{left:141.382650px;}
.x2_c00212{left:188.061900px;}
.x3_c00212{left:190.513350px;}
.x6_c00212{left:321.801150px;}
.x1_c00212{left:800.165850px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls4_c00212{letter-spacing:-1.200000pt;}
.ls5_c00212{letter-spacing:-1.066667pt;}
.ls2_c00212{letter-spacing:-0.640000pt;}
.ls3_c00212{letter-spacing:-0.560000pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.426667pt;}
.ws0_c00212{word-spacing:-9.685333pt;}
.ws1_c00212{word-spacing:-7.728000pt;}
.ws2_c00212{word-spacing:-5.766400pt;}
.ws6_c00212{word-spacing:-0.373333pt;}
.ws3_c00212{word-spacing:0.000000pt;}
.ws5_c00212{word-spacing:0.480000pt;}
.ws4_c00212{word-spacing:6.272000pt;}
._0_c00212{margin-left:-2449.134400pt;}
._4_c00212{margin-left:-6.174933pt;}
._1_c00212{margin-left:-2.005333pt;}
._3_c00212{margin-left:-1.066667pt;}
._2_c00212{width:0.896000pt;}
._8_c00212{width:1.792000pt;}
._7_c00212{width:6.912000pt;}
._5_c00212{width:49.488000pt;}
._6_c00212{width:52.565333pt;}
.fs5_c00212{font-size:27.200000pt;}
.fs6_c00212{font-size:32.000000pt;}
.fs3_c00212{font-size:37.333333pt;}
.fs0_c00212{font-size:42.666667pt;}
.fs4_c00212{font-size:48.000000pt;}
.fs2_c00212{font-size:50.666667pt;}
.fs1_c00212{font-size:53.333333pt;}
.y0_c00212{bottom:0.000000pt;}
.y18_c00212{bottom:324.710533pt;}
.y17_c00212{bottom:336.710533pt;}
.y16_c00212{bottom:348.710533pt;}
.y15_c00212{bottom:368.490133pt;}
.y14_c00212{bottom:380.490133pt;}
.y13_c00212{bottom:404.049200pt;}
.y12_c00212{bottom:416.049200pt;}
.y11_c00212{bottom:428.049200pt;}
.y10_c00212{bottom:447.828667pt;}
.yf_c00212{bottom:463.828667pt;}
.ye_c00212{bottom:487.387733pt;}
.y19_c00212{bottom:490.576667pt;}
.yd_c00212{bottom:743.576533pt;}
.yc_c00212{bottom:755.576533pt;}
.yb_c00212{bottom:767.576533pt;}
.ya_c00212{bottom:791.135600pt;}
.y9_c00212{bottom:803.135600pt;}
.y8_c00212{bottom:815.135600pt;}
.y7_c00212{bottom:838.694667pt;}
.y6_c00212{bottom:850.694667pt;}
.y5_c00212{bottom:862.694667pt;}
.y4_c00212{bottom:882.474267pt;}
.y3_c00212{bottom:898.474267pt;}
.y2_c00212{bottom:922.033333pt;}
.y1_c00212{bottom:972.089733pt;}
.h8_c00212{height:22.400000pt;}
.h7_c00212{height:26.917333pt;}
.h5_c00212{height:30.293333pt;}
.h2_c00212{height:34.901333pt;}
.h3_c00212{height:35.541333pt;}
.h4_c00212{height:38.453333pt;}
.h6_c00212{height:38.880000pt;}
.h1_c00212{height:1009.333333pt;}
.h0_c00212{height:1009.338800pt;}
.w0_c00212{width:794.622400pt;}
.w1_c00212{width:794.666667pt;}
.x0_c00212{left:0.000000pt;}
.x4_c00212{left:114.334933pt;}
.x5_c00212{left:125.673467pt;}
.x2_c00212{left:167.166133pt;}
.x3_c00212{left:169.345200pt;}
.x6_c00212{left:286.045467pt;}
.x1_c00212{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00213;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00213;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:0.710000;font-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_c00213{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls4_c00213{letter-spacing:-1.026000px;}
.ls2_c00213{letter-spacing:-0.720000px;}
.ls3_c00213{letter-spacing:-0.630000px;}
.ls1_c00213{letter-spacing:-0.216000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00213{word-spacing:-8.694000px;}
.ws2_c00213{word-spacing:-6.487200px;}
.ws3_c00213{word-spacing:0.000000px;}
.ws4_c00213{word-spacing:7.056000px;}
.ws5_c00213{word-spacing:55.890000px;}
.ws6_c00213{word-spacing:56.700000px;}
.ws0_c00213{word-spacing:1574.587200px;}
._3_c00213{margin-left:-7.042800px;}
._0_c00213{margin-left:-2.112000px;}
._1_c00213{margin-left:-1.104000px;}
._2_c00213{width:2.016000px;}
._5_c00213{width:7.776000px;}
._4_c00213{width:59.136000px;}
.fc0_c00213{color:rgb(35,31,32);}
.fs5_c00213{font-size:30.600000px;}
.fs6_c00213{font-size:36.000000px;}
.fs3_c00213{font-size:42.000000px;}
.fs0_c00213{font-size:48.000000px;}
.fs4_c00213{font-size:54.000000px;}
.fs2_c00213{font-size:57.000000px;}
.fs1_c00213{font-size:60.000000px;}
.y0_c00213{bottom:0.000000px;}
.y18_c00213{bottom:347.848650px;}
.y17_c00213{bottom:361.348650px;}
.y16_c00213{bottom:374.848500px;}
.y15_c00213{bottom:401.352450px;}
.y14_c00213{bottom:414.852450px;}
.y13_c00213{bottom:428.352450px;}
.y12_c00213{bottom:454.856400px;}
.y11_c00213{bottom:468.356400px;}
.y10_c00213{bottom:481.856400px;}
.yf_c00213{bottom:504.108450px;}
.ye_c00213{bottom:522.108450px;}
.yd_c00213{bottom:548.612250px;}
.yc_c00213{bottom:850.324800px;}
.yb_c00213{bottom:863.824800px;}
.ya_c00213{bottom:877.324800px;}
.y9_c00213{bottom:903.828750px;}
.y8_c00213{bottom:917.328750px;}
.y7_c00213{bottom:943.832700px;}
.y6_c00213{bottom:957.332700px;}
.y5_c00213{bottom:970.832700px;}
.y4_c00213{bottom:993.084750px;}
.y3_c00213{bottom:1011.084750px;}
.y2_c00213{bottom:1037.588700px;}
.y19_c00213{bottom:1040.299350px;}
.y1_c00213{bottom:1093.600950px;}
.h7_c00213{height:25.200000px;}
.h6_c00213{height:30.282000px;}
.h4_c00213{height:34.080000px;}
.h2_c00213{height:39.264000px;}
.h3_c00213{height:43.260000px;}
.h5_c00213{height:43.740000px;}
.h1_c00213{height:1135.500000px;}
.h0_c00213{height:1135.506150px;}
.w0_c00213{width:893.950200px;}
.w1_c00213{width:894.000000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:77.603100px;}
.x4_c00213{left:424.138500px;}
.x2_c00213{left:599.532150px;}
.x3_c00213{left:612.288150px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls4_c00213{letter-spacing:-0.912000pt;}
.ls2_c00213{letter-spacing:-0.640000pt;}
.ls3_c00213{letter-spacing:-0.560000pt;}
.ls1_c00213{letter-spacing:-0.192000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws1_c00213{word-spacing:-7.728000pt;}
.ws2_c00213{word-spacing:-5.766400pt;}
.ws3_c00213{word-spacing:0.000000pt;}
.ws4_c00213{word-spacing:6.272000pt;}
.ws5_c00213{word-spacing:49.680000pt;}
.ws6_c00213{word-spacing:50.400000pt;}
.ws0_c00213{word-spacing:1399.633067pt;}
._3_c00213{margin-left:-6.260267pt;}
._0_c00213{margin-left:-1.877333pt;}
._1_c00213{margin-left:-0.981333pt;}
._2_c00213{width:1.792000pt;}
._5_c00213{width:6.912000pt;}
._4_c00213{width:52.565333pt;}
.fs5_c00213{font-size:27.200000pt;}
.fs6_c00213{font-size:32.000000pt;}
.fs3_c00213{font-size:37.333333pt;}
.fs0_c00213{font-size:42.666667pt;}
.fs4_c00213{font-size:48.000000pt;}
.fs2_c00213{font-size:50.666667pt;}
.fs1_c00213{font-size:53.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y18_c00213{bottom:309.198800pt;}
.y17_c00213{bottom:321.198800pt;}
.y16_c00213{bottom:333.198667pt;}
.y15_c00213{bottom:356.757733pt;}
.y14_c00213{bottom:368.757733pt;}
.y13_c00213{bottom:380.757733pt;}
.y12_c00213{bottom:404.316800pt;}
.y11_c00213{bottom:416.316800pt;}
.y10_c00213{bottom:428.316800pt;}
.yf_c00213{bottom:448.096400pt;}
.ye_c00213{bottom:464.096400pt;}
.yd_c00213{bottom:487.655333pt;}
.yc_c00213{bottom:755.844267pt;}
.yb_c00213{bottom:767.844267pt;}
.ya_c00213{bottom:779.844267pt;}
.y9_c00213{bottom:803.403333pt;}
.y8_c00213{bottom:815.403333pt;}
.y7_c00213{bottom:838.962400pt;}
.y6_c00213{bottom:850.962400pt;}
.y5_c00213{bottom:862.962400pt;}
.y4_c00213{bottom:882.742000pt;}
.y3_c00213{bottom:898.742000pt;}
.y2_c00213{bottom:922.301067pt;}
.y19_c00213{bottom:924.710533pt;}
.y1_c00213{bottom:972.089733pt;}
.h7_c00213{height:22.400000pt;}
.h6_c00213{height:26.917333pt;}
.h4_c00213{height:30.293333pt;}
.h2_c00213{height:34.901333pt;}
.h3_c00213{height:38.453333pt;}
.h5_c00213{height:38.880000pt;}
.h1_c00213{height:1009.333333pt;}
.h0_c00213{height:1009.338800pt;}
.w0_c00213{width:794.622400pt;}
.w1_c00213{width:794.666667pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:68.980533pt;}
.x4_c00213{left:377.012000pt;}
.x2_c00213{left:532.917467pt;}
.x3_c00213{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00214;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00214{font-family:ff7_c00214;line-height:1.067000;font-style:normal;font-weight: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_c00214;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00214{font-family:ff8_c00214;line-height:0.710000;font-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_c00214{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls5_c00214{letter-spacing:-1.200000px;}
.ls4_c00214{letter-spacing:-0.810000px;}
.ls2_c00214{letter-spacing:-0.720000px;}
.ls3_c00214{letter-spacing:-0.630000px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00214{word-spacing:-8.694000px;}
.ws2_c00214{word-spacing:-6.487200px;}
.ws5_c00214{word-spacing:-0.420000px;}
.ws3_c00214{word-spacing:0.000000px;}
.ws4_c00214{word-spacing:7.056000px;}
._0_c00214{margin-left:-2755.276200px;}
._4_c00214{margin-left:-6.946800px;}
._1_c00214{margin-left:-2.256000px;}
._3_c00214{margin-left:-1.200000px;}
._2_c00214{width:1.008000px;}
._7_c00214{width:7.776000px;}
._5_c00214{width:55.674000px;}
._6_c00214{width:59.136000px;}
.fc0_c00214{color:rgb(35,31,32);}
.fs5_c00214{font-size:30.600000px;}
.fs6_c00214{font-size:36.000000px;}
.fs3_c00214{font-size:42.000000px;}
.fs0_c00214{font-size:48.000000px;}
.fs4_c00214{font-size:54.000000px;}
.fs2_c00214{font-size:57.000000px;}
.fs1_c00214{font-size:60.000000px;}
.y0_c00214{bottom:0.000000px;}
.y18_c00214{bottom:365.299350px;}
.y17_c00214{bottom:378.799350px;}
.y16_c00214{bottom:392.299350px;}
.y15_c00214{bottom:414.551400px;}
.y14_c00214{bottom:428.051400px;}
.y13_c00214{bottom:454.555350px;}
.y12_c00214{bottom:468.055350px;}
.y11_c00214{bottom:481.555350px;}
.y10_c00214{bottom:503.807250px;}
.yf_c00214{bottom:521.807250px;}
.ye_c00214{bottom:548.311200px;}
.y19_c00214{bottom:551.898750px;}
.yd_c00214{bottom:836.523600px;}
.yc_c00214{bottom:850.023600px;}
.yb_c00214{bottom:863.523600px;}
.ya_c00214{bottom:890.027550px;}
.y9_c00214{bottom:903.527550px;}
.y8_c00214{bottom:917.027550px;}
.y7_c00214{bottom:943.531500px;}
.y6_c00214{bottom:957.031500px;}
.y5_c00214{bottom:970.531500px;}
.y4_c00214{bottom:992.783550px;}
.y3_c00214{bottom:1010.783550px;}
.y2_c00214{bottom:1037.287500px;}
.y1_c00214{bottom:1093.600950px;}
.h8_c00214{height:25.200000px;}
.h7_c00214{height:30.282000px;}
.h5_c00214{height:34.080000px;}
.h2_c00214{height:39.264000px;}
.h3_c00214{height:39.984000px;}
.h4_c00214{height:43.260000px;}
.h6_c00214{height:43.740000px;}
.h1_c00214{height:1135.500000px;}
.h0_c00214{height:1135.506150px;}
.w0_c00214{width:893.950200px;}
.w1_c00214{width:894.000000px;}
.x0_c00214{left:0.000000px;}
.x4_c00214{left:128.626800px;}
.x5_c00214{left:141.382650px;}
.x2_c00214{left:188.061900px;}
.x3_c00214{left:190.513350px;}
.x6_c00214{left:321.801150px;}
.x1_c00214{left:800.165850px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls5_c00214{letter-spacing:-1.066667pt;}
.ls4_c00214{letter-spacing:-0.720000pt;}
.ls2_c00214{letter-spacing:-0.640000pt;}
.ls3_c00214{letter-spacing:-0.560000pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:0.426667pt;}
.ws0_c00214{word-spacing:-9.685333pt;}
.ws1_c00214{word-spacing:-7.728000pt;}
.ws2_c00214{word-spacing:-5.766400pt;}
.ws5_c00214{word-spacing:-0.373333pt;}
.ws3_c00214{word-spacing:0.000000pt;}
.ws4_c00214{word-spacing:6.272000pt;}
._0_c00214{margin-left:-2449.134400pt;}
._4_c00214{margin-left:-6.174933pt;}
._1_c00214{margin-left:-2.005333pt;}
._3_c00214{margin-left:-1.066667pt;}
._2_c00214{width:0.896000pt;}
._7_c00214{width:6.912000pt;}
._5_c00214{width:49.488000pt;}
._6_c00214{width:52.565333pt;}
.fs5_c00214{font-size:27.200000pt;}
.fs6_c00214{font-size:32.000000pt;}
.fs3_c00214{font-size:37.333333pt;}
.fs0_c00214{font-size:42.666667pt;}
.fs4_c00214{font-size:48.000000pt;}
.fs2_c00214{font-size:50.666667pt;}
.fs1_c00214{font-size:53.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y18_c00214{bottom:324.710533pt;}
.y17_c00214{bottom:336.710533pt;}
.y16_c00214{bottom:348.710533pt;}
.y15_c00214{bottom:368.490133pt;}
.y14_c00214{bottom:380.490133pt;}
.y13_c00214{bottom:404.049200pt;}
.y12_c00214{bottom:416.049200pt;}
.y11_c00214{bottom:428.049200pt;}
.y10_c00214{bottom:447.828667pt;}
.yf_c00214{bottom:463.828667pt;}
.ye_c00214{bottom:487.387733pt;}
.y19_c00214{bottom:490.576667pt;}
.yd_c00214{bottom:743.576533pt;}
.yc_c00214{bottom:755.576533pt;}
.yb_c00214{bottom:767.576533pt;}
.ya_c00214{bottom:791.135600pt;}
.y9_c00214{bottom:803.135600pt;}
.y8_c00214{bottom:815.135600pt;}
.y7_c00214{bottom:838.694667pt;}
.y6_c00214{bottom:850.694667pt;}
.y5_c00214{bottom:862.694667pt;}
.y4_c00214{bottom:882.474267pt;}
.y3_c00214{bottom:898.474267pt;}
.y2_c00214{bottom:922.033333pt;}
.y1_c00214{bottom:972.089733pt;}
.h8_c00214{height:22.400000pt;}
.h7_c00214{height:26.917333pt;}
.h5_c00214{height:30.293333pt;}
.h2_c00214{height:34.901333pt;}
.h3_c00214{height:35.541333pt;}
.h4_c00214{height:38.453333pt;}
.h6_c00214{height:38.880000pt;}
.h1_c00214{height:1009.333333pt;}
.h0_c00214{height:1009.338800pt;}
.w0_c00214{width:794.622400pt;}
.w1_c00214{width:794.666667pt;}
.x0_c00214{left:0.000000pt;}
.x4_c00214{left:114.334933pt;}
.x5_c00214{left:125.673467pt;}
.x2_c00214{left:167.166133pt;}
.x3_c00214{left:169.345200pt;}
.x6_c00214{left:286.045467pt;}
.x1_c00214{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.067000;font-style:normal;font-weight: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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;line-height:0.710000;font-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_c00215{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls2_c00215{letter-spacing:-0.720000px;}
.ls4_c00215{letter-spacing:-0.630000px;}
.ls3_c00215{letter-spacing:-0.378000px;}
.ls1_c00215{letter-spacing:-0.270000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-8.694000px;}
.ws2_c00215{word-spacing:-6.487200px;}
.ws3_c00215{word-spacing:0.000000px;}
.ws6_c00215{word-spacing:0.378000px;}
.ws4_c00215{word-spacing:7.056000px;}
.ws5_c00215{word-spacing:55.944000px;}
.ws0_c00215{word-spacing:1574.587200px;}
._3_c00215{margin-left:-7.042800px;}
._0_c00215{margin-left:-2.112000px;}
._1_c00215{margin-left:-1.104000px;}
._2_c00215{width:2.016000px;}
._5_c00215{width:7.776000px;}
._6_c00215{width:55.674000px;}
._4_c00215{width:59.136000px;}
.fc0_c00215{color:rgb(35,31,32);}
.fs5_c00215{font-size:30.600000px;}
.fs6_c00215{font-size:36.000000px;}
.fs3_c00215{font-size:42.000000px;}
.fs0_c00215{font-size:48.000000px;}
.fs4_c00215{font-size:54.000000px;}
.fs2_c00215{font-size:57.000000px;}
.fs1_c00215{font-size:60.000000px;}
.y0_c00215{bottom:0.000000px;}
.y16_c00215{bottom:365.600550px;}
.y15_c00215{bottom:379.100550px;}
.y14_c00215{bottom:392.600550px;}
.y13_c00215{bottom:414.852450px;}
.y12_c00215{bottom:428.352450px;}
.y11_c00215{bottom:454.856400px;}
.y10_c00215{bottom:468.356400px;}
.yf_c00215{bottom:481.856400px;}
.ye_c00215{bottom:504.108450px;}
.yd_c00215{bottom:522.108450px;}
.yc_c00215{bottom:548.612250px;}
.y19_c00215{bottom:551.323050px;}
.y18_c00215{bottom:806.955600px;}
.yb_c00215{bottom:863.824800px;}
.ya_c00215{bottom:877.324800px;}
.y9_c00215{bottom:903.828750px;}
.y8_c00215{bottom:917.328750px;}
.y7_c00215{bottom:943.832700px;}
.y6_c00215{bottom:957.332700px;}
.y5_c00215{bottom:970.832700px;}
.y4_c00215{bottom:993.084750px;}
.y3_c00215{bottom:1011.084750px;}
.y2_c00215{bottom:1037.588700px;}
.y17_c00215{bottom:1040.299350px;}
.y1_c00215{bottom:1093.600950px;}
.h7_c00215{height:25.200000px;}
.h6_c00215{height:30.282000px;}
.h4_c00215{height:34.080000px;}
.h2_c00215{height:39.264000px;}
.h3_c00215{height:43.260000px;}
.h5_c00215{height:43.740000px;}
.h1_c00215{height:1135.500000px;}
.h0_c00215{height:1135.506150px;}
.w0_c00215{width:893.950200px;}
.w1_c00215{width:894.000000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:77.603100px;}
.x4_c00215{left:424.138500px;}
.x2_c00215{left:599.532150px;}
.x3_c00215{left:612.288150px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls2_c00215{letter-spacing:-0.640000pt;}
.ls4_c00215{letter-spacing:-0.560000pt;}
.ls3_c00215{letter-spacing:-0.336000pt;}
.ls1_c00215{letter-spacing:-0.240000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws1_c00215{word-spacing:-7.728000pt;}
.ws2_c00215{word-spacing:-5.766400pt;}
.ws3_c00215{word-spacing:0.000000pt;}
.ws6_c00215{word-spacing:0.336000pt;}
.ws4_c00215{word-spacing:6.272000pt;}
.ws5_c00215{word-spacing:49.728000pt;}
.ws0_c00215{word-spacing:1399.633067pt;}
._3_c00215{margin-left:-6.260267pt;}
._0_c00215{margin-left:-1.877333pt;}
._1_c00215{margin-left:-0.981333pt;}
._2_c00215{width:1.792000pt;}
._5_c00215{width:6.912000pt;}
._6_c00215{width:49.488000pt;}
._4_c00215{width:52.565333pt;}
.fs5_c00215{font-size:27.200000pt;}
.fs6_c00215{font-size:32.000000pt;}
.fs3_c00215{font-size:37.333333pt;}
.fs0_c00215{font-size:42.666667pt;}
.fs4_c00215{font-size:48.000000pt;}
.fs2_c00215{font-size:50.666667pt;}
.fs1_c00215{font-size:53.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y16_c00215{bottom:324.978267pt;}
.y15_c00215{bottom:336.978267pt;}
.y14_c00215{bottom:348.978267pt;}
.y13_c00215{bottom:368.757733pt;}
.y12_c00215{bottom:380.757733pt;}
.y11_c00215{bottom:404.316800pt;}
.y10_c00215{bottom:416.316800pt;}
.yf_c00215{bottom:428.316800pt;}
.ye_c00215{bottom:448.096400pt;}
.yd_c00215{bottom:464.096400pt;}
.yc_c00215{bottom:487.655333pt;}
.y19_c00215{bottom:490.064933pt;}
.y18_c00215{bottom:717.293867pt;}
.yb_c00215{bottom:767.844267pt;}
.ya_c00215{bottom:779.844267pt;}
.y9_c00215{bottom:803.403333pt;}
.y8_c00215{bottom:815.403333pt;}
.y7_c00215{bottom:838.962400pt;}
.y6_c00215{bottom:850.962400pt;}
.y5_c00215{bottom:862.962400pt;}
.y4_c00215{bottom:882.742000pt;}
.y3_c00215{bottom:898.742000pt;}
.y2_c00215{bottom:922.301067pt;}
.y17_c00215{bottom:924.710533pt;}
.y1_c00215{bottom:972.089733pt;}
.h7_c00215{height:22.400000pt;}
.h6_c00215{height:26.917333pt;}
.h4_c00215{height:30.293333pt;}
.h2_c00215{height:34.901333pt;}
.h3_c00215{height:38.453333pt;}
.h5_c00215{height:38.880000pt;}
.h1_c00215{height:1009.333333pt;}
.h0_c00215{height:1009.338800pt;}
.w0_c00215{width:794.622400pt;}
.w1_c00215{width:794.666667pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:68.980533pt;}
.x4_c00215{left:377.012000pt;}
.x2_c00215{left:532.917467pt;}
.x3_c00215{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:0.908000;font-style:normal;font-weight: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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00216{font-family:ff7_c00216;line-height:1.067000;font-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_c00216{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls5_c00216{letter-spacing:-1.512000px;}
.ls3_c00216{letter-spacing:-0.720000px;}
.ls4_c00216{letter-spacing:-0.630000px;}
.ls2_c00216{letter-spacing:-0.540000px;}
.ls1_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00216{word-spacing:-8.694000px;}
.ws2_c00216{word-spacing:0.000000px;}
.ws5_c00216{word-spacing:0.702000px;}
.ws3_c00216{word-spacing:7.056000px;}
.ws4_c00216{word-spacing:56.214000px;}
._0_c00216{margin-left:-2755.276200px;}
._4_c00216{margin-left:-6.946800px;}
._1_c00216{margin-left:-2.256000px;}
._3_c00216{margin-left:-1.200000px;}
._2_c00216{width:1.008000px;}
._6_c00216{width:7.776000px;}
._7_c00216{width:56.484000px;}
._5_c00216{width:59.136000px;}
.fc0_c00216{color:rgb(35,31,32);}
.fs3_c00216{font-size:42.000000px;}
.fs0_c00216{font-size:48.000000px;}
.fs4_c00216{font-size:54.000000px;}
.fs2_c00216{font-size:57.000000px;}
.fs1_c00216{font-size:60.000000px;}
.y0_c00216{bottom:0.000000px;}
.y19_c00216{bottom:347.547450px;}
.y18_c00216{bottom:361.047450px;}
.y17_c00216{bottom:374.547450px;}
.y16_c00216{bottom:401.051400px;}
.y15_c00216{bottom:414.551400px;}
.y14_c00216{bottom:428.051400px;}
.y13_c00216{bottom:454.555350px;}
.y12_c00216{bottom:468.055350px;}
.y11_c00216{bottom:481.555350px;}
.y10_c00216{bottom:503.807250px;}
.yf_c00216{bottom:521.807250px;}
.ye_c00216{bottom:548.311200px;}
.yd_c00216{bottom:836.523600px;}
.yc_c00216{bottom:850.023600px;}
.yb_c00216{bottom:863.523600px;}
.ya_c00216{bottom:890.027550px;}
.y9_c00216{bottom:903.527550px;}
.y8_c00216{bottom:917.027550px;}
.y7_c00216{bottom:943.531500px;}
.y6_c00216{bottom:957.031500px;}
.y5_c00216{bottom:970.531500px;}
.y4_c00216{bottom:992.783550px;}
.y3_c00216{bottom:1010.783550px;}
.y2_c00216{bottom:1037.287500px;}
.y1_c00216{bottom:1093.600950px;}
.h7_c00216{height:30.282000px;}
.h5_c00216{height:34.080000px;}
.h2_c00216{height:39.264000px;}
.h3_c00216{height:39.984000px;}
.h4_c00216{height:43.260000px;}
.h6_c00216{height:43.740000px;}
.h1_c00216{height:1135.500000px;}
.h0_c00216{height:1135.506150px;}
.w0_c00216{width:893.950200px;}
.w1_c00216{width:894.000000px;}
.x0_c00216{left:0.000000px;}
.x4_c00216{left:128.626800px;}
.x5_c00216{left:141.382650px;}
.x2_c00216{left:188.061900px;}
.x3_c00216{left:190.513350px;}
.x1_c00216{left:800.165850px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls5_c00216{letter-spacing:-1.344000pt;}
.ls3_c00216{letter-spacing:-0.640000pt;}
.ls4_c00216{letter-spacing:-0.560000pt;}
.ls2_c00216{letter-spacing:-0.480000pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.426667pt;}
.ws0_c00216{word-spacing:-9.685333pt;}
.ws1_c00216{word-spacing:-7.728000pt;}
.ws2_c00216{word-spacing:0.000000pt;}
.ws5_c00216{word-spacing:0.624000pt;}
.ws3_c00216{word-spacing:6.272000pt;}
.ws4_c00216{word-spacing:49.968000pt;}
._0_c00216{margin-left:-2449.134400pt;}
._4_c00216{margin-left:-6.174933pt;}
._1_c00216{margin-left:-2.005333pt;}
._3_c00216{margin-left:-1.066667pt;}
._2_c00216{width:0.896000pt;}
._6_c00216{width:6.912000pt;}
._7_c00216{width:50.208000pt;}
._5_c00216{width:52.565333pt;}
.fs3_c00216{font-size:37.333333pt;}
.fs0_c00216{font-size:42.666667pt;}
.fs4_c00216{font-size:48.000000pt;}
.fs2_c00216{font-size:50.666667pt;}
.fs1_c00216{font-size:53.333333pt;}
.y0_c00216{bottom:0.000000pt;}
.y19_c00216{bottom:308.931067pt;}
.y18_c00216{bottom:320.931067pt;}
.y17_c00216{bottom:332.931067pt;}
.y16_c00216{bottom:356.490133pt;}
.y15_c00216{bottom:368.490133pt;}
.y14_c00216{bottom:380.490133pt;}
.y13_c00216{bottom:404.049200pt;}
.y12_c00216{bottom:416.049200pt;}
.y11_c00216{bottom:428.049200pt;}
.y10_c00216{bottom:447.828667pt;}
.yf_c00216{bottom:463.828667pt;}
.ye_c00216{bottom:487.387733pt;}
.yd_c00216{bottom:743.576533pt;}
.yc_c00216{bottom:755.576533pt;}
.yb_c00216{bottom:767.576533pt;}
.ya_c00216{bottom:791.135600pt;}
.y9_c00216{bottom:803.135600pt;}
.y8_c00216{bottom:815.135600pt;}
.y7_c00216{bottom:838.694667pt;}
.y6_c00216{bottom:850.694667pt;}
.y5_c00216{bottom:862.694667pt;}
.y4_c00216{bottom:882.474267pt;}
.y3_c00216{bottom:898.474267pt;}
.y2_c00216{bottom:922.033333pt;}
.y1_c00216{bottom:972.089733pt;}
.h7_c00216{height:26.917333pt;}
.h5_c00216{height:30.293333pt;}
.h2_c00216{height:34.901333pt;}
.h3_c00216{height:35.541333pt;}
.h4_c00216{height:38.453333pt;}
.h6_c00216{height:38.880000pt;}
.h1_c00216{height:1009.333333pt;}
.h0_c00216{height:1009.338800pt;}
.w0_c00216{width:794.622400pt;}
.w1_c00216{width:794.666667pt;}
.x0_c00216{left:0.000000pt;}
.x4_c00216{left:114.334933pt;}
.x5_c00216{left:125.673467pt;}
.x2_c00216{left:167.166133pt;}
.x3_c00216{left:169.345200pt;}
.x1_c00216{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00217;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00217{font-family:ff6_c00217;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls1_c00217{letter-spacing:-0.720000px;}
.ls2_c00217{letter-spacing:-0.630000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-8.694000px;}
.ws2_c00217{word-spacing:0.000000px;}
.ws3_c00217{word-spacing:7.056000px;}
.ws0_c00217{word-spacing:1574.587200px;}
._3_c00217{margin-left:-7.042800px;}
._0_c00217{margin-left:-2.112000px;}
._1_c00217{margin-left:-1.104000px;}
._2_c00217{width:2.016000px;}
._6_c00217{width:7.776000px;}
._4_c00217{width:55.674000px;}
._5_c00217{width:59.136000px;}
.fc0_c00217{color:rgb(35,31,32);}
.fs3_c00217{font-size:42.000000px;}
.fs0_c00217{font-size:48.000000px;}
.fs4_c00217{font-size:54.000000px;}
.fs2_c00217{font-size:57.000000px;}
.fs1_c00217{font-size:60.000000px;}
.y0_c00217{bottom:0.000000px;}
.y19_c00217{bottom:347.848650px;}
.y18_c00217{bottom:361.348650px;}
.y17_c00217{bottom:374.848500px;}
.y16_c00217{bottom:401.352450px;}
.y15_c00217{bottom:414.852450px;}
.y14_c00217{bottom:428.352450px;}
.y13_c00217{bottom:454.856400px;}
.y12_c00217{bottom:468.356400px;}
.y11_c00217{bottom:481.856400px;}
.y10_c00217{bottom:504.108450px;}
.yf_c00217{bottom:522.108450px;}
.ye_c00217{bottom:548.612250px;}
.yd_c00217{bottom:836.824800px;}
.yc_c00217{bottom:850.324800px;}
.yb_c00217{bottom:863.824800px;}
.ya_c00217{bottom:890.328750px;}
.y9_c00217{bottom:903.828750px;}
.y8_c00217{bottom:917.328750px;}
.y7_c00217{bottom:943.832700px;}
.y6_c00217{bottom:957.332700px;}
.y5_c00217{bottom:970.832700px;}
.y4_c00217{bottom:993.084750px;}
.y3_c00217{bottom:1011.084750px;}
.y2_c00217{bottom:1037.588700px;}
.y1_c00217{bottom:1093.600950px;}
.h6_c00217{height:30.282000px;}
.h4_c00217{height:34.080000px;}
.h2_c00217{height:39.264000px;}
.h3_c00217{height:43.260000px;}
.h5_c00217{height:43.740000px;}
.h1_c00217{height:1135.500000px;}
.h0_c00217{height:1135.506150px;}
.w0_c00217{width:893.950200px;}
.w1_c00217{width:894.000000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:77.603100px;}
.x2_c00217{left:599.532150px;}
.x3_c00217{left:612.288150px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls1_c00217{letter-spacing:-0.640000pt;}
.ls2_c00217{letter-spacing:-0.560000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws1_c00217{word-spacing:-7.728000pt;}
.ws2_c00217{word-spacing:0.000000pt;}
.ws3_c00217{word-spacing:6.272000pt;}
.ws0_c00217{word-spacing:1399.633067pt;}
._3_c00217{margin-left:-6.260267pt;}
._0_c00217{margin-left:-1.877333pt;}
._1_c00217{margin-left:-0.981333pt;}
._2_c00217{width:1.792000pt;}
._6_c00217{width:6.912000pt;}
._4_c00217{width:49.488000pt;}
._5_c00217{width:52.565333pt;}
.fs3_c00217{font-size:37.333333pt;}
.fs0_c00217{font-size:42.666667pt;}
.fs4_c00217{font-size:48.000000pt;}
.fs2_c00217{font-size:50.666667pt;}
.fs1_c00217{font-size:53.333333pt;}
.y0_c00217{bottom:0.000000pt;}
.y19_c00217{bottom:309.198800pt;}
.y18_c00217{bottom:321.198800pt;}
.y17_c00217{bottom:333.198667pt;}
.y16_c00217{bottom:356.757733pt;}
.y15_c00217{bottom:368.757733pt;}
.y14_c00217{bottom:380.757733pt;}
.y13_c00217{bottom:404.316800pt;}
.y12_c00217{bottom:416.316800pt;}
.y11_c00217{bottom:428.316800pt;}
.y10_c00217{bottom:448.096400pt;}
.yf_c00217{bottom:464.096400pt;}
.ye_c00217{bottom:487.655333pt;}
.yd_c00217{bottom:743.844267pt;}
.yc_c00217{bottom:755.844267pt;}
.yb_c00217{bottom:767.844267pt;}
.ya_c00217{bottom:791.403333pt;}
.y9_c00217{bottom:803.403333pt;}
.y8_c00217{bottom:815.403333pt;}
.y7_c00217{bottom:838.962400pt;}
.y6_c00217{bottom:850.962400pt;}
.y5_c00217{bottom:862.962400pt;}
.y4_c00217{bottom:882.742000pt;}
.y3_c00217{bottom:898.742000pt;}
.y2_c00217{bottom:922.301067pt;}
.y1_c00217{bottom:972.089733pt;}
.h6_c00217{height:26.917333pt;}
.h4_c00217{height:30.293333pt;}
.h2_c00217{height:34.901333pt;}
.h3_c00217{height:38.453333pt;}
.h5_c00217{height:38.880000pt;}
.h1_c00217{height:1009.333333pt;}
.h0_c00217{height:1009.338800pt;}
.w0_c00217{width:794.622400pt;}
.w1_c00217{width:794.666667pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:68.980533pt;}
.x2_c00217{left:532.917467pt;}
.x3_c00217{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00218;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;line-height:1.067000;font-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_c00218{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls5_c00218{letter-spacing:-1.026000px;}
.ls3_c00218{letter-spacing:-0.720000px;}
.ls4_c00218{letter-spacing:-0.630000px;}
.ls2_c00218{letter-spacing:-0.540000px;}
.ls1_c00218{letter-spacing:0.000000px;}
.ls0_c00218{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00218{word-spacing:-8.694000px;}
.ws2_c00218{word-spacing:0.000000px;}
.ws5_c00218{word-spacing:0.216000px;}
.ws4_c00218{word-spacing:0.540000px;}
.ws3_c00218{word-spacing:7.056000px;}
._0_c00218{margin-left:-2755.276200px;}
._4_c00218{margin-left:-6.946800px;}
._1_c00218{margin-left:-2.256000px;}
._3_c00218{margin-left:-1.200000px;}
._2_c00218{width:1.008000px;}
._7_c00218{width:7.776000px;}
._5_c00218{width:55.674000px;}
._6_c00218{width:59.136000px;}
.fc0_c00218{color:rgb(35,31,32);}
.fs3_c00218{font-size:42.000000px;}
.fs0_c00218{font-size:48.000000px;}
.fs4_c00218{font-size:54.000000px;}
.fs2_c00218{font-size:57.000000px;}
.fs1_c00218{font-size:60.000000px;}
.y0_c00218{bottom:0.000000px;}
.y19_c00218{bottom:347.334900px;}
.y18_c00218{bottom:360.834900px;}
.y17_c00218{bottom:374.334900px;}
.y16_c00218{bottom:400.838700px;}
.y15_c00218{bottom:414.338700px;}
.y14_c00218{bottom:427.838700px;}
.y13_c00218{bottom:454.342650px;}
.y12_c00218{bottom:467.842650px;}
.y11_c00218{bottom:481.342650px;}
.y10_c00218{bottom:503.594700px;}
.yf_c00218{bottom:521.594700px;}
.ye_c00218{bottom:548.098650px;}
.yd_c00218{bottom:836.311050px;}
.yc_c00218{bottom:849.811050px;}
.yb_c00218{bottom:863.311050px;}
.ya_c00218{bottom:889.815000px;}
.y9_c00218{bottom:903.315000px;}
.y8_c00218{bottom:916.815000px;}
.y7_c00218{bottom:943.318950px;}
.y6_c00218{bottom:956.818950px;}
.y5_c00218{bottom:970.318950px;}
.y4_c00218{bottom:992.570850px;}
.y3_c00218{bottom:1010.570850px;}
.y2_c00218{bottom:1037.074950px;}
.y1_c00218{bottom:1093.600950px;}
.h7_c00218{height:30.282000px;}
.h5_c00218{height:34.080000px;}
.h2_c00218{height:39.264000px;}
.h3_c00218{height:39.984000px;}
.h4_c00218{height:43.260000px;}
.h6_c00218{height:43.740000px;}
.h1_c00218{height:1135.500000px;}
.h0_c00218{height:1135.506150px;}
.w0_c00218{width:893.950200px;}
.w1_c00218{width:894.000000px;}
.x0_c00218{left:0.000000px;}
.x4_c00218{left:128.626800px;}
.x5_c00218{left:141.382650px;}
.x2_c00218{left:188.061900px;}
.x3_c00218{left:190.513350px;}
.x1_c00218{left:800.165850px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls5_c00218{letter-spacing:-0.912000pt;}
.ls3_c00218{letter-spacing:-0.640000pt;}
.ls4_c00218{letter-spacing:-0.560000pt;}
.ls2_c00218{letter-spacing:-0.480000pt;}
.ls1_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:0.426667pt;}
.ws0_c00218{word-spacing:-9.685333pt;}
.ws1_c00218{word-spacing:-7.728000pt;}
.ws2_c00218{word-spacing:0.000000pt;}
.ws5_c00218{word-spacing:0.192000pt;}
.ws4_c00218{word-spacing:0.480000pt;}
.ws3_c00218{word-spacing:6.272000pt;}
._0_c00218{margin-left:-2449.134400pt;}
._4_c00218{margin-left:-6.174933pt;}
._1_c00218{margin-left:-2.005333pt;}
._3_c00218{margin-left:-1.066667pt;}
._2_c00218{width:0.896000pt;}
._7_c00218{width:6.912000pt;}
._5_c00218{width:49.488000pt;}
._6_c00218{width:52.565333pt;}
.fs3_c00218{font-size:37.333333pt;}
.fs0_c00218{font-size:42.666667pt;}
.fs4_c00218{font-size:48.000000pt;}
.fs2_c00218{font-size:50.666667pt;}
.fs1_c00218{font-size:53.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y19_c00218{bottom:308.742133pt;}
.y18_c00218{bottom:320.742133pt;}
.y17_c00218{bottom:332.742133pt;}
.y16_c00218{bottom:356.301067pt;}
.y15_c00218{bottom:368.301067pt;}
.y14_c00218{bottom:380.301067pt;}
.y13_c00218{bottom:403.860133pt;}
.y12_c00218{bottom:415.860133pt;}
.y11_c00218{bottom:427.860133pt;}
.y10_c00218{bottom:447.639733pt;}
.yf_c00218{bottom:463.639733pt;}
.ye_c00218{bottom:487.198800pt;}
.yd_c00218{bottom:743.387600pt;}
.yc_c00218{bottom:755.387600pt;}
.yb_c00218{bottom:767.387600pt;}
.ya_c00218{bottom:790.946667pt;}
.y9_c00218{bottom:802.946667pt;}
.y8_c00218{bottom:814.946667pt;}
.y7_c00218{bottom:838.505733pt;}
.y6_c00218{bottom:850.505733pt;}
.y5_c00218{bottom:862.505733pt;}
.y4_c00218{bottom:882.285200pt;}
.y3_c00218{bottom:898.285200pt;}
.y2_c00218{bottom:921.844400pt;}
.y1_c00218{bottom:972.089733pt;}
.h7_c00218{height:26.917333pt;}
.h5_c00218{height:30.293333pt;}
.h2_c00218{height:34.901333pt;}
.h3_c00218{height:35.541333pt;}
.h4_c00218{height:38.453333pt;}
.h6_c00218{height:38.880000pt;}
.h1_c00218{height:1009.333333pt;}
.h0_c00218{height:1009.338800pt;}
.w0_c00218{width:794.622400pt;}
.w1_c00218{width:794.666667pt;}
.x0_c00218{left:0.000000pt;}
.x4_c00218{left:114.334933pt;}
.x5_c00218{left:125.673467pt;}
.x2_c00218{left:167.166133pt;}
.x3_c00218{left:169.345200pt;}
.x1_c00218{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00219;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00219{font-family:ff6_c00219;line-height:1.067000;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00219{font-family:ff7_c00219;line-height:0.710000;font-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_c00219{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls2_c00219{letter-spacing:-0.720000px;}
.ls3_c00219{letter-spacing:-0.630000px;}
.ls1_c00219{letter-spacing:-0.216000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00219{word-spacing:-8.694000px;}
.ws2_c00219{word-spacing:-6.487200px;}
.ws3_c00219{word-spacing:0.000000px;}
.ws5_c00219{word-spacing:0.216000px;}
.ws4_c00219{word-spacing:7.056000px;}
.ws0_c00219{word-spacing:1574.587200px;}
._3_c00219{margin-left:-7.042800px;}
._0_c00219{margin-left:-2.112000px;}
._1_c00219{margin-left:-1.104000px;}
._2_c00219{width:2.016000px;}
._6_c00219{width:7.776000px;}
._4_c00219{width:55.674000px;}
._5_c00219{width:59.136000px;}
.fc0_c00219{color:rgb(35,31,32);}
.fs5_c00219{font-size:30.600000px;}
.fs6_c00219{font-size:36.000000px;}
.fs3_c00219{font-size:42.000000px;}
.fs0_c00219{font-size:48.000000px;}
.fs4_c00219{font-size:54.000000px;}
.fs2_c00219{font-size:57.000000px;}
.fs1_c00219{font-size:60.000000px;}
.y0_c00219{bottom:0.000000px;}
.y18_c00219{bottom:347.848650px;}
.y17_c00219{bottom:361.348650px;}
.y16_c00219{bottom:374.848500px;}
.y15_c00219{bottom:401.352450px;}
.y14_c00219{bottom:414.852450px;}
.y13_c00219{bottom:428.352450px;}
.y12_c00219{bottom:454.856400px;}
.y11_c00219{bottom:468.356400px;}
.y10_c00219{bottom:481.856400px;}
.yf_c00219{bottom:504.108450px;}
.ye_c00219{bottom:522.108450px;}
.yd_c00219{bottom:548.612250px;}
.yc_c00219{bottom:850.324800px;}
.yb_c00219{bottom:863.824800px;}
.ya_c00219{bottom:877.324800px;}
.y9_c00219{bottom:903.828750px;}
.y8_c00219{bottom:917.328750px;}
.y7_c00219{bottom:943.832700px;}
.y6_c00219{bottom:957.332700px;}
.y5_c00219{bottom:970.832700px;}
.y4_c00219{bottom:993.084750px;}
.y3_c00219{bottom:1011.084750px;}
.y2_c00219{bottom:1037.588700px;}
.y19_c00219{bottom:1040.299350px;}
.y1_c00219{bottom:1093.600950px;}
.h7_c00219{height:25.200000px;}
.h6_c00219{height:30.282000px;}
.h4_c00219{height:34.080000px;}
.h2_c00219{height:39.264000px;}
.h3_c00219{height:43.260000px;}
.h5_c00219{height:43.740000px;}
.h1_c00219{height:1135.500000px;}
.h0_c00219{height:1135.506150px;}
.w0_c00219{width:893.950200px;}
.w1_c00219{width:894.000000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:77.603100px;}
.x4_c00219{left:424.138500px;}
.x2_c00219{left:599.532150px;}
.x3_c00219{left:612.288150px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls2_c00219{letter-spacing:-0.640000pt;}
.ls3_c00219{letter-spacing:-0.560000pt;}
.ls1_c00219{letter-spacing:-0.192000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws1_c00219{word-spacing:-7.728000pt;}
.ws2_c00219{word-spacing:-5.766400pt;}
.ws3_c00219{word-spacing:0.000000pt;}
.ws5_c00219{word-spacing:0.192000pt;}
.ws4_c00219{word-spacing:6.272000pt;}
.ws0_c00219{word-spacing:1399.633067pt;}
._3_c00219{margin-left:-6.260267pt;}
._0_c00219{margin-left:-1.877333pt;}
._1_c00219{margin-left:-0.981333pt;}
._2_c00219{width:1.792000pt;}
._6_c00219{width:6.912000pt;}
._4_c00219{width:49.488000pt;}
._5_c00219{width:52.565333pt;}
.fs5_c00219{font-size:27.200000pt;}
.fs6_c00219{font-size:32.000000pt;}
.fs3_c00219{font-size:37.333333pt;}
.fs0_c00219{font-size:42.666667pt;}
.fs4_c00219{font-size:48.000000pt;}
.fs2_c00219{font-size:50.666667pt;}
.fs1_c00219{font-size:53.333333pt;}
.y0_c00219{bottom:0.000000pt;}
.y18_c00219{bottom:309.198800pt;}
.y17_c00219{bottom:321.198800pt;}
.y16_c00219{bottom:333.198667pt;}
.y15_c00219{bottom:356.757733pt;}
.y14_c00219{bottom:368.757733pt;}
.y13_c00219{bottom:380.757733pt;}
.y12_c00219{bottom:404.316800pt;}
.y11_c00219{bottom:416.316800pt;}
.y10_c00219{bottom:428.316800pt;}
.yf_c00219{bottom:448.096400pt;}
.ye_c00219{bottom:464.096400pt;}
.yd_c00219{bottom:487.655333pt;}
.yc_c00219{bottom:755.844267pt;}
.yb_c00219{bottom:767.844267pt;}
.ya_c00219{bottom:779.844267pt;}
.y9_c00219{bottom:803.403333pt;}
.y8_c00219{bottom:815.403333pt;}
.y7_c00219{bottom:838.962400pt;}
.y6_c00219{bottom:850.962400pt;}
.y5_c00219{bottom:862.962400pt;}
.y4_c00219{bottom:882.742000pt;}
.y3_c00219{bottom:898.742000pt;}
.y2_c00219{bottom:922.301067pt;}
.y19_c00219{bottom:924.710533pt;}
.y1_c00219{bottom:972.089733pt;}
.h7_c00219{height:22.400000pt;}
.h6_c00219{height:26.917333pt;}
.h4_c00219{height:30.293333pt;}
.h2_c00219{height:34.901333pt;}
.h3_c00219{height:38.453333pt;}
.h5_c00219{height:38.880000pt;}
.h1_c00219{height:1009.333333pt;}
.h0_c00219{height:1009.338800pt;}
.w0_c00219{width:794.622400pt;}
.w1_c00219{width:794.666667pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:68.980533pt;}
.x4_c00219{left:377.012000pt;}
.x2_c00219{left:532.917467pt;}
.x3_c00219{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:0.908000;font-style:normal;font-weight: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_c00220;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00220{font-family:ff7_c00220;line-height:1.067000;font-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_c00220{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls2_c00220{letter-spacing:-1.188000px;}
.ls5_c00220{letter-spacing:-0.810000px;}
.ls3_c00220{letter-spacing:-0.720000px;}
.ls4_c00220{letter-spacing:-0.630000px;}
.ls1_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00220{word-spacing:-8.694000px;}
.ws2_c00220{word-spacing:0.000000px;}
.ws4_c00220{word-spacing:1.188000px;}
.ws3_c00220{word-spacing:7.056000px;}
._0_c00220{margin-left:-2755.276200px;}
._4_c00220{margin-left:-6.946800px;}
._1_c00220{margin-left:-2.256000px;}
._3_c00220{margin-left:-1.200000px;}
._2_c00220{width:1.008000px;}
._6_c00220{width:2.160000px;}
._8_c00220{width:7.776000px;}
._5_c00220{width:55.674000px;}
._7_c00220{width:59.136000px;}
.fc0_c00220{color:rgb(35,31,32);}
.fs3_c00220{font-size:42.000000px;}
.fs0_c00220{font-size:48.000000px;}
.fs4_c00220{font-size:54.000000px;}
.fs2_c00220{font-size:57.000000px;}
.fs1_c00220{font-size:60.000000px;}
.y0_c00220{bottom:0.000000px;}
.y1a_c00220{bottom:347.334900px;}
.y19_c00220{bottom:360.834900px;}
.y18_c00220{bottom:374.334900px;}
.y17_c00220{bottom:400.838700px;}
.y16_c00220{bottom:414.338700px;}
.y15_c00220{bottom:427.838700px;}
.y14_c00220{bottom:454.342650px;}
.y13_c00220{bottom:467.842650px;}
.y12_c00220{bottom:481.342650px;}
.y11_c00220{bottom:503.594700px;}
.y10_c00220{bottom:521.594700px;}
.yf_c00220{bottom:548.098650px;}
.ye_c00220{bottom:818.311050px;}
.yd_c00220{bottom:831.811050px;}
.yc_c00220{bottom:845.311050px;}
.yb_c00220{bottom:871.815000px;}
.ya_c00220{bottom:885.315000px;}
.y9_c00220{bottom:898.815000px;}
.y8_c00220{bottom:925.318950px;}
.y7_c00220{bottom:938.818950px;}
.y6_c00220{bottom:952.318950px;}
.y5_c00220{bottom:974.570850px;}
.y4_c00220{bottom:992.570850px;}
.y3_c00220{bottom:1010.570850px;}
.y2_c00220{bottom:1037.074950px;}
.y1_c00220{bottom:1093.600950px;}
.h7_c00220{height:30.282000px;}
.h5_c00220{height:34.080000px;}
.h2_c00220{height:39.264000px;}
.h3_c00220{height:39.984000px;}
.h4_c00220{height:43.260000px;}
.h6_c00220{height:43.740000px;}
.h1_c00220{height:1135.500000px;}
.h0_c00220{height:1135.506150px;}
.w0_c00220{width:893.950200px;}
.w1_c00220{width:894.000000px;}
.x0_c00220{left:0.000000px;}
.x4_c00220{left:128.626800px;}
.x5_c00220{left:141.382650px;}
.x6_c00220{left:145.634700px;}
.x2_c00220{left:188.061900px;}
.x3_c00220{left:190.513350px;}
.x1_c00220{left:800.165850px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls2_c00220{letter-spacing:-1.056000pt;}
.ls5_c00220{letter-spacing:-0.720000pt;}
.ls3_c00220{letter-spacing:-0.640000pt;}
.ls4_c00220{letter-spacing:-0.560000pt;}
.ls1_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.426667pt;}
.ws0_c00220{word-spacing:-9.685333pt;}
.ws1_c00220{word-spacing:-7.728000pt;}
.ws2_c00220{word-spacing:0.000000pt;}
.ws4_c00220{word-spacing:1.056000pt;}
.ws3_c00220{word-spacing:6.272000pt;}
._0_c00220{margin-left:-2449.134400pt;}
._4_c00220{margin-left:-6.174933pt;}
._1_c00220{margin-left:-2.005333pt;}
._3_c00220{margin-left:-1.066667pt;}
._2_c00220{width:0.896000pt;}
._6_c00220{width:1.920000pt;}
._8_c00220{width:6.912000pt;}
._5_c00220{width:49.488000pt;}
._7_c00220{width:52.565333pt;}
.fs3_c00220{font-size:37.333333pt;}
.fs0_c00220{font-size:42.666667pt;}
.fs4_c00220{font-size:48.000000pt;}
.fs2_c00220{font-size:50.666667pt;}
.fs1_c00220{font-size:53.333333pt;}
.y0_c00220{bottom:0.000000pt;}
.y1a_c00220{bottom:308.742133pt;}
.y19_c00220{bottom:320.742133pt;}
.y18_c00220{bottom:332.742133pt;}
.y17_c00220{bottom:356.301067pt;}
.y16_c00220{bottom:368.301067pt;}
.y15_c00220{bottom:380.301067pt;}
.y14_c00220{bottom:403.860133pt;}
.y13_c00220{bottom:415.860133pt;}
.y12_c00220{bottom:427.860133pt;}
.y11_c00220{bottom:447.639733pt;}
.y10_c00220{bottom:463.639733pt;}
.yf_c00220{bottom:487.198800pt;}
.ye_c00220{bottom:727.387600pt;}
.yd_c00220{bottom:739.387600pt;}
.yc_c00220{bottom:751.387600pt;}
.yb_c00220{bottom:774.946667pt;}
.ya_c00220{bottom:786.946667pt;}
.y9_c00220{bottom:798.946667pt;}
.y8_c00220{bottom:822.505733pt;}
.y7_c00220{bottom:834.505733pt;}
.y6_c00220{bottom:846.505733pt;}
.y5_c00220{bottom:866.285200pt;}
.y4_c00220{bottom:882.285200pt;}
.y3_c00220{bottom:898.285200pt;}
.y2_c00220{bottom:921.844400pt;}
.y1_c00220{bottom:972.089733pt;}
.h7_c00220{height:26.917333pt;}
.h5_c00220{height:30.293333pt;}
.h2_c00220{height:34.901333pt;}
.h3_c00220{height:35.541333pt;}
.h4_c00220{height:38.453333pt;}
.h6_c00220{height:38.880000pt;}
.h1_c00220{height:1009.333333pt;}
.h0_c00220{height:1009.338800pt;}
.w0_c00220{width:794.622400pt;}
.w1_c00220{width:794.666667pt;}
.x0_c00220{left:0.000000pt;}
.x4_c00220{left:114.334933pt;}
.x5_c00220{left:125.673467pt;}
.x6_c00220{left:129.453067pt;}
.x2_c00220{left:167.166133pt;}
.x3_c00220{left:169.345200pt;}
.x1_c00220{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls2_c00221{letter-spacing:-0.864000px;}
.ls3_c00221{letter-spacing:-0.720000px;}
.ls4_c00221{letter-spacing:-0.630000px;}
.ls1_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:59.127600px;}
.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;}
}
.ws1_c00221{word-spacing:-8.694000px;}
.ws2_c00221{word-spacing:0.000000px;}
.ws4_c00221{word-spacing:0.864000px;}
.ws3_c00221{word-spacing:7.056000px;}
.ws0_c00221{word-spacing:1574.587200px;}
._3_c00221{margin-left:-7.042800px;}
._0_c00221{margin-left:-2.112000px;}
._1_c00221{margin-left:-1.104000px;}
._5_c00221{width:1.008000px;}
._2_c00221{width:2.016000px;}
._7_c00221{width:7.776000px;}
._4_c00221{width:55.674000px;}
._6_c00221{width:59.136000px;}
.fc1_c00221{color:rgb(210,32,39);}
.fc0_c00221{color:rgb(35,31,32);}
.fs3_c00221{font-size:42.000000px;}
.fs0_c00221{font-size:48.000000px;}
.fs4_c00221{font-size:54.000000px;}
.fs2_c00221{font-size:57.000000px;}
.fs1_c00221{font-size:60.000000px;}
.y0_c00221{bottom:0.000000px;}
.y19_c00221{bottom:347.848650px;}
.y18_c00221{bottom:361.348650px;}
.y17_c00221{bottom:374.848500px;}
.y16_c00221{bottom:401.352450px;}
.y15_c00221{bottom:414.852450px;}
.y14_c00221{bottom:428.352450px;}
.y13_c00221{bottom:454.856400px;}
.y12_c00221{bottom:468.356400px;}
.y11_c00221{bottom:481.856400px;}
.y10_c00221{bottom:504.108450px;}
.yf_c00221{bottom:522.108450px;}
.ye_c00221{bottom:548.612250px;}
.yd_c00221{bottom:836.824800px;}
.yc_c00221{bottom:850.324800px;}
.yb_c00221{bottom:863.824800px;}
.ya_c00221{bottom:890.328750px;}
.y9_c00221{bottom:903.828750px;}
.y8_c00221{bottom:917.328750px;}
.y7_c00221{bottom:943.832700px;}
.y6_c00221{bottom:957.332700px;}
.y5_c00221{bottom:970.832700px;}
.y4_c00221{bottom:993.084750px;}
.y3_c00221{bottom:1011.084750px;}
.y2_c00221{bottom:1037.588700px;}
.y1_c00221{bottom:1093.600950px;}
.h6_c00221{height:30.282000px;}
.h4_c00221{height:34.080000px;}
.h2_c00221{height:39.264000px;}
.h3_c00221{height:43.260000px;}
.h5_c00221{height:43.740000px;}
.h1_c00221{height:1135.500000px;}
.h0_c00221{height:1135.506150px;}
.w0_c00221{width:893.950200px;}
.w1_c00221{width:894.000000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:77.603100px;}
.x2_c00221{left:599.532150px;}
.x3_c00221{left:612.288150px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls2_c00221{letter-spacing:-0.768000pt;}
.ls3_c00221{letter-spacing:-0.640000pt;}
.ls4_c00221{letter-spacing:-0.560000pt;}
.ls1_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:52.557867pt;}
.ws1_c00221{word-spacing:-7.728000pt;}
.ws2_c00221{word-spacing:0.000000pt;}
.ws4_c00221{word-spacing:0.768000pt;}
.ws3_c00221{word-spacing:6.272000pt;}
.ws0_c00221{word-spacing:1399.633067pt;}
._3_c00221{margin-left:-6.260267pt;}
._0_c00221{margin-left:-1.877333pt;}
._1_c00221{margin-left:-0.981333pt;}
._5_c00221{width:0.896000pt;}
._2_c00221{width:1.792000pt;}
._7_c00221{width:6.912000pt;}
._4_c00221{width:49.488000pt;}
._6_c00221{width:52.565333pt;}
.fs3_c00221{font-size:37.333333pt;}
.fs0_c00221{font-size:42.666667pt;}
.fs4_c00221{font-size:48.000000pt;}
.fs2_c00221{font-size:50.666667pt;}
.fs1_c00221{font-size:53.333333pt;}
.y0_c00221{bottom:0.000000pt;}
.y19_c00221{bottom:309.198800pt;}
.y18_c00221{bottom:321.198800pt;}
.y17_c00221{bottom:333.198667pt;}
.y16_c00221{bottom:356.757733pt;}
.y15_c00221{bottom:368.757733pt;}
.y14_c00221{bottom:380.757733pt;}
.y13_c00221{bottom:404.316800pt;}
.y12_c00221{bottom:416.316800pt;}
.y11_c00221{bottom:428.316800pt;}
.y10_c00221{bottom:448.096400pt;}
.yf_c00221{bottom:464.096400pt;}
.ye_c00221{bottom:487.655333pt;}
.yd_c00221{bottom:743.844267pt;}
.yc_c00221{bottom:755.844267pt;}
.yb_c00221{bottom:767.844267pt;}
.ya_c00221{bottom:791.403333pt;}
.y9_c00221{bottom:803.403333pt;}
.y8_c00221{bottom:815.403333pt;}
.y7_c00221{bottom:838.962400pt;}
.y6_c00221{bottom:850.962400pt;}
.y5_c00221{bottom:862.962400pt;}
.y4_c00221{bottom:882.742000pt;}
.y3_c00221{bottom:898.742000pt;}
.y2_c00221{bottom:922.301067pt;}
.y1_c00221{bottom:972.089733pt;}
.h6_c00221{height:26.917333pt;}
.h4_c00221{height:30.293333pt;}
.h2_c00221{height:34.901333pt;}
.h3_c00221{height:38.453333pt;}
.h5_c00221{height:38.880000pt;}
.h1_c00221{height:1009.333333pt;}
.h0_c00221{height:1009.338800pt;}
.w0_c00221{width:794.622400pt;}
.w1_c00221{width:794.666667pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:68.980533pt;}
.x2_c00221{left:532.917467pt;}
.x3_c00221{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00222;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00222{font-family:ff7_c00222;line-height:1.067000;font-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_c00222{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls5_c00222{letter-spacing:-0.810000px;}
.ls3_c00222{letter-spacing:-0.720000px;}
.ls4_c00222{letter-spacing:-0.630000px;}
.ls2_c00222{letter-spacing:-0.540000px;}
.ls1_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00222{word-spacing:-8.694000px;}
.ws2_c00222{word-spacing:0.000000px;}
.ws4_c00222{word-spacing:0.540000px;}
.ws3_c00222{word-spacing:7.056000px;}
._0_c00222{margin-left:-2755.276200px;}
._4_c00222{margin-left:-6.946800px;}
._8_c00222{margin-left:-4.590000px;}
._1_c00222{margin-left:-2.256000px;}
._3_c00222{margin-left:-1.200000px;}
._2_c00222{width:1.008000px;}
._7_c00222{width:7.776000px;}
._5_c00222{width:55.674000px;}
._6_c00222{width:59.136000px;}
.fc0_c00222{color:rgb(35,31,32);}
.fs3_c00222{font-size:42.000000px;}
.fs0_c00222{font-size:48.000000px;}
.fs4_c00222{font-size:54.000000px;}
.fs2_c00222{font-size:57.000000px;}
.fs1_c00222{font-size:60.000000px;}
.y0_c00222{bottom:0.000000px;}
.y1a_c00222{bottom:329.760000px;}
.y19_c00222{bottom:343.260000px;}
.y18_c00222{bottom:356.760000px;}
.y17_c00222{bottom:383.263950px;}
.y16_c00222{bottom:396.763950px;}
.y15_c00222{bottom:410.263950px;}
.y14_c00222{bottom:436.767900px;}
.y13_c00222{bottom:450.267900px;}
.y12_c00222{bottom:463.767900px;}
.y11_c00222{bottom:486.019800px;}
.y10_c00222{bottom:504.019800px;}
.yf_c00222{bottom:522.019800px;}
.ye_c00222{bottom:548.523750px;}
.yd_c00222{bottom:836.736150px;}
.yc_c00222{bottom:850.236150px;}
.yb_c00222{bottom:863.736150px;}
.ya_c00222{bottom:890.240100px;}
.y9_c00222{bottom:903.740100px;}
.y8_c00222{bottom:917.240100px;}
.y7_c00222{bottom:943.744050px;}
.y6_c00222{bottom:957.244050px;}
.y5_c00222{bottom:970.744050px;}
.y4_c00222{bottom:992.996100px;}
.y3_c00222{bottom:1010.996100px;}
.y2_c00222{bottom:1037.500050px;}
.y1_c00222{bottom:1093.600950px;}
.h7_c00222{height:30.282000px;}
.h5_c00222{height:34.080000px;}
.h2_c00222{height:39.264000px;}
.h3_c00222{height:39.984000px;}
.h4_c00222{height:43.260000px;}
.h6_c00222{height:43.740000px;}
.h1_c00222{height:1135.500000px;}
.h0_c00222{height:1135.506150px;}
.w0_c00222{width:893.950200px;}
.w1_c00222{width:894.000000px;}
.x0_c00222{left:0.000000px;}
.x4_c00222{left:128.626800px;}
.x5_c00222{left:141.382650px;}
.x6_c00222{left:145.634700px;}
.x2_c00222{left:188.061900px;}
.x3_c00222{left:190.513350px;}
.x1_c00222{left:800.165850px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls5_c00222{letter-spacing:-0.720000pt;}
.ls3_c00222{letter-spacing:-0.640000pt;}
.ls4_c00222{letter-spacing:-0.560000pt;}
.ls2_c00222{letter-spacing:-0.480000pt;}
.ls1_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:0.426667pt;}
.ws0_c00222{word-spacing:-9.685333pt;}
.ws1_c00222{word-spacing:-7.728000pt;}
.ws2_c00222{word-spacing:0.000000pt;}
.ws4_c00222{word-spacing:0.480000pt;}
.ws3_c00222{word-spacing:6.272000pt;}
._0_c00222{margin-left:-2449.134400pt;}
._4_c00222{margin-left:-6.174933pt;}
._8_c00222{margin-left:-4.080000pt;}
._1_c00222{margin-left:-2.005333pt;}
._3_c00222{margin-left:-1.066667pt;}
._2_c00222{width:0.896000pt;}
._7_c00222{width:6.912000pt;}
._5_c00222{width:49.488000pt;}
._6_c00222{width:52.565333pt;}
.fs3_c00222{font-size:37.333333pt;}
.fs0_c00222{font-size:42.666667pt;}
.fs4_c00222{font-size:48.000000pt;}
.fs2_c00222{font-size:50.666667pt;}
.fs1_c00222{font-size:53.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y1a_c00222{bottom:293.120000pt;}
.y19_c00222{bottom:305.120000pt;}
.y18_c00222{bottom:317.120000pt;}
.y17_c00222{bottom:340.679067pt;}
.y16_c00222{bottom:352.679067pt;}
.y15_c00222{bottom:364.679067pt;}
.y14_c00222{bottom:388.238133pt;}
.y13_c00222{bottom:400.238133pt;}
.y12_c00222{bottom:412.238133pt;}
.y11_c00222{bottom:432.017600pt;}
.y10_c00222{bottom:448.017600pt;}
.yf_c00222{bottom:464.017600pt;}
.ye_c00222{bottom:487.576667pt;}
.yd_c00222{bottom:743.765467pt;}
.yc_c00222{bottom:755.765467pt;}
.yb_c00222{bottom:767.765467pt;}
.ya_c00222{bottom:791.324533pt;}
.y9_c00222{bottom:803.324533pt;}
.y8_c00222{bottom:815.324533pt;}
.y7_c00222{bottom:838.883600pt;}
.y6_c00222{bottom:850.883600pt;}
.y5_c00222{bottom:862.883600pt;}
.y4_c00222{bottom:882.663200pt;}
.y3_c00222{bottom:898.663200pt;}
.y2_c00222{bottom:922.222267pt;}
.y1_c00222{bottom:972.089733pt;}
.h7_c00222{height:26.917333pt;}
.h5_c00222{height:30.293333pt;}
.h2_c00222{height:34.901333pt;}
.h3_c00222{height:35.541333pt;}
.h4_c00222{height:38.453333pt;}
.h6_c00222{height:38.880000pt;}
.h1_c00222{height:1009.333333pt;}
.h0_c00222{height:1009.338800pt;}
.w0_c00222{width:794.622400pt;}
.w1_c00222{width:794.666667pt;}
.x0_c00222{left:0.000000pt;}
.x4_c00222{left:114.334933pt;}
.x5_c00222{left:125.673467pt;}
.x6_c00222{left:129.453067pt;}
.x2_c00222{left:167.166133pt;}
.x3_c00222{left:169.345200pt;}
.x1_c00222{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.067000;font-style:normal;font-weight: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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00223{font-family:ff7_c00223;line-height:0.710000;font-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_c00223{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls1_c00223{letter-spacing:-0.720000px;}
.ls2_c00223{letter-spacing:-0.630000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-8.694000px;}
.ws2_c00223{word-spacing:-6.487200px;}
.ws3_c00223{word-spacing:0.000000px;}
.ws4_c00223{word-spacing:7.056000px;}
.ws5_c00223{word-spacing:55.674000px;}
.ws0_c00223{word-spacing:1574.587200px;}
._3_c00223{margin-left:-7.042800px;}
._0_c00223{margin-left:-2.112000px;}
._1_c00223{margin-left:-1.104000px;}
._2_c00223{width:2.016000px;}
._6_c00223{width:7.776000px;}
._4_c00223{width:55.674000px;}
._5_c00223{width:59.136000px;}
.fc0_c00223{color:rgb(35,31,32);}
.fs5_c00223{font-size:30.600000px;}
.fs6_c00223{font-size:36.000000px;}
.fs3_c00223{font-size:42.000000px;}
.fs0_c00223{font-size:48.000000px;}
.fs4_c00223{font-size:54.000000px;}
.fs2_c00223{font-size:57.000000px;}
.fs1_c00223{font-size:60.000000px;}
.y0_c00223{bottom:0.000000px;}
.y18_c00223{bottom:365.600550px;}
.y17_c00223{bottom:379.100550px;}
.y16_c00223{bottom:392.600550px;}
.y15_c00223{bottom:414.852450px;}
.y14_c00223{bottom:428.352450px;}
.y13_c00223{bottom:454.856400px;}
.y12_c00223{bottom:468.356400px;}
.y11_c00223{bottom:481.856400px;}
.y10_c00223{bottom:504.108450px;}
.yf_c00223{bottom:522.108450px;}
.ye_c00223{bottom:548.612250px;}
.y19_c00223{bottom:551.323050px;}
.yd_c00223{bottom:836.824800px;}
.yc_c00223{bottom:850.324800px;}
.yb_c00223{bottom:863.824800px;}
.ya_c00223{bottom:890.328750px;}
.y9_c00223{bottom:903.828750px;}
.y8_c00223{bottom:917.328750px;}
.y7_c00223{bottom:943.832700px;}
.y6_c00223{bottom:957.332700px;}
.y5_c00223{bottom:970.832700px;}
.y4_c00223{bottom:993.084750px;}
.y3_c00223{bottom:1011.084750px;}
.y2_c00223{bottom:1037.588700px;}
.y1_c00223{bottom:1093.600950px;}
.h7_c00223{height:25.200000px;}
.h6_c00223{height:30.282000px;}
.h4_c00223{height:34.080000px;}
.h2_c00223{height:39.264000px;}
.h3_c00223{height:43.260000px;}
.h5_c00223{height:43.740000px;}
.h1_c00223{height:1135.500000px;}
.h0_c00223{height:1135.506150px;}
.w0_c00223{width:893.950200px;}
.w1_c00223{width:894.000000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:77.603100px;}
.x4_c00223{left:424.138500px;}
.x2_c00223{left:599.532150px;}
.x3_c00223{left:612.288150px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls1_c00223{letter-spacing:-0.640000pt;}
.ls2_c00223{letter-spacing:-0.560000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws1_c00223{word-spacing:-7.728000pt;}
.ws2_c00223{word-spacing:-5.766400pt;}
.ws3_c00223{word-spacing:0.000000pt;}
.ws4_c00223{word-spacing:6.272000pt;}
.ws5_c00223{word-spacing:49.488000pt;}
.ws0_c00223{word-spacing:1399.633067pt;}
._3_c00223{margin-left:-6.260267pt;}
._0_c00223{margin-left:-1.877333pt;}
._1_c00223{margin-left:-0.981333pt;}
._2_c00223{width:1.792000pt;}
._6_c00223{width:6.912000pt;}
._4_c00223{width:49.488000pt;}
._5_c00223{width:52.565333pt;}
.fs5_c00223{font-size:27.200000pt;}
.fs6_c00223{font-size:32.000000pt;}
.fs3_c00223{font-size:37.333333pt;}
.fs0_c00223{font-size:42.666667pt;}
.fs4_c00223{font-size:48.000000pt;}
.fs2_c00223{font-size:50.666667pt;}
.fs1_c00223{font-size:53.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y18_c00223{bottom:324.978267pt;}
.y17_c00223{bottom:336.978267pt;}
.y16_c00223{bottom:348.978267pt;}
.y15_c00223{bottom:368.757733pt;}
.y14_c00223{bottom:380.757733pt;}
.y13_c00223{bottom:404.316800pt;}
.y12_c00223{bottom:416.316800pt;}
.y11_c00223{bottom:428.316800pt;}
.y10_c00223{bottom:448.096400pt;}
.yf_c00223{bottom:464.096400pt;}
.ye_c00223{bottom:487.655333pt;}
.y19_c00223{bottom:490.064933pt;}
.yd_c00223{bottom:743.844267pt;}
.yc_c00223{bottom:755.844267pt;}
.yb_c00223{bottom:767.844267pt;}
.ya_c00223{bottom:791.403333pt;}
.y9_c00223{bottom:803.403333pt;}
.y8_c00223{bottom:815.403333pt;}
.y7_c00223{bottom:838.962400pt;}
.y6_c00223{bottom:850.962400pt;}
.y5_c00223{bottom:862.962400pt;}
.y4_c00223{bottom:882.742000pt;}
.y3_c00223{bottom:898.742000pt;}
.y2_c00223{bottom:922.301067pt;}
.y1_c00223{bottom:972.089733pt;}
.h7_c00223{height:22.400000pt;}
.h6_c00223{height:26.917333pt;}
.h4_c00223{height:30.293333pt;}
.h2_c00223{height:34.901333pt;}
.h3_c00223{height:38.453333pt;}
.h5_c00223{height:38.880000pt;}
.h1_c00223{height:1009.333333pt;}
.h0_c00223{height:1009.338800pt;}
.w0_c00223{width:794.622400pt;}
.w1_c00223{width:794.666667pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:68.980533pt;}
.x4_c00223{left:377.012000pt;}
.x2_c00223{left:532.917467pt;}
.x3_c00223{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00224{font-family:ff6_c00224;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00224;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00224{font-family:ff7_c00224;line-height:1.067000;font-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_c00224{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls4_c00224{letter-spacing:-0.810000px;}
.ls2_c00224{letter-spacing:-0.720000px;}
.ls3_c00224{letter-spacing:-0.630000px;}
.ls1_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00224{word-spacing:-10.896000px;}
.ws1_c00224{word-spacing:-8.694000px;}
.ws2_c00224{word-spacing:0.000000px;}
.ws3_c00224{word-spacing:7.056000px;}
._0_c00224{margin-left:-2755.276200px;}
._4_c00224{margin-left:-6.946800px;}
._1_c00224{margin-left:-2.256000px;}
._3_c00224{margin-left:-1.200000px;}
._2_c00224{width:1.008000px;}
._7_c00224{width:7.776000px;}
._5_c00224{width:55.674000px;}
._6_c00224{width:59.136000px;}
.fc0_c00224{color:rgb(35,31,32);}
.fs3_c00224{font-size:42.000000px;}
.fs0_c00224{font-size:48.000000px;}
.fs4_c00224{font-size:54.000000px;}
.fs2_c00224{font-size:57.000000px;}
.fs1_c00224{font-size:60.000000px;}
.y0_c00224{bottom:0.000000px;}
.y19_c00224{bottom:347.334900px;}
.y18_c00224{bottom:360.834900px;}
.y17_c00224{bottom:374.334900px;}
.y16_c00224{bottom:400.838700px;}
.y15_c00224{bottom:414.338700px;}
.y14_c00224{bottom:427.838700px;}
.y13_c00224{bottom:454.342650px;}
.y12_c00224{bottom:467.842650px;}
.y11_c00224{bottom:481.342650px;}
.y10_c00224{bottom:503.594700px;}
.yf_c00224{bottom:521.594700px;}
.ye_c00224{bottom:548.098650px;}
.yd_c00224{bottom:836.311050px;}
.yc_c00224{bottom:849.811050px;}
.yb_c00224{bottom:863.311050px;}
.ya_c00224{bottom:889.815000px;}
.y9_c00224{bottom:903.315000px;}
.y8_c00224{bottom:916.815000px;}
.y7_c00224{bottom:943.318950px;}
.y6_c00224{bottom:956.818950px;}
.y5_c00224{bottom:970.318950px;}
.y4_c00224{bottom:992.570850px;}
.y3_c00224{bottom:1010.570850px;}
.y2_c00224{bottom:1037.074950px;}
.y1_c00224{bottom:1093.600950px;}
.h7_c00224{height:30.282000px;}
.h5_c00224{height:34.080000px;}
.h2_c00224{height:39.264000px;}
.h3_c00224{height:39.984000px;}
.h4_c00224{height:43.260000px;}
.h6_c00224{height:43.740000px;}
.h1_c00224{height:1135.500000px;}
.h0_c00224{height:1135.506150px;}
.w0_c00224{width:893.950200px;}
.w1_c00224{width:894.000000px;}
.x0_c00224{left:0.000000px;}
.x4_c00224{left:128.626800px;}
.x5_c00224{left:141.382650px;}
.x2_c00224{left:188.061900px;}
.x3_c00224{left:190.513350px;}
.x1_c00224{left:800.165850px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls4_c00224{letter-spacing:-0.720000pt;}
.ls2_c00224{letter-spacing:-0.640000pt;}
.ls3_c00224{letter-spacing:-0.560000pt;}
.ls1_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.426667pt;}
.ws0_c00224{word-spacing:-9.685333pt;}
.ws1_c00224{word-spacing:-7.728000pt;}
.ws2_c00224{word-spacing:0.000000pt;}
.ws3_c00224{word-spacing:6.272000pt;}
._0_c00224{margin-left:-2449.134400pt;}
._4_c00224{margin-left:-6.174933pt;}
._1_c00224{margin-left:-2.005333pt;}
._3_c00224{margin-left:-1.066667pt;}
._2_c00224{width:0.896000pt;}
._7_c00224{width:6.912000pt;}
._5_c00224{width:49.488000pt;}
._6_c00224{width:52.565333pt;}
.fs3_c00224{font-size:37.333333pt;}
.fs0_c00224{font-size:42.666667pt;}
.fs4_c00224{font-size:48.000000pt;}
.fs2_c00224{font-size:50.666667pt;}
.fs1_c00224{font-size:53.333333pt;}
.y0_c00224{bottom:0.000000pt;}
.y19_c00224{bottom:308.742133pt;}
.y18_c00224{bottom:320.742133pt;}
.y17_c00224{bottom:332.742133pt;}
.y16_c00224{bottom:356.301067pt;}
.y15_c00224{bottom:368.301067pt;}
.y14_c00224{bottom:380.301067pt;}
.y13_c00224{bottom:403.860133pt;}
.y12_c00224{bottom:415.860133pt;}
.y11_c00224{bottom:427.860133pt;}
.y10_c00224{bottom:447.639733pt;}
.yf_c00224{bottom:463.639733pt;}
.ye_c00224{bottom:487.198800pt;}
.yd_c00224{bottom:743.387600pt;}
.yc_c00224{bottom:755.387600pt;}
.yb_c00224{bottom:767.387600pt;}
.ya_c00224{bottom:790.946667pt;}
.y9_c00224{bottom:802.946667pt;}
.y8_c00224{bottom:814.946667pt;}
.y7_c00224{bottom:838.505733pt;}
.y6_c00224{bottom:850.505733pt;}
.y5_c00224{bottom:862.505733pt;}
.y4_c00224{bottom:882.285200pt;}
.y3_c00224{bottom:898.285200pt;}
.y2_c00224{bottom:921.844400pt;}
.y1_c00224{bottom:972.089733pt;}
.h7_c00224{height:26.917333pt;}
.h5_c00224{height:30.293333pt;}
.h2_c00224{height:34.901333pt;}
.h3_c00224{height:35.541333pt;}
.h4_c00224{height:38.453333pt;}
.h6_c00224{height:38.880000pt;}
.h1_c00224{height:1009.333333pt;}
.h0_c00224{height:1009.338800pt;}
.w0_c00224{width:794.622400pt;}
.w1_c00224{width:794.666667pt;}
.x0_c00224{left:0.000000pt;}
.x4_c00224{left:114.334933pt;}
.x5_c00224{left:125.673467pt;}
.x2_c00224{left:167.166133pt;}
.x3_c00224{left:169.345200pt;}
.x1_c00224{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls2_c00225{letter-spacing:-0.720000px;}
.ls3_c00225{letter-spacing:-0.630000px;}
.ls1_c00225{letter-spacing:-0.540000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00225{word-spacing:-8.694000px;}
.ws2_c00225{word-spacing:0.000000px;}
.ws4_c00225{word-spacing:0.540000px;}
.ws3_c00225{word-spacing:7.056000px;}
.ws0_c00225{word-spacing:1574.587200px;}
._3_c00225{margin-left:-7.042800px;}
._7_c00225{margin-left:-5.238000px;}
._0_c00225{margin-left:-2.112000px;}
._1_c00225{margin-left:-1.104000px;}
._2_c00225{width:2.016000px;}
._6_c00225{width:7.776000px;}
._4_c00225{width:55.674000px;}
._5_c00225{width:59.136000px;}
.fc0_c00225{color:rgb(35,31,32);}
.fs3_c00225{font-size:42.000000px;}
.fs0_c00225{font-size:48.000000px;}
.fs4_c00225{font-size:54.000000px;}
.fs2_c00225{font-size:57.000000px;}
.fs1_c00225{font-size:60.000000px;}
.y0_c00225{bottom:0.000000px;}
.y19_c00225{bottom:352.100550px;}
.y18_c00225{bottom:365.600550px;}
.y17_c00225{bottom:379.100550px;}
.y16_c00225{bottom:401.352450px;}
.y15_c00225{bottom:414.852450px;}
.y14_c00225{bottom:428.352450px;}
.y13_c00225{bottom:454.856400px;}
.y12_c00225{bottom:468.356400px;}
.y11_c00225{bottom:481.856400px;}
.y10_c00225{bottom:504.108450px;}
.yf_c00225{bottom:522.108450px;}
.ye_c00225{bottom:548.612250px;}
.yd_c00225{bottom:836.824800px;}
.yc_c00225{bottom:850.324800px;}
.yb_c00225{bottom:863.824800px;}
.ya_c00225{bottom:890.328750px;}
.y9_c00225{bottom:903.828750px;}
.y8_c00225{bottom:917.328750px;}
.y7_c00225{bottom:943.832700px;}
.y6_c00225{bottom:957.332700px;}
.y5_c00225{bottom:970.832700px;}
.y4_c00225{bottom:993.084750px;}
.y3_c00225{bottom:1011.084750px;}
.y2_c00225{bottom:1037.588700px;}
.y1_c00225{bottom:1093.600950px;}
.h6_c00225{height:30.282000px;}
.h4_c00225{height:34.080000px;}
.h2_c00225{height:39.264000px;}
.h3_c00225{height:43.260000px;}
.h5_c00225{height:43.740000px;}
.h1_c00225{height:1135.500000px;}
.h0_c00225{height:1135.506150px;}
.w0_c00225{width:893.950200px;}
.w1_c00225{width:894.000000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:77.603100px;}
.x2_c00225{left:599.532150px;}
.x3_c00225{left:612.288150px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls2_c00225{letter-spacing:-0.640000pt;}
.ls3_c00225{letter-spacing:-0.560000pt;}
.ls1_c00225{letter-spacing:-0.480000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws1_c00225{word-spacing:-7.728000pt;}
.ws2_c00225{word-spacing:0.000000pt;}
.ws4_c00225{word-spacing:0.480000pt;}
.ws3_c00225{word-spacing:6.272000pt;}
.ws0_c00225{word-spacing:1399.633067pt;}
._3_c00225{margin-left:-6.260267pt;}
._7_c00225{margin-left:-4.656000pt;}
._0_c00225{margin-left:-1.877333pt;}
._1_c00225{margin-left:-0.981333pt;}
._2_c00225{width:1.792000pt;}
._6_c00225{width:6.912000pt;}
._4_c00225{width:49.488000pt;}
._5_c00225{width:52.565333pt;}
.fs3_c00225{font-size:37.333333pt;}
.fs0_c00225{font-size:42.666667pt;}
.fs4_c00225{font-size:48.000000pt;}
.fs2_c00225{font-size:50.666667pt;}
.fs1_c00225{font-size:53.333333pt;}
.y0_c00225{bottom:0.000000pt;}
.y19_c00225{bottom:312.978267pt;}
.y18_c00225{bottom:324.978267pt;}
.y17_c00225{bottom:336.978267pt;}
.y16_c00225{bottom:356.757733pt;}
.y15_c00225{bottom:368.757733pt;}
.y14_c00225{bottom:380.757733pt;}
.y13_c00225{bottom:404.316800pt;}
.y12_c00225{bottom:416.316800pt;}
.y11_c00225{bottom:428.316800pt;}
.y10_c00225{bottom:448.096400pt;}
.yf_c00225{bottom:464.096400pt;}
.ye_c00225{bottom:487.655333pt;}
.yd_c00225{bottom:743.844267pt;}
.yc_c00225{bottom:755.844267pt;}
.yb_c00225{bottom:767.844267pt;}
.ya_c00225{bottom:791.403333pt;}
.y9_c00225{bottom:803.403333pt;}
.y8_c00225{bottom:815.403333pt;}
.y7_c00225{bottom:838.962400pt;}
.y6_c00225{bottom:850.962400pt;}
.y5_c00225{bottom:862.962400pt;}
.y4_c00225{bottom:882.742000pt;}
.y3_c00225{bottom:898.742000pt;}
.y2_c00225{bottom:922.301067pt;}
.y1_c00225{bottom:972.089733pt;}
.h6_c00225{height:26.917333pt;}
.h4_c00225{height:30.293333pt;}
.h2_c00225{height:34.901333pt;}
.h3_c00225{height:38.453333pt;}
.h5_c00225{height:38.880000pt;}
.h1_c00225{height:1009.333333pt;}
.h0_c00225{height:1009.338800pt;}
.w0_c00225{width:794.622400pt;}
.w1_c00225{width:794.666667pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:68.980533pt;}
.x2_c00225{left:532.917467pt;}
.x3_c00225{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00226;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00226;src:url('chunks/assets/font_5c5df1a273e4a14e4058642c.woff2')format("woff");}.ff7_c00226{font-family:ff7_c00226;line-height:1.067000;font-style:normal;font-weight: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_c00226;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00226{font-family:ff8_c00226;line-height:0.710000;font-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_c00226{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls4_c00226{letter-spacing:-0.810000px;}
.ls2_c00226{letter-spacing:-0.720000px;}
.ls3_c00226{letter-spacing:-0.630000px;}
.ls1_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00226{word-spacing:-8.694000px;}
.ws2_c00226{word-spacing:-6.487200px;}
.ws3_c00226{word-spacing:0.000000px;}
.ws4_c00226{word-spacing:7.056000px;}
._0_c00226{margin-left:-2755.276200px;}
._4_c00226{margin-left:-6.946800px;}
._1_c00226{margin-left:-2.256000px;}
._3_c00226{margin-left:-1.200000px;}
._2_c00226{width:1.008000px;}
._7_c00226{width:7.776000px;}
._5_c00226{width:55.674000px;}
._6_c00226{width:59.136000px;}
.fc0_c00226{color:rgb(35,31,32);}
.fs5_c00226{font-size:30.600000px;}
.fs6_c00226{font-size:36.000000px;}
.fs3_c00226{font-size:42.000000px;}
.fs0_c00226{font-size:48.000000px;}
.fs4_c00226{font-size:54.000000px;}
.fs2_c00226{font-size:57.000000px;}
.fs1_c00226{font-size:60.000000px;}
.y0_c00226{bottom:0.000000px;}
.y18_c00226{bottom:365.086800px;}
.y17_c00226{bottom:378.586800px;}
.y16_c00226{bottom:392.086800px;}
.y15_c00226{bottom:414.338700px;}
.y14_c00226{bottom:427.838700px;}
.y13_c00226{bottom:454.342650px;}
.y12_c00226{bottom:467.842650px;}
.y11_c00226{bottom:481.342650px;}
.y10_c00226{bottom:503.594700px;}
.yf_c00226{bottom:521.594700px;}
.ye_c00226{bottom:548.098650px;}
.y19_c00226{bottom:551.323050px;}
.yd_c00226{bottom:837.374100px;}
.yc_c00226{bottom:850.874100px;}
.yb_c00226{bottom:864.374100px;}
.ya_c00226{bottom:890.878050px;}
.y9_c00226{bottom:904.378050px;}
.y8_c00226{bottom:917.878050px;}
.y7_c00226{bottom:944.382000px;}
.y6_c00226{bottom:957.882000px;}
.y5_c00226{bottom:971.382000px;}
.y4_c00226{bottom:993.633900px;}
.y3_c00226{bottom:1011.633900px;}
.y2_c00226{bottom:1038.137850px;}
.y1_c00226{bottom:1093.600950px;}
.h8_c00226{height:25.200000px;}
.h7_c00226{height:30.282000px;}
.h5_c00226{height:34.080000px;}
.h2_c00226{height:39.264000px;}
.h3_c00226{height:39.984000px;}
.h4_c00226{height:43.260000px;}
.h6_c00226{height:43.740000px;}
.h1_c00226{height:1135.500000px;}
.h0_c00226{height:1135.506150px;}
.w0_c00226{width:893.950200px;}
.w1_c00226{width:894.000000px;}
.x0_c00226{left:0.000000px;}
.x4_c00226{left:128.626800px;}
.x5_c00226{left:141.382650px;}
.x2_c00226{left:188.061900px;}
.x3_c00226{left:190.513350px;}
.x6_c00226{left:321.919050px;}
.x1_c00226{left:800.165850px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls4_c00226{letter-spacing:-0.720000pt;}
.ls2_c00226{letter-spacing:-0.640000pt;}
.ls3_c00226{letter-spacing:-0.560000pt;}
.ls1_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.426667pt;}
.ws0_c00226{word-spacing:-9.685333pt;}
.ws1_c00226{word-spacing:-7.728000pt;}
.ws2_c00226{word-spacing:-5.766400pt;}
.ws3_c00226{word-spacing:0.000000pt;}
.ws4_c00226{word-spacing:6.272000pt;}
._0_c00226{margin-left:-2449.134400pt;}
._4_c00226{margin-left:-6.174933pt;}
._1_c00226{margin-left:-2.005333pt;}
._3_c00226{margin-left:-1.066667pt;}
._2_c00226{width:0.896000pt;}
._7_c00226{width:6.912000pt;}
._5_c00226{width:49.488000pt;}
._6_c00226{width:52.565333pt;}
.fs5_c00226{font-size:27.200000pt;}
.fs6_c00226{font-size:32.000000pt;}
.fs3_c00226{font-size:37.333333pt;}
.fs0_c00226{font-size:42.666667pt;}
.fs4_c00226{font-size:48.000000pt;}
.fs2_c00226{font-size:50.666667pt;}
.fs1_c00226{font-size:53.333333pt;}
.y0_c00226{bottom:0.000000pt;}
.y18_c00226{bottom:324.521600pt;}
.y17_c00226{bottom:336.521600pt;}
.y16_c00226{bottom:348.521600pt;}
.y15_c00226{bottom:368.301067pt;}
.y14_c00226{bottom:380.301067pt;}
.y13_c00226{bottom:403.860133pt;}
.y12_c00226{bottom:415.860133pt;}
.y11_c00226{bottom:427.860133pt;}
.y10_c00226{bottom:447.639733pt;}
.yf_c00226{bottom:463.639733pt;}
.ye_c00226{bottom:487.198800pt;}
.y19_c00226{bottom:490.064933pt;}
.yd_c00226{bottom:744.332533pt;}
.yc_c00226{bottom:756.332533pt;}
.yb_c00226{bottom:768.332533pt;}
.ya_c00226{bottom:791.891600pt;}
.y9_c00226{bottom:803.891600pt;}
.y8_c00226{bottom:815.891600pt;}
.y7_c00226{bottom:839.450667pt;}
.y6_c00226{bottom:851.450667pt;}
.y5_c00226{bottom:863.450667pt;}
.y4_c00226{bottom:883.230133pt;}
.y3_c00226{bottom:899.230133pt;}
.y2_c00226{bottom:922.789200pt;}
.y1_c00226{bottom:972.089733pt;}
.h8_c00226{height:22.400000pt;}
.h7_c00226{height:26.917333pt;}
.h5_c00226{height:30.293333pt;}
.h2_c00226{height:34.901333pt;}
.h3_c00226{height:35.541333pt;}
.h4_c00226{height:38.453333pt;}
.h6_c00226{height:38.880000pt;}
.h1_c00226{height:1009.333333pt;}
.h0_c00226{height:1009.338800pt;}
.w0_c00226{width:794.622400pt;}
.w1_c00226{width:794.666667pt;}
.x0_c00226{left:0.000000pt;}
.x4_c00226{left:114.334933pt;}
.x5_c00226{left:125.673467pt;}
.x2_c00226{left:167.166133pt;}
.x3_c00226{left:169.345200pt;}
.x6_c00226{left:286.150267pt;}
.x1_c00226{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00227;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00227{font-family:ff6_c00227;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls1_c00227{letter-spacing:-0.720000px;}
.ls2_c00227{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00227{word-spacing:-8.694000px;}
.ws2_c00227{word-spacing:0.000000px;}
.ws3_c00227{word-spacing:7.056000px;}
.ws0_c00227{word-spacing:1574.587200px;}
._3_c00227{margin-left:-7.042800px;}
._0_c00227{margin-left:-2.112000px;}
._1_c00227{margin-left:-1.104000px;}
._2_c00227{width:2.016000px;}
._6_c00227{width:7.776000px;}
._4_c00227{width:55.674000px;}
._5_c00227{width:59.136000px;}
.fc0_c00227{color:rgb(35,31,32);}
.fs3_c00227{font-size:42.000000px;}
.fs0_c00227{font-size:48.000000px;}
.fs4_c00227{font-size:54.000000px;}
.fs2_c00227{font-size:57.000000px;}
.fs1_c00227{font-size:60.000000px;}
.y0_c00227{bottom:0.000000px;}
.y19_c00227{bottom:347.848650px;}
.y18_c00227{bottom:361.348650px;}
.y17_c00227{bottom:374.848500px;}
.y16_c00227{bottom:401.352450px;}
.y15_c00227{bottom:414.852450px;}
.y14_c00227{bottom:428.352450px;}
.y13_c00227{bottom:454.856400px;}
.y12_c00227{bottom:468.356400px;}
.y11_c00227{bottom:481.856400px;}
.y10_c00227{bottom:504.108450px;}
.yf_c00227{bottom:522.108450px;}
.ye_c00227{bottom:548.612250px;}
.yd_c00227{bottom:836.824800px;}
.yc_c00227{bottom:850.324800px;}
.yb_c00227{bottom:863.824800px;}
.ya_c00227{bottom:890.328750px;}
.y9_c00227{bottom:903.828750px;}
.y8_c00227{bottom:917.328750px;}
.y7_c00227{bottom:943.832700px;}
.y6_c00227{bottom:957.332700px;}
.y5_c00227{bottom:970.832700px;}
.y4_c00227{bottom:993.084750px;}
.y3_c00227{bottom:1011.084750px;}
.y2_c00227{bottom:1037.588700px;}
.y1_c00227{bottom:1093.600950px;}
.h6_c00227{height:30.282000px;}
.h4_c00227{height:34.080000px;}
.h2_c00227{height:39.264000px;}
.h3_c00227{height:43.260000px;}
.h5_c00227{height:43.740000px;}
.h1_c00227{height:1135.500000px;}
.h0_c00227{height:1135.506150px;}
.w0_c00227{width:893.950200px;}
.w1_c00227{width:894.000000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:77.603100px;}
.x2_c00227{left:599.532150px;}
.x3_c00227{left:612.288150px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls1_c00227{letter-spacing:-0.640000pt;}
.ls2_c00227{letter-spacing:-0.560000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws1_c00227{word-spacing:-7.728000pt;}
.ws2_c00227{word-spacing:0.000000pt;}
.ws3_c00227{word-spacing:6.272000pt;}
.ws0_c00227{word-spacing:1399.633067pt;}
._3_c00227{margin-left:-6.260267pt;}
._0_c00227{margin-left:-1.877333pt;}
._1_c00227{margin-left:-0.981333pt;}
._2_c00227{width:1.792000pt;}
._6_c00227{width:6.912000pt;}
._4_c00227{width:49.488000pt;}
._5_c00227{width:52.565333pt;}
.fs3_c00227{font-size:37.333333pt;}
.fs0_c00227{font-size:42.666667pt;}
.fs4_c00227{font-size:48.000000pt;}
.fs2_c00227{font-size:50.666667pt;}
.fs1_c00227{font-size:53.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y19_c00227{bottom:309.198800pt;}
.y18_c00227{bottom:321.198800pt;}
.y17_c00227{bottom:333.198667pt;}
.y16_c00227{bottom:356.757733pt;}
.y15_c00227{bottom:368.757733pt;}
.y14_c00227{bottom:380.757733pt;}
.y13_c00227{bottom:404.316800pt;}
.y12_c00227{bottom:416.316800pt;}
.y11_c00227{bottom:428.316800pt;}
.y10_c00227{bottom:448.096400pt;}
.yf_c00227{bottom:464.096400pt;}
.ye_c00227{bottom:487.655333pt;}
.yd_c00227{bottom:743.844267pt;}
.yc_c00227{bottom:755.844267pt;}
.yb_c00227{bottom:767.844267pt;}
.ya_c00227{bottom:791.403333pt;}
.y9_c00227{bottom:803.403333pt;}
.y8_c00227{bottom:815.403333pt;}
.y7_c00227{bottom:838.962400pt;}
.y6_c00227{bottom:850.962400pt;}
.y5_c00227{bottom:862.962400pt;}
.y4_c00227{bottom:882.742000pt;}
.y3_c00227{bottom:898.742000pt;}
.y2_c00227{bottom:922.301067pt;}
.y1_c00227{bottom:972.089733pt;}
.h6_c00227{height:26.917333pt;}
.h4_c00227{height:30.293333pt;}
.h2_c00227{height:34.901333pt;}
.h3_c00227{height:38.453333pt;}
.h5_c00227{height:38.880000pt;}
.h1_c00227{height:1009.333333pt;}
.h0_c00227{height:1009.338800pt;}
.w0_c00227{width:794.622400pt;}
.w1_c00227{width:794.666667pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:68.980533pt;}
.x2_c00227{left:532.917467pt;}
.x3_c00227{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00228;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00228{font-family:ff6_c00228;line-height:0.908000;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00228{font-family:ff7_c00228;line-height:1.067000;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00228{font-family:ff8_c00228;line-height:0.710000;font-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_c00228{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls6_c00228{letter-spacing:-1.674000px;}
.ls5_c00228{letter-spacing:-1.620000px;}
.ls4_c00228{letter-spacing:-0.810000px;}
.ls2_c00228{letter-spacing:-0.720000px;}
.ls3_c00228{letter-spacing:-0.630000px;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00228{word-spacing:-8.694000px;}
.ws2_c00228{word-spacing:-6.487200px;}
.ws3_c00228{word-spacing:0.000000px;}
.ws5_c00228{word-spacing:0.864000px;}
.ws4_c00228{word-spacing:7.056000px;}
._0_c00228{margin-left:-2755.276200px;}
._4_c00228{margin-left:-6.946800px;}
._1_c00228{margin-left:-2.256000px;}
._3_c00228{margin-left:-1.200000px;}
._2_c00228{width:1.008000px;}
._8_c00228{width:2.088000px;}
._7_c00228{width:7.776000px;}
._5_c00228{width:55.674000px;}
._6_c00228{width:59.136000px;}
.fc0_c00228{color:rgb(35,31,32);}
.fs5_c00228{font-size:30.600000px;}
.fs6_c00228{font-size:36.000000px;}
.fs3_c00228{font-size:42.000000px;}
.fs0_c00228{font-size:48.000000px;}
.fs4_c00228{font-size:54.000000px;}
.fs2_c00228{font-size:57.000000px;}
.fs1_c00228{font-size:60.000000px;}
.y0_c00228{bottom:0.000000px;}
.y19_c00228{bottom:324.834900px;}
.y18_c00228{bottom:338.334900px;}
.y17_c00228{bottom:351.834900px;}
.y16_c00228{bottom:378.338700px;}
.y15_c00228{bottom:391.838700px;}
.y14_c00228{bottom:418.342650px;}
.y13_c00228{bottom:431.842650px;}
.y12_c00228{bottom:445.342650px;}
.y11_c00228{bottom:467.599200px;}
.y10_c00228{bottom:485.594700px;}
.yf_c00228{bottom:503.594700px;}
.ye_c00228{bottom:521.594700px;}
.yd_c00228{bottom:548.098650px;}
.y1a_c00228{bottom:551.323050px;}
.yc_c00228{bottom:849.811050px;}
.yb_c00228{bottom:863.311050px;}
.ya_c00228{bottom:876.811050px;}
.y9_c00228{bottom:903.315000px;}
.y8_c00228{bottom:916.815000px;}
.y7_c00228{bottom:943.318950px;}
.y6_c00228{bottom:956.818950px;}
.y5_c00228{bottom:970.318950px;}
.y4_c00228{bottom:992.570850px;}
.y3_c00228{bottom:1010.570850px;}
.y2_c00228{bottom:1037.074950px;}
.y1b_c00228{bottom:1040.299350px;}
.y1_c00228{bottom:1093.600950px;}
.h8_c00228{height:25.200000px;}
.h7_c00228{height:30.282000px;}
.h5_c00228{height:34.080000px;}
.h2_c00228{height:39.264000px;}
.h3_c00228{height:39.984000px;}
.h4_c00228{height:43.260000px;}
.h6_c00228{height:43.740000px;}
.h1_c00228{height:1135.500000px;}
.h0_c00228{height:1135.506150px;}
.w0_c00228{width:893.950200px;}
.w1_c00228{width:894.000000px;}
.x0_c00228{left:0.000000px;}
.x4_c00228{left:128.626800px;}
.x5_c00228{left:141.382650px;}
.x6_c00228{left:145.634700px;}
.x2_c00228{left:188.061900px;}
.x3_c00228{left:190.513350px;}
.x7_c00228{left:321.919050px;}
.x1_c00228{left:800.165850px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls6_c00228{letter-spacing:-1.488000pt;}
.ls5_c00228{letter-spacing:-1.440000pt;}
.ls4_c00228{letter-spacing:-0.720000pt;}
.ls2_c00228{letter-spacing:-0.640000pt;}
.ls3_c00228{letter-spacing:-0.560000pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.426667pt;}
.ws0_c00228{word-spacing:-9.685333pt;}
.ws1_c00228{word-spacing:-7.728000pt;}
.ws2_c00228{word-spacing:-5.766400pt;}
.ws3_c00228{word-spacing:0.000000pt;}
.ws5_c00228{word-spacing:0.768000pt;}
.ws4_c00228{word-spacing:6.272000pt;}
._0_c00228{margin-left:-2449.134400pt;}
._4_c00228{margin-left:-6.174933pt;}
._1_c00228{margin-left:-2.005333pt;}
._3_c00228{margin-left:-1.066667pt;}
._2_c00228{width:0.896000pt;}
._8_c00228{width:1.856000pt;}
._7_c00228{width:6.912000pt;}
._5_c00228{width:49.488000pt;}
._6_c00228{width:52.565333pt;}
.fs5_c00228{font-size:27.200000pt;}
.fs6_c00228{font-size:32.000000pt;}
.fs3_c00228{font-size:37.333333pt;}
.fs0_c00228{font-size:42.666667pt;}
.fs4_c00228{font-size:48.000000pt;}
.fs2_c00228{font-size:50.666667pt;}
.fs1_c00228{font-size:53.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y19_c00228{bottom:288.742133pt;}
.y18_c00228{bottom:300.742133pt;}
.y17_c00228{bottom:312.742133pt;}
.y16_c00228{bottom:336.301067pt;}
.y15_c00228{bottom:348.301067pt;}
.y14_c00228{bottom:371.860133pt;}
.y13_c00228{bottom:383.860133pt;}
.y12_c00228{bottom:395.860133pt;}
.y11_c00228{bottom:415.643733pt;}
.y10_c00228{bottom:431.639733pt;}
.yf_c00228{bottom:447.639733pt;}
.ye_c00228{bottom:463.639733pt;}
.yd_c00228{bottom:487.198800pt;}
.y1a_c00228{bottom:490.064933pt;}
.yc_c00228{bottom:755.387600pt;}
.yb_c00228{bottom:767.387600pt;}
.ya_c00228{bottom:779.387600pt;}
.y9_c00228{bottom:802.946667pt;}
.y8_c00228{bottom:814.946667pt;}
.y7_c00228{bottom:838.505733pt;}
.y6_c00228{bottom:850.505733pt;}
.y5_c00228{bottom:862.505733pt;}
.y4_c00228{bottom:882.285200pt;}
.y3_c00228{bottom:898.285200pt;}
.y2_c00228{bottom:921.844400pt;}
.y1b_c00228{bottom:924.710533pt;}
.y1_c00228{bottom:972.089733pt;}
.h8_c00228{height:22.400000pt;}
.h7_c00228{height:26.917333pt;}
.h5_c00228{height:30.293333pt;}
.h2_c00228{height:34.901333pt;}
.h3_c00228{height:35.541333pt;}
.h4_c00228{height:38.453333pt;}
.h6_c00228{height:38.880000pt;}
.h1_c00228{height:1009.333333pt;}
.h0_c00228{height:1009.338800pt;}
.w0_c00228{width:794.622400pt;}
.w1_c00228{width:794.666667pt;}
.x0_c00228{left:0.000000pt;}
.x4_c00228{left:114.334933pt;}
.x5_c00228{left:125.673467pt;}
.x6_c00228{left:129.453067pt;}
.x2_c00228{left:167.166133pt;}
.x3_c00228{left:169.345200pt;}
.x7_c00228{left:286.150267pt;}
.x1_c00228{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00229;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00229{font-family:ff6_c00229;line-height:1.067000;font-style:normal;font-weight: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_c00229;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00229{font-family:ff7_c00229;line-height:0.710000;font-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_c00229{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls1_c00229{letter-spacing:-1.566000px;}
.ls4_c00229{letter-spacing:-0.864000px;}
.ls2_c00229{letter-spacing:-0.720000px;}
.ls3_c00229{letter-spacing:-0.630000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00229{word-spacing:-6.487200px;}
.ws3_c00229{word-spacing:0.000000px;}
.ws4_c00229{word-spacing:7.056000px;}
.ws6_c00229{word-spacing:56.538000px;}
.ws5_c00229{word-spacing:57.240000px;}
.ws0_c00229{word-spacing:1574.587200px;}
._3_c00229{margin-left:-7.042800px;}
._0_c00229{margin-left:-2.112000px;}
._1_c00229{margin-left:-1.104000px;}
._6_c00229{width:1.007400px;}
._2_c00229{width:2.016000px;}
._5_c00229{width:7.776000px;}
._4_c00229{width:59.136000px;}
.fc0_c00229{color:rgb(35,31,32);}
.fs5_c00229{font-size:30.600000px;}
.fs6_c00229{font-size:36.000000px;}
.fs3_c00229{font-size:42.000000px;}
.fs0_c00229{font-size:48.000000px;}
.fs4_c00229{font-size:54.000000px;}
.fs2_c00229{font-size:57.000000px;}
.fs1_c00229{font-size:60.000000px;}
.y0_c00229{bottom:0.000000px;}
.y18_c00229{bottom:347.848650px;}
.y17_c00229{bottom:361.348650px;}
.y16_c00229{bottom:374.848500px;}
.y15_c00229{bottom:401.352450px;}
.y14_c00229{bottom:414.852450px;}
.y13_c00229{bottom:428.352450px;}
.y12_c00229{bottom:454.856400px;}
.y11_c00229{bottom:468.356400px;}
.y10_c00229{bottom:481.856400px;}
.yf_c00229{bottom:504.108450px;}
.ye_c00229{bottom:522.108450px;}
.yd_c00229{bottom:548.612250px;}
.yc_c00229{bottom:850.324800px;}
.yb_c00229{bottom:863.824800px;}
.ya_c00229{bottom:877.324800px;}
.y9_c00229{bottom:903.828750px;}
.y8_c00229{bottom:917.328750px;}
.y7_c00229{bottom:943.832700px;}
.y6_c00229{bottom:957.332700px;}
.y5_c00229{bottom:970.832700px;}
.y4_c00229{bottom:993.084750px;}
.y3_c00229{bottom:1011.084750px;}
.y2_c00229{bottom:1037.588700px;}
.y19_c00229{bottom:1040.299350px;}
.y1_c00229{bottom:1093.600950px;}
.h7_c00229{height:25.200000px;}
.h6_c00229{height:30.282000px;}
.h4_c00229{height:34.080000px;}
.h2_c00229{height:39.264000px;}
.h3_c00229{height:43.260000px;}
.h5_c00229{height:43.740000px;}
.h1_c00229{height:1135.500000px;}
.h0_c00229{height:1135.506150px;}
.w0_c00229{width:893.950200px;}
.w1_c00229{width:894.000000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:77.603100px;}
.x4_c00229{left:424.138500px;}
.x2_c00229{left:599.532150px;}
.x3_c00229{left:612.288150px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls1_c00229{letter-spacing:-1.392000pt;}
.ls4_c00229{letter-spacing:-0.768000pt;}
.ls2_c00229{letter-spacing:-0.640000pt;}
.ls3_c00229{letter-spacing:-0.560000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws1_c00229{word-spacing:-7.728000pt;}
.ws2_c00229{word-spacing:-5.766400pt;}
.ws3_c00229{word-spacing:0.000000pt;}
.ws4_c00229{word-spacing:6.272000pt;}
.ws6_c00229{word-spacing:50.256000pt;}
.ws5_c00229{word-spacing:50.880000pt;}
.ws0_c00229{word-spacing:1399.633067pt;}
._3_c00229{margin-left:-6.260267pt;}
._0_c00229{margin-left:-1.877333pt;}
._1_c00229{margin-left:-0.981333pt;}
._6_c00229{width:0.895467pt;}
._2_c00229{width:1.792000pt;}
._5_c00229{width:6.912000pt;}
._4_c00229{width:52.565333pt;}
.fs5_c00229{font-size:27.200000pt;}
.fs6_c00229{font-size:32.000000pt;}
.fs3_c00229{font-size:37.333333pt;}
.fs0_c00229{font-size:42.666667pt;}
.fs4_c00229{font-size:48.000000pt;}
.fs2_c00229{font-size:50.666667pt;}
.fs1_c00229{font-size:53.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y18_c00229{bottom:309.198800pt;}
.y17_c00229{bottom:321.198800pt;}
.y16_c00229{bottom:333.198667pt;}
.y15_c00229{bottom:356.757733pt;}
.y14_c00229{bottom:368.757733pt;}
.y13_c00229{bottom:380.757733pt;}
.y12_c00229{bottom:404.316800pt;}
.y11_c00229{bottom:416.316800pt;}
.y10_c00229{bottom:428.316800pt;}
.yf_c00229{bottom:448.096400pt;}
.ye_c00229{bottom:464.096400pt;}
.yd_c00229{bottom:487.655333pt;}
.yc_c00229{bottom:755.844267pt;}
.yb_c00229{bottom:767.844267pt;}
.ya_c00229{bottom:779.844267pt;}
.y9_c00229{bottom:803.403333pt;}
.y8_c00229{bottom:815.403333pt;}
.y7_c00229{bottom:838.962400pt;}
.y6_c00229{bottom:850.962400pt;}
.y5_c00229{bottom:862.962400pt;}
.y4_c00229{bottom:882.742000pt;}
.y3_c00229{bottom:898.742000pt;}
.y2_c00229{bottom:922.301067pt;}
.y19_c00229{bottom:924.710533pt;}
.y1_c00229{bottom:972.089733pt;}
.h7_c00229{height:22.400000pt;}
.h6_c00229{height:26.917333pt;}
.h4_c00229{height:30.293333pt;}
.h2_c00229{height:34.901333pt;}
.h3_c00229{height:38.453333pt;}
.h5_c00229{height:38.880000pt;}
.h1_c00229{height:1009.333333pt;}
.h0_c00229{height:1009.338800pt;}
.w0_c00229{width:794.622400pt;}
.w1_c00229{width:794.666667pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:68.980533pt;}
.x4_c00229{left:377.012000pt;}
.x2_c00229{left:532.917467pt;}
.x3_c00229{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00230;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00230{font-family:ff6_c00230;line-height:0.908000;font-style:normal;font-weight: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_c00230;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00230{font-family:ff7_c00230;line-height:1.067000;font-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_c00230{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls4_c00230{letter-spacing:-1.026000px;}
.ls2_c00230{letter-spacing:-0.720000px;}
.ls3_c00230{letter-spacing:-0.630000px;}
.ls1_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00230{word-spacing:-8.694000px;}
.ws2_c00230{word-spacing:0.000000px;}
.ws4_c00230{word-spacing:0.216000px;}
.ws3_c00230{word-spacing:7.056000px;}
._0_c00230{margin-left:-2755.276200px;}
._4_c00230{margin-left:-6.946800px;}
._1_c00230{margin-left:-2.256000px;}
._3_c00230{margin-left:-1.200000px;}
._2_c00230{width:1.008000px;}
._7_c00230{width:7.776000px;}
._5_c00230{width:55.674000px;}
._6_c00230{width:59.136000px;}
.fc0_c00230{color:rgb(35,31,32);}
.fs3_c00230{font-size:42.000000px;}
.fs0_c00230{font-size:48.000000px;}
.fs4_c00230{font-size:54.000000px;}
.fs2_c00230{font-size:57.000000px;}
.fs1_c00230{font-size:60.000000px;}
.y0_c00230{bottom:0.000000px;}
.y19_c00230{bottom:347.334900px;}
.y18_c00230{bottom:360.834900px;}
.y17_c00230{bottom:374.334900px;}
.y16_c00230{bottom:400.838700px;}
.y15_c00230{bottom:414.338700px;}
.y14_c00230{bottom:427.838700px;}
.y13_c00230{bottom:454.342650px;}
.y12_c00230{bottom:467.842650px;}
.y11_c00230{bottom:481.342650px;}
.y10_c00230{bottom:503.594700px;}
.yf_c00230{bottom:521.594700px;}
.ye_c00230{bottom:548.098650px;}
.yd_c00230{bottom:836.311050px;}
.yc_c00230{bottom:849.811050px;}
.yb_c00230{bottom:863.311050px;}
.ya_c00230{bottom:889.815000px;}
.y9_c00230{bottom:903.315000px;}
.y8_c00230{bottom:916.815000px;}
.y7_c00230{bottom:943.318950px;}
.y6_c00230{bottom:956.818950px;}
.y5_c00230{bottom:970.318950px;}
.y4_c00230{bottom:992.570850px;}
.y3_c00230{bottom:1010.570850px;}
.y2_c00230{bottom:1037.074950px;}
.y1_c00230{bottom:1093.600950px;}
.h7_c00230{height:30.282000px;}
.h5_c00230{height:34.080000px;}
.h2_c00230{height:39.264000px;}
.h3_c00230{height:39.984000px;}
.h4_c00230{height:43.260000px;}
.h6_c00230{height:43.740000px;}
.h1_c00230{height:1135.500000px;}
.h0_c00230{height:1135.506150px;}
.w0_c00230{width:893.950200px;}
.w1_c00230{width:894.000000px;}
.x0_c00230{left:0.000000px;}
.x4_c00230{left:128.626800px;}
.x5_c00230{left:141.382650px;}
.x2_c00230{left:188.061900px;}
.x3_c00230{left:190.513350px;}
.x1_c00230{left:800.165850px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls4_c00230{letter-spacing:-0.912000pt;}
.ls2_c00230{letter-spacing:-0.640000pt;}
.ls3_c00230{letter-spacing:-0.560000pt;}
.ls1_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:0.426667pt;}
.ws0_c00230{word-spacing:-9.685333pt;}
.ws1_c00230{word-spacing:-7.728000pt;}
.ws2_c00230{word-spacing:0.000000pt;}
.ws4_c00230{word-spacing:0.192000pt;}
.ws3_c00230{word-spacing:6.272000pt;}
._0_c00230{margin-left:-2449.134400pt;}
._4_c00230{margin-left:-6.174933pt;}
._1_c00230{margin-left:-2.005333pt;}
._3_c00230{margin-left:-1.066667pt;}
._2_c00230{width:0.896000pt;}
._7_c00230{width:6.912000pt;}
._5_c00230{width:49.488000pt;}
._6_c00230{width:52.565333pt;}
.fs3_c00230{font-size:37.333333pt;}
.fs0_c00230{font-size:42.666667pt;}
.fs4_c00230{font-size:48.000000pt;}
.fs2_c00230{font-size:50.666667pt;}
.fs1_c00230{font-size:53.333333pt;}
.y0_c00230{bottom:0.000000pt;}
.y19_c00230{bottom:308.742133pt;}
.y18_c00230{bottom:320.742133pt;}
.y17_c00230{bottom:332.742133pt;}
.y16_c00230{bottom:356.301067pt;}
.y15_c00230{bottom:368.301067pt;}
.y14_c00230{bottom:380.301067pt;}
.y13_c00230{bottom:403.860133pt;}
.y12_c00230{bottom:415.860133pt;}
.y11_c00230{bottom:427.860133pt;}
.y10_c00230{bottom:447.639733pt;}
.yf_c00230{bottom:463.639733pt;}
.ye_c00230{bottom:487.198800pt;}
.yd_c00230{bottom:743.387600pt;}
.yc_c00230{bottom:755.387600pt;}
.yb_c00230{bottom:767.387600pt;}
.ya_c00230{bottom:790.946667pt;}
.y9_c00230{bottom:802.946667pt;}
.y8_c00230{bottom:814.946667pt;}
.y7_c00230{bottom:838.505733pt;}
.y6_c00230{bottom:850.505733pt;}
.y5_c00230{bottom:862.505733pt;}
.y4_c00230{bottom:882.285200pt;}
.y3_c00230{bottom:898.285200pt;}
.y2_c00230{bottom:921.844400pt;}
.y1_c00230{bottom:972.089733pt;}
.h7_c00230{height:26.917333pt;}
.h5_c00230{height:30.293333pt;}
.h2_c00230{height:34.901333pt;}
.h3_c00230{height:35.541333pt;}
.h4_c00230{height:38.453333pt;}
.h6_c00230{height:38.880000pt;}
.h1_c00230{height:1009.333333pt;}
.h0_c00230{height:1009.338800pt;}
.w0_c00230{width:794.622400pt;}
.w1_c00230{width:794.666667pt;}
.x0_c00230{left:0.000000pt;}
.x4_c00230{left:114.334933pt;}
.x5_c00230{left:125.673467pt;}
.x2_c00230{left:167.166133pt;}
.x3_c00230{left:169.345200pt;}
.x1_c00230{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00231;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:1.067000;font-style:normal;font-weight: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_c00231;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00231{font-family:ff7_c00231;line-height:0.710000;font-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_c00231{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls1_c00231{letter-spacing:-0.810000px;}
.ls2_c00231{letter-spacing:-0.720000px;}
.ls3_c00231{letter-spacing:-0.630000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00231{word-spacing:-8.694000px;}
.ws2_c00231{word-spacing:-6.487200px;}
.ws3_c00231{word-spacing:0.000000px;}
.ws4_c00231{word-spacing:7.056000px;}
.ws0_c00231{word-spacing:1574.587200px;}
._3_c00231{margin-left:-7.042800px;}
._5_c00231{margin-left:-4.086000px;}
._0_c00231{margin-left:-2.112000px;}
._1_c00231{margin-left:-1.104000px;}
._2_c00231{width:2.016000px;}
._7_c00231{width:7.776000px;}
._4_c00231{width:56.484000px;}
._6_c00231{width:59.136000px;}
.fc0_c00231{color:rgb(35,31,32);}
.fs5_c00231{font-size:30.600000px;}
.fs6_c00231{font-size:36.000000px;}
.fs3_c00231{font-size:42.000000px;}
.fs0_c00231{font-size:48.000000px;}
.fs4_c00231{font-size:54.000000px;}
.fs2_c00231{font-size:57.000000px;}
.fs1_c00231{font-size:60.000000px;}
.y0_c00231{bottom:0.000000px;}
.y1a_c00231{bottom:329.848500px;}
.y19_c00231{bottom:343.348500px;}
.y18_c00231{bottom:356.848500px;}
.y17_c00231{bottom:383.352450px;}
.y16_c00231{bottom:396.852450px;}
.y15_c00231{bottom:410.352450px;}
.y14_c00231{bottom:436.856400px;}
.y13_c00231{bottom:450.356400px;}
.y12_c00231{bottom:463.856400px;}
.y11_c00231{bottom:486.108450px;}
.y10_c00231{bottom:504.108450px;}
.yf_c00231{bottom:522.108450px;}
.ye_c00231{bottom:548.612250px;}
.yd_c00231{bottom:832.324800px;}
.yc_c00231{bottom:845.824800px;}
.yb_c00231{bottom:859.324800px;}
.ya_c00231{bottom:885.828750px;}
.y9_c00231{bottom:899.328750px;}
.y8_c00231{bottom:925.832700px;}
.y7_c00231{bottom:939.332700px;}
.y6_c00231{bottom:952.832700px;}
.y5_c00231{bottom:975.084750px;}
.y4_c00231{bottom:993.084750px;}
.y3_c00231{bottom:1011.084750px;}
.y2_c00231{bottom:1037.588700px;}
.y1b_c00231{bottom:1040.299350px;}
.y1_c00231{bottom:1093.600950px;}
.h7_c00231{height:25.200000px;}
.h6_c00231{height:30.282000px;}
.h4_c00231{height:34.080000px;}
.h2_c00231{height:39.264000px;}
.h3_c00231{height:43.260000px;}
.h5_c00231{height:43.740000px;}
.h1_c00231{height:1135.500000px;}
.h0_c00231{height:1135.506150px;}
.w0_c00231{width:893.950200px;}
.w1_c00231{width:894.000000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:77.603100px;}
.x5_c00231{left:424.138500px;}
.x2_c00231{left:599.532150px;}
.x3_c00231{left:612.288150px;}
.x4_c00231{left:616.540050px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls1_c00231{letter-spacing:-0.720000pt;}
.ls2_c00231{letter-spacing:-0.640000pt;}
.ls3_c00231{letter-spacing:-0.560000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws1_c00231{word-spacing:-7.728000pt;}
.ws2_c00231{word-spacing:-5.766400pt;}
.ws3_c00231{word-spacing:0.000000pt;}
.ws4_c00231{word-spacing:6.272000pt;}
.ws0_c00231{word-spacing:1399.633067pt;}
._3_c00231{margin-left:-6.260267pt;}
._5_c00231{margin-left:-3.632000pt;}
._0_c00231{margin-left:-1.877333pt;}
._1_c00231{margin-left:-0.981333pt;}
._2_c00231{width:1.792000pt;}
._7_c00231{width:6.912000pt;}
._4_c00231{width:50.208000pt;}
._6_c00231{width:52.565333pt;}
.fs5_c00231{font-size:27.200000pt;}
.fs6_c00231{font-size:32.000000pt;}
.fs3_c00231{font-size:37.333333pt;}
.fs0_c00231{font-size:42.666667pt;}
.fs4_c00231{font-size:48.000000pt;}
.fs2_c00231{font-size:50.666667pt;}
.fs1_c00231{font-size:53.333333pt;}
.y0_c00231{bottom:0.000000pt;}
.y1a_c00231{bottom:293.198667pt;}
.y19_c00231{bottom:305.198667pt;}
.y18_c00231{bottom:317.198667pt;}
.y17_c00231{bottom:340.757733pt;}
.y16_c00231{bottom:352.757733pt;}
.y15_c00231{bottom:364.757733pt;}
.y14_c00231{bottom:388.316800pt;}
.y13_c00231{bottom:400.316800pt;}
.y12_c00231{bottom:412.316800pt;}
.y11_c00231{bottom:432.096400pt;}
.y10_c00231{bottom:448.096400pt;}
.yf_c00231{bottom:464.096400pt;}
.ye_c00231{bottom:487.655333pt;}
.yd_c00231{bottom:739.844267pt;}
.yc_c00231{bottom:751.844267pt;}
.yb_c00231{bottom:763.844267pt;}
.ya_c00231{bottom:787.403333pt;}
.y9_c00231{bottom:799.403333pt;}
.y8_c00231{bottom:822.962400pt;}
.y7_c00231{bottom:834.962400pt;}
.y6_c00231{bottom:846.962400pt;}
.y5_c00231{bottom:866.742000pt;}
.y4_c00231{bottom:882.742000pt;}
.y3_c00231{bottom:898.742000pt;}
.y2_c00231{bottom:922.301067pt;}
.y1b_c00231{bottom:924.710533pt;}
.y1_c00231{bottom:972.089733pt;}
.h7_c00231{height:22.400000pt;}
.h6_c00231{height:26.917333pt;}
.h4_c00231{height:30.293333pt;}
.h2_c00231{height:34.901333pt;}
.h3_c00231{height:38.453333pt;}
.h5_c00231{height:38.880000pt;}
.h1_c00231{height:1009.333333pt;}
.h0_c00231{height:1009.338800pt;}
.w0_c00231{width:794.622400pt;}
.w1_c00231{width:794.666667pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:68.980533pt;}
.x5_c00231{left:377.012000pt;}
.x2_c00231{left:532.917467pt;}
.x3_c00231{left:544.256133pt;}
.x4_c00231{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:0.908000;font-style:normal;font-weight: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_c00232;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00232{font-family:ff7_c00232;line-height:1.067000;font-style:normal;font-weight: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_c00232;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00232{font-family:ff8_c00232;line-height:0.710000;font-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_c00232{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls4_c00232{letter-spacing:-0.810000px;}
.ls2_c00232{letter-spacing:-0.720000px;}
.ls3_c00232{letter-spacing:-0.630000px;}
.ls1_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:0.480000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-10.896000px;}
.ws1_c00232{word-spacing:-8.694000px;}
.ws2_c00232{word-spacing:-6.487200px;}
.ws3_c00232{word-spacing:0.000000px;}
.ws4_c00232{word-spacing:7.056000px;}
._0_c00232{margin-left:-2755.276200px;}
._4_c00232{margin-left:-6.946800px;}
._1_c00232{margin-left:-2.256000px;}
._3_c00232{margin-left:-1.200000px;}
._2_c00232{width:1.008000px;}
._7_c00232{width:7.776000px;}
._5_c00232{width:55.674000px;}
._6_c00232{width:59.136000px;}
.fc0_c00232{color:rgb(35,31,32);}
.fs5_c00232{font-size:30.600000px;}
.fs6_c00232{font-size:36.000000px;}
.fs3_c00232{font-size:42.000000px;}
.fs0_c00232{font-size:48.000000px;}
.fs4_c00232{font-size:54.000000px;}
.fs2_c00232{font-size:57.000000px;}
.fs1_c00232{font-size:60.000000px;}
.y0_c00232{bottom:0.000000px;}
.y18_c00232{bottom:365.086800px;}
.y17_c00232{bottom:378.586800px;}
.y16_c00232{bottom:392.086800px;}
.y15_c00232{bottom:414.338700px;}
.y14_c00232{bottom:427.838700px;}
.y13_c00232{bottom:454.342650px;}
.y12_c00232{bottom:467.842650px;}
.y11_c00232{bottom:481.342650px;}
.y10_c00232{bottom:503.594700px;}
.yf_c00232{bottom:521.594700px;}
.ye_c00232{bottom:548.098650px;}
.y19_c00232{bottom:551.323050px;}
.yd_c00232{bottom:836.311050px;}
.yc_c00232{bottom:849.811050px;}
.yb_c00232{bottom:863.311050px;}
.ya_c00232{bottom:889.815000px;}
.y9_c00232{bottom:903.315000px;}
.y8_c00232{bottom:916.815000px;}
.y7_c00232{bottom:943.318950px;}
.y6_c00232{bottom:956.818950px;}
.y5_c00232{bottom:970.318950px;}
.y4_c00232{bottom:992.570850px;}
.y3_c00232{bottom:1010.570850px;}
.y2_c00232{bottom:1037.074950px;}
.y1_c00232{bottom:1093.600950px;}
.h8_c00232{height:25.200000px;}
.h7_c00232{height:30.282000px;}
.h5_c00232{height:34.080000px;}
.h2_c00232{height:39.264000px;}
.h3_c00232{height:39.984000px;}
.h4_c00232{height:43.260000px;}
.h6_c00232{height:43.740000px;}
.h1_c00232{height:1135.500000px;}
.h0_c00232{height:1135.506150px;}
.w0_c00232{width:893.950200px;}
.w1_c00232{width:894.000000px;}
.x0_c00232{left:0.000000px;}
.x4_c00232{left:128.626800px;}
.x5_c00232{left:141.382650px;}
.x2_c00232{left:188.061900px;}
.x3_c00232{left:190.513350px;}
.x6_c00232{left:321.919050px;}
.x1_c00232{left:800.165850px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls4_c00232{letter-spacing:-0.720000pt;}
.ls2_c00232{letter-spacing:-0.640000pt;}
.ls3_c00232{letter-spacing:-0.560000pt;}
.ls1_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.426667pt;}
.ws0_c00232{word-spacing:-9.685333pt;}
.ws1_c00232{word-spacing:-7.728000pt;}
.ws2_c00232{word-spacing:-5.766400pt;}
.ws3_c00232{word-spacing:0.000000pt;}
.ws4_c00232{word-spacing:6.272000pt;}
._0_c00232{margin-left:-2449.134400pt;}
._4_c00232{margin-left:-6.174933pt;}
._1_c00232{margin-left:-2.005333pt;}
._3_c00232{margin-left:-1.066667pt;}
._2_c00232{width:0.896000pt;}
._7_c00232{width:6.912000pt;}
._5_c00232{width:49.488000pt;}
._6_c00232{width:52.565333pt;}
.fs5_c00232{font-size:27.200000pt;}
.fs6_c00232{font-size:32.000000pt;}
.fs3_c00232{font-size:37.333333pt;}
.fs0_c00232{font-size:42.666667pt;}
.fs4_c00232{font-size:48.000000pt;}
.fs2_c00232{font-size:50.666667pt;}
.fs1_c00232{font-size:53.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y18_c00232{bottom:324.521600pt;}
.y17_c00232{bottom:336.521600pt;}
.y16_c00232{bottom:348.521600pt;}
.y15_c00232{bottom:368.301067pt;}
.y14_c00232{bottom:380.301067pt;}
.y13_c00232{bottom:403.860133pt;}
.y12_c00232{bottom:415.860133pt;}
.y11_c00232{bottom:427.860133pt;}
.y10_c00232{bottom:447.639733pt;}
.yf_c00232{bottom:463.639733pt;}
.ye_c00232{bottom:487.198800pt;}
.y19_c00232{bottom:490.064933pt;}
.yd_c00232{bottom:743.387600pt;}
.yc_c00232{bottom:755.387600pt;}
.yb_c00232{bottom:767.387600pt;}
.ya_c00232{bottom:790.946667pt;}
.y9_c00232{bottom:802.946667pt;}
.y8_c00232{bottom:814.946667pt;}
.y7_c00232{bottom:838.505733pt;}
.y6_c00232{bottom:850.505733pt;}
.y5_c00232{bottom:862.505733pt;}
.y4_c00232{bottom:882.285200pt;}
.y3_c00232{bottom:898.285200pt;}
.y2_c00232{bottom:921.844400pt;}
.y1_c00232{bottom:972.089733pt;}
.h8_c00232{height:22.400000pt;}
.h7_c00232{height:26.917333pt;}
.h5_c00232{height:30.293333pt;}
.h2_c00232{height:34.901333pt;}
.h3_c00232{height:35.541333pt;}
.h4_c00232{height:38.453333pt;}
.h6_c00232{height:38.880000pt;}
.h1_c00232{height:1009.333333pt;}
.h0_c00232{height:1009.338800pt;}
.w0_c00232{width:794.622400pt;}
.w1_c00232{width:794.666667pt;}
.x0_c00232{left:0.000000pt;}
.x4_c00232{left:114.334933pt;}
.x5_c00232{left:125.673467pt;}
.x2_c00232{left:167.166133pt;}
.x3_c00232{left:169.345200pt;}
.x6_c00232{left:286.150267pt;}
.x1_c00232{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls1_c00233{letter-spacing:-1.566000px;}
.ls4_c00233{letter-spacing:-0.864000px;}
.ls2_c00233{letter-spacing:-0.720000px;}
.ls3_c00233{letter-spacing:-0.630000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00233{word-spacing:0.000000px;}
.ws5_c00233{word-spacing:0.864000px;}
.ws3_c00233{word-spacing:7.056000px;}
.ws4_c00233{word-spacing:57.240000px;}
.ws0_c00233{word-spacing:1574.587200px;}
._3_c00233{margin-left:-7.042800px;}
._0_c00233{margin-left:-2.112000px;}
._1_c00233{margin-left:-1.104000px;}
._2_c00233{width:2.016000px;}
._5_c00233{width:7.776000px;}
._6_c00233{width:55.674000px;}
._4_c00233{width:59.136000px;}
.fc0_c00233{color:rgb(35,31,32);}
.fs3_c00233{font-size:42.000000px;}
.fs0_c00233{font-size:48.000000px;}
.fs4_c00233{font-size:54.000000px;}
.fs2_c00233{font-size:57.000000px;}
.fs1_c00233{font-size:60.000000px;}
.y0_c00233{bottom:0.000000px;}
.y19_c00233{bottom:347.848650px;}
.y18_c00233{bottom:361.348650px;}
.y17_c00233{bottom:374.848500px;}
.y16_c00233{bottom:401.352450px;}
.y15_c00233{bottom:414.852450px;}
.y14_c00233{bottom:428.352450px;}
.y13_c00233{bottom:454.856400px;}
.y12_c00233{bottom:468.356400px;}
.y11_c00233{bottom:481.856400px;}
.y10_c00233{bottom:504.108450px;}
.yf_c00233{bottom:522.108450px;}
.ye_c00233{bottom:548.612250px;}
.yd_c00233{bottom:836.824800px;}
.yc_c00233{bottom:850.324800px;}
.yb_c00233{bottom:863.824800px;}
.ya_c00233{bottom:890.328750px;}
.y9_c00233{bottom:903.828750px;}
.y8_c00233{bottom:917.328750px;}
.y7_c00233{bottom:943.832700px;}
.y6_c00233{bottom:957.332700px;}
.y5_c00233{bottom:970.832700px;}
.y4_c00233{bottom:993.084750px;}
.y3_c00233{bottom:1011.084750px;}
.y2_c00233{bottom:1037.588700px;}
.y1_c00233{bottom:1093.600950px;}
.h6_c00233{height:30.282000px;}
.h4_c00233{height:34.080000px;}
.h2_c00233{height:39.264000px;}
.h3_c00233{height:43.260000px;}
.h5_c00233{height:43.740000px;}
.h1_c00233{height:1135.500000px;}
.h0_c00233{height:1135.506150px;}
.w0_c00233{width:893.950200px;}
.w1_c00233{width:894.000000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:77.603100px;}
.x2_c00233{left:599.532150px;}
.x3_c00233{left:612.288150px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls1_c00233{letter-spacing:-1.392000pt;}
.ls4_c00233{letter-spacing:-0.768000pt;}
.ls2_c00233{letter-spacing:-0.640000pt;}
.ls3_c00233{letter-spacing:-0.560000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws1_c00233{word-spacing:-7.728000pt;}
.ws2_c00233{word-spacing:0.000000pt;}
.ws5_c00233{word-spacing:0.768000pt;}
.ws3_c00233{word-spacing:6.272000pt;}
.ws4_c00233{word-spacing:50.880000pt;}
.ws0_c00233{word-spacing:1399.633067pt;}
._3_c00233{margin-left:-6.260267pt;}
._0_c00233{margin-left:-1.877333pt;}
._1_c00233{margin-left:-0.981333pt;}
._2_c00233{width:1.792000pt;}
._5_c00233{width:6.912000pt;}
._6_c00233{width:49.488000pt;}
._4_c00233{width:52.565333pt;}
.fs3_c00233{font-size:37.333333pt;}
.fs0_c00233{font-size:42.666667pt;}
.fs4_c00233{font-size:48.000000pt;}
.fs2_c00233{font-size:50.666667pt;}
.fs1_c00233{font-size:53.333333pt;}
.y0_c00233{bottom:0.000000pt;}
.y19_c00233{bottom:309.198800pt;}
.y18_c00233{bottom:321.198800pt;}
.y17_c00233{bottom:333.198667pt;}
.y16_c00233{bottom:356.757733pt;}
.y15_c00233{bottom:368.757733pt;}
.y14_c00233{bottom:380.757733pt;}
.y13_c00233{bottom:404.316800pt;}
.y12_c00233{bottom:416.316800pt;}
.y11_c00233{bottom:428.316800pt;}
.y10_c00233{bottom:448.096400pt;}
.yf_c00233{bottom:464.096400pt;}
.ye_c00233{bottom:487.655333pt;}
.yd_c00233{bottom:743.844267pt;}
.yc_c00233{bottom:755.844267pt;}
.yb_c00233{bottom:767.844267pt;}
.ya_c00233{bottom:791.403333pt;}
.y9_c00233{bottom:803.403333pt;}
.y8_c00233{bottom:815.403333pt;}
.y7_c00233{bottom:838.962400pt;}
.y6_c00233{bottom:850.962400pt;}
.y5_c00233{bottom:862.962400pt;}
.y4_c00233{bottom:882.742000pt;}
.y3_c00233{bottom:898.742000pt;}
.y2_c00233{bottom:922.301067pt;}
.y1_c00233{bottom:972.089733pt;}
.h6_c00233{height:26.917333pt;}
.h4_c00233{height:30.293333pt;}
.h2_c00233{height:34.901333pt;}
.h3_c00233{height:38.453333pt;}
.h5_c00233{height:38.880000pt;}
.h1_c00233{height:1009.333333pt;}
.h0_c00233{height:1009.338800pt;}
.w0_c00233{width:794.622400pt;}
.w1_c00233{width:794.666667pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:68.980533pt;}
.x2_c00233{left:532.917467pt;}
.x3_c00233{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:0.908000;font-style:normal;font-weight: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_c00234;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00234{font-family:ff7_c00234;line-height:1.067000;font-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_c00234{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls4_c00234{letter-spacing:-1.188000px;}
.ls2_c00234{letter-spacing:-0.720000px;}
.ls3_c00234{letter-spacing:-0.630000px;}
.ls1_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00234{word-spacing:-10.896000px;}
.ws1_c00234{word-spacing:-8.694000px;}
.ws2_c00234{word-spacing:0.000000px;}
.ws4_c00234{word-spacing:0.378000px;}
.ws3_c00234{word-spacing:7.056000px;}
._0_c00234{margin-left:-2755.276200px;}
._4_c00234{margin-left:-6.946800px;}
._1_c00234{margin-left:-2.256000px;}
._3_c00234{margin-left:-1.200000px;}
._2_c00234{width:1.008000px;}
._7_c00234{width:7.776000px;}
._5_c00234{width:55.674000px;}
._6_c00234{width:59.136000px;}
.fc0_c00234{color:rgb(35,31,32);}
.fs3_c00234{font-size:42.000000px;}
.fs0_c00234{font-size:48.000000px;}
.fs4_c00234{font-size:54.000000px;}
.fs2_c00234{font-size:57.000000px;}
.fs1_c00234{font-size:60.000000px;}
.y0_c00234{bottom:0.000000px;}
.y19_c00234{bottom:345.208950px;}
.y18_c00234{bottom:358.708800px;}
.y17_c00234{bottom:372.208800px;}
.y16_c00234{bottom:398.712750px;}
.y15_c00234{bottom:412.212750px;}
.y14_c00234{bottom:425.712750px;}
.y13_c00234{bottom:452.216700px;}
.y12_c00234{bottom:465.716700px;}
.y11_c00234{bottom:479.216700px;}
.y10_c00234{bottom:501.468750px;}
.yf_c00234{bottom:519.468750px;}
.ye_c00234{bottom:545.972550px;}
.yd_c00234{bottom:836.311050px;}
.yc_c00234{bottom:849.811050px;}
.yb_c00234{bottom:863.311050px;}
.ya_c00234{bottom:889.815000px;}
.y9_c00234{bottom:903.315000px;}
.y8_c00234{bottom:916.815000px;}
.y7_c00234{bottom:943.318950px;}
.y6_c00234{bottom:956.818950px;}
.y5_c00234{bottom:970.318950px;}
.y4_c00234{bottom:992.570850px;}
.y3_c00234{bottom:1010.570850px;}
.y2_c00234{bottom:1037.074950px;}
.y1_c00234{bottom:1093.600950px;}
.h7_c00234{height:30.282000px;}
.h5_c00234{height:34.080000px;}
.h2_c00234{height:39.264000px;}
.h3_c00234{height:39.984000px;}
.h4_c00234{height:43.260000px;}
.h6_c00234{height:43.740000px;}
.h1_c00234{height:1135.500000px;}
.h0_c00234{height:1135.506150px;}
.w0_c00234{width:893.950200px;}
.w1_c00234{width:894.000000px;}
.x0_c00234{left:0.000000px;}
.x4_c00234{left:128.626800px;}
.x5_c00234{left:141.382650px;}
.x2_c00234{left:188.061900px;}
.x3_c00234{left:190.513350px;}
.x1_c00234{left:800.165850px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls4_c00234{letter-spacing:-1.056000pt;}
.ls2_c00234{letter-spacing:-0.640000pt;}
.ls3_c00234{letter-spacing:-0.560000pt;}
.ls1_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.426667pt;}
.ws0_c00234{word-spacing:-9.685333pt;}
.ws1_c00234{word-spacing:-7.728000pt;}
.ws2_c00234{word-spacing:0.000000pt;}
.ws4_c00234{word-spacing:0.336000pt;}
.ws3_c00234{word-spacing:6.272000pt;}
._0_c00234{margin-left:-2449.134400pt;}
._4_c00234{margin-left:-6.174933pt;}
._1_c00234{margin-left:-2.005333pt;}
._3_c00234{margin-left:-1.066667pt;}
._2_c00234{width:0.896000pt;}
._7_c00234{width:6.912000pt;}
._5_c00234{width:49.488000pt;}
._6_c00234{width:52.565333pt;}
.fs3_c00234{font-size:37.333333pt;}
.fs0_c00234{font-size:42.666667pt;}
.fs4_c00234{font-size:48.000000pt;}
.fs2_c00234{font-size:50.666667pt;}
.fs1_c00234{font-size:53.333333pt;}
.y0_c00234{bottom:0.000000pt;}
.y19_c00234{bottom:306.852400pt;}
.y18_c00234{bottom:318.852267pt;}
.y17_c00234{bottom:330.852267pt;}
.y16_c00234{bottom:354.411333pt;}
.y15_c00234{bottom:366.411333pt;}
.y14_c00234{bottom:378.411333pt;}
.y13_c00234{bottom:401.970400pt;}
.y12_c00234{bottom:413.970400pt;}
.y11_c00234{bottom:425.970400pt;}
.y10_c00234{bottom:445.750000pt;}
.yf_c00234{bottom:461.750000pt;}
.ye_c00234{bottom:485.308933pt;}
.yd_c00234{bottom:743.387600pt;}
.yc_c00234{bottom:755.387600pt;}
.yb_c00234{bottom:767.387600pt;}
.ya_c00234{bottom:790.946667pt;}
.y9_c00234{bottom:802.946667pt;}
.y8_c00234{bottom:814.946667pt;}
.y7_c00234{bottom:838.505733pt;}
.y6_c00234{bottom:850.505733pt;}
.y5_c00234{bottom:862.505733pt;}
.y4_c00234{bottom:882.285200pt;}
.y3_c00234{bottom:898.285200pt;}
.y2_c00234{bottom:921.844400pt;}
.y1_c00234{bottom:972.089733pt;}
.h7_c00234{height:26.917333pt;}
.h5_c00234{height:30.293333pt;}
.h2_c00234{height:34.901333pt;}
.h3_c00234{height:35.541333pt;}
.h4_c00234{height:38.453333pt;}
.h6_c00234{height:38.880000pt;}
.h1_c00234{height:1009.333333pt;}
.h0_c00234{height:1009.338800pt;}
.w0_c00234{width:794.622400pt;}
.w1_c00234{width:794.666667pt;}
.x0_c00234{left:0.000000pt;}
.x4_c00234{left:114.334933pt;}
.x5_c00234{left:125.673467pt;}
.x2_c00234{left:167.166133pt;}
.x3_c00234{left:169.345200pt;}
.x1_c00234{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00235;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls1_c00235{letter-spacing:-1.944000px;}
.ls2_c00235{letter-spacing:-0.720000px;}
.ls3_c00235{letter-spacing:-0.630000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00235{word-spacing:0.000000px;}
.ws3_c00235{word-spacing:7.056000px;}
.ws4_c00235{word-spacing:57.618000px;}
.ws0_c00235{word-spacing:1574.587200px;}
._3_c00235{margin-left:-7.042800px;}
._0_c00235{margin-left:-2.112000px;}
._1_c00235{margin-left:-1.104000px;}
._2_c00235{width:2.016000px;}
._5_c00235{width:7.776000px;}
._6_c00235{width:55.674000px;}
._4_c00235{width:59.136000px;}
.fc0_c00235{color:rgb(35,31,32);}
.fs3_c00235{font-size:42.000000px;}
.fs0_c00235{font-size:48.000000px;}
.fs4_c00235{font-size:54.000000px;}
.fs2_c00235{font-size:57.000000px;}
.fs1_c00235{font-size:60.000000px;}
.y0_c00235{bottom:0.000000px;}
.y19_c00235{bottom:351.462750px;}
.y18_c00235{bottom:364.962750px;}
.y17_c00235{bottom:378.462750px;}
.y16_c00235{bottom:400.714650px;}
.y15_c00235{bottom:414.214650px;}
.y14_c00235{bottom:427.714650px;}
.y13_c00235{bottom:454.218600px;}
.y12_c00235{bottom:467.718600px;}
.y11_c00235{bottom:481.218600px;}
.y10_c00235{bottom:503.470650px;}
.yf_c00235{bottom:521.470650px;}
.ye_c00235{bottom:547.974450px;}
.yd_c00235{bottom:836.187000px;}
.yc_c00235{bottom:849.687000px;}
.yb_c00235{bottom:863.187000px;}
.ya_c00235{bottom:889.690950px;}
.y9_c00235{bottom:903.190950px;}
.y8_c00235{bottom:916.690950px;}
.y7_c00235{bottom:943.194900px;}
.y6_c00235{bottom:956.694900px;}
.y5_c00235{bottom:970.194900px;}
.y4_c00235{bottom:992.446800px;}
.y3_c00235{bottom:1010.446800px;}
.y2_c00235{bottom:1036.950900px;}
.y1_c00235{bottom:1093.600950px;}
.h6_c00235{height:30.282000px;}
.h4_c00235{height:34.080000px;}
.h2_c00235{height:39.264000px;}
.h3_c00235{height:43.260000px;}
.h5_c00235{height:43.740000px;}
.h1_c00235{height:1135.500000px;}
.h0_c00235{height:1135.506150px;}
.w0_c00235{width:893.950200px;}
.w1_c00235{width:894.000000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:77.603100px;}
.x2_c00235{left:599.532150px;}
.x3_c00235{left:612.288150px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls1_c00235{letter-spacing:-1.728000pt;}
.ls2_c00235{letter-spacing:-0.640000pt;}
.ls3_c00235{letter-spacing:-0.560000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws1_c00235{word-spacing:-7.728000pt;}
.ws2_c00235{word-spacing:0.000000pt;}
.ws3_c00235{word-spacing:6.272000pt;}
.ws4_c00235{word-spacing:51.216000pt;}
.ws0_c00235{word-spacing:1399.633067pt;}
._3_c00235{margin-left:-6.260267pt;}
._0_c00235{margin-left:-1.877333pt;}
._1_c00235{margin-left:-0.981333pt;}
._2_c00235{width:1.792000pt;}
._5_c00235{width:6.912000pt;}
._6_c00235{width:49.488000pt;}
._4_c00235{width:52.565333pt;}
.fs3_c00235{font-size:37.333333pt;}
.fs0_c00235{font-size:42.666667pt;}
.fs4_c00235{font-size:48.000000pt;}
.fs2_c00235{font-size:50.666667pt;}
.fs1_c00235{font-size:53.333333pt;}
.y0_c00235{bottom:0.000000pt;}
.y19_c00235{bottom:312.411333pt;}
.y18_c00235{bottom:324.411333pt;}
.y17_c00235{bottom:336.411333pt;}
.y16_c00235{bottom:356.190800pt;}
.y15_c00235{bottom:368.190800pt;}
.y14_c00235{bottom:380.190800pt;}
.y13_c00235{bottom:403.749867pt;}
.y12_c00235{bottom:415.749867pt;}
.y11_c00235{bottom:427.749867pt;}
.y10_c00235{bottom:447.529467pt;}
.yf_c00235{bottom:463.529467pt;}
.ye_c00235{bottom:487.088400pt;}
.yd_c00235{bottom:743.277333pt;}
.yc_c00235{bottom:755.277333pt;}
.yb_c00235{bottom:767.277333pt;}
.ya_c00235{bottom:790.836400pt;}
.y9_c00235{bottom:802.836400pt;}
.y8_c00235{bottom:814.836400pt;}
.y7_c00235{bottom:838.395467pt;}
.y6_c00235{bottom:850.395467pt;}
.y5_c00235{bottom:862.395467pt;}
.y4_c00235{bottom:882.174933pt;}
.y3_c00235{bottom:898.174933pt;}
.y2_c00235{bottom:921.734133pt;}
.y1_c00235{bottom:972.089733pt;}
.h6_c00235{height:26.917333pt;}
.h4_c00235{height:30.293333pt;}
.h2_c00235{height:34.901333pt;}
.h3_c00235{height:38.453333pt;}
.h5_c00235{height:38.880000pt;}
.h1_c00235{height:1009.333333pt;}
.h0_c00235{height:1009.338800pt;}
.w0_c00235{width:794.622400pt;}
.w1_c00235{width:794.666667pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:68.980533pt;}
.x2_c00235{left:532.917467pt;}
.x3_c00235{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00236;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00236{font-family:ff6_c00236;line-height:0.908000;font-style:normal;font-weight: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_c00236;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00236{font-family:ff7_c00236;line-height:1.067000;font-style:normal;font-weight: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_c00236;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00236{font-family:ff8_c00236;line-height:0.710000;font-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_c00236{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls5_c00236{letter-spacing:-0.810000px;}
.ls3_c00236{letter-spacing:-0.720000px;}
.ls4_c00236{letter-spacing:-0.630000px;}
.ls2_c00236{letter-spacing:-0.378000px;}
.ls1_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00236{word-spacing:-6.487200px;}
.ws0_c00236{word-spacing:-0.048000px;}
.ws3_c00236{word-spacing:0.000000px;}
.ws5_c00236{word-spacing:0.378000px;}
.ws6_c00236{word-spacing:0.630000px;}
.ws4_c00236{word-spacing:7.056000px;}
._0_c00236{margin-left:-2755.276200px;}
._4_c00236{margin-left:-6.946800px;}
._1_c00236{margin-left:-2.256000px;}
._3_c00236{margin-left:-1.200000px;}
._2_c00236{width:1.008000px;}
._7_c00236{width:7.776000px;}
._5_c00236{width:55.674000px;}
._6_c00236{width:59.136000px;}
.fc0_c00236{color:rgb(35,31,32);}
.fs5_c00236{font-size:30.600000px;}
.fs6_c00236{font-size:36.000000px;}
.fs3_c00236{font-size:42.000000px;}
.fs0_c00236{font-size:48.000000px;}
.fs4_c00236{font-size:54.000000px;}
.fs2_c00236{font-size:57.000000px;}
.fs1_c00236{font-size:60.000000px;}
.y0_c00236{bottom:0.000000px;}
.y18_c00236{bottom:351.586800px;}
.y17_c00236{bottom:365.086800px;}
.y16_c00236{bottom:378.586800px;}
.y15_c00236{bottom:400.838700px;}
.y14_c00236{bottom:414.338700px;}
.y13_c00236{bottom:427.838700px;}
.y12_c00236{bottom:454.342650px;}
.y11_c00236{bottom:467.842650px;}
.y10_c00236{bottom:481.342650px;}
.yf_c00236{bottom:503.594700px;}
.ye_c00236{bottom:521.594700px;}
.yd_c00236{bottom:548.098650px;}
.yc_c00236{bottom:849.811050px;}
.yb_c00236{bottom:863.311050px;}
.ya_c00236{bottom:876.811050px;}
.y9_c00236{bottom:903.315000px;}
.y8_c00236{bottom:916.815000px;}
.y7_c00236{bottom:943.318950px;}
.y6_c00236{bottom:956.818950px;}
.y5_c00236{bottom:970.318950px;}
.y4_c00236{bottom:992.570850px;}
.y3_c00236{bottom:1010.570850px;}
.y2_c00236{bottom:1037.074950px;}
.y19_c00236{bottom:1041.140850px;}
.y1_c00236{bottom:1093.600950px;}
.h8_c00236{height:25.200000px;}
.h7_c00236{height:30.282000px;}
.h5_c00236{height:34.080000px;}
.h2_c00236{height:39.264000px;}
.h3_c00236{height:39.984000px;}
.h4_c00236{height:43.260000px;}
.h6_c00236{height:43.740000px;}
.h1_c00236{height:1135.500000px;}
.h0_c00236{height:1135.506150px;}
.w0_c00236{width:893.950200px;}
.w1_c00236{width:894.000000px;}
.x0_c00236{left:0.000000px;}
.x4_c00236{left:128.626800px;}
.x5_c00236{left:141.382650px;}
.x2_c00236{left:188.061900px;}
.x3_c00236{left:190.513350px;}
.x6_c00236{left:321.919050px;}
.x1_c00236{left:800.165850px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls5_c00236{letter-spacing:-0.720000pt;}
.ls3_c00236{letter-spacing:-0.640000pt;}
.ls4_c00236{letter-spacing:-0.560000pt;}
.ls2_c00236{letter-spacing:-0.336000pt;}
.ls1_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.426667pt;}
.ws1_c00236{word-spacing:-7.728000pt;}
.ws2_c00236{word-spacing:-5.766400pt;}
.ws0_c00236{word-spacing:-0.042667pt;}
.ws3_c00236{word-spacing:0.000000pt;}
.ws5_c00236{word-spacing:0.336000pt;}
.ws6_c00236{word-spacing:0.560000pt;}
.ws4_c00236{word-spacing:6.272000pt;}
._0_c00236{margin-left:-2449.134400pt;}
._4_c00236{margin-left:-6.174933pt;}
._1_c00236{margin-left:-2.005333pt;}
._3_c00236{margin-left:-1.066667pt;}
._2_c00236{width:0.896000pt;}
._7_c00236{width:6.912000pt;}
._5_c00236{width:49.488000pt;}
._6_c00236{width:52.565333pt;}
.fs5_c00236{font-size:27.200000pt;}
.fs6_c00236{font-size:32.000000pt;}
.fs3_c00236{font-size:37.333333pt;}
.fs0_c00236{font-size:42.666667pt;}
.fs4_c00236{font-size:48.000000pt;}
.fs2_c00236{font-size:50.666667pt;}
.fs1_c00236{font-size:53.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.y18_c00236{bottom:312.521600pt;}
.y17_c00236{bottom:324.521600pt;}
.y16_c00236{bottom:336.521600pt;}
.y15_c00236{bottom:356.301067pt;}
.y14_c00236{bottom:368.301067pt;}
.y13_c00236{bottom:380.301067pt;}
.y12_c00236{bottom:403.860133pt;}
.y11_c00236{bottom:415.860133pt;}
.y10_c00236{bottom:427.860133pt;}
.yf_c00236{bottom:447.639733pt;}
.ye_c00236{bottom:463.639733pt;}
.yd_c00236{bottom:487.198800pt;}
.yc_c00236{bottom:755.387600pt;}
.yb_c00236{bottom:767.387600pt;}
.ya_c00236{bottom:779.387600pt;}
.y9_c00236{bottom:802.946667pt;}
.y8_c00236{bottom:814.946667pt;}
.y7_c00236{bottom:838.505733pt;}
.y6_c00236{bottom:850.505733pt;}
.y5_c00236{bottom:862.505733pt;}
.y4_c00236{bottom:882.285200pt;}
.y3_c00236{bottom:898.285200pt;}
.y2_c00236{bottom:921.844400pt;}
.y19_c00236{bottom:925.458533pt;}
.y1_c00236{bottom:972.089733pt;}
.h8_c00236{height:22.400000pt;}
.h7_c00236{height:26.917333pt;}
.h5_c00236{height:30.293333pt;}
.h2_c00236{height:34.901333pt;}
.h3_c00236{height:35.541333pt;}
.h4_c00236{height:38.453333pt;}
.h6_c00236{height:38.880000pt;}
.h1_c00236{height:1009.333333pt;}
.h0_c00236{height:1009.338800pt;}
.w0_c00236{width:794.622400pt;}
.w1_c00236{width:794.666667pt;}
.x0_c00236{left:0.000000pt;}
.x4_c00236{left:114.334933pt;}
.x5_c00236{left:125.673467pt;}
.x2_c00236{left:167.166133pt;}
.x3_c00236{left:169.345200pt;}
.x6_c00236{left:286.150267pt;}
.x1_c00236{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00237;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.067000;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00237{font-family:ff7_c00237;line-height:0.710000;font-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_c00237{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls1_c00237{letter-spacing:-1.026000px;}
.ls2_c00237{letter-spacing:-0.720000px;}
.ls3_c00237{letter-spacing:-0.630000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00237{word-spacing:-6.487200px;}
.ws3_c00237{word-spacing:0.000000px;}
.ws4_c00237{word-spacing:7.056000px;}
.ws5_c00237{word-spacing:56.700000px;}
.ws0_c00237{word-spacing:1574.587200px;}
._3_c00237{margin-left:-7.042800px;}
._0_c00237{margin-left:-2.112000px;}
._1_c00237{margin-left:-1.104000px;}
._2_c00237{width:2.016000px;}
._5_c00237{width:7.776000px;}
._6_c00237{width:55.674000px;}
._4_c00237{width:59.136000px;}
.fc0_c00237{color:rgb(35,31,32);}
.fs5_c00237{font-size:30.600000px;}
.fs6_c00237{font-size:36.000000px;}
.fs3_c00237{font-size:42.000000px;}
.fs0_c00237{font-size:48.000000px;}
.fs4_c00237{font-size:54.000000px;}
.fs2_c00237{font-size:57.000000px;}
.fs1_c00237{font-size:60.000000px;}
.y0_c00237{bottom:0.000000px;}
.y19_c00237{bottom:317.979150px;}
.y18_c00237{bottom:361.348650px;}
.y17_c00237{bottom:374.848500px;}
.y16_c00237{bottom:401.352450px;}
.y15_c00237{bottom:414.852450px;}
.y14_c00237{bottom:428.352450px;}
.y13_c00237{bottom:454.856400px;}
.y12_c00237{bottom:468.356400px;}
.y11_c00237{bottom:481.856400px;}
.y10_c00237{bottom:504.108450px;}
.yf_c00237{bottom:522.108450px;}
.ye_c00237{bottom:548.612250px;}
.yd_c00237{bottom:836.824800px;}
.yc_c00237{bottom:850.324800px;}
.yb_c00237{bottom:863.824800px;}
.ya_c00237{bottom:890.328750px;}
.y9_c00237{bottom:903.828750px;}
.y8_c00237{bottom:917.328750px;}
.y7_c00237{bottom:943.832700px;}
.y6_c00237{bottom:957.332700px;}
.y5_c00237{bottom:970.832700px;}
.y4_c00237{bottom:993.084750px;}
.y3_c00237{bottom:1011.084750px;}
.y2_c00237{bottom:1037.588700px;}
.y1_c00237{bottom:1093.600950px;}
.h7_c00237{height:25.200000px;}
.h6_c00237{height:30.282000px;}
.h4_c00237{height:34.080000px;}
.h2_c00237{height:39.264000px;}
.h3_c00237{height:43.260000px;}
.h5_c00237{height:43.740000px;}
.h1_c00237{height:1135.500000px;}
.h0_c00237{height:1135.506150px;}
.w0_c00237{width:893.950200px;}
.w1_c00237{width:894.000000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:77.603100px;}
.x4_c00237{left:424.138500px;}
.x2_c00237{left:599.532150px;}
.x3_c00237{left:612.288150px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls1_c00237{letter-spacing:-0.912000pt;}
.ls2_c00237{letter-spacing:-0.640000pt;}
.ls3_c00237{letter-spacing:-0.560000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws1_c00237{word-spacing:-7.728000pt;}
.ws2_c00237{word-spacing:-5.766400pt;}
.ws3_c00237{word-spacing:0.000000pt;}
.ws4_c00237{word-spacing:6.272000pt;}
.ws5_c00237{word-spacing:50.400000pt;}
.ws0_c00237{word-spacing:1399.633067pt;}
._3_c00237{margin-left:-6.260267pt;}
._0_c00237{margin-left:-1.877333pt;}
._1_c00237{margin-left:-0.981333pt;}
._2_c00237{width:1.792000pt;}
._5_c00237{width:6.912000pt;}
._6_c00237{width:49.488000pt;}
._4_c00237{width:52.565333pt;}
.fs5_c00237{font-size:27.200000pt;}
.fs6_c00237{font-size:32.000000pt;}
.fs3_c00237{font-size:37.333333pt;}
.fs0_c00237{font-size:42.666667pt;}
.fs4_c00237{font-size:48.000000pt;}
.fs2_c00237{font-size:50.666667pt;}
.fs1_c00237{font-size:53.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y19_c00237{bottom:282.648133pt;}
.y18_c00237{bottom:321.198800pt;}
.y17_c00237{bottom:333.198667pt;}
.y16_c00237{bottom:356.757733pt;}
.y15_c00237{bottom:368.757733pt;}
.y14_c00237{bottom:380.757733pt;}
.y13_c00237{bottom:404.316800pt;}
.y12_c00237{bottom:416.316800pt;}
.y11_c00237{bottom:428.316800pt;}
.y10_c00237{bottom:448.096400pt;}
.yf_c00237{bottom:464.096400pt;}
.ye_c00237{bottom:487.655333pt;}
.yd_c00237{bottom:743.844267pt;}
.yc_c00237{bottom:755.844267pt;}
.yb_c00237{bottom:767.844267pt;}
.ya_c00237{bottom:791.403333pt;}
.y9_c00237{bottom:803.403333pt;}
.y8_c00237{bottom:815.403333pt;}
.y7_c00237{bottom:838.962400pt;}
.y6_c00237{bottom:850.962400pt;}
.y5_c00237{bottom:862.962400pt;}
.y4_c00237{bottom:882.742000pt;}
.y3_c00237{bottom:898.742000pt;}
.y2_c00237{bottom:922.301067pt;}
.y1_c00237{bottom:972.089733pt;}
.h7_c00237{height:22.400000pt;}
.h6_c00237{height:26.917333pt;}
.h4_c00237{height:30.293333pt;}
.h2_c00237{height:34.901333pt;}
.h3_c00237{height:38.453333pt;}
.h5_c00237{height:38.880000pt;}
.h1_c00237{height:1009.333333pt;}
.h0_c00237{height:1009.338800pt;}
.w0_c00237{width:794.622400pt;}
.w1_c00237{width:794.666667pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:68.980533pt;}
.x4_c00237{left:377.012000pt;}
.x2_c00237{left:532.917467pt;}
.x3_c00237{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00238;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00238{font-family:ff7_c00238;line-height:1.067000;font-style:normal;font-weight: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_c00238;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00238{font-family:ff8_c00238;line-height:0.710000;font-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_c00238{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls5_c00238{letter-spacing:-0.810000px;}
.ls3_c00238{letter-spacing:-0.720000px;}
.ls4_c00238{letter-spacing:-0.630000px;}
.ls2_c00238{letter-spacing:-0.216000px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00238{word-spacing:-10.896000px;}
.ws1_c00238{word-spacing:-8.694000px;}
.ws2_c00238{word-spacing:-6.487200px;}
.ws3_c00238{word-spacing:0.000000px;}
.ws5_c00238{word-spacing:0.216000px;}
.ws4_c00238{word-spacing:7.056000px;}
._0_c00238{margin-left:-2755.276200px;}
._4_c00238{margin-left:-6.946800px;}
._1_c00238{margin-left:-2.256000px;}
._3_c00238{margin-left:-1.200000px;}
._2_c00238{width:1.008000px;}
._7_c00238{width:7.776000px;}
._5_c00238{width:55.674000px;}
._6_c00238{width:59.136000px;}
.fc0_c00238{color:rgb(35,31,32);}
.fs5_c00238{font-size:30.600000px;}
.fs6_c00238{font-size:36.000000px;}
.fs3_c00238{font-size:42.000000px;}
.fs0_c00238{font-size:48.000000px;}
.fs4_c00238{font-size:54.000000px;}
.fs2_c00238{font-size:57.000000px;}
.fs1_c00238{font-size:60.000000px;}
.y0_c00238{bottom:0.000000px;}
.y18_c00238{bottom:365.308350px;}
.y17_c00238{bottom:378.808350px;}
.y16_c00238{bottom:392.308350px;}
.y15_c00238{bottom:414.560250px;}
.y14_c00238{bottom:428.060250px;}
.y13_c00238{bottom:454.564200px;}
.y12_c00238{bottom:468.064200px;}
.y11_c00238{bottom:481.564200px;}
.y10_c00238{bottom:503.816250px;}
.yf_c00238{bottom:521.816250px;}
.ye_c00238{bottom:548.320050px;}
.y19_c00238{bottom:551.323050px;}
.yd_c00238{bottom:836.532600px;}
.yc_c00238{bottom:850.032600px;}
.yb_c00238{bottom:863.532600px;}
.ya_c00238{bottom:890.036550px;}
.y9_c00238{bottom:903.536550px;}
.y8_c00238{bottom:917.036550px;}
.y7_c00238{bottom:943.540500px;}
.y6_c00238{bottom:957.040500px;}
.y5_c00238{bottom:970.540500px;}
.y4_c00238{bottom:992.792550px;}
.y3_c00238{bottom:1010.792550px;}
.y2_c00238{bottom:1037.296500px;}
.y1_c00238{bottom:1093.600950px;}
.h8_c00238{height:25.200000px;}
.h7_c00238{height:30.282000px;}
.h5_c00238{height:34.080000px;}
.h2_c00238{height:39.264000px;}
.h3_c00238{height:39.984000px;}
.h4_c00238{height:43.260000px;}
.h6_c00238{height:43.740000px;}
.h1_c00238{height:1135.500000px;}
.h0_c00238{height:1135.506150px;}
.w0_c00238{width:893.950200px;}
.w1_c00238{width:894.000000px;}
.x0_c00238{left:0.000000px;}
.x4_c00238{left:128.626800px;}
.x5_c00238{left:141.382650px;}
.x2_c00238{left:188.061900px;}
.x3_c00238{left:190.513350px;}
.x6_c00238{left:321.801150px;}
.x1_c00238{left:800.165850px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls5_c00238{letter-spacing:-0.720000pt;}
.ls3_c00238{letter-spacing:-0.640000pt;}
.ls4_c00238{letter-spacing:-0.560000pt;}
.ls2_c00238{letter-spacing:-0.192000pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.426667pt;}
.ws0_c00238{word-spacing:-9.685333pt;}
.ws1_c00238{word-spacing:-7.728000pt;}
.ws2_c00238{word-spacing:-5.766400pt;}
.ws3_c00238{word-spacing:0.000000pt;}
.ws5_c00238{word-spacing:0.192000pt;}
.ws4_c00238{word-spacing:6.272000pt;}
._0_c00238{margin-left:-2449.134400pt;}
._4_c00238{margin-left:-6.174933pt;}
._1_c00238{margin-left:-2.005333pt;}
._3_c00238{margin-left:-1.066667pt;}
._2_c00238{width:0.896000pt;}
._7_c00238{width:6.912000pt;}
._5_c00238{width:49.488000pt;}
._6_c00238{width:52.565333pt;}
.fs5_c00238{font-size:27.200000pt;}
.fs6_c00238{font-size:32.000000pt;}
.fs3_c00238{font-size:37.333333pt;}
.fs0_c00238{font-size:42.666667pt;}
.fs4_c00238{font-size:48.000000pt;}
.fs2_c00238{font-size:50.666667pt;}
.fs1_c00238{font-size:53.333333pt;}
.y0_c00238{bottom:0.000000pt;}
.y18_c00238{bottom:324.718533pt;}
.y17_c00238{bottom:336.718533pt;}
.y16_c00238{bottom:348.718533pt;}
.y15_c00238{bottom:368.498000pt;}
.y14_c00238{bottom:380.498000pt;}
.y13_c00238{bottom:404.057067pt;}
.y12_c00238{bottom:416.057067pt;}
.y11_c00238{bottom:428.057067pt;}
.y10_c00238{bottom:447.836667pt;}
.yf_c00238{bottom:463.836667pt;}
.ye_c00238{bottom:487.395600pt;}
.y19_c00238{bottom:490.064933pt;}
.yd_c00238{bottom:743.584533pt;}
.yc_c00238{bottom:755.584533pt;}
.yb_c00238{bottom:767.584533pt;}
.ya_c00238{bottom:791.143600pt;}
.y9_c00238{bottom:803.143600pt;}
.y8_c00238{bottom:815.143600pt;}
.y7_c00238{bottom:838.702667pt;}
.y6_c00238{bottom:850.702667pt;}
.y5_c00238{bottom:862.702667pt;}
.y4_c00238{bottom:882.482267pt;}
.y3_c00238{bottom:898.482267pt;}
.y2_c00238{bottom:922.041333pt;}
.y1_c00238{bottom:972.089733pt;}
.h8_c00238{height:22.400000pt;}
.h7_c00238{height:26.917333pt;}
.h5_c00238{height:30.293333pt;}
.h2_c00238{height:34.901333pt;}
.h3_c00238{height:35.541333pt;}
.h4_c00238{height:38.453333pt;}
.h6_c00238{height:38.880000pt;}
.h1_c00238{height:1009.333333pt;}
.h0_c00238{height:1009.338800pt;}
.w0_c00238{width:794.622400pt;}
.w1_c00238{width:794.666667pt;}
.x0_c00238{left:0.000000pt;}
.x4_c00238{left:114.334933pt;}
.x5_c00238{left:125.673467pt;}
.x2_c00238{left:167.166133pt;}
.x3_c00238{left:169.345200pt;}
.x6_c00238{left:286.045467pt;}
.x1_c00238{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00239;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls1_c00239{letter-spacing:-1.350000px;}
.ls2_c00239{letter-spacing:-0.720000px;}
.ls3_c00239{letter-spacing:-0.630000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00239{word-spacing:0.000000px;}
.ws4_c00239{word-spacing:0.540000px;}
.ws3_c00239{word-spacing:7.056000px;}
.ws0_c00239{word-spacing:1574.587200px;}
._3_c00239{margin-left:-7.042800px;}
._0_c00239{margin-left:-2.112000px;}
._1_c00239{margin-left:-1.104000px;}
._2_c00239{width:2.016000px;}
._6_c00239{width:7.776000px;}
._4_c00239{width:56.484000px;}
._5_c00239{width:59.136000px;}
.fc0_c00239{color:rgb(35,31,32);}
.fs3_c00239{font-size:42.000000px;}
.fs0_c00239{font-size:48.000000px;}
.fs4_c00239{font-size:54.000000px;}
.fs2_c00239{font-size:57.000000px;}
.fs1_c00239{font-size:60.000000px;}
.y0_c00239{bottom:0.000000px;}
.y19_c00239{bottom:347.848650px;}
.y18_c00239{bottom:361.348650px;}
.y17_c00239{bottom:374.848500px;}
.y16_c00239{bottom:401.352450px;}
.y15_c00239{bottom:414.852450px;}
.y14_c00239{bottom:428.352450px;}
.y13_c00239{bottom:454.856400px;}
.y12_c00239{bottom:468.356400px;}
.y11_c00239{bottom:481.856400px;}
.y10_c00239{bottom:504.108450px;}
.yf_c00239{bottom:522.108450px;}
.ye_c00239{bottom:548.612250px;}
.yd_c00239{bottom:836.824800px;}
.yc_c00239{bottom:850.324800px;}
.yb_c00239{bottom:863.824800px;}
.ya_c00239{bottom:890.328750px;}
.y9_c00239{bottom:903.828750px;}
.y8_c00239{bottom:917.328750px;}
.y7_c00239{bottom:943.832700px;}
.y6_c00239{bottom:957.332700px;}
.y5_c00239{bottom:970.832700px;}
.y4_c00239{bottom:993.084750px;}
.y3_c00239{bottom:1011.084750px;}
.y2_c00239{bottom:1037.588700px;}
.y1_c00239{bottom:1093.600950px;}
.h6_c00239{height:30.282000px;}
.h4_c00239{height:34.080000px;}
.h2_c00239{height:39.264000px;}
.h3_c00239{height:43.260000px;}
.h5_c00239{height:43.740000px;}
.h1_c00239{height:1135.500000px;}
.h0_c00239{height:1135.506150px;}
.w0_c00239{width:893.950200px;}
.w1_c00239{width:894.000000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:77.603100px;}
.x2_c00239{left:599.532150px;}
.x3_c00239{left:612.288150px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls1_c00239{letter-spacing:-1.200000pt;}
.ls2_c00239{letter-spacing:-0.640000pt;}
.ls3_c00239{letter-spacing:-0.560000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws1_c00239{word-spacing:-7.728000pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.ws4_c00239{word-spacing:0.480000pt;}
.ws3_c00239{word-spacing:6.272000pt;}
.ws0_c00239{word-spacing:1399.633067pt;}
._3_c00239{margin-left:-6.260267pt;}
._0_c00239{margin-left:-1.877333pt;}
._1_c00239{margin-left:-0.981333pt;}
._2_c00239{width:1.792000pt;}
._6_c00239{width:6.912000pt;}
._4_c00239{width:50.208000pt;}
._5_c00239{width:52.565333pt;}
.fs3_c00239{font-size:37.333333pt;}
.fs0_c00239{font-size:42.666667pt;}
.fs4_c00239{font-size:48.000000pt;}
.fs2_c00239{font-size:50.666667pt;}
.fs1_c00239{font-size:53.333333pt;}
.y0_c00239{bottom:0.000000pt;}
.y19_c00239{bottom:309.198800pt;}
.y18_c00239{bottom:321.198800pt;}
.y17_c00239{bottom:333.198667pt;}
.y16_c00239{bottom:356.757733pt;}
.y15_c00239{bottom:368.757733pt;}
.y14_c00239{bottom:380.757733pt;}
.y13_c00239{bottom:404.316800pt;}
.y12_c00239{bottom:416.316800pt;}
.y11_c00239{bottom:428.316800pt;}
.y10_c00239{bottom:448.096400pt;}
.yf_c00239{bottom:464.096400pt;}
.ye_c00239{bottom:487.655333pt;}
.yd_c00239{bottom:743.844267pt;}
.yc_c00239{bottom:755.844267pt;}
.yb_c00239{bottom:767.844267pt;}
.ya_c00239{bottom:791.403333pt;}
.y9_c00239{bottom:803.403333pt;}
.y8_c00239{bottom:815.403333pt;}
.y7_c00239{bottom:838.962400pt;}
.y6_c00239{bottom:850.962400pt;}
.y5_c00239{bottom:862.962400pt;}
.y4_c00239{bottom:882.742000pt;}
.y3_c00239{bottom:898.742000pt;}
.y2_c00239{bottom:922.301067pt;}
.y1_c00239{bottom:972.089733pt;}
.h6_c00239{height:26.917333pt;}
.h4_c00239{height:30.293333pt;}
.h2_c00239{height:34.901333pt;}
.h3_c00239{height:38.453333pt;}
.h5_c00239{height:38.880000pt;}
.h1_c00239{height:1009.333333pt;}
.h0_c00239{height:1009.338800pt;}
.w0_c00239{width:794.622400pt;}
.w1_c00239{width:794.666667pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:68.980533pt;}
.x2_c00239{left:532.917467pt;}
.x3_c00239{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:0.908000;font-style:normal;font-weight: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_c00240;src:url('chunks/assets/font_5c5df1a273e4a14e4058642c.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:1.067000;font-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_c00240{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls6_c00240{letter-spacing:-1.026000px;}
.ls5_c00240{letter-spacing:-0.810000px;}
.ls3_c00240{letter-spacing:-0.720000px;}
.ls4_c00240{letter-spacing:-0.630000px;}
.ls2_c00240{letter-spacing:-0.378000px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.480000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:-10.896000px;}
.ws1_c00240{word-spacing:-8.694000px;}
.ws2_c00240{word-spacing:0.000000px;}
.ws4_c00240{word-spacing:0.378000px;}
.ws5_c00240{word-spacing:1.026000px;}
.ws3_c00240{word-spacing:7.056000px;}
._0_c00240{margin-left:-2755.276200px;}
._4_c00240{margin-left:-6.946800px;}
._1_c00240{margin-left:-2.256000px;}
._3_c00240{margin-left:-1.200000px;}
._2_c00240{width:1.008000px;}
._7_c00240{width:7.776000px;}
._5_c00240{width:55.674000px;}
._6_c00240{width:59.136000px;}
.fc0_c00240{color:rgb(35,31,32);}
.fs3_c00240{font-size:42.000000px;}
.fs0_c00240{font-size:48.000000px;}
.fs4_c00240{font-size:54.000000px;}
.fs2_c00240{font-size:57.000000px;}
.fs1_c00240{font-size:60.000000px;}
.y0_c00240{bottom:0.000000px;}
.y1a_c00240{bottom:329.556450px;}
.y19_c00240{bottom:343.056450px;}
.y18_c00240{bottom:356.556300px;}
.y17_c00240{bottom:383.060250px;}
.y16_c00240{bottom:396.560250px;}
.y15_c00240{bottom:410.060250px;}
.y14_c00240{bottom:436.564200px;}
.y13_c00240{bottom:450.064200px;}
.y12_c00240{bottom:463.564200px;}
.y11_c00240{bottom:485.816250px;}
.y10_c00240{bottom:503.816250px;}
.yf_c00240{bottom:521.816250px;}
.ye_c00240{bottom:548.320050px;}
.yd_c00240{bottom:836.532600px;}
.yc_c00240{bottom:850.032600px;}
.yb_c00240{bottom:863.532600px;}
.ya_c00240{bottom:890.036550px;}
.y9_c00240{bottom:903.536550px;}
.y8_c00240{bottom:917.036550px;}
.y7_c00240{bottom:943.540500px;}
.y6_c00240{bottom:957.040500px;}
.y5_c00240{bottom:970.540500px;}
.y4_c00240{bottom:992.792550px;}
.y3_c00240{bottom:1010.792550px;}
.y2_c00240{bottom:1037.296500px;}
.y1_c00240{bottom:1093.600950px;}
.h7_c00240{height:30.282000px;}
.h5_c00240{height:34.080000px;}
.h2_c00240{height:39.264000px;}
.h3_c00240{height:39.984000px;}
.h4_c00240{height:43.260000px;}
.h6_c00240{height:43.740000px;}
.h1_c00240{height:1135.500000px;}
.h0_c00240{height:1135.506150px;}
.w0_c00240{width:893.950200px;}
.w1_c00240{width:894.000000px;}
.x0_c00240{left:0.000000px;}
.x4_c00240{left:128.626800px;}
.x5_c00240{left:141.382650px;}
.x6_c00240{left:145.634700px;}
.x2_c00240{left:188.061900px;}
.x3_c00240{left:190.513350px;}
.x1_c00240{left:800.165850px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls6_c00240{letter-spacing:-0.912000pt;}
.ls5_c00240{letter-spacing:-0.720000pt;}
.ls3_c00240{letter-spacing:-0.640000pt;}
.ls4_c00240{letter-spacing:-0.560000pt;}
.ls2_c00240{letter-spacing:-0.336000pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.426667pt;}
.ws0_c00240{word-spacing:-9.685333pt;}
.ws1_c00240{word-spacing:-7.728000pt;}
.ws2_c00240{word-spacing:0.000000pt;}
.ws4_c00240{word-spacing:0.336000pt;}
.ws5_c00240{word-spacing:0.912000pt;}
.ws3_c00240{word-spacing:6.272000pt;}
._0_c00240{margin-left:-2449.134400pt;}
._4_c00240{margin-left:-6.174933pt;}
._1_c00240{margin-left:-2.005333pt;}
._3_c00240{margin-left:-1.066667pt;}
._2_c00240{width:0.896000pt;}
._7_c00240{width:6.912000pt;}
._5_c00240{width:49.488000pt;}
._6_c00240{width:52.565333pt;}
.fs3_c00240{font-size:37.333333pt;}
.fs0_c00240{font-size:42.666667pt;}
.fs4_c00240{font-size:48.000000pt;}
.fs2_c00240{font-size:50.666667pt;}
.fs1_c00240{font-size:53.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.y1a_c00240{bottom:292.939067pt;}
.y19_c00240{bottom:304.939067pt;}
.y18_c00240{bottom:316.938933pt;}
.y17_c00240{bottom:340.498000pt;}
.y16_c00240{bottom:352.498000pt;}
.y15_c00240{bottom:364.498000pt;}
.y14_c00240{bottom:388.057067pt;}
.y13_c00240{bottom:400.057067pt;}
.y12_c00240{bottom:412.057067pt;}
.y11_c00240{bottom:431.836667pt;}
.y10_c00240{bottom:447.836667pt;}
.yf_c00240{bottom:463.836667pt;}
.ye_c00240{bottom:487.395600pt;}
.yd_c00240{bottom:743.584533pt;}
.yc_c00240{bottom:755.584533pt;}
.yb_c00240{bottom:767.584533pt;}
.ya_c00240{bottom:791.143600pt;}
.y9_c00240{bottom:803.143600pt;}
.y8_c00240{bottom:815.143600pt;}
.y7_c00240{bottom:838.702667pt;}
.y6_c00240{bottom:850.702667pt;}
.y5_c00240{bottom:862.702667pt;}
.y4_c00240{bottom:882.482267pt;}
.y3_c00240{bottom:898.482267pt;}
.y2_c00240{bottom:922.041333pt;}
.y1_c00240{bottom:972.089733pt;}
.h7_c00240{height:26.917333pt;}
.h5_c00240{height:30.293333pt;}
.h2_c00240{height:34.901333pt;}
.h3_c00240{height:35.541333pt;}
.h4_c00240{height:38.453333pt;}
.h6_c00240{height:38.880000pt;}
.h1_c00240{height:1009.333333pt;}
.h0_c00240{height:1009.338800pt;}
.w0_c00240{width:794.622400pt;}
.w1_c00240{width:794.666667pt;}
.x0_c00240{left:0.000000pt;}
.x4_c00240{left:114.334933pt;}
.x5_c00240{left:125.673467pt;}
.x6_c00240{left:129.453067pt;}
.x2_c00240{left:167.166133pt;}
.x3_c00240{left:169.345200pt;}
.x1_c00240{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00241;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00241{font-family:ff6_c00241;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls1_c00241{letter-spacing:-1.350000px;}
.ls2_c00241{letter-spacing:-0.720000px;}
.ls3_c00241{letter-spacing:-0.630000px;}
.ls4_c00241{letter-spacing:-0.216000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00241{word-spacing:0.000000px;}
.ws5_c00241{word-spacing:0.216000px;}
.ws4_c00241{word-spacing:0.540000px;}
.ws3_c00241{word-spacing:7.056000px;}
.ws0_c00241{word-spacing:1574.587200px;}
._3_c00241{margin-left:-7.042800px;}
._0_c00241{margin-left:-2.112000px;}
._1_c00241{margin-left:-1.104000px;}
._2_c00241{width:2.016000px;}
._6_c00241{width:7.776000px;}
._4_c00241{width:56.484000px;}
._5_c00241{width:59.136000px;}
.fc0_c00241{color:rgb(35,31,32);}
.fs3_c00241{font-size:42.000000px;}
.fs0_c00241{font-size:48.000000px;}
.fs4_c00241{font-size:54.000000px;}
.fs2_c00241{font-size:57.000000px;}
.fs1_c00241{font-size:60.000000px;}
.y0_c00241{bottom:0.000000px;}
.y19_c00241{bottom:352.100550px;}
.y18_c00241{bottom:365.600550px;}
.y17_c00241{bottom:379.100550px;}
.y16_c00241{bottom:401.352450px;}
.y15_c00241{bottom:414.852450px;}
.y14_c00241{bottom:428.352450px;}
.y13_c00241{bottom:454.856400px;}
.y12_c00241{bottom:468.356400px;}
.y11_c00241{bottom:481.856400px;}
.y10_c00241{bottom:504.108450px;}
.yf_c00241{bottom:522.108450px;}
.ye_c00241{bottom:548.612250px;}
.yd_c00241{bottom:836.824800px;}
.yc_c00241{bottom:850.324800px;}
.yb_c00241{bottom:863.824800px;}
.ya_c00241{bottom:890.328750px;}
.y9_c00241{bottom:903.828750px;}
.y8_c00241{bottom:917.328750px;}
.y7_c00241{bottom:943.832700px;}
.y6_c00241{bottom:957.332700px;}
.y5_c00241{bottom:970.832700px;}
.y4_c00241{bottom:993.084750px;}
.y3_c00241{bottom:1011.084750px;}
.y2_c00241{bottom:1037.588700px;}
.y1_c00241{bottom:1093.600950px;}
.h6_c00241{height:30.282000px;}
.h4_c00241{height:34.080000px;}
.h2_c00241{height:39.264000px;}
.h3_c00241{height:43.260000px;}
.h5_c00241{height:43.740000px;}
.h1_c00241{height:1135.500000px;}
.h0_c00241{height:1135.506150px;}
.w0_c00241{width:893.950200px;}
.w1_c00241{width:894.000000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:77.603100px;}
.x2_c00241{left:599.532150px;}
.x3_c00241{left:612.288150px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls1_c00241{letter-spacing:-1.200000pt;}
.ls2_c00241{letter-spacing:-0.640000pt;}
.ls3_c00241{letter-spacing:-0.560000pt;}
.ls4_c00241{letter-spacing:-0.192000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws1_c00241{word-spacing:-7.728000pt;}
.ws2_c00241{word-spacing:0.000000pt;}
.ws5_c00241{word-spacing:0.192000pt;}
.ws4_c00241{word-spacing:0.480000pt;}
.ws3_c00241{word-spacing:6.272000pt;}
.ws0_c00241{word-spacing:1399.633067pt;}
._3_c00241{margin-left:-6.260267pt;}
._0_c00241{margin-left:-1.877333pt;}
._1_c00241{margin-left:-0.981333pt;}
._2_c00241{width:1.792000pt;}
._6_c00241{width:6.912000pt;}
._4_c00241{width:50.208000pt;}
._5_c00241{width:52.565333pt;}
.fs3_c00241{font-size:37.333333pt;}
.fs0_c00241{font-size:42.666667pt;}
.fs4_c00241{font-size:48.000000pt;}
.fs2_c00241{font-size:50.666667pt;}
.fs1_c00241{font-size:53.333333pt;}
.y0_c00241{bottom:0.000000pt;}
.y19_c00241{bottom:312.978267pt;}
.y18_c00241{bottom:324.978267pt;}
.y17_c00241{bottom:336.978267pt;}
.y16_c00241{bottom:356.757733pt;}
.y15_c00241{bottom:368.757733pt;}
.y14_c00241{bottom:380.757733pt;}
.y13_c00241{bottom:404.316800pt;}
.y12_c00241{bottom:416.316800pt;}
.y11_c00241{bottom:428.316800pt;}
.y10_c00241{bottom:448.096400pt;}
.yf_c00241{bottom:464.096400pt;}
.ye_c00241{bottom:487.655333pt;}
.yd_c00241{bottom:743.844267pt;}
.yc_c00241{bottom:755.844267pt;}
.yb_c00241{bottom:767.844267pt;}
.ya_c00241{bottom:791.403333pt;}
.y9_c00241{bottom:803.403333pt;}
.y8_c00241{bottom:815.403333pt;}
.y7_c00241{bottom:838.962400pt;}
.y6_c00241{bottom:850.962400pt;}
.y5_c00241{bottom:862.962400pt;}
.y4_c00241{bottom:882.742000pt;}
.y3_c00241{bottom:898.742000pt;}
.y2_c00241{bottom:922.301067pt;}
.y1_c00241{bottom:972.089733pt;}
.h6_c00241{height:26.917333pt;}
.h4_c00241{height:30.293333pt;}
.h2_c00241{height:34.901333pt;}
.h3_c00241{height:38.453333pt;}
.h5_c00241{height:38.880000pt;}
.h1_c00241{height:1009.333333pt;}
.h0_c00241{height:1009.338800pt;}
.w0_c00241{width:794.622400pt;}
.w1_c00241{width:794.666667pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:68.980533pt;}
.x2_c00241{left:532.917467pt;}
.x3_c00241{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00242;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00242{font-family:ff6_c00242;line-height:0.908000;font-style:normal;font-weight: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_c00242;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00242{font-family:ff7_c00242;line-height:1.067000;font-style:normal;font-weight: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_c00242;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00242{font-family:ff8_c00242;line-height:0.710000;font-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_c00242{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls5_c00242{letter-spacing:-0.810000px;}
.ls3_c00242{letter-spacing:-0.720000px;}
.ls4_c00242{letter-spacing:-0.630000px;}
.ls2_c00242{letter-spacing:-0.432000px;}
.ls1_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00242{word-spacing:-8.694000px;}
.ws2_c00242{word-spacing:-6.487200px;}
.ws3_c00242{word-spacing:0.000000px;}
.ws4_c00242{word-spacing:7.056000px;}
.ws5_c00242{word-spacing:56.106000px;}
._0_c00242{margin-left:-2755.276200px;}
._4_c00242{margin-left:-6.946800px;}
._1_c00242{margin-left:-2.256000px;}
._3_c00242{margin-left:-1.200000px;}
._2_c00242{width:1.008000px;}
._6_c00242{width:7.776000px;}
._7_c00242{width:56.484000px;}
._5_c00242{width:59.136000px;}
.fc0_c00242{color:rgb(35,31,32);}
.fs5_c00242{font-size:30.600000px;}
.fs6_c00242{font-size:36.000000px;}
.fs3_c00242{font-size:42.000000px;}
.fs0_c00242{font-size:48.000000px;}
.fs4_c00242{font-size:54.000000px;}
.fs2_c00242{font-size:57.000000px;}
.fs1_c00242{font-size:60.000000px;}
.y0_c00242{bottom:0.000000px;}
.y17_c00242{bottom:365.308350px;}
.y16_c00242{bottom:378.808350px;}
.y15_c00242{bottom:392.308350px;}
.y14_c00242{bottom:414.560250px;}
.y13_c00242{bottom:428.060250px;}
.y12_c00242{bottom:454.564200px;}
.y11_c00242{bottom:468.064200px;}
.y10_c00242{bottom:481.564200px;}
.yf_c00242{bottom:503.816250px;}
.ye_c00242{bottom:521.816250px;}
.yd_c00242{bottom:548.320050px;}
.y18_c00242{bottom:551.323050px;}
.yc_c00242{bottom:850.032600px;}
.yb_c00242{bottom:863.532600px;}
.ya_c00242{bottom:877.032600px;}
.y9_c00242{bottom:903.536550px;}
.y8_c00242{bottom:917.036550px;}
.y7_c00242{bottom:943.540500px;}
.y6_c00242{bottom:957.040500px;}
.y5_c00242{bottom:970.540500px;}
.y4_c00242{bottom:992.792550px;}
.y3_c00242{bottom:1010.792550px;}
.y2_c00242{bottom:1037.296500px;}
.y19_c00242{bottom:1040.299350px;}
.y1_c00242{bottom:1093.600950px;}
.h8_c00242{height:25.200000px;}
.h7_c00242{height:30.282000px;}
.h5_c00242{height:34.080000px;}
.h2_c00242{height:39.264000px;}
.h3_c00242{height:39.984000px;}
.h4_c00242{height:43.260000px;}
.h6_c00242{height:43.740000px;}
.h1_c00242{height:1135.500000px;}
.h0_c00242{height:1135.506150px;}
.w0_c00242{width:893.950200px;}
.w1_c00242{width:894.000000px;}
.x0_c00242{left:0.000000px;}
.x4_c00242{left:128.626800px;}
.x5_c00242{left:141.382650px;}
.x2_c00242{left:188.061900px;}
.x3_c00242{left:190.513350px;}
.x6_c00242{left:321.801150px;}
.x1_c00242{left:800.165850px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls5_c00242{letter-spacing:-0.720000pt;}
.ls3_c00242{letter-spacing:-0.640000pt;}
.ls4_c00242{letter-spacing:-0.560000pt;}
.ls2_c00242{letter-spacing:-0.384000pt;}
.ls1_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:0.426667pt;}
.ws0_c00242{word-spacing:-9.685333pt;}
.ws1_c00242{word-spacing:-7.728000pt;}
.ws2_c00242{word-spacing:-5.766400pt;}
.ws3_c00242{word-spacing:0.000000pt;}
.ws4_c00242{word-spacing:6.272000pt;}
.ws5_c00242{word-spacing:49.872000pt;}
._0_c00242{margin-left:-2449.134400pt;}
._4_c00242{margin-left:-6.174933pt;}
._1_c00242{margin-left:-2.005333pt;}
._3_c00242{margin-left:-1.066667pt;}
._2_c00242{width:0.896000pt;}
._6_c00242{width:6.912000pt;}
._7_c00242{width:50.208000pt;}
._5_c00242{width:52.565333pt;}
.fs5_c00242{font-size:27.200000pt;}
.fs6_c00242{font-size:32.000000pt;}
.fs3_c00242{font-size:37.333333pt;}
.fs0_c00242{font-size:42.666667pt;}
.fs4_c00242{font-size:48.000000pt;}
.fs2_c00242{font-size:50.666667pt;}
.fs1_c00242{font-size:53.333333pt;}
.y0_c00242{bottom:0.000000pt;}
.y17_c00242{bottom:324.718533pt;}
.y16_c00242{bottom:336.718533pt;}
.y15_c00242{bottom:348.718533pt;}
.y14_c00242{bottom:368.498000pt;}
.y13_c00242{bottom:380.498000pt;}
.y12_c00242{bottom:404.057067pt;}
.y11_c00242{bottom:416.057067pt;}
.y10_c00242{bottom:428.057067pt;}
.yf_c00242{bottom:447.836667pt;}
.ye_c00242{bottom:463.836667pt;}
.yd_c00242{bottom:487.395600pt;}
.y18_c00242{bottom:490.064933pt;}
.yc_c00242{bottom:755.584533pt;}
.yb_c00242{bottom:767.584533pt;}
.ya_c00242{bottom:779.584533pt;}
.y9_c00242{bottom:803.143600pt;}
.y8_c00242{bottom:815.143600pt;}
.y7_c00242{bottom:838.702667pt;}
.y6_c00242{bottom:850.702667pt;}
.y5_c00242{bottom:862.702667pt;}
.y4_c00242{bottom:882.482267pt;}
.y3_c00242{bottom:898.482267pt;}
.y2_c00242{bottom:922.041333pt;}
.y19_c00242{bottom:924.710533pt;}
.y1_c00242{bottom:972.089733pt;}
.h8_c00242{height:22.400000pt;}
.h7_c00242{height:26.917333pt;}
.h5_c00242{height:30.293333pt;}
.h2_c00242{height:34.901333pt;}
.h3_c00242{height:35.541333pt;}
.h4_c00242{height:38.453333pt;}
.h6_c00242{height:38.880000pt;}
.h1_c00242{height:1009.333333pt;}
.h0_c00242{height:1009.338800pt;}
.w0_c00242{width:794.622400pt;}
.w1_c00242{width:794.666667pt;}
.x0_c00242{left:0.000000pt;}
.x4_c00242{left:114.334933pt;}
.x5_c00242{left:125.673467pt;}
.x2_c00242{left:167.166133pt;}
.x3_c00242{left:169.345200pt;}
.x6_c00242{left:286.045467pt;}
.x1_c00242{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00243;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls1_c00243{letter-spacing:-1.026000px;}
.ls2_c00243{letter-spacing:-0.720000px;}
.ls3_c00243{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00243{word-spacing:-8.694000px;}
.ws2_c00243{word-spacing:0.000000px;}
.ws4_c00243{word-spacing:0.216000px;}
.ws3_c00243{word-spacing:7.056000px;}
.ws0_c00243{word-spacing:1574.587200px;}
._3_c00243{margin-left:-7.042800px;}
._7_c00243{margin-left:-4.860000px;}
._0_c00243{margin-left:-2.112000px;}
._1_c00243{margin-left:-1.104000px;}
._2_c00243{width:2.016000px;}
._6_c00243{width:7.776000px;}
._4_c00243{width:56.484000px;}
._5_c00243{width:59.136000px;}
.fc0_c00243{color:rgb(35,31,32);}
.fs3_c00243{font-size:42.000000px;}
.fs0_c00243{font-size:48.000000px;}
.fs4_c00243{font-size:54.000000px;}
.fs2_c00243{font-size:57.000000px;}
.fs1_c00243{font-size:60.000000px;}
.y0_c00243{bottom:0.000000px;}
.y19_c00243{bottom:351.737400px;}
.y18_c00243{bottom:365.237400px;}
.y17_c00243{bottom:378.737400px;}
.y16_c00243{bottom:400.989300px;}
.y15_c00243{bottom:414.489300px;}
.y14_c00243{bottom:427.989300px;}
.y13_c00243{bottom:454.493250px;}
.y12_c00243{bottom:467.993250px;}
.y11_c00243{bottom:481.493250px;}
.y10_c00243{bottom:503.745300px;}
.yf_c00243{bottom:521.745300px;}
.ye_c00243{bottom:548.249100px;}
.yd_c00243{bottom:836.461650px;}
.yc_c00243{bottom:849.961650px;}
.yb_c00243{bottom:863.461650px;}
.ya_c00243{bottom:889.965600px;}
.y9_c00243{bottom:903.465600px;}
.y8_c00243{bottom:916.965600px;}
.y7_c00243{bottom:943.469700px;}
.y6_c00243{bottom:956.969700px;}
.y5_c00243{bottom:970.469700px;}
.y4_c00243{bottom:992.721450px;}
.y3_c00243{bottom:1010.721450px;}
.y2_c00243{bottom:1037.225550px;}
.y1_c00243{bottom:1093.600950px;}
.h6_c00243{height:30.282000px;}
.h4_c00243{height:34.080000px;}
.h2_c00243{height:39.264000px;}
.h3_c00243{height:43.260000px;}
.h5_c00243{height:43.740000px;}
.h1_c00243{height:1135.500000px;}
.h0_c00243{height:1135.506150px;}
.w0_c00243{width:893.950200px;}
.w1_c00243{width:894.000000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:77.603100px;}
.x2_c00243{left:599.532150px;}
.x3_c00243{left:612.288150px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls1_c00243{letter-spacing:-0.912000pt;}
.ls2_c00243{letter-spacing:-0.640000pt;}
.ls3_c00243{letter-spacing:-0.560000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws1_c00243{word-spacing:-7.728000pt;}
.ws2_c00243{word-spacing:0.000000pt;}
.ws4_c00243{word-spacing:0.192000pt;}
.ws3_c00243{word-spacing:6.272000pt;}
.ws0_c00243{word-spacing:1399.633067pt;}
._3_c00243{margin-left:-6.260267pt;}
._7_c00243{margin-left:-4.320000pt;}
._0_c00243{margin-left:-1.877333pt;}
._1_c00243{margin-left:-0.981333pt;}
._2_c00243{width:1.792000pt;}
._6_c00243{width:6.912000pt;}
._4_c00243{width:50.208000pt;}
._5_c00243{width:52.565333pt;}
.fs3_c00243{font-size:37.333333pt;}
.fs0_c00243{font-size:42.666667pt;}
.fs4_c00243{font-size:48.000000pt;}
.fs2_c00243{font-size:50.666667pt;}
.fs1_c00243{font-size:53.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y19_c00243{bottom:312.655467pt;}
.y18_c00243{bottom:324.655467pt;}
.y17_c00243{bottom:336.655467pt;}
.y16_c00243{bottom:356.434933pt;}
.y15_c00243{bottom:368.434933pt;}
.y14_c00243{bottom:380.434933pt;}
.y13_c00243{bottom:403.994000pt;}
.y12_c00243{bottom:415.994000pt;}
.y11_c00243{bottom:427.994000pt;}
.y10_c00243{bottom:447.773600pt;}
.yf_c00243{bottom:463.773600pt;}
.ye_c00243{bottom:487.332533pt;}
.yd_c00243{bottom:743.521467pt;}
.yc_c00243{bottom:755.521467pt;}
.yb_c00243{bottom:767.521467pt;}
.ya_c00243{bottom:791.080533pt;}
.y9_c00243{bottom:803.080533pt;}
.y8_c00243{bottom:815.080533pt;}
.y7_c00243{bottom:838.639733pt;}
.y6_c00243{bottom:850.639733pt;}
.y5_c00243{bottom:862.639733pt;}
.y4_c00243{bottom:882.419067pt;}
.y3_c00243{bottom:898.419067pt;}
.y2_c00243{bottom:921.978267pt;}
.y1_c00243{bottom:972.089733pt;}
.h6_c00243{height:26.917333pt;}
.h4_c00243{height:30.293333pt;}
.h2_c00243{height:34.901333pt;}
.h3_c00243{height:38.453333pt;}
.h5_c00243{height:38.880000pt;}
.h1_c00243{height:1009.333333pt;}
.h0_c00243{height:1009.338800pt;}
.w0_c00243{width:794.622400pt;}
.w1_c00243{width:794.666667pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:68.980533pt;}
.x2_c00243{left:532.917467pt;}
.x3_c00243{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00244;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:0.908000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00244{font-family:ff7_c00244;line-height:1.067000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00244{font-family:ff8_c00244;line-height:0.710000;font-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_c00244{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls5_c00244{letter-spacing:-0.810000px;}
.ls3_c00244{letter-spacing:-0.720000px;}
.ls4_c00244{letter-spacing:-0.630000px;}
.ls2_c00244{letter-spacing:-0.540000px;}
.ls1_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00244{word-spacing:-8.694000px;}
.ws2_c00244{word-spacing:-6.487200px;}
.ws3_c00244{word-spacing:0.000000px;}
.ws4_c00244{word-spacing:7.056000px;}
.ws5_c00244{word-spacing:56.214000px;}
._0_c00244{margin-left:-2755.276200px;}
._4_c00244{margin-left:-6.946800px;}
._1_c00244{margin-left:-2.256000px;}
._3_c00244{margin-left:-1.200000px;}
._2_c00244{width:1.008000px;}
._6_c00244{width:7.776000px;}
._7_c00244{width:56.484000px;}
._5_c00244{width:59.136000px;}
.fc0_c00244{color:rgb(35,31,32);}
.fs5_c00244{font-size:30.600000px;}
.fs6_c00244{font-size:36.000000px;}
.fs3_c00244{font-size:42.000000px;}
.fs0_c00244{font-size:48.000000px;}
.fs4_c00244{font-size:54.000000px;}
.fs2_c00244{font-size:57.000000px;}
.fs1_c00244{font-size:60.000000px;}
.y0_c00244{bottom:0.000000px;}
.y18_c00244{bottom:347.547450px;}
.y17_c00244{bottom:361.047450px;}
.y16_c00244{bottom:374.547450px;}
.y15_c00244{bottom:401.051400px;}
.y14_c00244{bottom:414.551400px;}
.y13_c00244{bottom:428.051400px;}
.y12_c00244{bottom:454.555350px;}
.y11_c00244{bottom:468.055350px;}
.y10_c00244{bottom:481.555350px;}
.yf_c00244{bottom:503.807250px;}
.ye_c00244{bottom:521.807250px;}
.yd_c00244{bottom:548.311200px;}
.yc_c00244{bottom:850.023600px;}
.yb_c00244{bottom:863.523600px;}
.ya_c00244{bottom:877.023600px;}
.y9_c00244{bottom:903.527550px;}
.y8_c00244{bottom:917.027550px;}
.y7_c00244{bottom:943.531500px;}
.y6_c00244{bottom:957.031500px;}
.y5_c00244{bottom:970.531500px;}
.y4_c00244{bottom:992.783550px;}
.y3_c00244{bottom:1010.783550px;}
.y2_c00244{bottom:1037.287500px;}
.y19_c00244{bottom:1040.290500px;}
.y1_c00244{bottom:1093.600950px;}
.h8_c00244{height:25.200000px;}
.h7_c00244{height:30.282000px;}
.h5_c00244{height:34.080000px;}
.h2_c00244{height:39.264000px;}
.h3_c00244{height:39.984000px;}
.h4_c00244{height:43.260000px;}
.h6_c00244{height:43.740000px;}
.h1_c00244{height:1135.500000px;}
.h0_c00244{height:1135.506150px;}
.w0_c00244{width:893.950200px;}
.w1_c00244{width:894.000000px;}
.x0_c00244{left:0.000000px;}
.x4_c00244{left:128.626800px;}
.x5_c00244{left:141.382650px;}
.x2_c00244{left:188.061900px;}
.x3_c00244{left:190.513350px;}
.x6_c00244{left:321.801150px;}
.x1_c00244{left:800.165850px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls5_c00244{letter-spacing:-0.720000pt;}
.ls3_c00244{letter-spacing:-0.640000pt;}
.ls4_c00244{letter-spacing:-0.560000pt;}
.ls2_c00244{letter-spacing:-0.480000pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.426667pt;}
.ws0_c00244{word-spacing:-9.685333pt;}
.ws1_c00244{word-spacing:-7.728000pt;}
.ws2_c00244{word-spacing:-5.766400pt;}
.ws3_c00244{word-spacing:0.000000pt;}
.ws4_c00244{word-spacing:6.272000pt;}
.ws5_c00244{word-spacing:49.968000pt;}
._0_c00244{margin-left:-2449.134400pt;}
._4_c00244{margin-left:-6.174933pt;}
._1_c00244{margin-left:-2.005333pt;}
._3_c00244{margin-left:-1.066667pt;}
._2_c00244{width:0.896000pt;}
._6_c00244{width:6.912000pt;}
._7_c00244{width:50.208000pt;}
._5_c00244{width:52.565333pt;}
.fs5_c00244{font-size:27.200000pt;}
.fs6_c00244{font-size:32.000000pt;}
.fs3_c00244{font-size:37.333333pt;}
.fs0_c00244{font-size:42.666667pt;}
.fs4_c00244{font-size:48.000000pt;}
.fs2_c00244{font-size:50.666667pt;}
.fs1_c00244{font-size:53.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y18_c00244{bottom:308.931067pt;}
.y17_c00244{bottom:320.931067pt;}
.y16_c00244{bottom:332.931067pt;}
.y15_c00244{bottom:356.490133pt;}
.y14_c00244{bottom:368.490133pt;}
.y13_c00244{bottom:380.490133pt;}
.y12_c00244{bottom:404.049200pt;}
.y11_c00244{bottom:416.049200pt;}
.y10_c00244{bottom:428.049200pt;}
.yf_c00244{bottom:447.828667pt;}
.ye_c00244{bottom:463.828667pt;}
.yd_c00244{bottom:487.387733pt;}
.yc_c00244{bottom:755.576533pt;}
.yb_c00244{bottom:767.576533pt;}
.ya_c00244{bottom:779.576533pt;}
.y9_c00244{bottom:803.135600pt;}
.y8_c00244{bottom:815.135600pt;}
.y7_c00244{bottom:838.694667pt;}
.y6_c00244{bottom:850.694667pt;}
.y5_c00244{bottom:862.694667pt;}
.y4_c00244{bottom:882.474267pt;}
.y3_c00244{bottom:898.474267pt;}
.y2_c00244{bottom:922.033333pt;}
.y19_c00244{bottom:924.702667pt;}
.y1_c00244{bottom:972.089733pt;}
.h8_c00244{height:22.400000pt;}
.h7_c00244{height:26.917333pt;}
.h5_c00244{height:30.293333pt;}
.h2_c00244{height:34.901333pt;}
.h3_c00244{height:35.541333pt;}
.h4_c00244{height:38.453333pt;}
.h6_c00244{height:38.880000pt;}
.h1_c00244{height:1009.333333pt;}
.h0_c00244{height:1009.338800pt;}
.w0_c00244{width:794.622400pt;}
.w1_c00244{width:794.666667pt;}
.x0_c00244{left:0.000000pt;}
.x4_c00244{left:114.334933pt;}
.x5_c00244{left:125.673467pt;}
.x2_c00244{left:167.166133pt;}
.x3_c00244{left:169.345200pt;}
.x6_c00244{left:286.045467pt;}
.x1_c00244{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00245;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00245{font-family:ff6_c00245;line-height:1.067000;font-style:normal;font-weight: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_c00245;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00245{font-family:ff7_c00245;line-height:0.710000;font-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_c00245{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls2_c00245{letter-spacing:-1.188000px;}
.ls1_c00245{letter-spacing:-0.810000px;}
.ls3_c00245{letter-spacing:-0.720000px;}
.ls4_c00245{letter-spacing:-0.630000px;}
.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;}
}
.ws2_c00245{word-spacing:-11.178000px;}
.ws1_c00245{word-spacing:-8.694000px;}
.ws3_c00245{word-spacing:-6.487200px;}
.ws4_c00245{word-spacing:0.000000px;}
.ws6_c00245{word-spacing:0.630000px;}
.ws5_c00245{word-spacing:7.056000px;}
.ws0_c00245{word-spacing:1574.587200px;}
._3_c00245{margin-left:-7.042800px;}
._0_c00245{margin-left:-2.112000px;}
._1_c00245{margin-left:-1.104000px;}
._2_c00245{width:2.016000px;}
._6_c00245{width:7.776000px;}
._4_c00245{width:56.484000px;}
._5_c00245{width:59.136000px;}
.fc0_c00245{color:rgb(35,31,32);}
.fs5_c00245{font-size:30.600000px;}
.fs6_c00245{font-size:36.000000px;}
.fs3_c00245{font-size:42.000000px;}
.fs0_c00245{font-size:48.000000px;}
.fs4_c00245{font-size:54.000000px;}
.fs2_c00245{font-size:57.000000px;}
.fs1_c00245{font-size:60.000000px;}
.y0_c00245{bottom:0.000000px;}
.y1a_c00245{bottom:329.848500px;}
.y19_c00245{bottom:343.348500px;}
.y18_c00245{bottom:356.848500px;}
.y17_c00245{bottom:383.352450px;}
.y16_c00245{bottom:396.852450px;}
.y15_c00245{bottom:410.352450px;}
.y14_c00245{bottom:436.856400px;}
.y13_c00245{bottom:450.356400px;}
.y12_c00245{bottom:463.856400px;}
.y11_c00245{bottom:486.108450px;}
.y10_c00245{bottom:504.108450px;}
.yf_c00245{bottom:522.108450px;}
.ye_c00245{bottom:548.612250px;}
.yd_c00245{bottom:832.324800px;}
.yc_c00245{bottom:845.824800px;}
.yb_c00245{bottom:859.324800px;}
.ya_c00245{bottom:885.828750px;}
.y9_c00245{bottom:899.328750px;}
.y8_c00245{bottom:925.832700px;}
.y7_c00245{bottom:939.332700px;}
.y6_c00245{bottom:952.832700px;}
.y5_c00245{bottom:975.084750px;}
.y4_c00245{bottom:993.084750px;}
.y3_c00245{bottom:1011.084750px;}
.y2_c00245{bottom:1037.588700px;}
.y1b_c00245{bottom:1040.299350px;}
.y1_c00245{bottom:1093.600950px;}
.h7_c00245{height:25.200000px;}
.h6_c00245{height:30.282000px;}
.h4_c00245{height:34.080000px;}
.h2_c00245{height:39.264000px;}
.h3_c00245{height:43.260000px;}
.h5_c00245{height:43.740000px;}
.h1_c00245{height:1135.500000px;}
.h0_c00245{height:1135.506150px;}
.w0_c00245{width:893.950200px;}
.w1_c00245{width:894.000000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:77.603100px;}
.x5_c00245{left:424.138500px;}
.x2_c00245{left:599.532150px;}
.x3_c00245{left:612.288150px;}
.x4_c00245{left:616.540050px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls2_c00245{letter-spacing:-1.056000pt;}
.ls1_c00245{letter-spacing:-0.720000pt;}
.ls3_c00245{letter-spacing:-0.640000pt;}
.ls4_c00245{letter-spacing:-0.560000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws2_c00245{word-spacing:-9.936000pt;}
.ws1_c00245{word-spacing:-7.728000pt;}
.ws3_c00245{word-spacing:-5.766400pt;}
.ws4_c00245{word-spacing:0.000000pt;}
.ws6_c00245{word-spacing:0.560000pt;}
.ws5_c00245{word-spacing:6.272000pt;}
.ws0_c00245{word-spacing:1399.633067pt;}
._3_c00245{margin-left:-6.260267pt;}
._0_c00245{margin-left:-1.877333pt;}
._1_c00245{margin-left:-0.981333pt;}
._2_c00245{width:1.792000pt;}
._6_c00245{width:6.912000pt;}
._4_c00245{width:50.208000pt;}
._5_c00245{width:52.565333pt;}
.fs5_c00245{font-size:27.200000pt;}
.fs6_c00245{font-size:32.000000pt;}
.fs3_c00245{font-size:37.333333pt;}
.fs0_c00245{font-size:42.666667pt;}
.fs4_c00245{font-size:48.000000pt;}
.fs2_c00245{font-size:50.666667pt;}
.fs1_c00245{font-size:53.333333pt;}
.y0_c00245{bottom:0.000000pt;}
.y1a_c00245{bottom:293.198667pt;}
.y19_c00245{bottom:305.198667pt;}
.y18_c00245{bottom:317.198667pt;}
.y17_c00245{bottom:340.757733pt;}
.y16_c00245{bottom:352.757733pt;}
.y15_c00245{bottom:364.757733pt;}
.y14_c00245{bottom:388.316800pt;}
.y13_c00245{bottom:400.316800pt;}
.y12_c00245{bottom:412.316800pt;}
.y11_c00245{bottom:432.096400pt;}
.y10_c00245{bottom:448.096400pt;}
.yf_c00245{bottom:464.096400pt;}
.ye_c00245{bottom:487.655333pt;}
.yd_c00245{bottom:739.844267pt;}
.yc_c00245{bottom:751.844267pt;}
.yb_c00245{bottom:763.844267pt;}
.ya_c00245{bottom:787.403333pt;}
.y9_c00245{bottom:799.403333pt;}
.y8_c00245{bottom:822.962400pt;}
.y7_c00245{bottom:834.962400pt;}
.y6_c00245{bottom:846.962400pt;}
.y5_c00245{bottom:866.742000pt;}
.y4_c00245{bottom:882.742000pt;}
.y3_c00245{bottom:898.742000pt;}
.y2_c00245{bottom:922.301067pt;}
.y1b_c00245{bottom:924.710533pt;}
.y1_c00245{bottom:972.089733pt;}
.h7_c00245{height:22.400000pt;}
.h6_c00245{height:26.917333pt;}
.h4_c00245{height:30.293333pt;}
.h2_c00245{height:34.901333pt;}
.h3_c00245{height:38.453333pt;}
.h5_c00245{height:38.880000pt;}
.h1_c00245{height:1009.333333pt;}
.h0_c00245{height:1009.338800pt;}
.w0_c00245{width:794.622400pt;}
.w1_c00245{width:794.666667pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:68.980533pt;}
.x5_c00245{left:377.012000pt;}
.x2_c00245{left:532.917467pt;}
.x3_c00245{left:544.256133pt;}
.x4_c00245{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00246{font-family:ff6_c00246;line-height:0.908000;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00246{font-family:ff7_c00246;line-height:1.067000;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00246{font-family:ff8_c00246;line-height:0.710000;font-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_c00246{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls4_c00246{letter-spacing:-1.674000px;}
.ls2_c00246{letter-spacing:-0.720000px;}
.ls3_c00246{letter-spacing:-0.630000px;}
.ls1_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:0.480000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-10.896000px;}
.ws1_c00246{word-spacing:-8.694000px;}
.ws2_c00246{word-spacing:-6.487200px;}
.ws3_c00246{word-spacing:0.000000px;}
.ws6_c00246{word-spacing:0.630000px;}
.ws5_c00246{word-spacing:0.864000px;}
.ws4_c00246{word-spacing:7.056000px;}
._0_c00246{margin-left:-2755.276200px;}
._4_c00246{margin-left:-6.946800px;}
._1_c00246{margin-left:-2.256000px;}
._3_c00246{margin-left:-1.200000px;}
._2_c00246{width:1.008000px;}
._7_c00246{width:7.776000px;}
._5_c00246{width:55.674000px;}
._6_c00246{width:59.136000px;}
.fc0_c00246{color:rgb(35,31,32);}
.fs5_c00246{font-size:30.600000px;}
.fs6_c00246{font-size:36.000000px;}
.fs3_c00246{font-size:42.000000px;}
.fs0_c00246{font-size:48.000000px;}
.fs4_c00246{font-size:54.000000px;}
.fs2_c00246{font-size:57.000000px;}
.fs1_c00246{font-size:60.000000px;}
.y0_c00246{bottom:0.000000px;}
.y18_c00246{bottom:348.397800px;}
.y17_c00246{bottom:361.897800px;}
.y16_c00246{bottom:375.397800px;}
.y15_c00246{bottom:401.901750px;}
.y14_c00246{bottom:415.401750px;}
.y13_c00246{bottom:428.901750px;}
.y12_c00246{bottom:455.405700px;}
.y11_c00246{bottom:468.905700px;}
.y10_c00246{bottom:482.405700px;}
.yf_c00246{bottom:504.657600px;}
.ye_c00246{bottom:522.657600px;}
.yd_c00246{bottom:549.161550px;}
.yc_c00246{bottom:850.874100px;}
.yb_c00246{bottom:864.374100px;}
.ya_c00246{bottom:877.874100px;}
.y9_c00246{bottom:904.378050px;}
.y8_c00246{bottom:917.878050px;}
.y7_c00246{bottom:944.382000px;}
.y6_c00246{bottom:957.882000px;}
.y5_c00246{bottom:971.382000px;}
.y4_c00246{bottom:993.633900px;}
.y3_c00246{bottom:1011.633900px;}
.y2_c00246{bottom:1038.137850px;}
.y19_c00246{bottom:1040.299350px;}
.y1_c00246{bottom:1093.600950px;}
.h8_c00246{height:25.200000px;}
.h7_c00246{height:30.282000px;}
.h5_c00246{height:34.080000px;}
.h2_c00246{height:39.264000px;}
.h3_c00246{height:39.984000px;}
.h4_c00246{height:43.260000px;}
.h6_c00246{height:43.740000px;}
.h1_c00246{height:1135.500000px;}
.h0_c00246{height:1135.506150px;}
.w0_c00246{width:893.950200px;}
.w1_c00246{width:894.000000px;}
.x0_c00246{left:0.000000px;}
.x4_c00246{left:128.626800px;}
.x5_c00246{left:141.382650px;}
.x2_c00246{left:188.061900px;}
.x3_c00246{left:190.513350px;}
.x6_c00246{left:321.801150px;}
.x1_c00246{left:800.165850px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls4_c00246{letter-spacing:-1.488000pt;}
.ls2_c00246{letter-spacing:-0.640000pt;}
.ls3_c00246{letter-spacing:-0.560000pt;}
.ls1_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.426667pt;}
.ws0_c00246{word-spacing:-9.685333pt;}
.ws1_c00246{word-spacing:-7.728000pt;}
.ws2_c00246{word-spacing:-5.766400pt;}
.ws3_c00246{word-spacing:0.000000pt;}
.ws6_c00246{word-spacing:0.560000pt;}
.ws5_c00246{word-spacing:0.768000pt;}
.ws4_c00246{word-spacing:6.272000pt;}
._0_c00246{margin-left:-2449.134400pt;}
._4_c00246{margin-left:-6.174933pt;}
._1_c00246{margin-left:-2.005333pt;}
._3_c00246{margin-left:-1.066667pt;}
._2_c00246{width:0.896000pt;}
._7_c00246{width:6.912000pt;}
._5_c00246{width:49.488000pt;}
._6_c00246{width:52.565333pt;}
.fs5_c00246{font-size:27.200000pt;}
.fs6_c00246{font-size:32.000000pt;}
.fs3_c00246{font-size:37.333333pt;}
.fs0_c00246{font-size:42.666667pt;}
.fs4_c00246{font-size:48.000000pt;}
.fs2_c00246{font-size:50.666667pt;}
.fs1_c00246{font-size:53.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y18_c00246{bottom:309.686933pt;}
.y17_c00246{bottom:321.686933pt;}
.y16_c00246{bottom:333.686933pt;}
.y15_c00246{bottom:357.246000pt;}
.y14_c00246{bottom:369.246000pt;}
.y13_c00246{bottom:381.246000pt;}
.y12_c00246{bottom:404.805067pt;}
.y11_c00246{bottom:416.805067pt;}
.y10_c00246{bottom:428.805067pt;}
.yf_c00246{bottom:448.584533pt;}
.ye_c00246{bottom:464.584533pt;}
.yd_c00246{bottom:488.143600pt;}
.yc_c00246{bottom:756.332533pt;}
.yb_c00246{bottom:768.332533pt;}
.ya_c00246{bottom:780.332533pt;}
.y9_c00246{bottom:803.891600pt;}
.y8_c00246{bottom:815.891600pt;}
.y7_c00246{bottom:839.450667pt;}
.y6_c00246{bottom:851.450667pt;}
.y5_c00246{bottom:863.450667pt;}
.y4_c00246{bottom:883.230133pt;}
.y3_c00246{bottom:899.230133pt;}
.y2_c00246{bottom:922.789200pt;}
.y19_c00246{bottom:924.710533pt;}
.y1_c00246{bottom:972.089733pt;}
.h8_c00246{height:22.400000pt;}
.h7_c00246{height:26.917333pt;}
.h5_c00246{height:30.293333pt;}
.h2_c00246{height:34.901333pt;}
.h3_c00246{height:35.541333pt;}
.h4_c00246{height:38.453333pt;}
.h6_c00246{height:38.880000pt;}
.h1_c00246{height:1009.333333pt;}
.h0_c00246{height:1009.338800pt;}
.w0_c00246{width:794.622400pt;}
.w1_c00246{width:794.666667pt;}
.x0_c00246{left:0.000000pt;}
.x4_c00246{left:114.334933pt;}
.x5_c00246{left:125.673467pt;}
.x2_c00246{left:167.166133pt;}
.x3_c00246{left:169.345200pt;}
.x6_c00246{left:286.045467pt;}
.x1_c00246{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00247;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00247{font-family:ff6_c00247;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls1_c00247{letter-spacing:-1.674000px;}
.ls2_c00247{letter-spacing:-0.720000px;}
.ls3_c00247{letter-spacing:-0.630000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00247{word-spacing:0.000000px;}
.ws4_c00247{word-spacing:0.864000px;}
.ws3_c00247{word-spacing:7.056000px;}
.ws0_c00247{word-spacing:1574.587200px;}
._3_c00247{margin-left:-7.042800px;}
._0_c00247{margin-left:-2.112000px;}
._1_c00247{margin-left:-1.104000px;}
._2_c00247{width:2.016000px;}
._6_c00247{width:7.776000px;}
._4_c00247{width:56.484000px;}
._5_c00247{width:59.136000px;}
.fc0_c00247{color:rgb(35,31,32);}
.fs3_c00247{font-size:42.000000px;}
.fs0_c00247{font-size:48.000000px;}
.fs4_c00247{font-size:54.000000px;}
.fs2_c00247{font-size:57.000000px;}
.fs1_c00247{font-size:60.000000px;}
.y0_c00247{bottom:0.000000px;}
.y19_c00247{bottom:352.100550px;}
.y18_c00247{bottom:365.600550px;}
.y17_c00247{bottom:379.100550px;}
.y16_c00247{bottom:401.352450px;}
.y15_c00247{bottom:414.852450px;}
.y14_c00247{bottom:428.352450px;}
.y13_c00247{bottom:454.856400px;}
.y12_c00247{bottom:468.356400px;}
.y11_c00247{bottom:481.856400px;}
.y10_c00247{bottom:504.108450px;}
.yf_c00247{bottom:522.108450px;}
.ye_c00247{bottom:548.612250px;}
.yd_c00247{bottom:841.076850px;}
.yc_c00247{bottom:854.576850px;}
.yb_c00247{bottom:868.076850px;}
.ya_c00247{bottom:890.328750px;}
.y9_c00247{bottom:903.828750px;}
.y8_c00247{bottom:917.328750px;}
.y7_c00247{bottom:943.832700px;}
.y6_c00247{bottom:957.332700px;}
.y5_c00247{bottom:970.832700px;}
.y4_c00247{bottom:993.084750px;}
.y3_c00247{bottom:1011.084750px;}
.y2_c00247{bottom:1037.588700px;}
.y1_c00247{bottom:1093.600950px;}
.h6_c00247{height:30.282000px;}
.h4_c00247{height:34.080000px;}
.h2_c00247{height:39.264000px;}
.h3_c00247{height:43.260000px;}
.h5_c00247{height:43.740000px;}
.h1_c00247{height:1135.500000px;}
.h0_c00247{height:1135.506150px;}
.w0_c00247{width:893.950200px;}
.w1_c00247{width:894.000000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:77.603100px;}
.x2_c00247{left:599.532150px;}
.x3_c00247{left:612.288150px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls1_c00247{letter-spacing:-1.488000pt;}
.ls2_c00247{letter-spacing:-0.640000pt;}
.ls3_c00247{letter-spacing:-0.560000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws1_c00247{word-spacing:-7.728000pt;}
.ws2_c00247{word-spacing:0.000000pt;}
.ws4_c00247{word-spacing:0.768000pt;}
.ws3_c00247{word-spacing:6.272000pt;}
.ws0_c00247{word-spacing:1399.633067pt;}
._3_c00247{margin-left:-6.260267pt;}
._0_c00247{margin-left:-1.877333pt;}
._1_c00247{margin-left:-0.981333pt;}
._2_c00247{width:1.792000pt;}
._6_c00247{width:6.912000pt;}
._4_c00247{width:50.208000pt;}
._5_c00247{width:52.565333pt;}
.fs3_c00247{font-size:37.333333pt;}
.fs0_c00247{font-size:42.666667pt;}
.fs4_c00247{font-size:48.000000pt;}
.fs2_c00247{font-size:50.666667pt;}
.fs1_c00247{font-size:53.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y19_c00247{bottom:312.978267pt;}
.y18_c00247{bottom:324.978267pt;}
.y17_c00247{bottom:336.978267pt;}
.y16_c00247{bottom:356.757733pt;}
.y15_c00247{bottom:368.757733pt;}
.y14_c00247{bottom:380.757733pt;}
.y13_c00247{bottom:404.316800pt;}
.y12_c00247{bottom:416.316800pt;}
.y11_c00247{bottom:428.316800pt;}
.y10_c00247{bottom:448.096400pt;}
.yf_c00247{bottom:464.096400pt;}
.ye_c00247{bottom:487.655333pt;}
.yd_c00247{bottom:747.623867pt;}
.yc_c00247{bottom:759.623867pt;}
.yb_c00247{bottom:771.623867pt;}
.ya_c00247{bottom:791.403333pt;}
.y9_c00247{bottom:803.403333pt;}
.y8_c00247{bottom:815.403333pt;}
.y7_c00247{bottom:838.962400pt;}
.y6_c00247{bottom:850.962400pt;}
.y5_c00247{bottom:862.962400pt;}
.y4_c00247{bottom:882.742000pt;}
.y3_c00247{bottom:898.742000pt;}
.y2_c00247{bottom:922.301067pt;}
.y1_c00247{bottom:972.089733pt;}
.h6_c00247{height:26.917333pt;}
.h4_c00247{height:30.293333pt;}
.h2_c00247{height:34.901333pt;}
.h3_c00247{height:38.453333pt;}
.h5_c00247{height:38.880000pt;}
.h1_c00247{height:1009.333333pt;}
.h0_c00247{height:1009.338800pt;}
.w0_c00247{width:794.622400pt;}
.w1_c00247{width:794.666667pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:68.980533pt;}
.x2_c00247{left:532.917467pt;}
.x3_c00247{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00248;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00248{font-family:ff6_c00248;line-height:0.908000;font-style:normal;font-weight: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_c00248;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00248{font-family:ff7_c00248;line-height:1.067000;font-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_c00248{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls2_c00248{letter-spacing:-0.864000px;}
.ls5_c00248{letter-spacing:-0.810000px;}
.ls3_c00248{letter-spacing:-0.720000px;}
.ls4_c00248{letter-spacing:-0.630000px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00248{word-spacing:-8.694000px;}
.ws2_c00248{word-spacing:0.000000px;}
.ws4_c00248{word-spacing:0.864000px;}
.ws3_c00248{word-spacing:7.056000px;}
.ws5_c00248{word-spacing:56.484000px;}
._0_c00248{margin-left:-2755.276200px;}
._4_c00248{margin-left:-6.946800px;}
._8_c00248{margin-left:-4.793400px;}
._1_c00248{margin-left:-2.256000px;}
._3_c00248{margin-left:-1.200000px;}
._2_c00248{width:1.008000px;}
._7_c00248{width:7.776000px;}
._5_c00248{width:55.674000px;}
._6_c00248{width:59.136000px;}
.fc0_c00248{color:rgb(35,31,32);}
.fs3_c00248{font-size:42.000000px;}
.fs0_c00248{font-size:48.000000px;}
.fs4_c00248{font-size:54.000000px;}
.fs2_c00248{font-size:57.000000px;}
.fs1_c00248{font-size:60.000000px;}
.y0_c00248{bottom:0.000000px;}
.y19_c00248{bottom:347.972700px;}
.y18_c00248{bottom:361.472700px;}
.y17_c00248{bottom:374.972550px;}
.y16_c00248{bottom:401.476500px;}
.y15_c00248{bottom:414.976500px;}
.y14_c00248{bottom:428.476500px;}
.y13_c00248{bottom:454.980450px;}
.y12_c00248{bottom:468.480450px;}
.y11_c00248{bottom:481.980450px;}
.y10_c00248{bottom:504.232500px;}
.yf_c00248{bottom:522.232500px;}
.ye_c00248{bottom:548.736450px;}
.yd_c00248{bottom:836.949000px;}
.yc_c00248{bottom:850.449000px;}
.yb_c00248{bottom:863.949000px;}
.ya_c00248{bottom:890.452950px;}
.y9_c00248{bottom:903.952950px;}
.y8_c00248{bottom:917.452950px;}
.y7_c00248{bottom:943.956900px;}
.y6_c00248{bottom:957.456900px;}
.y5_c00248{bottom:970.956900px;}
.y4_c00248{bottom:993.208800px;}
.y3_c00248{bottom:1011.208800px;}
.y2_c00248{bottom:1037.712750px;}
.y1_c00248{bottom:1093.600950px;}
.h7_c00248{height:30.282000px;}
.h5_c00248{height:34.080000px;}
.h2_c00248{height:39.264000px;}
.h3_c00248{height:39.984000px;}
.h4_c00248{height:43.260000px;}
.h6_c00248{height:43.740000px;}
.h1_c00248{height:1135.500000px;}
.h0_c00248{height:1135.506150px;}
.w0_c00248{width:893.950200px;}
.w1_c00248{width:894.000000px;}
.x0_c00248{left:0.000000px;}
.x4_c00248{left:128.626800px;}
.x5_c00248{left:141.382650px;}
.x2_c00248{left:188.061900px;}
.x3_c00248{left:190.513350px;}
.x1_c00248{left:800.165850px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls2_c00248{letter-spacing:-0.768000pt;}
.ls5_c00248{letter-spacing:-0.720000pt;}
.ls3_c00248{letter-spacing:-0.640000pt;}
.ls4_c00248{letter-spacing:-0.560000pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:0.426667pt;}
.ws0_c00248{word-spacing:-9.685333pt;}
.ws1_c00248{word-spacing:-7.728000pt;}
.ws2_c00248{word-spacing:0.000000pt;}
.ws4_c00248{word-spacing:0.768000pt;}
.ws3_c00248{word-spacing:6.272000pt;}
.ws5_c00248{word-spacing:50.208000pt;}
._0_c00248{margin-left:-2449.134400pt;}
._4_c00248{margin-left:-6.174933pt;}
._8_c00248{margin-left:-4.260800pt;}
._1_c00248{margin-left:-2.005333pt;}
._3_c00248{margin-left:-1.066667pt;}
._2_c00248{width:0.896000pt;}
._7_c00248{width:6.912000pt;}
._5_c00248{width:49.488000pt;}
._6_c00248{width:52.565333pt;}
.fs3_c00248{font-size:37.333333pt;}
.fs0_c00248{font-size:42.666667pt;}
.fs4_c00248{font-size:48.000000pt;}
.fs2_c00248{font-size:50.666667pt;}
.fs1_c00248{font-size:53.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y19_c00248{bottom:309.309067pt;}
.y18_c00248{bottom:321.309067pt;}
.y17_c00248{bottom:333.308933pt;}
.y16_c00248{bottom:356.868000pt;}
.y15_c00248{bottom:368.868000pt;}
.y14_c00248{bottom:380.868000pt;}
.y13_c00248{bottom:404.427067pt;}
.y12_c00248{bottom:416.427067pt;}
.y11_c00248{bottom:428.427067pt;}
.y10_c00248{bottom:448.206667pt;}
.yf_c00248{bottom:464.206667pt;}
.ye_c00248{bottom:487.765733pt;}
.yd_c00248{bottom:743.954667pt;}
.yc_c00248{bottom:755.954667pt;}
.yb_c00248{bottom:767.954667pt;}
.ya_c00248{bottom:791.513733pt;}
.y9_c00248{bottom:803.513733pt;}
.y8_c00248{bottom:815.513733pt;}
.y7_c00248{bottom:839.072800pt;}
.y6_c00248{bottom:851.072800pt;}
.y5_c00248{bottom:863.072800pt;}
.y4_c00248{bottom:882.852267pt;}
.y3_c00248{bottom:898.852267pt;}
.y2_c00248{bottom:922.411333pt;}
.y1_c00248{bottom:972.089733pt;}
.h7_c00248{height:26.917333pt;}
.h5_c00248{height:30.293333pt;}
.h2_c00248{height:34.901333pt;}
.h3_c00248{height:35.541333pt;}
.h4_c00248{height:38.453333pt;}
.h6_c00248{height:38.880000pt;}
.h1_c00248{height:1009.333333pt;}
.h0_c00248{height:1009.338800pt;}
.w0_c00248{width:794.622400pt;}
.w1_c00248{width:794.666667pt;}
.x0_c00248{left:0.000000pt;}
.x4_c00248{left:114.334933pt;}
.x5_c00248{left:125.673467pt;}
.x2_c00248{left:167.166133pt;}
.x3_c00248{left:169.345200pt;}
.x1_c00248{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00249;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls1_c00249{letter-spacing:-0.810000px;}
.ls2_c00249{letter-spacing:-0.720000px;}
.ls3_c00249{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00249{word-spacing:-8.694000px;}
.ws2_c00249{word-spacing:0.000000px;}
.ws3_c00249{word-spacing:7.056000px;}
.ws0_c00249{word-spacing:1574.587200px;}
._3_c00249{margin-left:-7.042800px;}
._5_c00249{margin-left:-5.820000px;}
._0_c00249{margin-left:-2.112000px;}
._1_c00249{margin-left:-1.104000px;}
._2_c00249{width:2.016000px;}
._7_c00249{width:7.776000px;}
._4_c00249{width:56.484000px;}
._6_c00249{width:59.136000px;}
.fc0_c00249{color:rgb(35,31,32);}
.fs3_c00249{font-size:42.000000px;}
.fs0_c00249{font-size:48.000000px;}
.fs4_c00249{font-size:54.000000px;}
.fs2_c00249{font-size:57.000000px;}
.fs1_c00249{font-size:60.000000px;}
.y0_c00249{bottom:0.000000px;}
.y19_c00249{bottom:347.848650px;}
.y18_c00249{bottom:361.348650px;}
.y17_c00249{bottom:374.848500px;}
.y16_c00249{bottom:401.352450px;}
.y15_c00249{bottom:414.852450px;}
.y14_c00249{bottom:428.352450px;}
.y13_c00249{bottom:454.856400px;}
.y12_c00249{bottom:468.356400px;}
.y11_c00249{bottom:481.856400px;}
.y10_c00249{bottom:504.108450px;}
.yf_c00249{bottom:522.108450px;}
.ye_c00249{bottom:548.612250px;}
.yd_c00249{bottom:836.824800px;}
.yc_c00249{bottom:850.324800px;}
.yb_c00249{bottom:863.824800px;}
.ya_c00249{bottom:890.328750px;}
.y9_c00249{bottom:903.828750px;}
.y8_c00249{bottom:917.328750px;}
.y7_c00249{bottom:943.832700px;}
.y6_c00249{bottom:957.332700px;}
.y5_c00249{bottom:970.832700px;}
.y4_c00249{bottom:993.084750px;}
.y3_c00249{bottom:1011.084750px;}
.y2_c00249{bottom:1037.588700px;}
.y1_c00249{bottom:1093.600950px;}
.h6_c00249{height:30.282000px;}
.h4_c00249{height:34.080000px;}
.h2_c00249{height:39.264000px;}
.h3_c00249{height:43.260000px;}
.h5_c00249{height:43.740000px;}
.h1_c00249{height:1135.500000px;}
.h0_c00249{height:1135.506150px;}
.w0_c00249{width:893.950200px;}
.w1_c00249{width:894.000000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:77.603100px;}
.x2_c00249{left:599.532150px;}
.x3_c00249{left:612.288150px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls1_c00249{letter-spacing:-0.720000pt;}
.ls2_c00249{letter-spacing:-0.640000pt;}
.ls3_c00249{letter-spacing:-0.560000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws1_c00249{word-spacing:-7.728000pt;}
.ws2_c00249{word-spacing:0.000000pt;}
.ws3_c00249{word-spacing:6.272000pt;}
.ws0_c00249{word-spacing:1399.633067pt;}
._3_c00249{margin-left:-6.260267pt;}
._5_c00249{margin-left:-5.173333pt;}
._0_c00249{margin-left:-1.877333pt;}
._1_c00249{margin-left:-0.981333pt;}
._2_c00249{width:1.792000pt;}
._7_c00249{width:6.912000pt;}
._4_c00249{width:50.208000pt;}
._6_c00249{width:52.565333pt;}
.fs3_c00249{font-size:37.333333pt;}
.fs0_c00249{font-size:42.666667pt;}
.fs4_c00249{font-size:48.000000pt;}
.fs2_c00249{font-size:50.666667pt;}
.fs1_c00249{font-size:53.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y19_c00249{bottom:309.198800pt;}
.y18_c00249{bottom:321.198800pt;}
.y17_c00249{bottom:333.198667pt;}
.y16_c00249{bottom:356.757733pt;}
.y15_c00249{bottom:368.757733pt;}
.y14_c00249{bottom:380.757733pt;}
.y13_c00249{bottom:404.316800pt;}
.y12_c00249{bottom:416.316800pt;}
.y11_c00249{bottom:428.316800pt;}
.y10_c00249{bottom:448.096400pt;}
.yf_c00249{bottom:464.096400pt;}
.ye_c00249{bottom:487.655333pt;}
.yd_c00249{bottom:743.844267pt;}
.yc_c00249{bottom:755.844267pt;}
.yb_c00249{bottom:767.844267pt;}
.ya_c00249{bottom:791.403333pt;}
.y9_c00249{bottom:803.403333pt;}
.y8_c00249{bottom:815.403333pt;}
.y7_c00249{bottom:838.962400pt;}
.y6_c00249{bottom:850.962400pt;}
.y5_c00249{bottom:862.962400pt;}
.y4_c00249{bottom:882.742000pt;}
.y3_c00249{bottom:898.742000pt;}
.y2_c00249{bottom:922.301067pt;}
.y1_c00249{bottom:972.089733pt;}
.h6_c00249{height:26.917333pt;}
.h4_c00249{height:30.293333pt;}
.h2_c00249{height:34.901333pt;}
.h3_c00249{height:38.453333pt;}
.h5_c00249{height:38.880000pt;}
.h1_c00249{height:1009.333333pt;}
.h0_c00249{height:1009.338800pt;}
.w0_c00249{width:794.622400pt;}
.w1_c00249{width:794.666667pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:68.980533pt;}
.x2_c00249{left:532.917467pt;}
.x3_c00249{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:0.908000;font-style:normal;font-weight: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_c00250;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00250{font-family:ff7_c00250;line-height:1.067000;font-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_c00250{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls6_c00250{letter-spacing:-0.810000px;}
.ls4_c00250{letter-spacing:-0.720000px;}
.ls3_c00250{letter-spacing:-0.702000px;}
.ls5_c00250{letter-spacing:-0.630000px;}
.ls2_c00250{letter-spacing:-0.540000px;}
.ls1_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00250{word-spacing:-11.664000px;}
.ws0_c00250{word-spacing:-10.896000px;}
.ws1_c00250{word-spacing:-8.694000px;}
.ws3_c00250{word-spacing:0.000000px;}
.ws4_c00250{word-spacing:7.056000px;}
._0_c00250{margin-left:-2755.276200px;}
._4_c00250{margin-left:-6.946800px;}
._1_c00250{margin-left:-2.256000px;}
._3_c00250{margin-left:-1.200000px;}
._2_c00250{width:1.008000px;}
._7_c00250{width:7.776000px;}
._5_c00250{width:56.214000px;}
._6_c00250{width:59.136000px;}
.fc0_c00250{color:rgb(35,31,32);}
.fs3_c00250{font-size:42.000000px;}
.fs0_c00250{font-size:48.000000px;}
.fs4_c00250{font-size:54.000000px;}
.fs2_c00250{font-size:57.000000px;}
.fs1_c00250{font-size:60.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1a_c00250{bottom:348.185250px;}
.y19_c00250{bottom:361.685250px;}
.y18_c00250{bottom:375.185250px;}
.y17_c00250{bottom:401.689200px;}
.y16_c00250{bottom:415.189200px;}
.y15_c00250{bottom:428.689200px;}
.y14_c00250{bottom:455.193150px;}
.y13_c00250{bottom:468.693150px;}
.y12_c00250{bottom:482.193150px;}
.y11_c00250{bottom:504.445050px;}
.y10_c00250{bottom:522.445050px;}
.yf_c00250{bottom:548.949000px;}
.ye_c00250{bottom:819.161550px;}
.yd_c00250{bottom:832.661550px;}
.yc_c00250{bottom:846.161550px;}
.yb_c00250{bottom:872.665500px;}
.ya_c00250{bottom:886.165500px;}
.y9_c00250{bottom:899.665500px;}
.y8_c00250{bottom:926.169450px;}
.y7_c00250{bottom:939.669450px;}
.y6_c00250{bottom:953.169450px;}
.y5_c00250{bottom:975.421350px;}
.y4_c00250{bottom:993.421350px;}
.y3_c00250{bottom:1011.421350px;}
.y2_c00250{bottom:1037.925300px;}
.y1_c00250{bottom:1093.600950px;}
.h7_c00250{height:30.282000px;}
.h5_c00250{height:34.080000px;}
.h2_c00250{height:39.264000px;}
.h3_c00250{height:39.984000px;}
.h4_c00250{height:43.260000px;}
.h6_c00250{height:43.740000px;}
.h1_c00250{height:1135.500000px;}
.h0_c00250{height:1135.506150px;}
.w0_c00250{width:893.950200px;}
.w1_c00250{width:894.000000px;}
.x0_c00250{left:0.000000px;}
.x4_c00250{left:128.626800px;}
.x5_c00250{left:141.382650px;}
.x6_c00250{left:145.634700px;}
.x2_c00250{left:188.061900px;}
.x3_c00250{left:190.513350px;}
.x1_c00250{left:800.165850px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls6_c00250{letter-spacing:-0.720000pt;}
.ls4_c00250{letter-spacing:-0.640000pt;}
.ls3_c00250{letter-spacing:-0.624000pt;}
.ls5_c00250{letter-spacing:-0.560000pt;}
.ls2_c00250{letter-spacing:-0.480000pt;}
.ls1_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.426667pt;}
.ws2_c00250{word-spacing:-10.368000pt;}
.ws0_c00250{word-spacing:-9.685333pt;}
.ws1_c00250{word-spacing:-7.728000pt;}
.ws3_c00250{word-spacing:0.000000pt;}
.ws4_c00250{word-spacing:6.272000pt;}
._0_c00250{margin-left:-2449.134400pt;}
._4_c00250{margin-left:-6.174933pt;}
._1_c00250{margin-left:-2.005333pt;}
._3_c00250{margin-left:-1.066667pt;}
._2_c00250{width:0.896000pt;}
._7_c00250{width:6.912000pt;}
._5_c00250{width:49.968000pt;}
._6_c00250{width:52.565333pt;}
.fs3_c00250{font-size:37.333333pt;}
.fs0_c00250{font-size:42.666667pt;}
.fs4_c00250{font-size:48.000000pt;}
.fs2_c00250{font-size:50.666667pt;}
.fs1_c00250{font-size:53.333333pt;}
.y0_c00250{bottom:0.000000pt;}
.y1a_c00250{bottom:309.498000pt;}
.y19_c00250{bottom:321.498000pt;}
.y18_c00250{bottom:333.498000pt;}
.y17_c00250{bottom:357.057067pt;}
.y16_c00250{bottom:369.057067pt;}
.y15_c00250{bottom:381.057067pt;}
.y14_c00250{bottom:404.616133pt;}
.y13_c00250{bottom:416.616133pt;}
.y12_c00250{bottom:428.616133pt;}
.y11_c00250{bottom:448.395600pt;}
.y10_c00250{bottom:464.395600pt;}
.yf_c00250{bottom:487.954667pt;}
.ye_c00250{bottom:728.143600pt;}
.yd_c00250{bottom:740.143600pt;}
.yc_c00250{bottom:752.143600pt;}
.yb_c00250{bottom:775.702667pt;}
.ya_c00250{bottom:787.702667pt;}
.y9_c00250{bottom:799.702667pt;}
.y8_c00250{bottom:823.261733pt;}
.y7_c00250{bottom:835.261733pt;}
.y6_c00250{bottom:847.261733pt;}
.y5_c00250{bottom:867.041200pt;}
.y4_c00250{bottom:883.041200pt;}
.y3_c00250{bottom:899.041200pt;}
.y2_c00250{bottom:922.600267pt;}
.y1_c00250{bottom:972.089733pt;}
.h7_c00250{height:26.917333pt;}
.h5_c00250{height:30.293333pt;}
.h2_c00250{height:34.901333pt;}
.h3_c00250{height:35.541333pt;}
.h4_c00250{height:38.453333pt;}
.h6_c00250{height:38.880000pt;}
.h1_c00250{height:1009.333333pt;}
.h0_c00250{height:1009.338800pt;}
.w0_c00250{width:794.622400pt;}
.w1_c00250{width:794.666667pt;}
.x0_c00250{left:0.000000pt;}
.x4_c00250{left:114.334933pt;}
.x5_c00250{left:125.673467pt;}
.x6_c00250{left:129.453067pt;}
.x2_c00250{left:167.166133pt;}
.x3_c00250{left:169.345200pt;}
.x1_c00250{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00251;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls1_c00251{letter-spacing:-0.810000px;}
.ls2_c00251{letter-spacing:-0.720000px;}
.ls3_c00251{letter-spacing:-0.630000px;}
.ls4_c00251{letter-spacing:-0.378000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00251{word-spacing:-8.694000px;}
.ws2_c00251{word-spacing:0.000000px;}
.ws4_c00251{word-spacing:0.378000px;}
.ws3_c00251{word-spacing:7.056000px;}
.ws0_c00251{word-spacing:1585.435200px;}
._3_c00251{margin-left:-7.042800px;}
._0_c00251{margin-left:-2.112000px;}
._1_c00251{margin-left:-1.104000px;}
._2_c00251{width:2.016000px;}
._6_c00251{width:7.776000px;}
._4_c00251{width:56.484000px;}
._5_c00251{width:59.136000px;}
.fc0_c00251{color:rgb(35,31,32);}
.fs3_c00251{font-size:42.000000px;}
.fs0_c00251{font-size:48.000000px;}
.fs4_c00251{font-size:54.000000px;}
.fs2_c00251{font-size:57.000000px;}
.fs1_c00251{font-size:60.000000px;}
.y0_c00251{bottom:0.000000px;}
.y1a_c00251{bottom:333.675300px;}
.y19_c00251{bottom:347.175300px;}
.y18_c00251{bottom:360.675300px;}
.y17_c00251{bottom:382.927200px;}
.y16_c00251{bottom:396.427200px;}
.y15_c00251{bottom:409.927200px;}
.y14_c00251{bottom:436.431150px;}
.y13_c00251{bottom:449.931150px;}
.y12_c00251{bottom:463.431150px;}
.y11_c00251{bottom:485.683200px;}
.y10_c00251{bottom:503.683200px;}
.yf_c00251{bottom:521.683200px;}
.ye_c00251{bottom:548.187150px;}
.yd_c00251{bottom:836.399550px;}
.yc_c00251{bottom:849.899550px;}
.yb_c00251{bottom:863.399550px;}
.ya_c00251{bottom:889.903650px;}
.y9_c00251{bottom:903.403650px;}
.y8_c00251{bottom:916.903650px;}
.y7_c00251{bottom:943.407600px;}
.y6_c00251{bottom:956.907600px;}
.y5_c00251{bottom:970.407600px;}
.y4_c00251{bottom:992.659500px;}
.y3_c00251{bottom:1010.659500px;}
.y2_c00251{bottom:1037.163450px;}
.y1_c00251{bottom:1093.600950px;}
.h6_c00251{height:30.282000px;}
.h4_c00251{height:34.080000px;}
.h2_c00251{height:39.264000px;}
.h3_c00251{height:43.260000px;}
.h5_c00251{height:43.740000px;}
.h1_c00251{height:1135.500000px;}
.h0_c00251{height:1135.506150px;}
.w0_c00251{width:893.950200px;}
.w1_c00251{width:894.000000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:77.603100px;}
.x2_c00251{left:599.532150px;}
.x3_c00251{left:612.288150px;}
.x4_c00251{left:616.540050px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls1_c00251{letter-spacing:-0.720000pt;}
.ls2_c00251{letter-spacing:-0.640000pt;}
.ls3_c00251{letter-spacing:-0.560000pt;}
.ls4_c00251{letter-spacing:-0.336000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws1_c00251{word-spacing:-7.728000pt;}
.ws2_c00251{word-spacing:0.000000pt;}
.ws4_c00251{word-spacing:0.336000pt;}
.ws3_c00251{word-spacing:6.272000pt;}
.ws0_c00251{word-spacing:1409.275733pt;}
._3_c00251{margin-left:-6.260267pt;}
._0_c00251{margin-left:-1.877333pt;}
._1_c00251{margin-left:-0.981333pt;}
._2_c00251{width:1.792000pt;}
._6_c00251{width:6.912000pt;}
._4_c00251{width:50.208000pt;}
._5_c00251{width:52.565333pt;}
.fs3_c00251{font-size:37.333333pt;}
.fs0_c00251{font-size:42.666667pt;}
.fs4_c00251{font-size:48.000000pt;}
.fs2_c00251{font-size:50.666667pt;}
.fs1_c00251{font-size:53.333333pt;}
.y0_c00251{bottom:0.000000pt;}
.y1a_c00251{bottom:296.600267pt;}
.y19_c00251{bottom:308.600267pt;}
.y18_c00251{bottom:320.600267pt;}
.y17_c00251{bottom:340.379733pt;}
.y16_c00251{bottom:352.379733pt;}
.y15_c00251{bottom:364.379733pt;}
.y14_c00251{bottom:387.938800pt;}
.y13_c00251{bottom:399.938800pt;}
.y12_c00251{bottom:411.938800pt;}
.y11_c00251{bottom:431.718400pt;}
.y10_c00251{bottom:447.718400pt;}
.yf_c00251{bottom:463.718400pt;}
.ye_c00251{bottom:487.277467pt;}
.yd_c00251{bottom:743.466267pt;}
.yc_c00251{bottom:755.466267pt;}
.yb_c00251{bottom:767.466267pt;}
.ya_c00251{bottom:791.025467pt;}
.y9_c00251{bottom:803.025467pt;}
.y8_c00251{bottom:815.025467pt;}
.y7_c00251{bottom:838.584533pt;}
.y6_c00251{bottom:850.584533pt;}
.y5_c00251{bottom:862.584533pt;}
.y4_c00251{bottom:882.364000pt;}
.y3_c00251{bottom:898.364000pt;}
.y2_c00251{bottom:921.923067pt;}
.y1_c00251{bottom:972.089733pt;}
.h6_c00251{height:26.917333pt;}
.h4_c00251{height:30.293333pt;}
.h2_c00251{height:34.901333pt;}
.h3_c00251{height:38.453333pt;}
.h5_c00251{height:38.880000pt;}
.h1_c00251{height:1009.333333pt;}
.h0_c00251{height:1009.338800pt;}
.w0_c00251{width:794.622400pt;}
.w1_c00251{width:794.666667pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:68.980533pt;}
.x2_c00251{left:532.917467pt;}
.x3_c00251{left:544.256133pt;}
.x4_c00251{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00252;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:0.908000;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00252{font-family:ff7_c00252;line-height:1.067000;font-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_c00252{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls5_c00252{letter-spacing:-1.026000px;}
.ls3_c00252{letter-spacing:-0.720000px;}
.ls4_c00252{letter-spacing:-0.630000px;}
.ls2_c00252{letter-spacing:-0.540000px;}
.ls1_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00252{word-spacing:-8.694000px;}
.ws2_c00252{word-spacing:0.000000px;}
.ws3_c00252{word-spacing:7.056000px;}
.ws4_c00252{word-spacing:56.700000px;}
._0_c00252{margin-left:-2755.276200px;}
._4_c00252{margin-left:-6.946800px;}
._1_c00252{margin-left:-2.256000px;}
._3_c00252{margin-left:-1.200000px;}
._2_c00252{width:1.008000px;}
._7_c00252{width:7.776000px;}
._5_c00252{width:56.214000px;}
._6_c00252{width:59.136000px;}
.fc0_c00252{color:rgb(35,31,32);}
.fs3_c00252{font-size:42.000000px;}
.fs0_c00252{font-size:48.000000px;}
.fs4_c00252{font-size:54.000000px;}
.fs2_c00252{font-size:57.000000px;}
.fs1_c00252{font-size:60.000000px;}
.y0_c00252{bottom:0.000000px;}
.y19_c00252{bottom:347.547450px;}
.y18_c00252{bottom:361.047450px;}
.y17_c00252{bottom:374.547450px;}
.y16_c00252{bottom:401.051400px;}
.y15_c00252{bottom:414.551400px;}
.y14_c00252{bottom:428.051400px;}
.y13_c00252{bottom:454.555350px;}
.y12_c00252{bottom:468.055350px;}
.y11_c00252{bottom:481.555350px;}
.y10_c00252{bottom:503.807250px;}
.yf_c00252{bottom:521.807250px;}
.ye_c00252{bottom:548.311200px;}
.yd_c00252{bottom:837.586650px;}
.yc_c00252{bottom:851.086650px;}
.yb_c00252{bottom:864.586650px;}
.ya_c00252{bottom:891.090600px;}
.y9_c00252{bottom:904.590600px;}
.y8_c00252{bottom:918.090600px;}
.y7_c00252{bottom:944.594700px;}
.y6_c00252{bottom:958.094700px;}
.y5_c00252{bottom:971.594700px;}
.y4_c00252{bottom:993.846600px;}
.y3_c00252{bottom:1011.846600px;}
.y2_c00252{bottom:1038.350550px;}
.y1_c00252{bottom:1093.600950px;}
.h7_c00252{height:30.282000px;}
.h5_c00252{height:34.080000px;}
.h2_c00252{height:39.264000px;}
.h3_c00252{height:39.984000px;}
.h4_c00252{height:43.260000px;}
.h6_c00252{height:43.740000px;}
.h1_c00252{height:1135.500000px;}
.h0_c00252{height:1135.506150px;}
.w0_c00252{width:893.950200px;}
.w1_c00252{width:894.000000px;}
.x0_c00252{left:0.000000px;}
.x4_c00252{left:128.626800px;}
.x5_c00252{left:141.382650px;}
.x2_c00252{left:188.061900px;}
.x3_c00252{left:190.513350px;}
.x1_c00252{left:800.165850px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls5_c00252{letter-spacing:-0.912000pt;}
.ls3_c00252{letter-spacing:-0.640000pt;}
.ls4_c00252{letter-spacing:-0.560000pt;}
.ls2_c00252{letter-spacing:-0.480000pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.426667pt;}
.ws0_c00252{word-spacing:-9.685333pt;}
.ws1_c00252{word-spacing:-7.728000pt;}
.ws2_c00252{word-spacing:0.000000pt;}
.ws3_c00252{word-spacing:6.272000pt;}
.ws4_c00252{word-spacing:50.400000pt;}
._0_c00252{margin-left:-2449.134400pt;}
._4_c00252{margin-left:-6.174933pt;}
._1_c00252{margin-left:-2.005333pt;}
._3_c00252{margin-left:-1.066667pt;}
._2_c00252{width:0.896000pt;}
._7_c00252{width:6.912000pt;}
._5_c00252{width:49.968000pt;}
._6_c00252{width:52.565333pt;}
.fs3_c00252{font-size:37.333333pt;}
.fs0_c00252{font-size:42.666667pt;}
.fs4_c00252{font-size:48.000000pt;}
.fs2_c00252{font-size:50.666667pt;}
.fs1_c00252{font-size:53.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y19_c00252{bottom:308.931067pt;}
.y18_c00252{bottom:320.931067pt;}
.y17_c00252{bottom:332.931067pt;}
.y16_c00252{bottom:356.490133pt;}
.y15_c00252{bottom:368.490133pt;}
.y14_c00252{bottom:380.490133pt;}
.y13_c00252{bottom:404.049200pt;}
.y12_c00252{bottom:416.049200pt;}
.y11_c00252{bottom:428.049200pt;}
.y10_c00252{bottom:447.828667pt;}
.yf_c00252{bottom:463.828667pt;}
.ye_c00252{bottom:487.387733pt;}
.yd_c00252{bottom:744.521467pt;}
.yc_c00252{bottom:756.521467pt;}
.yb_c00252{bottom:768.521467pt;}
.ya_c00252{bottom:792.080533pt;}
.y9_c00252{bottom:804.080533pt;}
.y8_c00252{bottom:816.080533pt;}
.y7_c00252{bottom:839.639733pt;}
.y6_c00252{bottom:851.639733pt;}
.y5_c00252{bottom:863.639733pt;}
.y4_c00252{bottom:883.419200pt;}
.y3_c00252{bottom:899.419200pt;}
.y2_c00252{bottom:922.978267pt;}
.y1_c00252{bottom:972.089733pt;}
.h7_c00252{height:26.917333pt;}
.h5_c00252{height:30.293333pt;}
.h2_c00252{height:34.901333pt;}
.h3_c00252{height:35.541333pt;}
.h4_c00252{height:38.453333pt;}
.h6_c00252{height:38.880000pt;}
.h1_c00252{height:1009.333333pt;}
.h0_c00252{height:1009.338800pt;}
.w0_c00252{width:794.622400pt;}
.w1_c00252{width:794.666667pt;}
.x0_c00252{left:0.000000pt;}
.x4_c00252{left:114.334933pt;}
.x5_c00252{left:125.673467pt;}
.x2_c00252{left:167.166133pt;}
.x3_c00252{left:169.345200pt;}
.x1_c00252{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.067000;font-style:normal;font-weight: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_c00253;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00253{font-family:ff7_c00253;line-height:0.710000;font-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_c00253{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls1_c00253{letter-spacing:-1.188000px;}
.ls2_c00253{letter-spacing:-0.720000px;}
.ls3_c00253{letter-spacing:-0.630000px;}
.ls4_c00253{letter-spacing:-0.378000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00253{word-spacing:-6.487200px;}
.ws3_c00253{word-spacing:0.000000px;}
.ws5_c00253{word-spacing:0.378000px;}
.ws4_c00253{word-spacing:7.056000px;}
.ws0_c00253{word-spacing:1574.587200px;}
._3_c00253{margin-left:-7.042800px;}
._0_c00253{margin-left:-2.112000px;}
._1_c00253{margin-left:-1.104000px;}
._2_c00253{width:2.016000px;}
._6_c00253{width:7.776000px;}
._4_c00253{width:56.484000px;}
._5_c00253{width:59.136000px;}
.fc0_c00253{color:rgb(35,31,32);}
.fs5_c00253{font-size:30.600000px;}
.fs6_c00253{font-size:36.000000px;}
.fs3_c00253{font-size:42.000000px;}
.fs0_c00253{font-size:48.000000px;}
.fs4_c00253{font-size:54.000000px;}
.fs2_c00253{font-size:57.000000px;}
.fs1_c00253{font-size:60.000000px;}
.y0_c00253{bottom:0.000000px;}
.y18_c00253{bottom:352.100550px;}
.y17_c00253{bottom:365.600550px;}
.y16_c00253{bottom:379.100550px;}
.y15_c00253{bottom:401.352450px;}
.y14_c00253{bottom:414.852450px;}
.y13_c00253{bottom:428.352450px;}
.y12_c00253{bottom:454.856400px;}
.y11_c00253{bottom:468.356400px;}
.y10_c00253{bottom:481.856400px;}
.yf_c00253{bottom:504.108450px;}
.ye_c00253{bottom:522.108450px;}
.yd_c00253{bottom:548.612250px;}
.yc_c00253{bottom:850.324800px;}
.yb_c00253{bottom:863.824800px;}
.ya_c00253{bottom:877.324800px;}
.y9_c00253{bottom:903.828750px;}
.y8_c00253{bottom:917.328750px;}
.y7_c00253{bottom:943.832700px;}
.y6_c00253{bottom:957.332700px;}
.y5_c00253{bottom:970.832700px;}
.y4_c00253{bottom:993.084750px;}
.y3_c00253{bottom:1011.084750px;}
.y2_c00253{bottom:1037.588700px;}
.y19_c00253{bottom:1040.299350px;}
.y1_c00253{bottom:1093.600950px;}
.h7_c00253{height:25.200000px;}
.h6_c00253{height:30.282000px;}
.h4_c00253{height:34.080000px;}
.h2_c00253{height:39.264000px;}
.h3_c00253{height:43.260000px;}
.h5_c00253{height:43.740000px;}
.h1_c00253{height:1135.500000px;}
.h0_c00253{height:1135.506150px;}
.w0_c00253{width:893.950200px;}
.w1_c00253{width:894.000000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:77.603100px;}
.x4_c00253{left:424.138500px;}
.x2_c00253{left:599.532150px;}
.x3_c00253{left:612.288150px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls1_c00253{letter-spacing:-1.056000pt;}
.ls2_c00253{letter-spacing:-0.640000pt;}
.ls3_c00253{letter-spacing:-0.560000pt;}
.ls4_c00253{letter-spacing:-0.336000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws1_c00253{word-spacing:-7.728000pt;}
.ws2_c00253{word-spacing:-5.766400pt;}
.ws3_c00253{word-spacing:0.000000pt;}
.ws5_c00253{word-spacing:0.336000pt;}
.ws4_c00253{word-spacing:6.272000pt;}
.ws0_c00253{word-spacing:1399.633067pt;}
._3_c00253{margin-left:-6.260267pt;}
._0_c00253{margin-left:-1.877333pt;}
._1_c00253{margin-left:-0.981333pt;}
._2_c00253{width:1.792000pt;}
._6_c00253{width:6.912000pt;}
._4_c00253{width:50.208000pt;}
._5_c00253{width:52.565333pt;}
.fs5_c00253{font-size:27.200000pt;}
.fs6_c00253{font-size:32.000000pt;}
.fs3_c00253{font-size:37.333333pt;}
.fs0_c00253{font-size:42.666667pt;}
.fs4_c00253{font-size:48.000000pt;}
.fs2_c00253{font-size:50.666667pt;}
.fs1_c00253{font-size:53.333333pt;}
.y0_c00253{bottom:0.000000pt;}
.y18_c00253{bottom:312.978267pt;}
.y17_c00253{bottom:324.978267pt;}
.y16_c00253{bottom:336.978267pt;}
.y15_c00253{bottom:356.757733pt;}
.y14_c00253{bottom:368.757733pt;}
.y13_c00253{bottom:380.757733pt;}
.y12_c00253{bottom:404.316800pt;}
.y11_c00253{bottom:416.316800pt;}
.y10_c00253{bottom:428.316800pt;}
.yf_c00253{bottom:448.096400pt;}
.ye_c00253{bottom:464.096400pt;}
.yd_c00253{bottom:487.655333pt;}
.yc_c00253{bottom:755.844267pt;}
.yb_c00253{bottom:767.844267pt;}
.ya_c00253{bottom:779.844267pt;}
.y9_c00253{bottom:803.403333pt;}
.y8_c00253{bottom:815.403333pt;}
.y7_c00253{bottom:838.962400pt;}
.y6_c00253{bottom:850.962400pt;}
.y5_c00253{bottom:862.962400pt;}
.y4_c00253{bottom:882.742000pt;}
.y3_c00253{bottom:898.742000pt;}
.y2_c00253{bottom:922.301067pt;}
.y19_c00253{bottom:924.710533pt;}
.y1_c00253{bottom:972.089733pt;}
.h7_c00253{height:22.400000pt;}
.h6_c00253{height:26.917333pt;}
.h4_c00253{height:30.293333pt;}
.h2_c00253{height:34.901333pt;}
.h3_c00253{height:38.453333pt;}
.h5_c00253{height:38.880000pt;}
.h1_c00253{height:1009.333333pt;}
.h0_c00253{height:1009.338800pt;}
.w0_c00253{width:794.622400pt;}
.w1_c00253{width:794.666667pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:68.980533pt;}
.x4_c00253{left:377.012000pt;}
.x2_c00253{left:532.917467pt;}
.x3_c00253{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:0.908000;font-style:normal;font-weight: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_c00254;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00254{font-family:ff7_c00254;line-height:1.067000;font-style:normal;font-weight: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_c00254;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00254{font-family:ff8_c00254;line-height:0.710000;font-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_c00254{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls5_c00254{letter-spacing:-1.080000px;}
.ls3_c00254{letter-spacing:-0.720000px;}
.ls4_c00254{letter-spacing:-0.630000px;}
.ls2_c00254{letter-spacing:-0.540000px;}
.ls1_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00254{word-spacing:-8.694000px;}
.ws2_c00254{word-spacing:-6.487200px;}
.ws3_c00254{word-spacing:0.000000px;}
.ws5_c00254{word-spacing:0.270000px;}
.ws4_c00254{word-spacing:7.056000px;}
._0_c00254{margin-left:-2755.276200px;}
._4_c00254{margin-left:-6.946800px;}
._1_c00254{margin-left:-2.256000px;}
._3_c00254{margin-left:-1.200000px;}
._2_c00254{width:1.008000px;}
._7_c00254{width:7.776000px;}
._5_c00254{width:56.214000px;}
._6_c00254{width:59.136000px;}
.fc0_c00254{color:rgb(35,31,32);}
.fs5_c00254{font-size:30.600000px;}
.fs6_c00254{font-size:36.000000px;}
.fs3_c00254{font-size:42.000000px;}
.fs0_c00254{font-size:48.000000px;}
.fs4_c00254{font-size:54.000000px;}
.fs2_c00254{font-size:57.000000px;}
.fs1_c00254{font-size:60.000000px;}
.y0_c00254{bottom:0.000000px;}
.y18_c00254{bottom:365.299350px;}
.y17_c00254{bottom:378.799350px;}
.y16_c00254{bottom:392.299350px;}
.y15_c00254{bottom:414.551400px;}
.y14_c00254{bottom:428.051400px;}
.y13_c00254{bottom:454.555350px;}
.y12_c00254{bottom:468.055350px;}
.y11_c00254{bottom:481.555350px;}
.y10_c00254{bottom:503.807250px;}
.yf_c00254{bottom:521.807250px;}
.ye_c00254{bottom:548.311200px;}
.y19_c00254{bottom:551.323050px;}
.yd_c00254{bottom:836.523600px;}
.yc_c00254{bottom:850.023600px;}
.yb_c00254{bottom:863.523600px;}
.ya_c00254{bottom:890.027550px;}
.y9_c00254{bottom:903.527550px;}
.y8_c00254{bottom:917.027550px;}
.y7_c00254{bottom:943.531500px;}
.y6_c00254{bottom:957.031500px;}
.y5_c00254{bottom:970.531500px;}
.y4_c00254{bottom:992.783550px;}
.y3_c00254{bottom:1010.783550px;}
.y2_c00254{bottom:1037.287500px;}
.y1_c00254{bottom:1093.600950px;}
.h8_c00254{height:25.200000px;}
.h7_c00254{height:30.282000px;}
.h5_c00254{height:34.080000px;}
.h2_c00254{height:39.264000px;}
.h3_c00254{height:39.984000px;}
.h4_c00254{height:43.260000px;}
.h6_c00254{height:43.740000px;}
.h1_c00254{height:1135.500000px;}
.h0_c00254{height:1135.506150px;}
.w0_c00254{width:893.950200px;}
.w1_c00254{width:894.000000px;}
.x0_c00254{left:0.000000px;}
.x4_c00254{left:128.626800px;}
.x5_c00254{left:141.382650px;}
.x2_c00254{left:188.061900px;}
.x3_c00254{left:190.513350px;}
.x6_c00254{left:321.919050px;}
.x1_c00254{left:800.165850px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls5_c00254{letter-spacing:-0.960000pt;}
.ls3_c00254{letter-spacing:-0.640000pt;}
.ls4_c00254{letter-spacing:-0.560000pt;}
.ls2_c00254{letter-spacing:-0.480000pt;}
.ls1_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.426667pt;}
.ws0_c00254{word-spacing:-9.685333pt;}
.ws1_c00254{word-spacing:-7.728000pt;}
.ws2_c00254{word-spacing:-5.766400pt;}
.ws3_c00254{word-spacing:0.000000pt;}
.ws5_c00254{word-spacing:0.240000pt;}
.ws4_c00254{word-spacing:6.272000pt;}
._0_c00254{margin-left:-2449.134400pt;}
._4_c00254{margin-left:-6.174933pt;}
._1_c00254{margin-left:-2.005333pt;}
._3_c00254{margin-left:-1.066667pt;}
._2_c00254{width:0.896000pt;}
._7_c00254{width:6.912000pt;}
._5_c00254{width:49.968000pt;}
._6_c00254{width:52.565333pt;}
.fs5_c00254{font-size:27.200000pt;}
.fs6_c00254{font-size:32.000000pt;}
.fs3_c00254{font-size:37.333333pt;}
.fs0_c00254{font-size:42.666667pt;}
.fs4_c00254{font-size:48.000000pt;}
.fs2_c00254{font-size:50.666667pt;}
.fs1_c00254{font-size:53.333333pt;}
.y0_c00254{bottom:0.000000pt;}
.y18_c00254{bottom:324.710533pt;}
.y17_c00254{bottom:336.710533pt;}
.y16_c00254{bottom:348.710533pt;}
.y15_c00254{bottom:368.490133pt;}
.y14_c00254{bottom:380.490133pt;}
.y13_c00254{bottom:404.049200pt;}
.y12_c00254{bottom:416.049200pt;}
.y11_c00254{bottom:428.049200pt;}
.y10_c00254{bottom:447.828667pt;}
.yf_c00254{bottom:463.828667pt;}
.ye_c00254{bottom:487.387733pt;}
.y19_c00254{bottom:490.064933pt;}
.yd_c00254{bottom:743.576533pt;}
.yc_c00254{bottom:755.576533pt;}
.yb_c00254{bottom:767.576533pt;}
.ya_c00254{bottom:791.135600pt;}
.y9_c00254{bottom:803.135600pt;}
.y8_c00254{bottom:815.135600pt;}
.y7_c00254{bottom:838.694667pt;}
.y6_c00254{bottom:850.694667pt;}
.y5_c00254{bottom:862.694667pt;}
.y4_c00254{bottom:882.474267pt;}
.y3_c00254{bottom:898.474267pt;}
.y2_c00254{bottom:922.033333pt;}
.y1_c00254{bottom:972.089733pt;}
.h8_c00254{height:22.400000pt;}
.h7_c00254{height:26.917333pt;}
.h5_c00254{height:30.293333pt;}
.h2_c00254{height:34.901333pt;}
.h3_c00254{height:35.541333pt;}
.h4_c00254{height:38.453333pt;}
.h6_c00254{height:38.880000pt;}
.h1_c00254{height:1009.333333pt;}
.h0_c00254{height:1009.338800pt;}
.w0_c00254{width:794.622400pt;}
.w1_c00254{width:794.666667pt;}
.x0_c00254{left:0.000000pt;}
.x4_c00254{left:114.334933pt;}
.x5_c00254{left:125.673467pt;}
.x2_c00254{left:167.166133pt;}
.x3_c00254{left:169.345200pt;}
.x6_c00254{left:286.150267pt;}
.x1_c00254{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00255;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls1_c00255{letter-spacing:-0.810000px;}
.ls2_c00255{letter-spacing:-0.720000px;}
.ls3_c00255{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00255{word-spacing:-8.694000px;}
.ws2_c00255{word-spacing:0.000000px;}
.ws3_c00255{word-spacing:7.056000px;}
.ws0_c00255{word-spacing:1574.587200px;}
._3_c00255{margin-left:-7.042800px;}
._0_c00255{margin-left:-2.112000px;}
._1_c00255{margin-left:-1.104000px;}
._2_c00255{width:2.016000px;}
._6_c00255{width:7.776000px;}
._4_c00255{width:56.484000px;}
._5_c00255{width:59.136000px;}
.fc0_c00255{color:rgb(35,31,32);}
.fs3_c00255{font-size:42.000000px;}
.fs0_c00255{font-size:48.000000px;}
.fs4_c00255{font-size:54.000000px;}
.fs2_c00255{font-size:57.000000px;}
.fs1_c00255{font-size:60.000000px;}
.y0_c00255{bottom:0.000000px;}
.y1a_c00255{bottom:334.100550px;}
.y19_c00255{bottom:347.600550px;}
.y18_c00255{bottom:361.100550px;}
.y17_c00255{bottom:383.352450px;}
.y16_c00255{bottom:396.852450px;}
.y15_c00255{bottom:410.352450px;}
.y14_c00255{bottom:436.856400px;}
.y13_c00255{bottom:450.356400px;}
.y12_c00255{bottom:463.856400px;}
.y11_c00255{bottom:486.108450px;}
.y10_c00255{bottom:504.108450px;}
.yf_c00255{bottom:522.108450px;}
.ye_c00255{bottom:548.612250px;}
.yd_c00255{bottom:836.824800px;}
.yc_c00255{bottom:850.324800px;}
.yb_c00255{bottom:863.824800px;}
.ya_c00255{bottom:890.328750px;}
.y9_c00255{bottom:903.828750px;}
.y8_c00255{bottom:917.328750px;}
.y7_c00255{bottom:943.832700px;}
.y6_c00255{bottom:957.332700px;}
.y5_c00255{bottom:970.832700px;}
.y4_c00255{bottom:993.084750px;}
.y3_c00255{bottom:1011.084750px;}
.y2_c00255{bottom:1037.588700px;}
.y1_c00255{bottom:1093.600950px;}
.h6_c00255{height:30.282000px;}
.h4_c00255{height:34.080000px;}
.h2_c00255{height:39.264000px;}
.h3_c00255{height:43.260000px;}
.h5_c00255{height:43.740000px;}
.h1_c00255{height:1135.500000px;}
.h0_c00255{height:1135.506150px;}
.w0_c00255{width:893.950200px;}
.w1_c00255{width:894.000000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:77.603100px;}
.x2_c00255{left:599.532150px;}
.x3_c00255{left:612.288150px;}
.x4_c00255{left:616.540050px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls1_c00255{letter-spacing:-0.720000pt;}
.ls2_c00255{letter-spacing:-0.640000pt;}
.ls3_c00255{letter-spacing:-0.560000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws1_c00255{word-spacing:-7.728000pt;}
.ws2_c00255{word-spacing:0.000000pt;}
.ws3_c00255{word-spacing:6.272000pt;}
.ws0_c00255{word-spacing:1399.633067pt;}
._3_c00255{margin-left:-6.260267pt;}
._0_c00255{margin-left:-1.877333pt;}
._1_c00255{margin-left:-0.981333pt;}
._2_c00255{width:1.792000pt;}
._6_c00255{width:6.912000pt;}
._4_c00255{width:50.208000pt;}
._5_c00255{width:52.565333pt;}
.fs3_c00255{font-size:37.333333pt;}
.fs0_c00255{font-size:42.666667pt;}
.fs4_c00255{font-size:48.000000pt;}
.fs2_c00255{font-size:50.666667pt;}
.fs1_c00255{font-size:53.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y1a_c00255{bottom:296.978267pt;}
.y19_c00255{bottom:308.978267pt;}
.y18_c00255{bottom:320.978267pt;}
.y17_c00255{bottom:340.757733pt;}
.y16_c00255{bottom:352.757733pt;}
.y15_c00255{bottom:364.757733pt;}
.y14_c00255{bottom:388.316800pt;}
.y13_c00255{bottom:400.316800pt;}
.y12_c00255{bottom:412.316800pt;}
.y11_c00255{bottom:432.096400pt;}
.y10_c00255{bottom:448.096400pt;}
.yf_c00255{bottom:464.096400pt;}
.ye_c00255{bottom:487.655333pt;}
.yd_c00255{bottom:743.844267pt;}
.yc_c00255{bottom:755.844267pt;}
.yb_c00255{bottom:767.844267pt;}
.ya_c00255{bottom:791.403333pt;}
.y9_c00255{bottom:803.403333pt;}
.y8_c00255{bottom:815.403333pt;}
.y7_c00255{bottom:838.962400pt;}
.y6_c00255{bottom:850.962400pt;}
.y5_c00255{bottom:862.962400pt;}
.y4_c00255{bottom:882.742000pt;}
.y3_c00255{bottom:898.742000pt;}
.y2_c00255{bottom:922.301067pt;}
.y1_c00255{bottom:972.089733pt;}
.h6_c00255{height:26.917333pt;}
.h4_c00255{height:30.293333pt;}
.h2_c00255{height:34.901333pt;}
.h3_c00255{height:38.453333pt;}
.h5_c00255{height:38.880000pt;}
.h1_c00255{height:1009.333333pt;}
.h0_c00255{height:1009.338800pt;}
.w0_c00255{width:794.622400pt;}
.w1_c00255{width:794.666667pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:68.980533pt;}
.x2_c00255{left:532.917467pt;}
.x3_c00255{left:544.256133pt;}
.x4_c00255{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:0.908000;font-style:normal;font-weight: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_c00256;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00256{font-family:ff7_c00256;line-height:1.067000;font-style:normal;font-weight: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_c00256;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00256{font-family:ff8_c00256;line-height:0.710000;font-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_c00256{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls5_c00256{letter-spacing:-0.810000px;}
.ls3_c00256{letter-spacing:-0.720000px;}
.ls4_c00256{letter-spacing:-0.630000px;}
.ls2_c00256{letter-spacing:-0.540000px;}
.ls1_c00256{letter-spacing:0.000000px;}
.ls0_c00256{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00256{word-spacing:-10.896000px;}
.ws1_c00256{word-spacing:-8.694000px;}
.ws2_c00256{word-spacing:-6.487200px;}
.ws3_c00256{word-spacing:0.000000px;}
.ws4_c00256{word-spacing:7.056000px;}
._0_c00256{margin-left:-2755.276200px;}
._4_c00256{margin-left:-6.946800px;}
._1_c00256{margin-left:-2.256000px;}
._3_c00256{margin-left:-1.200000px;}
._2_c00256{width:1.008000px;}
._7_c00256{width:7.776000px;}
._5_c00256{width:56.214000px;}
._6_c00256{width:59.136000px;}
.fc0_c00256{color:rgb(35,31,32);}
.fs5_c00256{font-size:30.600000px;}
.fs6_c00256{font-size:36.000000px;}
.fs3_c00256{font-size:42.000000px;}
.fs0_c00256{font-size:48.000000px;}
.fs4_c00256{font-size:54.000000px;}
.fs2_c00256{font-size:57.000000px;}
.fs1_c00256{font-size:60.000000px;}
.y0_c00256{bottom:0.000000px;}
.y18_c00256{bottom:347.972700px;}
.y17_c00256{bottom:361.472700px;}
.y16_c00256{bottom:374.972550px;}
.y15_c00256{bottom:401.476500px;}
.y14_c00256{bottom:414.976500px;}
.y13_c00256{bottom:428.476500px;}
.y12_c00256{bottom:454.980450px;}
.y11_c00256{bottom:468.480450px;}
.y10_c00256{bottom:481.980450px;}
.yf_c00256{bottom:504.232500px;}
.ye_c00256{bottom:522.232500px;}
.yd_c00256{bottom:548.736450px;}
.yc_c00256{bottom:850.449000px;}
.yb_c00256{bottom:863.949000px;}
.ya_c00256{bottom:877.449000px;}
.y9_c00256{bottom:903.952950px;}
.y8_c00256{bottom:917.452950px;}
.y7_c00256{bottom:943.956900px;}
.y6_c00256{bottom:957.456900px;}
.y5_c00256{bottom:970.956900px;}
.y4_c00256{bottom:993.208800px;}
.y3_c00256{bottom:1011.208800px;}
.y2_c00256{bottom:1037.712750px;}
.y19_c00256{bottom:1040.299350px;}
.y1_c00256{bottom:1093.600950px;}
.h8_c00256{height:25.200000px;}
.h7_c00256{height:30.282000px;}
.h5_c00256{height:34.080000px;}
.h2_c00256{height:39.264000px;}
.h3_c00256{height:39.984000px;}
.h4_c00256{height:43.260000px;}
.h6_c00256{height:43.740000px;}
.h1_c00256{height:1135.500000px;}
.h0_c00256{height:1135.506150px;}
.w0_c00256{width:893.950200px;}
.w1_c00256{width:894.000000px;}
.x0_c00256{left:0.000000px;}
.x4_c00256{left:128.626800px;}
.x5_c00256{left:141.382650px;}
.x2_c00256{left:188.061900px;}
.x3_c00256{left:190.513350px;}
.x6_c00256{left:321.801150px;}
.x1_c00256{left:800.165850px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls5_c00256{letter-spacing:-0.720000pt;}
.ls3_c00256{letter-spacing:-0.640000pt;}
.ls4_c00256{letter-spacing:-0.560000pt;}
.ls2_c00256{letter-spacing:-0.480000pt;}
.ls1_c00256{letter-spacing:0.000000pt;}
.ls0_c00256{letter-spacing:0.426667pt;}
.ws0_c00256{word-spacing:-9.685333pt;}
.ws1_c00256{word-spacing:-7.728000pt;}
.ws2_c00256{word-spacing:-5.766400pt;}
.ws3_c00256{word-spacing:0.000000pt;}
.ws4_c00256{word-spacing:6.272000pt;}
._0_c00256{margin-left:-2449.134400pt;}
._4_c00256{margin-left:-6.174933pt;}
._1_c00256{margin-left:-2.005333pt;}
._3_c00256{margin-left:-1.066667pt;}
._2_c00256{width:0.896000pt;}
._7_c00256{width:6.912000pt;}
._5_c00256{width:49.968000pt;}
._6_c00256{width:52.565333pt;}
.fs5_c00256{font-size:27.200000pt;}
.fs6_c00256{font-size:32.000000pt;}
.fs3_c00256{font-size:37.333333pt;}
.fs0_c00256{font-size:42.666667pt;}
.fs4_c00256{font-size:48.000000pt;}
.fs2_c00256{font-size:50.666667pt;}
.fs1_c00256{font-size:53.333333pt;}
.y0_c00256{bottom:0.000000pt;}
.y18_c00256{bottom:309.309067pt;}
.y17_c00256{bottom:321.309067pt;}
.y16_c00256{bottom:333.308933pt;}
.y15_c00256{bottom:356.868000pt;}
.y14_c00256{bottom:368.868000pt;}
.y13_c00256{bottom:380.868000pt;}
.y12_c00256{bottom:404.427067pt;}
.y11_c00256{bottom:416.427067pt;}
.y10_c00256{bottom:428.427067pt;}
.yf_c00256{bottom:448.206667pt;}
.ye_c00256{bottom:464.206667pt;}
.yd_c00256{bottom:487.765733pt;}
.yc_c00256{bottom:755.954667pt;}
.yb_c00256{bottom:767.954667pt;}
.ya_c00256{bottom:779.954667pt;}
.y9_c00256{bottom:803.513733pt;}
.y8_c00256{bottom:815.513733pt;}
.y7_c00256{bottom:839.072800pt;}
.y6_c00256{bottom:851.072800pt;}
.y5_c00256{bottom:863.072800pt;}
.y4_c00256{bottom:882.852267pt;}
.y3_c00256{bottom:898.852267pt;}
.y2_c00256{bottom:922.411333pt;}
.y19_c00256{bottom:924.710533pt;}
.y1_c00256{bottom:972.089733pt;}
.h8_c00256{height:22.400000pt;}
.h7_c00256{height:26.917333pt;}
.h5_c00256{height:30.293333pt;}
.h2_c00256{height:34.901333pt;}
.h3_c00256{height:35.541333pt;}
.h4_c00256{height:38.453333pt;}
.h6_c00256{height:38.880000pt;}
.h1_c00256{height:1009.333333pt;}
.h0_c00256{height:1009.338800pt;}
.w0_c00256{width:794.622400pt;}
.w1_c00256{width:794.666667pt;}
.x0_c00256{left:0.000000pt;}
.x4_c00256{left:114.334933pt;}
.x5_c00256{left:125.673467pt;}
.x2_c00256{left:167.166133pt;}
.x3_c00256{left:169.345200pt;}
.x6_c00256{left:286.045467pt;}
.x1_c00256{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls1_c00257{letter-spacing:-1.026000px;}
.ls4_c00257{letter-spacing:-0.864000px;}
.ls2_c00257{letter-spacing:-0.720000px;}
.ls3_c00257{letter-spacing:-0.630000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00257{word-spacing:0.000000px;}
.ws5_c00257{word-spacing:0.864000px;}
.ws3_c00257{word-spacing:7.056000px;}
.ws4_c00257{word-spacing:56.700000px;}
.ws0_c00257{word-spacing:1574.587200px;}
._3_c00257{margin-left:-7.042800px;}
._0_c00257{margin-left:-2.112000px;}
._1_c00257{margin-left:-1.104000px;}
._2_c00257{width:2.016000px;}
._5_c00257{width:7.776000px;}
._6_c00257{width:55.674000px;}
._4_c00257{width:59.136000px;}
.fc0_c00257{color:rgb(35,31,32);}
.fs3_c00257{font-size:42.000000px;}
.fs0_c00257{font-size:48.000000px;}
.fs4_c00257{font-size:54.000000px;}
.fs2_c00257{font-size:57.000000px;}
.fs1_c00257{font-size:60.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1a_c00257{bottom:334.100550px;}
.y19_c00257{bottom:347.600550px;}
.y18_c00257{bottom:361.100550px;}
.y17_c00257{bottom:383.352450px;}
.y16_c00257{bottom:396.852450px;}
.y15_c00257{bottom:410.352450px;}
.y14_c00257{bottom:436.856400px;}
.y13_c00257{bottom:450.356400px;}
.y12_c00257{bottom:463.856400px;}
.y11_c00257{bottom:486.108450px;}
.y10_c00257{bottom:504.108450px;}
.yf_c00257{bottom:522.108450px;}
.ye_c00257{bottom:548.612250px;}
.yd_c00257{bottom:836.824800px;}
.yc_c00257{bottom:850.324800px;}
.yb_c00257{bottom:863.824800px;}
.ya_c00257{bottom:890.328750px;}
.y9_c00257{bottom:903.828750px;}
.y8_c00257{bottom:917.328750px;}
.y7_c00257{bottom:943.832700px;}
.y6_c00257{bottom:957.332700px;}
.y5_c00257{bottom:970.832700px;}
.y4_c00257{bottom:993.084750px;}
.y3_c00257{bottom:1011.084750px;}
.y2_c00257{bottom:1037.588700px;}
.y1_c00257{bottom:1093.600950px;}
.h6_c00257{height:30.282000px;}
.h4_c00257{height:34.080000px;}
.h2_c00257{height:39.264000px;}
.h3_c00257{height:43.260000px;}
.h5_c00257{height:43.740000px;}
.h1_c00257{height:1135.500000px;}
.h0_c00257{height:1135.506150px;}
.w0_c00257{width:893.950200px;}
.w1_c00257{width:894.000000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:77.603100px;}
.x2_c00257{left:599.532150px;}
.x3_c00257{left:612.288150px;}
.x4_c00257{left:616.540050px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls1_c00257{letter-spacing:-0.912000pt;}
.ls4_c00257{letter-spacing:-0.768000pt;}
.ls2_c00257{letter-spacing:-0.640000pt;}
.ls3_c00257{letter-spacing:-0.560000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws1_c00257{word-spacing:-7.728000pt;}
.ws2_c00257{word-spacing:0.000000pt;}
.ws5_c00257{word-spacing:0.768000pt;}
.ws3_c00257{word-spacing:6.272000pt;}
.ws4_c00257{word-spacing:50.400000pt;}
.ws0_c00257{word-spacing:1399.633067pt;}
._3_c00257{margin-left:-6.260267pt;}
._0_c00257{margin-left:-1.877333pt;}
._1_c00257{margin-left:-0.981333pt;}
._2_c00257{width:1.792000pt;}
._5_c00257{width:6.912000pt;}
._6_c00257{width:49.488000pt;}
._4_c00257{width:52.565333pt;}
.fs3_c00257{font-size:37.333333pt;}
.fs0_c00257{font-size:42.666667pt;}
.fs4_c00257{font-size:48.000000pt;}
.fs2_c00257{font-size:50.666667pt;}
.fs1_c00257{font-size:53.333333pt;}
.y0_c00257{bottom:0.000000pt;}
.y1a_c00257{bottom:296.978267pt;}
.y19_c00257{bottom:308.978267pt;}
.y18_c00257{bottom:320.978267pt;}
.y17_c00257{bottom:340.757733pt;}
.y16_c00257{bottom:352.757733pt;}
.y15_c00257{bottom:364.757733pt;}
.y14_c00257{bottom:388.316800pt;}
.y13_c00257{bottom:400.316800pt;}
.y12_c00257{bottom:412.316800pt;}
.y11_c00257{bottom:432.096400pt;}
.y10_c00257{bottom:448.096400pt;}
.yf_c00257{bottom:464.096400pt;}
.ye_c00257{bottom:487.655333pt;}
.yd_c00257{bottom:743.844267pt;}
.yc_c00257{bottom:755.844267pt;}
.yb_c00257{bottom:767.844267pt;}
.ya_c00257{bottom:791.403333pt;}
.y9_c00257{bottom:803.403333pt;}
.y8_c00257{bottom:815.403333pt;}
.y7_c00257{bottom:838.962400pt;}
.y6_c00257{bottom:850.962400pt;}
.y5_c00257{bottom:862.962400pt;}
.y4_c00257{bottom:882.742000pt;}
.y3_c00257{bottom:898.742000pt;}
.y2_c00257{bottom:922.301067pt;}
.y1_c00257{bottom:972.089733pt;}
.h6_c00257{height:26.917333pt;}
.h4_c00257{height:30.293333pt;}
.h2_c00257{height:34.901333pt;}
.h3_c00257{height:38.453333pt;}
.h5_c00257{height:38.880000pt;}
.h1_c00257{height:1009.333333pt;}
.h0_c00257{height:1009.338800pt;}
.w0_c00257{width:794.622400pt;}
.w1_c00257{width:794.666667pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:68.980533pt;}
.x2_c00257{left:532.917467pt;}
.x3_c00257{left:544.256133pt;}
.x4_c00257{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00258;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00258{font-family:ff7_c00258;line-height:1.067000;font-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_c00258{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls5_c00258{letter-spacing:-1.350000px;}
.ls2_c00258{letter-spacing:-0.918000px;}
.ls3_c00258{letter-spacing:-0.720000px;}
.ls4_c00258{letter-spacing:-0.630000px;}
.ls1_c00258{letter-spacing:0.000000px;}
.ls0_c00258{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00258{word-spacing:-10.896000px;}
.ws1_c00258{word-spacing:-8.694000px;}
.ws2_c00258{word-spacing:0.000000px;}
.ws4_c00258{word-spacing:0.378000px;}
.ws5_c00258{word-spacing:0.540000px;}
.ws3_c00258{word-spacing:7.056000px;}
._0_c00258{margin-left:-2755.276200px;}
._4_c00258{margin-left:-6.946800px;}
._1_c00258{margin-left:-2.256000px;}
._3_c00258{margin-left:-1.200000px;}
._2_c00258{width:1.008000px;}
._7_c00258{width:7.776000px;}
._5_c00258{width:56.214000px;}
._6_c00258{width:59.136000px;}
.fc0_c00258{color:rgb(35,31,32);}
.fs3_c00258{font-size:42.000000px;}
.fs0_c00258{font-size:48.000000px;}
.fs4_c00258{font-size:54.000000px;}
.fs2_c00258{font-size:57.000000px;}
.fs1_c00258{font-size:60.000000px;}
.y0_c00258{bottom:0.000000px;}
.y19_c00258{bottom:352.437150px;}
.y18_c00258{bottom:365.937150px;}
.y17_c00258{bottom:379.437150px;}
.y16_c00258{bottom:401.689200px;}
.y15_c00258{bottom:415.189200px;}
.y14_c00258{bottom:428.689200px;}
.y13_c00258{bottom:455.193150px;}
.y12_c00258{bottom:468.693150px;}
.y11_c00258{bottom:482.193150px;}
.y10_c00258{bottom:504.445050px;}
.yf_c00258{bottom:522.445050px;}
.ye_c00258{bottom:548.949000px;}
.yd_c00258{bottom:837.161550px;}
.yc_c00258{bottom:850.661550px;}
.yb_c00258{bottom:864.161550px;}
.ya_c00258{bottom:890.665500px;}
.y9_c00258{bottom:904.165500px;}
.y8_c00258{bottom:917.665500px;}
.y7_c00258{bottom:944.169450px;}
.y6_c00258{bottom:957.669450px;}
.y5_c00258{bottom:971.169450px;}
.y4_c00258{bottom:993.421350px;}
.y3_c00258{bottom:1011.421350px;}
.y2_c00258{bottom:1037.925300px;}
.y1_c00258{bottom:1093.600950px;}
.h7_c00258{height:30.282000px;}
.h5_c00258{height:34.080000px;}
.h2_c00258{height:39.264000px;}
.h3_c00258{height:39.984000px;}
.h4_c00258{height:43.260000px;}
.h6_c00258{height:43.740000px;}
.h1_c00258{height:1135.500000px;}
.h0_c00258{height:1135.506150px;}
.w0_c00258{width:893.950200px;}
.w1_c00258{width:894.000000px;}
.x0_c00258{left:0.000000px;}
.x4_c00258{left:128.626800px;}
.x5_c00258{left:141.382650px;}
.x2_c00258{left:188.061900px;}
.x3_c00258{left:190.513350px;}
.x1_c00258{left:800.165850px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls5_c00258{letter-spacing:-1.200000pt;}
.ls2_c00258{letter-spacing:-0.816000pt;}
.ls3_c00258{letter-spacing:-0.640000pt;}
.ls4_c00258{letter-spacing:-0.560000pt;}
.ls1_c00258{letter-spacing:0.000000pt;}
.ls0_c00258{letter-spacing:0.426667pt;}
.ws0_c00258{word-spacing:-9.685333pt;}
.ws1_c00258{word-spacing:-7.728000pt;}
.ws2_c00258{word-spacing:0.000000pt;}
.ws4_c00258{word-spacing:0.336000pt;}
.ws5_c00258{word-spacing:0.480000pt;}
.ws3_c00258{word-spacing:6.272000pt;}
._0_c00258{margin-left:-2449.134400pt;}
._4_c00258{margin-left:-6.174933pt;}
._1_c00258{margin-left:-2.005333pt;}
._3_c00258{margin-left:-1.066667pt;}
._2_c00258{width:0.896000pt;}
._7_c00258{width:6.912000pt;}
._5_c00258{width:49.968000pt;}
._6_c00258{width:52.565333pt;}
.fs3_c00258{font-size:37.333333pt;}
.fs0_c00258{font-size:42.666667pt;}
.fs4_c00258{font-size:48.000000pt;}
.fs2_c00258{font-size:50.666667pt;}
.fs1_c00258{font-size:53.333333pt;}
.y0_c00258{bottom:0.000000pt;}
.y19_c00258{bottom:313.277467pt;}
.y18_c00258{bottom:325.277467pt;}
.y17_c00258{bottom:337.277467pt;}
.y16_c00258{bottom:357.057067pt;}
.y15_c00258{bottom:369.057067pt;}
.y14_c00258{bottom:381.057067pt;}
.y13_c00258{bottom:404.616133pt;}
.y12_c00258{bottom:416.616133pt;}
.y11_c00258{bottom:428.616133pt;}
.y10_c00258{bottom:448.395600pt;}
.yf_c00258{bottom:464.395600pt;}
.ye_c00258{bottom:487.954667pt;}
.yd_c00258{bottom:744.143600pt;}
.yc_c00258{bottom:756.143600pt;}
.yb_c00258{bottom:768.143600pt;}
.ya_c00258{bottom:791.702667pt;}
.y9_c00258{bottom:803.702667pt;}
.y8_c00258{bottom:815.702667pt;}
.y7_c00258{bottom:839.261733pt;}
.y6_c00258{bottom:851.261733pt;}
.y5_c00258{bottom:863.261733pt;}
.y4_c00258{bottom:883.041200pt;}
.y3_c00258{bottom:899.041200pt;}
.y2_c00258{bottom:922.600267pt;}
.y1_c00258{bottom:972.089733pt;}
.h7_c00258{height:26.917333pt;}
.h5_c00258{height:30.293333pt;}
.h2_c00258{height:34.901333pt;}
.h3_c00258{height:35.541333pt;}
.h4_c00258{height:38.453333pt;}
.h6_c00258{height:38.880000pt;}
.h1_c00258{height:1009.333333pt;}
.h0_c00258{height:1009.338800pt;}
.w0_c00258{width:794.622400pt;}
.w1_c00258{width:794.666667pt;}
.x0_c00258{left:0.000000pt;}
.x4_c00258{left:114.334933pt;}
.x5_c00258{left:125.673467pt;}
.x2_c00258{left:167.166133pt;}
.x3_c00258{left:169.345200pt;}
.x1_c00258{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00259;src:url('chunks/assets/font_3d6051a07499b229e85f60c3.woff2')format("woff");}.ff6_c00259{font-family:ff6_c00259;line-height:1.067000;font-style:normal;font-weight: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_c00259;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00259{font-family:ff7_c00259;line-height:0.710000;font-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_c00259{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls2_c00259{letter-spacing:-1.620000px;}
.ls1_c00259{letter-spacing:-1.026000px;}
.ls3_c00259{letter-spacing:-0.720000px;}
.ls4_c00259{letter-spacing:-0.630000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00259{word-spacing:-10.746000px;}
.ws1_c00259{word-spacing:-8.694000px;}
.ws3_c00259{word-spacing:-6.487200px;}
.ws4_c00259{word-spacing:0.000000px;}
.ws6_c00259{word-spacing:0.216000px;}
.ws5_c00259{word-spacing:7.056000px;}
.ws0_c00259{word-spacing:1574.587200px;}
._3_c00259{margin-left:-7.042800px;}
._0_c00259{margin-left:-2.112000px;}
._1_c00259{margin-left:-1.104000px;}
._2_c00259{width:2.016000px;}
._6_c00259{width:7.776000px;}
._4_c00259{width:56.484000px;}
._5_c00259{width:59.136000px;}
.fc0_c00259{color:rgb(35,31,32);}
.fs5_c00259{font-size:30.600000px;}
.fs6_c00259{font-size:36.000000px;}
.fs3_c00259{font-size:42.000000px;}
.fs0_c00259{font-size:48.000000px;}
.fs4_c00259{font-size:54.000000px;}
.fs2_c00259{font-size:57.000000px;}
.fs1_c00259{font-size:60.000000px;}
.y0_c00259{bottom:0.000000px;}
.y19_c00259{bottom:365.600550px;}
.y18_c00259{bottom:379.100550px;}
.y17_c00259{bottom:392.600550px;}
.y16_c00259{bottom:414.852450px;}
.y15_c00259{bottom:428.352450px;}
.y14_c00259{bottom:454.856400px;}
.y13_c00259{bottom:468.356400px;}
.y12_c00259{bottom:481.856400px;}
.y11_c00259{bottom:504.108450px;}
.y10_c00259{bottom:522.108450px;}
.yf_c00259{bottom:548.612250px;}
.y1a_c00259{bottom:551.323050px;}
.ye_c00259{bottom:818.824800px;}
.yd_c00259{bottom:832.324800px;}
.yc_c00259{bottom:845.824800px;}
.yb_c00259{bottom:872.328750px;}
.ya_c00259{bottom:885.828750px;}
.y9_c00259{bottom:899.328750px;}
.y8_c00259{bottom:925.832700px;}
.y7_c00259{bottom:939.332700px;}
.y6_c00259{bottom:952.832700px;}
.y5_c00259{bottom:975.084750px;}
.y4_c00259{bottom:993.084750px;}
.y3_c00259{bottom:1011.084750px;}
.y2_c00259{bottom:1037.588700px;}
.y1_c00259{bottom:1093.600950px;}
.h7_c00259{height:25.200000px;}
.h6_c00259{height:30.282000px;}
.h4_c00259{height:34.080000px;}
.h2_c00259{height:39.264000px;}
.h3_c00259{height:43.260000px;}
.h5_c00259{height:43.740000px;}
.h1_c00259{height:1135.500000px;}
.h0_c00259{height:1135.506150px;}
.w0_c00259{width:893.950200px;}
.w1_c00259{width:894.000000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:77.603100px;}
.x5_c00259{left:424.138500px;}
.x2_c00259{left:599.532150px;}
.x3_c00259{left:612.288150px;}
.x4_c00259{left:616.540050px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls2_c00259{letter-spacing:-1.440000pt;}
.ls1_c00259{letter-spacing:-0.912000pt;}
.ls3_c00259{letter-spacing:-0.640000pt;}
.ls4_c00259{letter-spacing:-0.560000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws2_c00259{word-spacing:-9.552000pt;}
.ws1_c00259{word-spacing:-7.728000pt;}
.ws3_c00259{word-spacing:-5.766400pt;}
.ws4_c00259{word-spacing:0.000000pt;}
.ws6_c00259{word-spacing:0.192000pt;}
.ws5_c00259{word-spacing:6.272000pt;}
.ws0_c00259{word-spacing:1399.633067pt;}
._3_c00259{margin-left:-6.260267pt;}
._0_c00259{margin-left:-1.877333pt;}
._1_c00259{margin-left:-0.981333pt;}
._2_c00259{width:1.792000pt;}
._6_c00259{width:6.912000pt;}
._4_c00259{width:50.208000pt;}
._5_c00259{width:52.565333pt;}
.fs5_c00259{font-size:27.200000pt;}
.fs6_c00259{font-size:32.000000pt;}
.fs3_c00259{font-size:37.333333pt;}
.fs0_c00259{font-size:42.666667pt;}
.fs4_c00259{font-size:48.000000pt;}
.fs2_c00259{font-size:50.666667pt;}
.fs1_c00259{font-size:53.333333pt;}
.y0_c00259{bottom:0.000000pt;}
.y19_c00259{bottom:324.978267pt;}
.y18_c00259{bottom:336.978267pt;}
.y17_c00259{bottom:348.978267pt;}
.y16_c00259{bottom:368.757733pt;}
.y15_c00259{bottom:380.757733pt;}
.y14_c00259{bottom:404.316800pt;}
.y13_c00259{bottom:416.316800pt;}
.y12_c00259{bottom:428.316800pt;}
.y11_c00259{bottom:448.096400pt;}
.y10_c00259{bottom:464.096400pt;}
.yf_c00259{bottom:487.655333pt;}
.y1a_c00259{bottom:490.064933pt;}
.ye_c00259{bottom:727.844267pt;}
.yd_c00259{bottom:739.844267pt;}
.yc_c00259{bottom:751.844267pt;}
.yb_c00259{bottom:775.403333pt;}
.ya_c00259{bottom:787.403333pt;}
.y9_c00259{bottom:799.403333pt;}
.y8_c00259{bottom:822.962400pt;}
.y7_c00259{bottom:834.962400pt;}
.y6_c00259{bottom:846.962400pt;}
.y5_c00259{bottom:866.742000pt;}
.y4_c00259{bottom:882.742000pt;}
.y3_c00259{bottom:898.742000pt;}
.y2_c00259{bottom:922.301067pt;}
.y1_c00259{bottom:972.089733pt;}
.h7_c00259{height:22.400000pt;}
.h6_c00259{height:26.917333pt;}
.h4_c00259{height:30.293333pt;}
.h2_c00259{height:34.901333pt;}
.h3_c00259{height:38.453333pt;}
.h5_c00259{height:38.880000pt;}
.h1_c00259{height:1009.333333pt;}
.h0_c00259{height:1009.338800pt;}
.w0_c00259{width:794.622400pt;}
.w1_c00259{width:794.666667pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:68.980533pt;}
.x5_c00259{left:377.012000pt;}
.x2_c00259{left:532.917467pt;}
.x3_c00259{left:544.256133pt;}
.x4_c00259{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00260;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00260{font-family:ff6_c00260;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00260;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00260{font-family:ff7_c00260;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00260;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00260{font-family:ff8_c00260;line-height:0.710000;font-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_c00260{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls5_c00260{letter-spacing:-0.810000px;}
.ls3_c00260{letter-spacing:-0.720000px;}
.ls4_c00260{letter-spacing:-0.630000px;}
.ls2_c00260{letter-spacing:-0.540000px;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.480000px;}
.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:-10.896000px;}
.ws1_c00260{word-spacing:-8.694000px;}
.ws2_c00260{word-spacing:-6.487200px;}
.ws3_c00260{word-spacing:0.000000px;}
.ws4_c00260{word-spacing:7.056000px;}
._0_c00260{margin-left:-2755.276200px;}
._4_c00260{margin-left:-6.946800px;}
._1_c00260{margin-left:-2.256000px;}
._3_c00260{margin-left:-1.200000px;}
._2_c00260{width:1.008000px;}
._7_c00260{width:7.776000px;}
._5_c00260{width:56.214000px;}
._6_c00260{width:59.136000px;}
.fc0_c00260{color:rgb(35,31,32);}
.fs5_c00260{font-size:30.600000px;}
.fs6_c00260{font-size:36.000000px;}
.fs3_c00260{font-size:42.000000px;}
.fs0_c00260{font-size:48.000000px;}
.fs4_c00260{font-size:54.000000px;}
.fs2_c00260{font-size:57.000000px;}
.fs1_c00260{font-size:60.000000px;}
.y0_c00260{bottom:0.000000px;}
.y17_c00260{bottom:365.299350px;}
.y16_c00260{bottom:378.799350px;}
.y15_c00260{bottom:392.299350px;}
.y14_c00260{bottom:414.551400px;}
.y13_c00260{bottom:428.051400px;}
.y12_c00260{bottom:454.555350px;}
.y11_c00260{bottom:468.055350px;}
.y10_c00260{bottom:481.555350px;}
.yf_c00260{bottom:503.807250px;}
.ye_c00260{bottom:521.807250px;}
.yd_c00260{bottom:548.311200px;}
.y18_c00260{bottom:550.685250px;}
.yc_c00260{bottom:850.023600px;}
.yb_c00260{bottom:863.523600px;}
.ya_c00260{bottom:877.023600px;}
.y9_c00260{bottom:903.527550px;}
.y8_c00260{bottom:917.027550px;}
.y7_c00260{bottom:943.531500px;}
.y6_c00260{bottom:957.031500px;}
.y5_c00260{bottom:970.531500px;}
.y4_c00260{bottom:992.783550px;}
.y3_c00260{bottom:1010.783550px;}
.y2_c00260{bottom:1037.287500px;}
.y19_c00260{bottom:1040.299350px;}
.y1_c00260{bottom:1093.600950px;}
.h8_c00260{height:25.200000px;}
.h7_c00260{height:30.282000px;}
.h5_c00260{height:34.080000px;}
.h2_c00260{height:39.264000px;}
.h3_c00260{height:39.984000px;}
.h4_c00260{height:43.260000px;}
.h6_c00260{height:43.740000px;}
.h1_c00260{height:1135.500000px;}
.h0_c00260{height:1135.506150px;}
.w0_c00260{width:893.950200px;}
.w1_c00260{width:894.000000px;}
.x0_c00260{left:0.000000px;}
.x4_c00260{left:128.626800px;}
.x5_c00260{left:141.382650px;}
.x2_c00260{left:188.061900px;}
.x3_c00260{left:190.513350px;}
.x6_c00260{left:321.801150px;}
.x1_c00260{left:800.165850px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls5_c00260{letter-spacing:-0.720000pt;}
.ls3_c00260{letter-spacing:-0.640000pt;}
.ls4_c00260{letter-spacing:-0.560000pt;}
.ls2_c00260{letter-spacing:-0.480000pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.426667pt;}
.ws0_c00260{word-spacing:-9.685333pt;}
.ws1_c00260{word-spacing:-7.728000pt;}
.ws2_c00260{word-spacing:-5.766400pt;}
.ws3_c00260{word-spacing:0.000000pt;}
.ws4_c00260{word-spacing:6.272000pt;}
._0_c00260{margin-left:-2449.134400pt;}
._4_c00260{margin-left:-6.174933pt;}
._1_c00260{margin-left:-2.005333pt;}
._3_c00260{margin-left:-1.066667pt;}
._2_c00260{width:0.896000pt;}
._7_c00260{width:6.912000pt;}
._5_c00260{width:49.968000pt;}
._6_c00260{width:52.565333pt;}
.fs5_c00260{font-size:27.200000pt;}
.fs6_c00260{font-size:32.000000pt;}
.fs3_c00260{font-size:37.333333pt;}
.fs0_c00260{font-size:42.666667pt;}
.fs4_c00260{font-size:48.000000pt;}
.fs2_c00260{font-size:50.666667pt;}
.fs1_c00260{font-size:53.333333pt;}
.y0_c00260{bottom:0.000000pt;}
.y17_c00260{bottom:324.710533pt;}
.y16_c00260{bottom:336.710533pt;}
.y15_c00260{bottom:348.710533pt;}
.y14_c00260{bottom:368.490133pt;}
.y13_c00260{bottom:380.490133pt;}
.y12_c00260{bottom:404.049200pt;}
.y11_c00260{bottom:416.049200pt;}
.y10_c00260{bottom:428.049200pt;}
.yf_c00260{bottom:447.828667pt;}
.ye_c00260{bottom:463.828667pt;}
.yd_c00260{bottom:487.387733pt;}
.y18_c00260{bottom:489.498000pt;}
.yc_c00260{bottom:755.576533pt;}
.yb_c00260{bottom:767.576533pt;}
.ya_c00260{bottom:779.576533pt;}
.y9_c00260{bottom:803.135600pt;}
.y8_c00260{bottom:815.135600pt;}
.y7_c00260{bottom:838.694667pt;}
.y6_c00260{bottom:850.694667pt;}
.y5_c00260{bottom:862.694667pt;}
.y4_c00260{bottom:882.474267pt;}
.y3_c00260{bottom:898.474267pt;}
.y2_c00260{bottom:922.033333pt;}
.y19_c00260{bottom:924.710533pt;}
.y1_c00260{bottom:972.089733pt;}
.h8_c00260{height:22.400000pt;}
.h7_c00260{height:26.917333pt;}
.h5_c00260{height:30.293333pt;}
.h2_c00260{height:34.901333pt;}
.h3_c00260{height:35.541333pt;}
.h4_c00260{height:38.453333pt;}
.h6_c00260{height:38.880000pt;}
.h1_c00260{height:1009.333333pt;}
.h0_c00260{height:1009.338800pt;}
.w0_c00260{width:794.622400pt;}
.w1_c00260{width:794.666667pt;}
.x0_c00260{left:0.000000pt;}
.x4_c00260{left:114.334933pt;}
.x5_c00260{left:125.673467pt;}
.x2_c00260{left:167.166133pt;}
.x3_c00260{left:169.345200pt;}
.x6_c00260{left:286.045467pt;}
.x1_c00260{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00261;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00261{font-family:ff6_c00261;line-height:1.067000;font-style:normal;font-weight: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_c00261;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00261{font-family:ff7_c00261;line-height:0.710000;font-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_c00261{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls1_c00261{letter-spacing:-1.836000px;}
.ls2_c00261{letter-spacing:-0.720000px;}
.ls3_c00261{letter-spacing:-0.630000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00261{word-spacing:-6.487200px;}
.ws3_c00261{word-spacing:0.000000px;}
.ws5_c00261{word-spacing:1.026000px;}
.ws4_c00261{word-spacing:7.056000px;}
.ws0_c00261{word-spacing:1574.587200px;}
._3_c00261{margin-left:-7.042800px;}
._0_c00261{margin-left:-2.112000px;}
._1_c00261{margin-left:-1.104000px;}
._2_c00261{width:2.016000px;}
._6_c00261{width:7.776000px;}
._4_c00261{width:56.484000px;}
._5_c00261{width:59.136000px;}
.fc0_c00261{color:rgb(35,31,32);}
.fs5_c00261{font-size:30.600000px;}
.fs6_c00261{font-size:36.000000px;}
.fs3_c00261{font-size:42.000000px;}
.fs0_c00261{font-size:48.000000px;}
.fs4_c00261{font-size:54.000000px;}
.fs2_c00261{font-size:57.000000px;}
.fs1_c00261{font-size:60.000000px;}
.y0_c00261{bottom:0.000000px;}
.y19_c00261{bottom:334.100550px;}
.y18_c00261{bottom:347.600550px;}
.y17_c00261{bottom:361.100550px;}
.y16_c00261{bottom:383.352450px;}
.y15_c00261{bottom:396.852450px;}
.y14_c00261{bottom:410.352450px;}
.y13_c00261{bottom:436.856400px;}
.y12_c00261{bottom:450.356400px;}
.y11_c00261{bottom:463.856400px;}
.y10_c00261{bottom:486.108450px;}
.yf_c00261{bottom:504.108450px;}
.ye_c00261{bottom:522.108450px;}
.yd_c00261{bottom:548.612250px;}
.yc_c00261{bottom:850.324800px;}
.yb_c00261{bottom:863.824800px;}
.ya_c00261{bottom:877.324800px;}
.y9_c00261{bottom:903.828750px;}
.y8_c00261{bottom:917.328750px;}
.y7_c00261{bottom:943.832700px;}
.y6_c00261{bottom:957.332700px;}
.y5_c00261{bottom:970.832700px;}
.y4_c00261{bottom:993.084750px;}
.y3_c00261{bottom:1011.084750px;}
.y2_c00261{bottom:1037.588700px;}
.y1a_c00261{bottom:1040.299350px;}
.y1_c00261{bottom:1093.600950px;}
.h7_c00261{height:25.200000px;}
.h6_c00261{height:30.282000px;}
.h4_c00261{height:34.080000px;}
.h2_c00261{height:39.264000px;}
.h3_c00261{height:43.260000px;}
.h5_c00261{height:43.740000px;}
.h1_c00261{height:1135.500000px;}
.h0_c00261{height:1135.506150px;}
.w0_c00261{width:893.950200px;}
.w1_c00261{width:894.000000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:77.603100px;}
.x5_c00261{left:424.138500px;}
.x2_c00261{left:599.532150px;}
.x3_c00261{left:612.288150px;}
.x4_c00261{left:616.540050px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls1_c00261{letter-spacing:-1.632000pt;}
.ls2_c00261{letter-spacing:-0.640000pt;}
.ls3_c00261{letter-spacing:-0.560000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws1_c00261{word-spacing:-7.728000pt;}
.ws2_c00261{word-spacing:-5.766400pt;}
.ws3_c00261{word-spacing:0.000000pt;}
.ws5_c00261{word-spacing:0.912000pt;}
.ws4_c00261{word-spacing:6.272000pt;}
.ws0_c00261{word-spacing:1399.633067pt;}
._3_c00261{margin-left:-6.260267pt;}
._0_c00261{margin-left:-1.877333pt;}
._1_c00261{margin-left:-0.981333pt;}
._2_c00261{width:1.792000pt;}
._6_c00261{width:6.912000pt;}
._4_c00261{width:50.208000pt;}
._5_c00261{width:52.565333pt;}
.fs5_c00261{font-size:27.200000pt;}
.fs6_c00261{font-size:32.000000pt;}
.fs3_c00261{font-size:37.333333pt;}
.fs0_c00261{font-size:42.666667pt;}
.fs4_c00261{font-size:48.000000pt;}
.fs2_c00261{font-size:50.666667pt;}
.fs1_c00261{font-size:53.333333pt;}
.y0_c00261{bottom:0.000000pt;}
.y19_c00261{bottom:296.978267pt;}
.y18_c00261{bottom:308.978267pt;}
.y17_c00261{bottom:320.978267pt;}
.y16_c00261{bottom:340.757733pt;}
.y15_c00261{bottom:352.757733pt;}
.y14_c00261{bottom:364.757733pt;}
.y13_c00261{bottom:388.316800pt;}
.y12_c00261{bottom:400.316800pt;}
.y11_c00261{bottom:412.316800pt;}
.y10_c00261{bottom:432.096400pt;}
.yf_c00261{bottom:448.096400pt;}
.ye_c00261{bottom:464.096400pt;}
.yd_c00261{bottom:487.655333pt;}
.yc_c00261{bottom:755.844267pt;}
.yb_c00261{bottom:767.844267pt;}
.ya_c00261{bottom:779.844267pt;}
.y9_c00261{bottom:803.403333pt;}
.y8_c00261{bottom:815.403333pt;}
.y7_c00261{bottom:838.962400pt;}
.y6_c00261{bottom:850.962400pt;}
.y5_c00261{bottom:862.962400pt;}
.y4_c00261{bottom:882.742000pt;}
.y3_c00261{bottom:898.742000pt;}
.y2_c00261{bottom:922.301067pt;}
.y1a_c00261{bottom:924.710533pt;}
.y1_c00261{bottom:972.089733pt;}
.h7_c00261{height:22.400000pt;}
.h6_c00261{height:26.917333pt;}
.h4_c00261{height:30.293333pt;}
.h2_c00261{height:34.901333pt;}
.h3_c00261{height:38.453333pt;}
.h5_c00261{height:38.880000pt;}
.h1_c00261{height:1009.333333pt;}
.h0_c00261{height:1009.338800pt;}
.w0_c00261{width:794.622400pt;}
.w1_c00261{width:794.666667pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:68.980533pt;}
.x5_c00261{left:377.012000pt;}
.x2_c00261{left:532.917467pt;}
.x3_c00261{left:544.256133pt;}
.x4_c00261{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00262;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00262{font-family:ff6_c00262;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00262;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00262{font-family:ff7_c00262;line-height:1.067000;font-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_c00262{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls3_c00262{letter-spacing:-1.080000px;}
.ls6_c00262{letter-spacing:-0.810000px;}
.ls4_c00262{letter-spacing:-0.720000px;}
.ls5_c00262{letter-spacing:-0.630000px;}
.ls2_c00262{letter-spacing:-0.540000px;}
.ls1_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00262{word-spacing:-8.694000px;}
.ws0_c00262{word-spacing:-0.048000px;}
.ws2_c00262{word-spacing:0.000000px;}
.ws4_c00262{word-spacing:0.540000px;}
.ws3_c00262{word-spacing:7.056000px;}
.ws5_c00262{word-spacing:56.484000px;}
._0_c00262{margin-left:-2755.276200px;}
._4_c00262{margin-left:-6.946800px;}
._1_c00262{margin-left:-2.256000px;}
._3_c00262{margin-left:-1.200000px;}
._2_c00262{width:1.008000px;}
._7_c00262{width:7.776000px;}
._5_c00262{width:56.214000px;}
._6_c00262{width:59.136000px;}
.fc0_c00262{color:rgb(35,31,32);}
.fs3_c00262{font-size:42.000000px;}
.fs0_c00262{font-size:48.000000px;}
.fs4_c00262{font-size:54.000000px;}
.fs2_c00262{font-size:57.000000px;}
.fs1_c00262{font-size:60.000000px;}
.y0_c00262{bottom:0.000000px;}
.y1a_c00262{bottom:351.374250px;}
.y19_c00262{bottom:364.874250px;}
.y18_c00262{bottom:378.374250px;}
.y17_c00262{bottom:400.626150px;}
.y16_c00262{bottom:414.126150px;}
.y15_c00262{bottom:427.626150px;}
.y14_c00262{bottom:454.130100px;}
.y13_c00262{bottom:467.630100px;}
.y12_c00262{bottom:481.130100px;}
.y11_c00262{bottom:503.382150px;}
.y10_c00262{bottom:521.382150px;}
.yf_c00262{bottom:547.885950px;}
.ye_c00262{bottom:818.098350px;}
.yd_c00262{bottom:831.598350px;}
.yc_c00262{bottom:845.098350px;}
.yb_c00262{bottom:871.602450px;}
.ya_c00262{bottom:885.102450px;}
.y9_c00262{bottom:898.602450px;}
.y8_c00262{bottom:925.106400px;}
.y7_c00262{bottom:938.606400px;}
.y6_c00262{bottom:952.106400px;}
.y5_c00262{bottom:974.358300px;}
.y4_c00262{bottom:992.358300px;}
.y3_c00262{bottom:1010.358300px;}
.y2_c00262{bottom:1036.862250px;}
.y1_c00262{bottom:1093.600950px;}
.h7_c00262{height:30.282000px;}
.h5_c00262{height:34.080000px;}
.h2_c00262{height:39.264000px;}
.h3_c00262{height:39.984000px;}
.h4_c00262{height:43.260000px;}
.h6_c00262{height:43.740000px;}
.h1_c00262{height:1135.500000px;}
.h0_c00262{height:1135.506150px;}
.w0_c00262{width:893.950200px;}
.w1_c00262{width:894.000000px;}
.x0_c00262{left:0.000000px;}
.x4_c00262{left:128.626800px;}
.x5_c00262{left:141.382650px;}
.x6_c00262{left:145.634700px;}
.x2_c00262{left:188.061900px;}
.x3_c00262{left:190.513350px;}
.x1_c00262{left:800.165850px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls3_c00262{letter-spacing:-0.960000pt;}
.ls6_c00262{letter-spacing:-0.720000pt;}
.ls4_c00262{letter-spacing:-0.640000pt;}
.ls5_c00262{letter-spacing:-0.560000pt;}
.ls2_c00262{letter-spacing:-0.480000pt;}
.ls1_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.426667pt;}
.ws1_c00262{word-spacing:-7.728000pt;}
.ws0_c00262{word-spacing:-0.042667pt;}
.ws2_c00262{word-spacing:0.000000pt;}
.ws4_c00262{word-spacing:0.480000pt;}
.ws3_c00262{word-spacing:6.272000pt;}
.ws5_c00262{word-spacing:50.208000pt;}
._0_c00262{margin-left:-2449.134400pt;}
._4_c00262{margin-left:-6.174933pt;}
._1_c00262{margin-left:-2.005333pt;}
._3_c00262{margin-left:-1.066667pt;}
._2_c00262{width:0.896000pt;}
._7_c00262{width:6.912000pt;}
._5_c00262{width:49.968000pt;}
._6_c00262{width:52.565333pt;}
.fs3_c00262{font-size:37.333333pt;}
.fs0_c00262{font-size:42.666667pt;}
.fs4_c00262{font-size:48.000000pt;}
.fs2_c00262{font-size:50.666667pt;}
.fs1_c00262{font-size:53.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y1a_c00262{bottom:312.332667pt;}
.y19_c00262{bottom:324.332667pt;}
.y18_c00262{bottom:336.332667pt;}
.y17_c00262{bottom:356.112133pt;}
.y16_c00262{bottom:368.112133pt;}
.y15_c00262{bottom:380.112133pt;}
.y14_c00262{bottom:403.671200pt;}
.y13_c00262{bottom:415.671200pt;}
.y12_c00262{bottom:427.671200pt;}
.y11_c00262{bottom:447.450800pt;}
.y10_c00262{bottom:463.450800pt;}
.yf_c00262{bottom:487.009733pt;}
.ye_c00262{bottom:727.198533pt;}
.yd_c00262{bottom:739.198533pt;}
.yc_c00262{bottom:751.198533pt;}
.yb_c00262{bottom:774.757733pt;}
.ya_c00262{bottom:786.757733pt;}
.y9_c00262{bottom:798.757733pt;}
.y8_c00262{bottom:822.316800pt;}
.y7_c00262{bottom:834.316800pt;}
.y6_c00262{bottom:846.316800pt;}
.y5_c00262{bottom:866.096267pt;}
.y4_c00262{bottom:882.096267pt;}
.y3_c00262{bottom:898.096267pt;}
.y2_c00262{bottom:921.655333pt;}
.y1_c00262{bottom:972.089733pt;}
.h7_c00262{height:26.917333pt;}
.h5_c00262{height:30.293333pt;}
.h2_c00262{height:34.901333pt;}
.h3_c00262{height:35.541333pt;}
.h4_c00262{height:38.453333pt;}
.h6_c00262{height:38.880000pt;}
.h1_c00262{height:1009.333333pt;}
.h0_c00262{height:1009.338800pt;}
.w0_c00262{width:794.622400pt;}
.w1_c00262{width:794.666667pt;}
.x0_c00262{left:0.000000pt;}
.x4_c00262{left:114.334933pt;}
.x5_c00262{left:125.673467pt;}
.x6_c00262{left:129.453067pt;}
.x2_c00262{left:167.166133pt;}
.x3_c00262{left:169.345200pt;}
.x1_c00262{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c6b9eecee7b84d4ba605686.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00263;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00263{font-family:ff6_c00263;line-height:1.067000;font-style:normal;font-weight: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_c00263;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00263{font-family:ff7_c00263;line-height:0.710000;font-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_c00263{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls1_c00263{letter-spacing:-1.296000px;}
.ls2_c00263{letter-spacing:-0.720000px;}
.ls3_c00263{letter-spacing:-0.630000px;}
.ls4_c00263{letter-spacing:-0.216000px;}
.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;}
}
.ws1_c00263{word-spacing:-8.694000px;}
.ws2_c00263{word-spacing:-6.487200px;}
.ws3_c00263{word-spacing:0.000000px;}
.ws6_c00263{word-spacing:0.216000px;}
.ws5_c00263{word-spacing:0.486000px;}
.ws4_c00263{word-spacing:7.056000px;}
.ws0_c00263{word-spacing:1574.587200px;}
._3_c00263{margin-left:-7.042800px;}
._5_c00263{margin-left:-5.850000px;}
._0_c00263{margin-left:-2.112000px;}
._1_c00263{margin-left:-1.104000px;}
._2_c00263{width:2.016000px;}
._7_c00263{width:7.776000px;}
._4_c00263{width:56.484000px;}
._6_c00263{width:59.136000px;}
.fc0_c00263{color:rgb(35,31,32);}
.fs5_c00263{font-size:30.600000px;}
.fs6_c00263{font-size:36.000000px;}
.fs3_c00263{font-size:42.000000px;}
.fs0_c00263{font-size:48.000000px;}
.fs4_c00263{font-size:54.000000px;}
.fs2_c00263{font-size:57.000000px;}
.fs1_c00263{font-size:60.000000px;}
.y0_c00263{bottom:0.000000px;}
.y19_c00263{bottom:346.874250px;}
.y18_c00263{bottom:360.374250px;}
.y17_c00263{bottom:373.874250px;}
.y16_c00263{bottom:396.126150px;}
.y15_c00263{bottom:409.626150px;}
.y14_c00263{bottom:436.130100px;}
.y13_c00263{bottom:449.630100px;}
.y12_c00263{bottom:463.130100px;}
.y11_c00263{bottom:485.382150px;}
.y10_c00263{bottom:503.382150px;}
.yf_c00263{bottom:521.382150px;}
.ye_c00263{bottom:547.885950px;}
.y1a_c00263{bottom:551.323050px;}
.yd_c00263{bottom:836.098350px;}
.yc_c00263{bottom:849.598350px;}
.yb_c00263{bottom:863.098350px;}
.ya_c00263{bottom:889.602450px;}
.y9_c00263{bottom:903.102450px;}
.y8_c00263{bottom:916.602450px;}
.y7_c00263{bottom:943.106400px;}
.y6_c00263{bottom:956.606400px;}
.y5_c00263{bottom:970.106400px;}
.y4_c00263{bottom:992.358300px;}
.y3_c00263{bottom:1010.358300px;}
.y2_c00263{bottom:1036.862250px;}
.y1_c00263{bottom:1093.600950px;}
.h7_c00263{height:25.200000px;}
.h6_c00263{height:30.282000px;}
.h4_c00263{height:34.080000px;}
.h2_c00263{height:39.264000px;}
.h3_c00263{height:43.260000px;}
.h5_c00263{height:43.740000px;}
.h1_c00263{height:1135.500000px;}
.h0_c00263{height:1135.506150px;}
.w0_c00263{width:893.950200px;}
.w1_c00263{width:894.000000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:77.603100px;}
.x5_c00263{left:424.138500px;}
.x2_c00263{left:599.532150px;}
.x3_c00263{left:612.288150px;}
.x4_c00263{left:616.540050px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls1_c00263{letter-spacing:-1.152000pt;}
.ls2_c00263{letter-spacing:-0.640000pt;}
.ls3_c00263{letter-spacing:-0.560000pt;}
.ls4_c00263{letter-spacing:-0.192000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws1_c00263{word-spacing:-7.728000pt;}
.ws2_c00263{word-spacing:-5.766400pt;}
.ws3_c00263{word-spacing:0.000000pt;}
.ws6_c00263{word-spacing:0.192000pt;}
.ws5_c00263{word-spacing:0.432000pt;}
.ws4_c00263{word-spacing:6.272000pt;}
.ws0_c00263{word-spacing:1399.633067pt;}
._3_c00263{margin-left:-6.260267pt;}
._5_c00263{margin-left:-5.200000pt;}
._0_c00263{margin-left:-1.877333pt;}
._1_c00263{margin-left:-0.981333pt;}
._2_c00263{width:1.792000pt;}
._7_c00263{width:6.912000pt;}
._4_c00263{width:50.208000pt;}
._6_c00263{width:52.565333pt;}
.fs5_c00263{font-size:27.200000pt;}
.fs6_c00263{font-size:32.000000pt;}
.fs3_c00263{font-size:37.333333pt;}
.fs0_c00263{font-size:42.666667pt;}
.fs4_c00263{font-size:48.000000pt;}
.fs2_c00263{font-size:50.666667pt;}
.fs1_c00263{font-size:53.333333pt;}
.y0_c00263{bottom:0.000000pt;}
.y19_c00263{bottom:308.332667pt;}
.y18_c00263{bottom:320.332667pt;}
.y17_c00263{bottom:332.332667pt;}
.y16_c00263{bottom:352.112133pt;}
.y15_c00263{bottom:364.112133pt;}
.y14_c00263{bottom:387.671200pt;}
.y13_c00263{bottom:399.671200pt;}
.y12_c00263{bottom:411.671200pt;}
.y11_c00263{bottom:431.450800pt;}
.y10_c00263{bottom:447.450800pt;}
.yf_c00263{bottom:463.450800pt;}
.ye_c00263{bottom:487.009733pt;}
.y1a_c00263{bottom:490.064933pt;}
.yd_c00263{bottom:743.198533pt;}
.yc_c00263{bottom:755.198533pt;}
.yb_c00263{bottom:767.198533pt;}
.ya_c00263{bottom:790.757733pt;}
.y9_c00263{bottom:802.757733pt;}
.y8_c00263{bottom:814.757733pt;}
.y7_c00263{bottom:838.316800pt;}
.y6_c00263{bottom:850.316800pt;}
.y5_c00263{bottom:862.316800pt;}
.y4_c00263{bottom:882.096267pt;}
.y3_c00263{bottom:898.096267pt;}
.y2_c00263{bottom:921.655333pt;}
.y1_c00263{bottom:972.089733pt;}
.h7_c00263{height:22.400000pt;}
.h6_c00263{height:26.917333pt;}
.h4_c00263{height:30.293333pt;}
.h2_c00263{height:34.901333pt;}
.h3_c00263{height:38.453333pt;}
.h5_c00263{height:38.880000pt;}
.h1_c00263{height:1009.333333pt;}
.h0_c00263{height:1009.338800pt;}
.w0_c00263{width:794.622400pt;}
.w1_c00263{width:794.666667pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:68.980533pt;}
.x5_c00263{left:377.012000pt;}
.x2_c00263{left:532.917467pt;}
.x3_c00263{left:544.256133pt;}
.x4_c00263{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00264;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:0.908000;font-style:normal;font-weight: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_c00264;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00264{font-family:ff7_c00264;line-height:1.067000;font-style:normal;font-weight: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_c00264;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00264{font-family:ff8_c00264;line-height:0.710000;font-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_c00264{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls5_c00264{letter-spacing:-3.672000px;}
.ls3_c00264{letter-spacing:-0.720000px;}
.ls4_c00264{letter-spacing:-0.630000px;}
.ls2_c00264{letter-spacing:-0.540000px;}
.ls1_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00264{word-spacing:-8.694000px;}
.ws2_c00264{word-spacing:-6.487200px;}
.ws0_c00264{word-spacing:-0.048000px;}
.ws3_c00264{word-spacing:0.000000px;}
.ws5_c00264{word-spacing:2.862000px;}
.ws4_c00264{word-spacing:7.056000px;}
._0_c00264{margin-left:-2755.276200px;}
._4_c00264{margin-left:-6.946800px;}
._1_c00264{margin-left:-2.256000px;}
._3_c00264{margin-left:-1.200000px;}
._2_c00264{width:1.008000px;}
._8_c00264{width:2.592000px;}
._7_c00264{width:7.776000px;}
._5_c00264{width:56.214000px;}
._6_c00264{width:59.136000px;}
.fc0_c00264{color:rgb(35,31,32);}
.fs5_c00264{font-size:30.600000px;}
.fs6_c00264{font-size:36.000000px;}
.fs3_c00264{font-size:42.000000px;}
.fs0_c00264{font-size:48.000000px;}
.fs4_c00264{font-size:54.000000px;}
.fs2_c00264{font-size:57.000000px;}
.fs1_c00264{font-size:60.000000px;}
.y0_c00264{bottom:0.000000px;}
.y18_c00264{bottom:347.122350px;}
.y17_c00264{bottom:360.622350px;}
.y16_c00264{bottom:374.122200px;}
.y15_c00264{bottom:400.626150px;}
.y14_c00264{bottom:414.126150px;}
.y13_c00264{bottom:427.626150px;}
.y12_c00264{bottom:454.130100px;}
.y11_c00264{bottom:467.630100px;}
.y10_c00264{bottom:481.130100px;}
.yf_c00264{bottom:503.382150px;}
.ye_c00264{bottom:521.382150px;}
.yd_c00264{bottom:547.885950px;}
.yc_c00264{bottom:850.661550px;}
.yb_c00264{bottom:864.161550px;}
.ya_c00264{bottom:877.661550px;}
.y9_c00264{bottom:904.165500px;}
.y8_c00264{bottom:917.665500px;}
.y7_c00264{bottom:944.169450px;}
.y6_c00264{bottom:957.669450px;}
.y5_c00264{bottom:971.169450px;}
.y4_c00264{bottom:993.421350px;}
.y3_c00264{bottom:1011.421350px;}
.y2_c00264{bottom:1037.925300px;}
.y19_c00264{bottom:1040.299350px;}
.y1_c00264{bottom:1093.600950px;}
.h8_c00264{height:25.200000px;}
.h7_c00264{height:30.282000px;}
.h5_c00264{height:34.080000px;}
.h2_c00264{height:39.264000px;}
.h3_c00264{height:39.984000px;}
.h4_c00264{height:43.260000px;}
.h6_c00264{height:43.740000px;}
.h1_c00264{height:1135.500000px;}
.h0_c00264{height:1135.506150px;}
.w0_c00264{width:893.950200px;}
.w1_c00264{width:894.000000px;}
.x0_c00264{left:0.000000px;}
.x4_c00264{left:128.626800px;}
.x5_c00264{left:141.382650px;}
.x2_c00264{left:188.061900px;}
.x3_c00264{left:190.513350px;}
.x6_c00264{left:321.919050px;}
.x1_c00264{left:800.165850px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls5_c00264{letter-spacing:-3.264000pt;}
.ls3_c00264{letter-spacing:-0.640000pt;}
.ls4_c00264{letter-spacing:-0.560000pt;}
.ls2_c00264{letter-spacing:-0.480000pt;}
.ls1_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:0.426667pt;}
.ws1_c00264{word-spacing:-7.728000pt;}
.ws2_c00264{word-spacing:-5.766400pt;}
.ws0_c00264{word-spacing:-0.042667pt;}
.ws3_c00264{word-spacing:0.000000pt;}
.ws5_c00264{word-spacing:2.544000pt;}
.ws4_c00264{word-spacing:6.272000pt;}
._0_c00264{margin-left:-2449.134400pt;}
._4_c00264{margin-left:-6.174933pt;}
._1_c00264{margin-left:-2.005333pt;}
._3_c00264{margin-left:-1.066667pt;}
._2_c00264{width:0.896000pt;}
._8_c00264{width:2.304000pt;}
._7_c00264{width:6.912000pt;}
._5_c00264{width:49.968000pt;}
._6_c00264{width:52.565333pt;}
.fs5_c00264{font-size:27.200000pt;}
.fs6_c00264{font-size:32.000000pt;}
.fs3_c00264{font-size:37.333333pt;}
.fs0_c00264{font-size:42.666667pt;}
.fs4_c00264{font-size:48.000000pt;}
.fs2_c00264{font-size:50.666667pt;}
.fs1_c00264{font-size:53.333333pt;}
.y0_c00264{bottom:0.000000pt;}
.y18_c00264{bottom:308.553200pt;}
.y17_c00264{bottom:320.553200pt;}
.y16_c00264{bottom:332.553067pt;}
.y15_c00264{bottom:356.112133pt;}
.y14_c00264{bottom:368.112133pt;}
.y13_c00264{bottom:380.112133pt;}
.y12_c00264{bottom:403.671200pt;}
.y11_c00264{bottom:415.671200pt;}
.y10_c00264{bottom:427.671200pt;}
.yf_c00264{bottom:447.450800pt;}
.ye_c00264{bottom:463.450800pt;}
.yd_c00264{bottom:487.009733pt;}
.yc_c00264{bottom:756.143600pt;}
.yb_c00264{bottom:768.143600pt;}
.ya_c00264{bottom:780.143600pt;}
.y9_c00264{bottom:803.702667pt;}
.y8_c00264{bottom:815.702667pt;}
.y7_c00264{bottom:839.261733pt;}
.y6_c00264{bottom:851.261733pt;}
.y5_c00264{bottom:863.261733pt;}
.y4_c00264{bottom:883.041200pt;}
.y3_c00264{bottom:899.041200pt;}
.y2_c00264{bottom:922.600267pt;}
.y19_c00264{bottom:924.710533pt;}
.y1_c00264{bottom:972.089733pt;}
.h8_c00264{height:22.400000pt;}
.h7_c00264{height:26.917333pt;}
.h5_c00264{height:30.293333pt;}
.h2_c00264{height:34.901333pt;}
.h3_c00264{height:35.541333pt;}
.h4_c00264{height:38.453333pt;}
.h6_c00264{height:38.880000pt;}
.h1_c00264{height:1009.333333pt;}
.h0_c00264{height:1009.338800pt;}
.w0_c00264{width:794.622400pt;}
.w1_c00264{width:794.666667pt;}
.x0_c00264{left:0.000000pt;}
.x4_c00264{left:114.334933pt;}
.x5_c00264{left:125.673467pt;}
.x2_c00264{left:167.166133pt;}
.x3_c00264{left:169.345200pt;}
.x6_c00264{left:286.150267pt;}
.x1_c00264{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00265;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00265{font-family:ff7_c00265;line-height:0.710000;font-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_c00265{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls2_c00265{letter-spacing:-0.720000px;}
.ls3_c00265{letter-spacing:-0.630000px;}
.ls1_c00265{letter-spacing:-0.540000px;}
.ls4_c00265{letter-spacing:-0.378000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00265{word-spacing:-8.694000px;}
.ws2_c00265{word-spacing:-6.487200px;}
.ws3_c00265{word-spacing:0.000000px;}
.ws6_c00265{word-spacing:0.378000px;}
.ws5_c00265{word-spacing:0.540000px;}
.ws4_c00265{word-spacing:7.056000px;}
.ws0_c00265{word-spacing:1585.435200px;}
._3_c00265{margin-left:-7.042800px;}
._0_c00265{margin-left:-2.112000px;}
._1_c00265{margin-left:-1.104000px;}
._2_c00265{width:2.016000px;}
._6_c00265{width:7.776000px;}
._4_c00265{width:55.674000px;}
._5_c00265{width:59.136000px;}
.fc0_c00265{color:rgb(35,31,32);}
.fs5_c00265{font-size:30.600000px;}
.fs6_c00265{font-size:36.000000px;}
.fs3_c00265{font-size:42.000000px;}
.fs0_c00265{font-size:48.000000px;}
.fs4_c00265{font-size:54.000000px;}
.fs2_c00265{font-size:57.000000px;}
.fs1_c00265{font-size:60.000000px;}
.y0_c00265{bottom:0.000000px;}
.y18_c00265{bottom:365.937150px;}
.y17_c00265{bottom:379.437150px;}
.y16_c00265{bottom:392.937150px;}
.y15_c00265{bottom:415.189200px;}
.y14_c00265{bottom:428.689200px;}
.y13_c00265{bottom:455.193150px;}
.y12_c00265{bottom:468.693150px;}
.y11_c00265{bottom:482.193150px;}
.y10_c00265{bottom:504.445050px;}
.yf_c00265{bottom:522.445050px;}
.ye_c00265{bottom:548.949000px;}
.y19_c00265{bottom:551.323050px;}
.yd_c00265{bottom:836.842350px;}
.yc_c00265{bottom:850.342350px;}
.yb_c00265{bottom:863.842350px;}
.ya_c00265{bottom:890.346300px;}
.y9_c00265{bottom:903.846300px;}
.y8_c00265{bottom:917.346300px;}
.y7_c00265{bottom:943.850250px;}
.y6_c00265{bottom:957.350250px;}
.y5_c00265{bottom:970.850250px;}
.y4_c00265{bottom:993.102300px;}
.y3_c00265{bottom:1011.102300px;}
.y2_c00265{bottom:1037.606250px;}
.y1_c00265{bottom:1093.600950px;}
.h7_c00265{height:25.200000px;}
.h6_c00265{height:30.282000px;}
.h4_c00265{height:34.080000px;}
.h2_c00265{height:39.264000px;}
.h3_c00265{height:43.260000px;}
.h5_c00265{height:43.740000px;}
.h1_c00265{height:1135.500000px;}
.h0_c00265{height:1135.506150px;}
.w0_c00265{width:893.950200px;}
.w1_c00265{width:894.000000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:77.603100px;}
.x4_c00265{left:424.138500px;}
.x2_c00265{left:599.532150px;}
.x3_c00265{left:612.288150px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls2_c00265{letter-spacing:-0.640000pt;}
.ls3_c00265{letter-spacing:-0.560000pt;}
.ls1_c00265{letter-spacing:-0.480000pt;}
.ls4_c00265{letter-spacing:-0.336000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws1_c00265{word-spacing:-7.728000pt;}
.ws2_c00265{word-spacing:-5.766400pt;}
.ws3_c00265{word-spacing:0.000000pt;}
.ws6_c00265{word-spacing:0.336000pt;}
.ws5_c00265{word-spacing:0.480000pt;}
.ws4_c00265{word-spacing:6.272000pt;}
.ws0_c00265{word-spacing:1409.275733pt;}
._3_c00265{margin-left:-6.260267pt;}
._0_c00265{margin-left:-1.877333pt;}
._1_c00265{margin-left:-0.981333pt;}
._2_c00265{width:1.792000pt;}
._6_c00265{width:6.912000pt;}
._4_c00265{width:49.488000pt;}
._5_c00265{width:52.565333pt;}
.fs5_c00265{font-size:27.200000pt;}
.fs6_c00265{font-size:32.000000pt;}
.fs3_c00265{font-size:37.333333pt;}
.fs0_c00265{font-size:42.666667pt;}
.fs4_c00265{font-size:48.000000pt;}
.fs2_c00265{font-size:50.666667pt;}
.fs1_c00265{font-size:53.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y18_c00265{bottom:325.277467pt;}
.y17_c00265{bottom:337.277467pt;}
.y16_c00265{bottom:349.277467pt;}
.y15_c00265{bottom:369.057067pt;}
.y14_c00265{bottom:381.057067pt;}
.y13_c00265{bottom:404.616133pt;}
.y12_c00265{bottom:416.616133pt;}
.y11_c00265{bottom:428.616133pt;}
.y10_c00265{bottom:448.395600pt;}
.yf_c00265{bottom:464.395600pt;}
.ye_c00265{bottom:487.954667pt;}
.y19_c00265{bottom:490.064933pt;}
.yd_c00265{bottom:743.859867pt;}
.yc_c00265{bottom:755.859867pt;}
.yb_c00265{bottom:767.859867pt;}
.ya_c00265{bottom:791.418933pt;}
.y9_c00265{bottom:803.418933pt;}
.y8_c00265{bottom:815.418933pt;}
.y7_c00265{bottom:838.978000pt;}
.y6_c00265{bottom:850.978000pt;}
.y5_c00265{bottom:862.978000pt;}
.y4_c00265{bottom:882.757600pt;}
.y3_c00265{bottom:898.757600pt;}
.y2_c00265{bottom:922.316667pt;}
.y1_c00265{bottom:972.089733pt;}
.h7_c00265{height:22.400000pt;}
.h6_c00265{height:26.917333pt;}
.h4_c00265{height:30.293333pt;}
.h2_c00265{height:34.901333pt;}
.h3_c00265{height:38.453333pt;}
.h5_c00265{height:38.880000pt;}
.h1_c00265{height:1009.333333pt;}
.h0_c00265{height:1009.338800pt;}
.w0_c00265{width:794.622400pt;}
.w1_c00265{width:794.666667pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:68.980533pt;}
.x4_c00265{left:377.012000pt;}
.x2_c00265{left:532.917467pt;}
.x3_c00265{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00266;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;line-height:1.067000;font-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_c00266{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls3_c00266{letter-spacing:-0.720000px;}
.ls4_c00266{letter-spacing:-0.630000px;}
.ls2_c00266{letter-spacing:-0.216000px;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00266{word-spacing:-8.694000px;}
.ws0_c00266{word-spacing:-0.048000px;}
.ws2_c00266{word-spacing:0.000000px;}
.ws4_c00266{word-spacing:0.216000px;}
.ws3_c00266{word-spacing:7.056000px;}
._0_c00266{margin-left:-2755.276200px;}
._4_c00266{margin-left:-6.946800px;}
._1_c00266{margin-left:-2.256000px;}
._3_c00266{margin-left:-1.200000px;}
._2_c00266{width:1.008000px;}
._7_c00266{width:7.776000px;}
._5_c00266{width:55.674000px;}
._6_c00266{width:59.136000px;}
.fc0_c00266{color:rgb(35,31,32);}
.fs3_c00266{font-size:42.000000px;}
.fs0_c00266{font-size:48.000000px;}
.fs4_c00266{font-size:54.000000px;}
.fs2_c00266{font-size:57.000000px;}
.fs1_c00266{font-size:60.000000px;}
.y0_c00266{bottom:0.000000px;}
.y1a_c00266{bottom:330.185250px;}
.y19_c00266{bottom:343.685250px;}
.y18_c00266{bottom:357.185250px;}
.y17_c00266{bottom:383.689200px;}
.y16_c00266{bottom:397.189200px;}
.y15_c00266{bottom:410.689200px;}
.y14_c00266{bottom:437.193150px;}
.y13_c00266{bottom:450.693150px;}
.y12_c00266{bottom:464.193150px;}
.y11_c00266{bottom:486.445050px;}
.y10_c00266{bottom:504.445050px;}
.yf_c00266{bottom:522.445050px;}
.ye_c00266{bottom:548.949000px;}
.yd_c00266{bottom:837.161550px;}
.yc_c00266{bottom:850.661550px;}
.yb_c00266{bottom:864.161550px;}
.ya_c00266{bottom:890.665500px;}
.y9_c00266{bottom:904.165500px;}
.y8_c00266{bottom:917.665500px;}
.y7_c00266{bottom:944.169450px;}
.y6_c00266{bottom:957.669450px;}
.y5_c00266{bottom:971.169450px;}
.y4_c00266{bottom:993.421350px;}
.y3_c00266{bottom:1011.421350px;}
.y2_c00266{bottom:1037.925300px;}
.y1_c00266{bottom:1093.600950px;}
.h7_c00266{height:30.282000px;}
.h5_c00266{height:34.080000px;}
.h2_c00266{height:39.264000px;}
.h3_c00266{height:39.984000px;}
.h4_c00266{height:43.260000px;}
.h6_c00266{height:43.740000px;}
.h1_c00266{height:1135.500000px;}
.h0_c00266{height:1135.506150px;}
.w0_c00266{width:893.950200px;}
.w1_c00266{width:894.000000px;}
.x0_c00266{left:0.000000px;}
.x4_c00266{left:128.626800px;}
.x5_c00266{left:141.382650px;}
.x6_c00266{left:145.752600px;}
.x2_c00266{left:188.061900px;}
.x3_c00266{left:190.513350px;}
.x1_c00266{left:800.165850px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls3_c00266{letter-spacing:-0.640000pt;}
.ls4_c00266{letter-spacing:-0.560000pt;}
.ls2_c00266{letter-spacing:-0.192000pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.426667pt;}
.ws1_c00266{word-spacing:-7.728000pt;}
.ws0_c00266{word-spacing:-0.042667pt;}
.ws2_c00266{word-spacing:0.000000pt;}
.ws4_c00266{word-spacing:0.192000pt;}
.ws3_c00266{word-spacing:6.272000pt;}
._0_c00266{margin-left:-2449.134400pt;}
._4_c00266{margin-left:-6.174933pt;}
._1_c00266{margin-left:-2.005333pt;}
._3_c00266{margin-left:-1.066667pt;}
._2_c00266{width:0.896000pt;}
._7_c00266{width:6.912000pt;}
._5_c00266{width:49.488000pt;}
._6_c00266{width:52.565333pt;}
.fs3_c00266{font-size:37.333333pt;}
.fs0_c00266{font-size:42.666667pt;}
.fs4_c00266{font-size:48.000000pt;}
.fs2_c00266{font-size:50.666667pt;}
.fs1_c00266{font-size:53.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y1a_c00266{bottom:293.498000pt;}
.y19_c00266{bottom:305.498000pt;}
.y18_c00266{bottom:317.498000pt;}
.y17_c00266{bottom:341.057067pt;}
.y16_c00266{bottom:353.057067pt;}
.y15_c00266{bottom:365.057067pt;}
.y14_c00266{bottom:388.616133pt;}
.y13_c00266{bottom:400.616133pt;}
.y12_c00266{bottom:412.616133pt;}
.y11_c00266{bottom:432.395600pt;}
.y10_c00266{bottom:448.395600pt;}
.yf_c00266{bottom:464.395600pt;}
.ye_c00266{bottom:487.954667pt;}
.yd_c00266{bottom:744.143600pt;}
.yc_c00266{bottom:756.143600pt;}
.yb_c00266{bottom:768.143600pt;}
.ya_c00266{bottom:791.702667pt;}
.y9_c00266{bottom:803.702667pt;}
.y8_c00266{bottom:815.702667pt;}
.y7_c00266{bottom:839.261733pt;}
.y6_c00266{bottom:851.261733pt;}
.y5_c00266{bottom:863.261733pt;}
.y4_c00266{bottom:883.041200pt;}
.y3_c00266{bottom:899.041200pt;}
.y2_c00266{bottom:922.600267pt;}
.y1_c00266{bottom:972.089733pt;}
.h7_c00266{height:26.917333pt;}
.h5_c00266{height:30.293333pt;}
.h2_c00266{height:34.901333pt;}
.h3_c00266{height:35.541333pt;}
.h4_c00266{height:38.453333pt;}
.h6_c00266{height:38.880000pt;}
.h1_c00266{height:1009.333333pt;}
.h0_c00266{height:1009.338800pt;}
.w0_c00266{width:794.622400pt;}
.w1_c00266{width:794.666667pt;}
.x0_c00266{left:0.000000pt;}
.x4_c00266{left:114.334933pt;}
.x5_c00266{left:125.673467pt;}
.x6_c00266{left:129.557867pt;}
.x2_c00266{left:167.166133pt;}
.x3_c00266{left:169.345200pt;}
.x1_c00266{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00267;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00267{font-family:ff6_c00267;line-height:1.067000;font-style:normal;font-weight: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_c00267;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00267{font-family:ff7_c00267;line-height:0.710000;font-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_c00267{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls2_c00267{letter-spacing:-0.720000px;}
.ls3_c00267{letter-spacing:-0.630000px;}
.ls1_c00267{letter-spacing:-0.216000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00267{word-spacing:-8.694000px;}
.ws2_c00267{word-spacing:-6.487200px;}
.ws3_c00267{word-spacing:0.000000px;}
.ws6_c00267{word-spacing:0.216000px;}
.ws4_c00267{word-spacing:7.056000px;}
.ws5_c00267{word-spacing:55.890000px;}
.ws0_c00267{word-spacing:1585.435200px;}
._3_c00267{margin-left:-7.042800px;}
._0_c00267{margin-left:-2.112000px;}
._1_c00267{margin-left:-1.104000px;}
._2_c00267{width:2.016000px;}
._5_c00267{width:7.776000px;}
._6_c00267{width:55.674000px;}
._4_c00267{width:59.136000px;}
.fc0_c00267{color:rgb(35,31,32);}
.fs5_c00267{font-size:30.600000px;}
.fs6_c00267{font-size:36.000000px;}
.fs3_c00267{font-size:42.000000px;}
.fs0_c00267{font-size:48.000000px;}
.fs4_c00267{font-size:54.000000px;}
.fs2_c00267{font-size:57.000000px;}
.fs1_c00267{font-size:60.000000px;}
.y0_c00267{bottom:0.000000px;}
.y18_c00267{bottom:347.831850px;}
.y17_c00267{bottom:361.331850px;}
.y16_c00267{bottom:374.831850px;}
.y15_c00267{bottom:401.335800px;}
.y14_c00267{bottom:414.835800px;}
.y13_c00267{bottom:428.335800px;}
.y12_c00267{bottom:454.839750px;}
.y11_c00267{bottom:468.339750px;}
.y10_c00267{bottom:481.839750px;}
.yf_c00267{bottom:504.091650px;}
.ye_c00267{bottom:522.091650px;}
.yd_c00267{bottom:548.595600px;}
.yc_c00267{bottom:854.913450px;}
.yb_c00267{bottom:868.413450px;}
.ya_c00267{bottom:881.913450px;}
.y9_c00267{bottom:904.165500px;}
.y8_c00267{bottom:917.665500px;}
.y7_c00267{bottom:944.169450px;}
.y6_c00267{bottom:957.669450px;}
.y5_c00267{bottom:971.169450px;}
.y4_c00267{bottom:993.421350px;}
.y3_c00267{bottom:1011.421350px;}
.y2_c00267{bottom:1037.925300px;}
.y19_c00267{bottom:1040.600550px;}
.y1_c00267{bottom:1093.600950px;}
.h7_c00267{height:25.200000px;}
.h6_c00267{height:30.282000px;}
.h4_c00267{height:34.080000px;}
.h2_c00267{height:39.264000px;}
.h3_c00267{height:43.260000px;}
.h5_c00267{height:43.740000px;}
.h1_c00267{height:1135.500000px;}
.h0_c00267{height:1135.506150px;}
.w0_c00267{width:893.950200px;}
.w1_c00267{width:894.000000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:77.603100px;}
.x4_c00267{left:424.017900px;}
.x2_c00267{left:599.532150px;}
.x3_c00267{left:612.288150px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls2_c00267{letter-spacing:-0.640000pt;}
.ls3_c00267{letter-spacing:-0.560000pt;}
.ls1_c00267{letter-spacing:-0.192000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws1_c00267{word-spacing:-7.728000pt;}
.ws2_c00267{word-spacing:-5.766400pt;}
.ws3_c00267{word-spacing:0.000000pt;}
.ws6_c00267{word-spacing:0.192000pt;}
.ws4_c00267{word-spacing:6.272000pt;}
.ws5_c00267{word-spacing:49.680000pt;}
.ws0_c00267{word-spacing:1409.275733pt;}
._3_c00267{margin-left:-6.260267pt;}
._0_c00267{margin-left:-1.877333pt;}
._1_c00267{margin-left:-0.981333pt;}
._2_c00267{width:1.792000pt;}
._5_c00267{width:6.912000pt;}
._6_c00267{width:49.488000pt;}
._4_c00267{width:52.565333pt;}
.fs5_c00267{font-size:27.200000pt;}
.fs6_c00267{font-size:32.000000pt;}
.fs3_c00267{font-size:37.333333pt;}
.fs0_c00267{font-size:42.666667pt;}
.fs4_c00267{font-size:48.000000pt;}
.fs2_c00267{font-size:50.666667pt;}
.fs1_c00267{font-size:53.333333pt;}
.y0_c00267{bottom:0.000000pt;}
.y18_c00267{bottom:309.183867pt;}
.y17_c00267{bottom:321.183867pt;}
.y16_c00267{bottom:333.183867pt;}
.y15_c00267{bottom:356.742933pt;}
.y14_c00267{bottom:368.742933pt;}
.y13_c00267{bottom:380.742933pt;}
.y12_c00267{bottom:404.302000pt;}
.y11_c00267{bottom:416.302000pt;}
.y10_c00267{bottom:428.302000pt;}
.yf_c00267{bottom:448.081467pt;}
.ye_c00267{bottom:464.081467pt;}
.yd_c00267{bottom:487.640533pt;}
.yc_c00267{bottom:759.923067pt;}
.yb_c00267{bottom:771.923067pt;}
.ya_c00267{bottom:783.923067pt;}
.y9_c00267{bottom:803.702667pt;}
.y8_c00267{bottom:815.702667pt;}
.y7_c00267{bottom:839.261733pt;}
.y6_c00267{bottom:851.261733pt;}
.y5_c00267{bottom:863.261733pt;}
.y4_c00267{bottom:883.041200pt;}
.y3_c00267{bottom:899.041200pt;}
.y2_c00267{bottom:922.600267pt;}
.y19_c00267{bottom:924.978267pt;}
.y1_c00267{bottom:972.089733pt;}
.h7_c00267{height:22.400000pt;}
.h6_c00267{height:26.917333pt;}
.h4_c00267{height:30.293333pt;}
.h2_c00267{height:34.901333pt;}
.h3_c00267{height:38.453333pt;}
.h5_c00267{height:38.880000pt;}
.h1_c00267{height:1009.333333pt;}
.h0_c00267{height:1009.338800pt;}
.w0_c00267{width:794.622400pt;}
.w1_c00267{width:794.666667pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:68.980533pt;}
.x4_c00267{left:376.904800pt;}
.x2_c00267{left:532.917467pt;}
.x3_c00267{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00268;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.067000;font-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_c00268{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls3_c00268{letter-spacing:-0.720000px;}
.ls4_c00268{letter-spacing:-0.630000px;}
.ls2_c00268{letter-spacing:-0.324000px;}
.ls5_c00268{letter-spacing:-0.240000px;}
.ls6_c00268{letter-spacing:-0.210000px;}
.ls1_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:0.480000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00268{word-spacing:-8.694000px;}
.ws2_c00268{word-spacing:-8.484000px;}
.ws0_c00268{word-spacing:-0.048000px;}
.ws3_c00268{word-spacing:0.000000px;}
.ws5_c00268{word-spacing:0.324000px;}
.ws4_c00268{word-spacing:7.056000px;}
._0_c00268{margin-left:-2755.276200px;}
._4_c00268{margin-left:-6.947400px;}
._1_c00268{margin-left:-2.256000px;}
._3_c00268{margin-left:-1.200000px;}
._2_c00268{width:1.008000px;}
._7_c00268{width:7.776000px;}
._5_c00268{width:55.674000px;}
._6_c00268{width:59.136000px;}
.fc0_c00268{color:rgb(35,31,32);}
.fs3_c00268{font-size:42.000000px;}
.fs0_c00268{font-size:48.000000px;}
.fs4_c00268{font-size:54.000000px;}
.fs2_c00268{font-size:57.000000px;}
.fs1_c00268{font-size:60.000000px;}
.y0_c00268{bottom:0.000000px;}
.y1b_c00268{bottom:303.681300px;}
.y1a_c00268{bottom:317.181300px;}
.y19_c00268{bottom:330.681300px;}
.y18_c00268{bottom:357.185250px;}
.y17_c00268{bottom:370.685250px;}
.y16_c00268{bottom:384.185250px;}
.y15_c00268{bottom:410.689200px;}
.y14_c00268{bottom:424.189200px;}
.y13_c00268{bottom:437.689200px;}
.y12_c00268{bottom:459.945600px;}
.y11_c00268{bottom:477.941100px;}
.y10_c00268{bottom:495.941100px;}
.yf_c00268{bottom:513.941100px;}
.ye_c00268{bottom:540.445050px;}
.yd_c00268{bottom:836.807550px;}
.yc_c00268{bottom:850.307550px;}
.yb_c00268{bottom:863.807550px;}
.ya_c00268{bottom:890.311500px;}
.y9_c00268{bottom:903.811500px;}
.y8_c00268{bottom:917.311500px;}
.y7_c00268{bottom:943.815450px;}
.y6_c00268{bottom:957.315450px;}
.y5_c00268{bottom:970.815450px;}
.y4_c00268{bottom:993.067500px;}
.y3_c00268{bottom:1011.067500px;}
.y2_c00268{bottom:1037.571450px;}
.y1_c00268{bottom:1093.600950px;}
.h7_c00268{height:30.282000px;}
.h5_c00268{height:34.080000px;}
.h2_c00268{height:39.264000px;}
.h3_c00268{height:39.984000px;}
.h4_c00268{height:43.260000px;}
.h6_c00268{height:43.740000px;}
.h1_c00268{height:1135.500000px;}
.h0_c00268{height:1135.506150px;}
.w0_c00268{width:893.950200px;}
.w1_c00268{width:894.000000px;}
.x0_c00268{left:0.000000px;}
.x4_c00268{left:128.744700px;}
.x5_c00268{left:141.500700px;}
.x6_c00268{left:145.752600px;}
.x2_c00268{left:188.061900px;}
.x3_c00268{left:190.513350px;}
.x1_c00268{left:800.165850px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls3_c00268{letter-spacing:-0.640000pt;}
.ls4_c00268{letter-spacing:-0.560000pt;}
.ls2_c00268{letter-spacing:-0.288000pt;}
.ls5_c00268{letter-spacing:-0.213333pt;}
.ls6_c00268{letter-spacing:-0.186667pt;}
.ls1_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:0.426667pt;}
.ws1_c00268{word-spacing:-7.728000pt;}
.ws2_c00268{word-spacing:-7.541333pt;}
.ws0_c00268{word-spacing:-0.042667pt;}
.ws3_c00268{word-spacing:0.000000pt;}
.ws5_c00268{word-spacing:0.288000pt;}
.ws4_c00268{word-spacing:6.272000pt;}
._0_c00268{margin-left:-2449.134400pt;}
._4_c00268{margin-left:-6.175467pt;}
._1_c00268{margin-left:-2.005333pt;}
._3_c00268{margin-left:-1.066667pt;}
._2_c00268{width:0.896000pt;}
._7_c00268{width:6.912000pt;}
._5_c00268{width:49.488000pt;}
._6_c00268{width:52.565333pt;}
.fs3_c00268{font-size:37.333333pt;}
.fs0_c00268{font-size:42.666667pt;}
.fs4_c00268{font-size:48.000000pt;}
.fs2_c00268{font-size:50.666667pt;}
.fs1_c00268{font-size:53.333333pt;}
.y0_c00268{bottom:0.000000pt;}
.y1b_c00268{bottom:269.938933pt;}
.y1a_c00268{bottom:281.938933pt;}
.y19_c00268{bottom:293.938933pt;}
.y18_c00268{bottom:317.498000pt;}
.y17_c00268{bottom:329.498000pt;}
.y16_c00268{bottom:341.498000pt;}
.y15_c00268{bottom:365.057067pt;}
.y14_c00268{bottom:377.057067pt;}
.y13_c00268{bottom:389.057067pt;}
.y12_c00268{bottom:408.840533pt;}
.y11_c00268{bottom:424.836533pt;}
.y10_c00268{bottom:440.836533pt;}
.yf_c00268{bottom:456.836533pt;}
.ye_c00268{bottom:480.395600pt;}
.yd_c00268{bottom:743.828933pt;}
.yc_c00268{bottom:755.828933pt;}
.yb_c00268{bottom:767.828933pt;}
.ya_c00268{bottom:791.388000pt;}
.y9_c00268{bottom:803.388000pt;}
.y8_c00268{bottom:815.388000pt;}
.y7_c00268{bottom:838.947067pt;}
.y6_c00268{bottom:850.947067pt;}
.y5_c00268{bottom:862.947067pt;}
.y4_c00268{bottom:882.726667pt;}
.y3_c00268{bottom:898.726667pt;}
.y2_c00268{bottom:922.285733pt;}
.y1_c00268{bottom:972.089733pt;}
.h7_c00268{height:26.917333pt;}
.h5_c00268{height:30.293333pt;}
.h2_c00268{height:34.901333pt;}
.h3_c00268{height:35.541333pt;}
.h4_c00268{height:38.453333pt;}
.h6_c00268{height:38.880000pt;}
.h1_c00268{height:1009.333333pt;}
.h0_c00268{height:1009.338800pt;}
.w0_c00268{width:794.622400pt;}
.w1_c00268{width:794.666667pt;}
.x0_c00268{left:0.000000pt;}
.x4_c00268{left:114.439733pt;}
.x5_c00268{left:125.778400pt;}
.x6_c00268{left:129.557867pt;}
.x2_c00268{left:167.166133pt;}
.x3_c00268{left:169.345200pt;}
.x1_c00268{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00269{font-family:ff6_c00269;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls2_c00269{letter-spacing:-0.720000px;}
.ls3_c00269{letter-spacing:-0.630000px;}
.ls1_c00269{letter-spacing:-0.540000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00269{word-spacing:-8.694000px;}
.ws2_c00269{word-spacing:0.000000px;}
.ws4_c00269{word-spacing:0.540000px;}
.ws3_c00269{word-spacing:7.056000px;}
.ws0_c00269{word-spacing:1585.435200px;}
._3_c00269{margin-left:-7.042800px;}
._7_c00269{margin-left:-4.590000px;}
._0_c00269{margin-left:-2.112000px;}
._1_c00269{margin-left:-1.104000px;}
._2_c00269{width:2.016000px;}
._6_c00269{width:7.776000px;}
._4_c00269{width:55.674000px;}
._5_c00269{width:59.136000px;}
.fc0_c00269{color:rgb(35,31,32);}
.fs3_c00269{font-size:42.000000px;}
.fs0_c00269{font-size:48.000000px;}
.fs4_c00269{font-size:54.000000px;}
.fs2_c00269{font-size:57.000000px;}
.fs1_c00269{font-size:60.000000px;}
.y0_c00269{bottom:0.000000px;}
.y19_c00269{bottom:348.308550px;}
.y18_c00269{bottom:361.808550px;}
.y17_c00269{bottom:375.308550px;}
.y16_c00269{bottom:401.812500px;}
.y15_c00269{bottom:415.312500px;}
.y14_c00269{bottom:428.812500px;}
.y13_c00269{bottom:455.316450px;}
.y12_c00269{bottom:468.816450px;}
.y11_c00269{bottom:482.316450px;}
.y10_c00269{bottom:504.568350px;}
.yf_c00269{bottom:522.568350px;}
.ye_c00269{bottom:549.072300px;}
.yd_c00269{bottom:836.545500px;}
.yc_c00269{bottom:850.045500px;}
.yb_c00269{bottom:863.545500px;}
.ya_c00269{bottom:890.049450px;}
.y9_c00269{bottom:903.549450px;}
.y8_c00269{bottom:917.049450px;}
.y7_c00269{bottom:943.553550px;}
.y6_c00269{bottom:957.053550px;}
.y5_c00269{bottom:970.553550px;}
.y4_c00269{bottom:992.805450px;}
.y3_c00269{bottom:1010.805450px;}
.y2_c00269{bottom:1037.309400px;}
.y1_c00269{bottom:1093.600950px;}
.h6_c00269{height:30.282000px;}
.h4_c00269{height:34.080000px;}
.h2_c00269{height:39.264000px;}
.h3_c00269{height:43.260000px;}
.h5_c00269{height:43.740000px;}
.h1_c00269{height:1135.500000px;}
.h0_c00269{height:1135.506150px;}
.w0_c00269{width:893.950200px;}
.w1_c00269{width:894.000000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:77.603100px;}
.x2_c00269{left:599.532150px;}
.x3_c00269{left:612.288150px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls2_c00269{letter-spacing:-0.640000pt;}
.ls3_c00269{letter-spacing:-0.560000pt;}
.ls1_c00269{letter-spacing:-0.480000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws1_c00269{word-spacing:-7.728000pt;}
.ws2_c00269{word-spacing:0.000000pt;}
.ws4_c00269{word-spacing:0.480000pt;}
.ws3_c00269{word-spacing:6.272000pt;}
.ws0_c00269{word-spacing:1409.275733pt;}
._3_c00269{margin-left:-6.260267pt;}
._7_c00269{margin-left:-4.080000pt;}
._0_c00269{margin-left:-1.877333pt;}
._1_c00269{margin-left:-0.981333pt;}
._2_c00269{width:1.792000pt;}
._6_c00269{width:6.912000pt;}
._4_c00269{width:49.488000pt;}
._5_c00269{width:52.565333pt;}
.fs3_c00269{font-size:37.333333pt;}
.fs0_c00269{font-size:42.666667pt;}
.fs4_c00269{font-size:48.000000pt;}
.fs2_c00269{font-size:50.666667pt;}
.fs1_c00269{font-size:53.333333pt;}
.y0_c00269{bottom:0.000000pt;}
.y19_c00269{bottom:309.607600pt;}
.y18_c00269{bottom:321.607600pt;}
.y17_c00269{bottom:333.607600pt;}
.y16_c00269{bottom:357.166667pt;}
.y15_c00269{bottom:369.166667pt;}
.y14_c00269{bottom:381.166667pt;}
.y13_c00269{bottom:404.725733pt;}
.y12_c00269{bottom:416.725733pt;}
.y11_c00269{bottom:428.725733pt;}
.y10_c00269{bottom:448.505200pt;}
.yf_c00269{bottom:464.505200pt;}
.ye_c00269{bottom:488.064267pt;}
.yd_c00269{bottom:743.596000pt;}
.yc_c00269{bottom:755.596000pt;}
.yb_c00269{bottom:767.596000pt;}
.ya_c00269{bottom:791.155067pt;}
.y9_c00269{bottom:803.155067pt;}
.y8_c00269{bottom:815.155067pt;}
.y7_c00269{bottom:838.714267pt;}
.y6_c00269{bottom:850.714267pt;}
.y5_c00269{bottom:862.714267pt;}
.y4_c00269{bottom:882.493733pt;}
.y3_c00269{bottom:898.493733pt;}
.y2_c00269{bottom:922.052800pt;}
.y1_c00269{bottom:972.089733pt;}
.h6_c00269{height:26.917333pt;}
.h4_c00269{height:30.293333pt;}
.h2_c00269{height:34.901333pt;}
.h3_c00269{height:38.453333pt;}
.h5_c00269{height:38.880000pt;}
.h1_c00269{height:1009.333333pt;}
.h0_c00269{height:1009.338800pt;}
.w0_c00269{width:794.622400pt;}
.w1_c00269{width:794.666667pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:68.980533pt;}
.x2_c00269{left:532.917467pt;}
.x3_c00269{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00270;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:0.908000;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:1.067000;font-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_c00270{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls2_c00270{letter-spacing:-0.720000px;}
.ls3_c00270{letter-spacing:-0.630000px;}
.ls1_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00270{word-spacing:-8.694000px;}
.ws0_c00270{word-spacing:-0.048000px;}
.ws2_c00270{word-spacing:0.000000px;}
.ws3_c00270{word-spacing:7.056000px;}
._0_c00270{margin-left:-2755.276200px;}
._4_c00270{margin-left:-6.947400px;}
._1_c00270{margin-left:-2.256000px;}
._3_c00270{margin-left:-1.200000px;}
._2_c00270{width:1.008000px;}
._7_c00270{width:7.776000px;}
._5_c00270{width:55.674000px;}
._6_c00270{width:59.136000px;}
.fc0_c00270{color:rgb(35,31,32);}
.fs3_c00270{font-size:42.000000px;}
.fs0_c00270{font-size:48.000000px;}
.fs4_c00270{font-size:54.000000px;}
.fs2_c00270{font-size:57.000000px;}
.fs1_c00270{font-size:60.000000px;}
.y0_c00270{bottom:0.000000px;}
.y19_c00270{bottom:348.185250px;}
.y18_c00270{bottom:361.685250px;}
.y17_c00270{bottom:375.185250px;}
.y16_c00270{bottom:401.689200px;}
.y15_c00270{bottom:415.189200px;}
.y14_c00270{bottom:428.689200px;}
.y13_c00270{bottom:455.193150px;}
.y12_c00270{bottom:468.693150px;}
.y11_c00270{bottom:482.193150px;}
.y10_c00270{bottom:504.445050px;}
.yf_c00270{bottom:522.445050px;}
.ye_c00270{bottom:548.949000px;}
.yd_c00270{bottom:836.506950px;}
.yc_c00270{bottom:850.006950px;}
.yb_c00270{bottom:863.506950px;}
.ya_c00270{bottom:890.010900px;}
.y9_c00270{bottom:903.510900px;}
.y8_c00270{bottom:917.010900px;}
.y7_c00270{bottom:943.514850px;}
.y6_c00270{bottom:957.014850px;}
.y5_c00270{bottom:970.514850px;}
.y4_c00270{bottom:992.766900px;}
.y3_c00270{bottom:1010.766900px;}
.y2_c00270{bottom:1037.270850px;}
.y1_c00270{bottom:1093.600950px;}
.h7_c00270{height:30.282000px;}
.h5_c00270{height:34.080000px;}
.h2_c00270{height:39.264000px;}
.h3_c00270{height:39.984000px;}
.h4_c00270{height:43.260000px;}
.h6_c00270{height:43.740000px;}
.h1_c00270{height:1135.500000px;}
.h0_c00270{height:1135.506150px;}
.w0_c00270{width:893.950200px;}
.w1_c00270{width:894.000000px;}
.x0_c00270{left:0.000000px;}
.x4_c00270{left:128.744700px;}
.x5_c00270{left:141.500700px;}
.x2_c00270{left:188.061900px;}
.x3_c00270{left:190.513350px;}
.x1_c00270{left:800.165850px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls2_c00270{letter-spacing:-0.640000pt;}
.ls3_c00270{letter-spacing:-0.560000pt;}
.ls1_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.426667pt;}
.ws1_c00270{word-spacing:-7.728000pt;}
.ws0_c00270{word-spacing:-0.042667pt;}
.ws2_c00270{word-spacing:0.000000pt;}
.ws3_c00270{word-spacing:6.272000pt;}
._0_c00270{margin-left:-2449.134400pt;}
._4_c00270{margin-left:-6.175467pt;}
._1_c00270{margin-left:-2.005333pt;}
._3_c00270{margin-left:-1.066667pt;}
._2_c00270{width:0.896000pt;}
._7_c00270{width:6.912000pt;}
._5_c00270{width:49.488000pt;}
._6_c00270{width:52.565333pt;}
.fs3_c00270{font-size:37.333333pt;}
.fs0_c00270{font-size:42.666667pt;}
.fs4_c00270{font-size:48.000000pt;}
.fs2_c00270{font-size:50.666667pt;}
.fs1_c00270{font-size:53.333333pt;}
.y0_c00270{bottom:0.000000pt;}
.y19_c00270{bottom:309.498000pt;}
.y18_c00270{bottom:321.498000pt;}
.y17_c00270{bottom:333.498000pt;}
.y16_c00270{bottom:357.057067pt;}
.y15_c00270{bottom:369.057067pt;}
.y14_c00270{bottom:381.057067pt;}
.y13_c00270{bottom:404.616133pt;}
.y12_c00270{bottom:416.616133pt;}
.y11_c00270{bottom:428.616133pt;}
.y10_c00270{bottom:448.395600pt;}
.yf_c00270{bottom:464.395600pt;}
.ye_c00270{bottom:487.954667pt;}
.yd_c00270{bottom:743.561733pt;}
.yc_c00270{bottom:755.561733pt;}
.yb_c00270{bottom:767.561733pt;}
.ya_c00270{bottom:791.120800pt;}
.y9_c00270{bottom:803.120800pt;}
.y8_c00270{bottom:815.120800pt;}
.y7_c00270{bottom:838.679867pt;}
.y6_c00270{bottom:850.679867pt;}
.y5_c00270{bottom:862.679867pt;}
.y4_c00270{bottom:882.459467pt;}
.y3_c00270{bottom:898.459467pt;}
.y2_c00270{bottom:922.018533pt;}
.y1_c00270{bottom:972.089733pt;}
.h7_c00270{height:26.917333pt;}
.h5_c00270{height:30.293333pt;}
.h2_c00270{height:34.901333pt;}
.h3_c00270{height:35.541333pt;}
.h4_c00270{height:38.453333pt;}
.h6_c00270{height:38.880000pt;}
.h1_c00270{height:1009.333333pt;}
.h0_c00270{height:1009.338800pt;}
.w0_c00270{width:794.622400pt;}
.w1_c00270{width:794.666667pt;}
.x0_c00270{left:0.000000pt;}
.x4_c00270{left:114.439733pt;}
.x5_c00270{left:125.778400pt;}
.x2_c00270{left:167.166133pt;}
.x3_c00270{left:169.345200pt;}
.x1_c00270{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00271;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00271;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00271{font-family:ff6_c00271;line-height:1.067000;font-style:normal;font-weight: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_c00271;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00271{font-family:ff7_c00271;line-height:0.710000;font-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_c00271{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls1_c00271{letter-spacing:-0.720000px;}
.ls2_c00271{letter-spacing:-0.630000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00271{word-spacing:-8.694000px;}
.ws2_c00271{word-spacing:-6.487200px;}
.ws3_c00271{word-spacing:0.000000px;}
.ws4_c00271{word-spacing:7.056000px;}
.ws0_c00271{word-spacing:1585.435200px;}
._3_c00271{margin-left:-7.042800px;}
._0_c00271{margin-left:-2.112000px;}
._1_c00271{margin-left:-1.104000px;}
._2_c00271{width:2.016000px;}
._6_c00271{width:7.776000px;}
._4_c00271{width:55.674000px;}
._5_c00271{width:59.136000px;}
.fc0_c00271{color:rgb(35,31,32);}
.fs5_c00271{font-size:30.600000px;}
.fs6_c00271{font-size:36.000000px;}
.fs3_c00271{font-size:42.000000px;}
.fs0_c00271{font-size:48.000000px;}
.fs4_c00271{font-size:54.000000px;}
.fs2_c00271{font-size:57.000000px;}
.fs1_c00271{font-size:60.000000px;}
.y0_c00271{bottom:0.000000px;}
.y18_c00271{bottom:361.685250px;}
.y17_c00271{bottom:375.185250px;}
.y16_c00271{bottom:388.685250px;}
.y15_c00271{bottom:415.189200px;}
.y14_c00271{bottom:428.689200px;}
.y13_c00271{bottom:455.193150px;}
.y12_c00271{bottom:468.693150px;}
.y11_c00271{bottom:482.193150px;}
.y10_c00271{bottom:504.445050px;}
.yf_c00271{bottom:522.445050px;}
.ye_c00271{bottom:548.949000px;}
.y19_c00271{bottom:551.323050px;}
.yd_c00271{bottom:836.931750px;}
.yc_c00271{bottom:850.431750px;}
.yb_c00271{bottom:863.931750px;}
.ya_c00271{bottom:890.435700px;}
.y9_c00271{bottom:903.935700px;}
.y8_c00271{bottom:917.435700px;}
.y7_c00271{bottom:943.939650px;}
.y6_c00271{bottom:957.439650px;}
.y5_c00271{bottom:970.939650px;}
.y4_c00271{bottom:993.191700px;}
.y3_c00271{bottom:1011.191700px;}
.y2_c00271{bottom:1037.695650px;}
.y1_c00271{bottom:1093.600950px;}
.h7_c00271{height:25.200000px;}
.h6_c00271{height:30.282000px;}
.h4_c00271{height:34.080000px;}
.h2_c00271{height:39.264000px;}
.h3_c00271{height:43.260000px;}
.h5_c00271{height:43.740000px;}
.h1_c00271{height:1135.500000px;}
.h0_c00271{height:1135.506150px;}
.w0_c00271{width:893.950200px;}
.w1_c00271{width:894.000000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:77.603100px;}
.x4_c00271{left:424.138500px;}
.x2_c00271{left:599.532150px;}
.x3_c00271{left:612.288150px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls1_c00271{letter-spacing:-0.640000pt;}
.ls2_c00271{letter-spacing:-0.560000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws1_c00271{word-spacing:-7.728000pt;}
.ws2_c00271{word-spacing:-5.766400pt;}
.ws3_c00271{word-spacing:0.000000pt;}
.ws4_c00271{word-spacing:6.272000pt;}
.ws0_c00271{word-spacing:1409.275733pt;}
._3_c00271{margin-left:-6.260267pt;}
._0_c00271{margin-left:-1.877333pt;}
._1_c00271{margin-left:-0.981333pt;}
._2_c00271{width:1.792000pt;}
._6_c00271{width:6.912000pt;}
._4_c00271{width:49.488000pt;}
._5_c00271{width:52.565333pt;}
.fs5_c00271{font-size:27.200000pt;}
.fs6_c00271{font-size:32.000000pt;}
.fs3_c00271{font-size:37.333333pt;}
.fs0_c00271{font-size:42.666667pt;}
.fs4_c00271{font-size:48.000000pt;}
.fs2_c00271{font-size:50.666667pt;}
.fs1_c00271{font-size:53.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y18_c00271{bottom:321.498000pt;}
.y17_c00271{bottom:333.498000pt;}
.y16_c00271{bottom:345.498000pt;}
.y15_c00271{bottom:369.057067pt;}
.y14_c00271{bottom:381.057067pt;}
.y13_c00271{bottom:404.616133pt;}
.y12_c00271{bottom:416.616133pt;}
.y11_c00271{bottom:428.616133pt;}
.y10_c00271{bottom:448.395600pt;}
.yf_c00271{bottom:464.395600pt;}
.ye_c00271{bottom:487.954667pt;}
.y19_c00271{bottom:490.064933pt;}
.yd_c00271{bottom:743.939333pt;}
.yc_c00271{bottom:755.939333pt;}
.yb_c00271{bottom:767.939333pt;}
.ya_c00271{bottom:791.498400pt;}
.y9_c00271{bottom:803.498400pt;}
.y8_c00271{bottom:815.498400pt;}
.y7_c00271{bottom:839.057467pt;}
.y6_c00271{bottom:851.057467pt;}
.y5_c00271{bottom:863.057467pt;}
.y4_c00271{bottom:882.837067pt;}
.y3_c00271{bottom:898.837067pt;}
.y2_c00271{bottom:922.396133pt;}
.y1_c00271{bottom:972.089733pt;}
.h7_c00271{height:22.400000pt;}
.h6_c00271{height:26.917333pt;}
.h4_c00271{height:30.293333pt;}
.h2_c00271{height:34.901333pt;}
.h3_c00271{height:38.453333pt;}
.h5_c00271{height:38.880000pt;}
.h1_c00271{height:1009.333333pt;}
.h0_c00271{height:1009.338800pt;}
.w0_c00271{width:794.622400pt;}
.w1_c00271{width:794.666667pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:68.980533pt;}
.x4_c00271{left:377.012000pt;}
.x2_c00271{left:532.917467pt;}
.x3_c00271{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00272;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00272{font-family:ff6_c00272;line-height:0.908000;font-style:normal;font-weight: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_c00272;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00272{font-family:ff7_c00272;line-height:1.067000;font-style:normal;font-weight: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_c00272;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00272{font-family:ff8_c00272;line-height:0.710000;font-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_c00272{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls3_c00272{letter-spacing:-0.720000px;}
.ls4_c00272{letter-spacing:-0.630000px;}
.ls2_c00272{letter-spacing:-0.378000px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00272{word-spacing:-8.694000px;}
.ws2_c00272{word-spacing:-6.487200px;}
.ws0_c00272{word-spacing:-0.048000px;}
.ws3_c00272{word-spacing:0.000000px;}
.ws5_c00272{word-spacing:0.378000px;}
.ws4_c00272{word-spacing:7.056000px;}
._0_c00272{margin-left:-2755.276200px;}
._4_c00272{margin-left:-6.947400px;}
._1_c00272{margin-left:-2.256000px;}
._3_c00272{margin-left:-1.200000px;}
._2_c00272{width:1.008000px;}
._7_c00272{width:7.776000px;}
._5_c00272{width:55.674000px;}
._6_c00272{width:59.136000px;}
.fc0_c00272{color:rgb(35,31,32);}
.fs5_c00272{font-size:30.600000px;}
.fs6_c00272{font-size:36.000000px;}
.fs3_c00272{font-size:42.000000px;}
.fs0_c00272{font-size:48.000000px;}
.fs4_c00272{font-size:54.000000px;}
.fs2_c00272{font-size:57.000000px;}
.fs1_c00272{font-size:60.000000px;}
.y0_c00272{bottom:0.000000px;}
.y18_c00272{bottom:347.972700px;}
.y17_c00272{bottom:361.472700px;}
.y16_c00272{bottom:374.972550px;}
.y15_c00272{bottom:401.476500px;}
.y14_c00272{bottom:414.976500px;}
.y13_c00272{bottom:428.476500px;}
.y12_c00272{bottom:454.980450px;}
.y11_c00272{bottom:468.480450px;}
.y10_c00272{bottom:481.980450px;}
.yf_c00272{bottom:504.232500px;}
.ye_c00272{bottom:522.232500px;}
.yd_c00272{bottom:548.736450px;}
.yc_c00272{bottom:854.258850px;}
.yb_c00272{bottom:867.758850px;}
.ya_c00272{bottom:881.258850px;}
.y9_c00272{bottom:903.510900px;}
.y8_c00272{bottom:917.010900px;}
.y7_c00272{bottom:943.514850px;}
.y6_c00272{bottom:957.014850px;}
.y5_c00272{bottom:970.514850px;}
.y4_c00272{bottom:992.766900px;}
.y3_c00272{bottom:1010.766900px;}
.y2_c00272{bottom:1037.270850px;}
.y19_c00272{bottom:1040.449950px;}
.y1_c00272{bottom:1093.600950px;}
.h8_c00272{height:25.200000px;}
.h7_c00272{height:30.282000px;}
.h5_c00272{height:34.080000px;}
.h2_c00272{height:39.264000px;}
.h3_c00272{height:39.984000px;}
.h4_c00272{height:43.260000px;}
.h6_c00272{height:43.740000px;}
.h1_c00272{height:1135.500000px;}
.h0_c00272{height:1135.506150px;}
.w0_c00272{width:893.950200px;}
.w1_c00272{width:894.000000px;}
.x0_c00272{left:0.000000px;}
.x4_c00272{left:128.744700px;}
.x5_c00272{left:141.500700px;}
.x2_c00272{left:188.061900px;}
.x3_c00272{left:190.513350px;}
.x6_c00272{left:321.801150px;}
.x1_c00272{left:800.165850px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls3_c00272{letter-spacing:-0.640000pt;}
.ls4_c00272{letter-spacing:-0.560000pt;}
.ls2_c00272{letter-spacing:-0.336000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.426667pt;}
.ws1_c00272{word-spacing:-7.728000pt;}
.ws2_c00272{word-spacing:-5.766400pt;}
.ws0_c00272{word-spacing:-0.042667pt;}
.ws3_c00272{word-spacing:0.000000pt;}
.ws5_c00272{word-spacing:0.336000pt;}
.ws4_c00272{word-spacing:6.272000pt;}
._0_c00272{margin-left:-2449.134400pt;}
._4_c00272{margin-left:-6.175467pt;}
._1_c00272{margin-left:-2.005333pt;}
._3_c00272{margin-left:-1.066667pt;}
._2_c00272{width:0.896000pt;}
._7_c00272{width:6.912000pt;}
._5_c00272{width:49.488000pt;}
._6_c00272{width:52.565333pt;}
.fs5_c00272{font-size:27.200000pt;}
.fs6_c00272{font-size:32.000000pt;}
.fs3_c00272{font-size:37.333333pt;}
.fs0_c00272{font-size:42.666667pt;}
.fs4_c00272{font-size:48.000000pt;}
.fs2_c00272{font-size:50.666667pt;}
.fs1_c00272{font-size:53.333333pt;}
.y0_c00272{bottom:0.000000pt;}
.y18_c00272{bottom:309.309067pt;}
.y17_c00272{bottom:321.309067pt;}
.y16_c00272{bottom:333.308933pt;}
.y15_c00272{bottom:356.868000pt;}
.y14_c00272{bottom:368.868000pt;}
.y13_c00272{bottom:380.868000pt;}
.y12_c00272{bottom:404.427067pt;}
.y11_c00272{bottom:416.427067pt;}
.y10_c00272{bottom:428.427067pt;}
.yf_c00272{bottom:448.206667pt;}
.ye_c00272{bottom:464.206667pt;}
.yd_c00272{bottom:487.765733pt;}
.yc_c00272{bottom:759.341200pt;}
.yb_c00272{bottom:771.341200pt;}
.ya_c00272{bottom:783.341200pt;}
.y9_c00272{bottom:803.120800pt;}
.y8_c00272{bottom:815.120800pt;}
.y7_c00272{bottom:838.679867pt;}
.y6_c00272{bottom:850.679867pt;}
.y5_c00272{bottom:862.679867pt;}
.y4_c00272{bottom:882.459467pt;}
.y3_c00272{bottom:898.459467pt;}
.y2_c00272{bottom:922.018533pt;}
.y19_c00272{bottom:924.844400pt;}
.y1_c00272{bottom:972.089733pt;}
.h8_c00272{height:22.400000pt;}
.h7_c00272{height:26.917333pt;}
.h5_c00272{height:30.293333pt;}
.h2_c00272{height:34.901333pt;}
.h3_c00272{height:35.541333pt;}
.h4_c00272{height:38.453333pt;}
.h6_c00272{height:38.880000pt;}
.h1_c00272{height:1009.333333pt;}
.h0_c00272{height:1009.338800pt;}
.w0_c00272{width:794.622400pt;}
.w1_c00272{width:794.666667pt;}
.x0_c00272{left:0.000000pt;}
.x4_c00272{left:114.439733pt;}
.x5_c00272{left:125.778400pt;}
.x2_c00272{left:167.166133pt;}
.x3_c00272{left:169.345200pt;}
.x6_c00272{left:286.045467pt;}
.x1_c00272{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls2_c00273{letter-spacing:-0.720000px;}
.ls3_c00273{letter-spacing:-0.630000px;}
.ls4_c00273{letter-spacing:-0.540000px;}
.ls1_c00273{letter-spacing:-0.432000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00273{word-spacing:0.000000px;}
.ws4_c00273{word-spacing:0.432000px;}
.ws5_c00273{word-spacing:0.540000px;}
.ws3_c00273{word-spacing:7.056000px;}
.ws0_c00273{word-spacing:1585.435200px;}
._3_c00273{margin-left:-7.042800px;}
._7_c00273{margin-left:-3.768000px;}
._0_c00273{margin-left:-2.112000px;}
._1_c00273{margin-left:-1.104000px;}
._2_c00273{width:2.016000px;}
._6_c00273{width:7.776000px;}
._4_c00273{width:55.674000px;}
._5_c00273{width:59.136000px;}
.fc0_c00273{color:rgb(35,31,32);}
.fs3_c00273{font-size:42.000000px;}
.fs0_c00273{font-size:48.000000px;}
.fs4_c00273{font-size:54.000000px;}
.fs2_c00273{font-size:57.000000px;}
.fs1_c00273{font-size:60.000000px;}
.y0_c00273{bottom:0.000000px;}
.y19_c00273{bottom:348.061950px;}
.y18_c00273{bottom:361.561950px;}
.y17_c00273{bottom:375.061800px;}
.y16_c00273{bottom:401.565900px;}
.y15_c00273{bottom:415.065900px;}
.y14_c00273{bottom:428.565900px;}
.y13_c00273{bottom:455.069700px;}
.y12_c00273{bottom:468.569700px;}
.y11_c00273{bottom:482.069700px;}
.y10_c00273{bottom:504.321750px;}
.yf_c00273{bottom:522.321750px;}
.ye_c00273{bottom:548.825700px;}
.yd_c00273{bottom:837.161550px;}
.yc_c00273{bottom:850.661550px;}
.yb_c00273{bottom:864.161550px;}
.ya_c00273{bottom:890.665500px;}
.y9_c00273{bottom:904.165500px;}
.y8_c00273{bottom:917.665500px;}
.y7_c00273{bottom:944.169450px;}
.y6_c00273{bottom:957.669450px;}
.y5_c00273{bottom:971.169450px;}
.y4_c00273{bottom:993.421350px;}
.y3_c00273{bottom:1011.421350px;}
.y2_c00273{bottom:1037.925300px;}
.y1_c00273{bottom:1093.600950px;}
.h6_c00273{height:30.282000px;}
.h4_c00273{height:34.080000px;}
.h2_c00273{height:39.264000px;}
.h3_c00273{height:43.260000px;}
.h5_c00273{height:43.740000px;}
.h1_c00273{height:1135.500000px;}
.h0_c00273{height:1135.506150px;}
.w0_c00273{width:893.950200px;}
.w1_c00273{width:894.000000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:77.603100px;}
.x2_c00273{left:599.532150px;}
.x3_c00273{left:612.288150px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls2_c00273{letter-spacing:-0.640000pt;}
.ls3_c00273{letter-spacing:-0.560000pt;}
.ls4_c00273{letter-spacing:-0.480000pt;}
.ls1_c00273{letter-spacing:-0.384000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws1_c00273{word-spacing:-7.728000pt;}
.ws2_c00273{word-spacing:0.000000pt;}
.ws4_c00273{word-spacing:0.384000pt;}
.ws5_c00273{word-spacing:0.480000pt;}
.ws3_c00273{word-spacing:6.272000pt;}
.ws0_c00273{word-spacing:1409.275733pt;}
._3_c00273{margin-left:-6.260267pt;}
._7_c00273{margin-left:-3.349333pt;}
._0_c00273{margin-left:-1.877333pt;}
._1_c00273{margin-left:-0.981333pt;}
._2_c00273{width:1.792000pt;}
._6_c00273{width:6.912000pt;}
._4_c00273{width:49.488000pt;}
._5_c00273{width:52.565333pt;}
.fs3_c00273{font-size:37.333333pt;}
.fs0_c00273{font-size:42.666667pt;}
.fs4_c00273{font-size:48.000000pt;}
.fs2_c00273{font-size:50.666667pt;}
.fs1_c00273{font-size:53.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y19_c00273{bottom:309.388400pt;}
.y18_c00273{bottom:321.388400pt;}
.y17_c00273{bottom:333.388267pt;}
.y16_c00273{bottom:356.947467pt;}
.y15_c00273{bottom:368.947467pt;}
.y14_c00273{bottom:380.947467pt;}
.y13_c00273{bottom:404.506400pt;}
.y12_c00273{bottom:416.506400pt;}
.y11_c00273{bottom:428.506400pt;}
.y10_c00273{bottom:448.286000pt;}
.yf_c00273{bottom:464.286000pt;}
.ye_c00273{bottom:487.845067pt;}
.yd_c00273{bottom:744.143600pt;}
.yc_c00273{bottom:756.143600pt;}
.yb_c00273{bottom:768.143600pt;}
.ya_c00273{bottom:791.702667pt;}
.y9_c00273{bottom:803.702667pt;}
.y8_c00273{bottom:815.702667pt;}
.y7_c00273{bottom:839.261733pt;}
.y6_c00273{bottom:851.261733pt;}
.y5_c00273{bottom:863.261733pt;}
.y4_c00273{bottom:883.041200pt;}
.y3_c00273{bottom:899.041200pt;}
.y2_c00273{bottom:922.600267pt;}
.y1_c00273{bottom:972.089733pt;}
.h6_c00273{height:26.917333pt;}
.h4_c00273{height:30.293333pt;}
.h2_c00273{height:34.901333pt;}
.h3_c00273{height:38.453333pt;}
.h5_c00273{height:38.880000pt;}
.h1_c00273{height:1009.333333pt;}
.h0_c00273{height:1009.338800pt;}
.w0_c00273{width:794.622400pt;}
.w1_c00273{width:794.666667pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:68.980533pt;}
.x2_c00273{left:532.917467pt;}
.x3_c00273{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00274;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00274{font-family:ff6_c00274;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00274;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00274{font-family:ff7_c00274;line-height:1.067000;font-style:normal;font-weight: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_c00274;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00274{font-family:ff8_c00274;line-height:0.710000;font-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_c00274{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls3_c00274{letter-spacing:-0.720000px;}
.ls4_c00274{letter-spacing:-0.630000px;}
.ls2_c00274{letter-spacing:-0.378000px;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00274{word-spacing:-8.694000px;}
.ws2_c00274{word-spacing:-6.487200px;}
.ws0_c00274{word-spacing:-0.048000px;}
.ws3_c00274{word-spacing:0.000000px;}
.ws5_c00274{word-spacing:0.378000px;}
.ws4_c00274{word-spacing:7.056000px;}
._0_c00274{margin-left:-2755.276200px;}
._4_c00274{margin-left:-6.947400px;}
._1_c00274{margin-left:-2.256000px;}
._3_c00274{margin-left:-1.200000px;}
._2_c00274{width:1.008000px;}
._7_c00274{width:7.776000px;}
._5_c00274{width:55.674000px;}
._6_c00274{width:59.136000px;}
.fc0_c00274{color:rgb(35,31,32);}
.fs5_c00274{font-size:30.600000px;}
.fs6_c00274{font-size:36.000000px;}
.fs3_c00274{font-size:42.000000px;}
.fs0_c00274{font-size:48.000000px;}
.fs4_c00274{font-size:54.000000px;}
.fs2_c00274{font-size:57.000000px;}
.fs1_c00274{font-size:60.000000px;}
.y0_c00274{bottom:0.000000px;}
.y19_c00274{bottom:330.414900px;}
.y18_c00274{bottom:343.914900px;}
.y17_c00274{bottom:357.414900px;}
.y16_c00274{bottom:383.918850px;}
.y15_c00274{bottom:397.418850px;}
.y14_c00274{bottom:410.918850px;}
.y13_c00274{bottom:437.422800px;}
.y12_c00274{bottom:450.922800px;}
.y11_c00274{bottom:464.422800px;}
.y10_c00274{bottom:486.674700px;}
.yf_c00274{bottom:504.674700px;}
.ye_c00274{bottom:522.674700px;}
.yd_c00274{bottom:549.178650px;}
.yc_c00274{bottom:855.108900px;}
.yb_c00274{bottom:868.608900px;}
.ya_c00274{bottom:882.108900px;}
.y9_c00274{bottom:904.360800px;}
.y8_c00274{bottom:917.860800px;}
.y7_c00274{bottom:944.364900px;}
.y6_c00274{bottom:957.864900px;}
.y5_c00274{bottom:971.364900px;}
.y4_c00274{bottom:993.616800px;}
.y3_c00274{bottom:1011.616800px;}
.y2_c00274{bottom:1038.120750px;}
.y1a_c00274{bottom:1040.299350px;}
.y1_c00274{bottom:1093.600950px;}
.h8_c00274{height:25.200000px;}
.h7_c00274{height:30.282000px;}
.h5_c00274{height:34.080000px;}
.h2_c00274{height:39.264000px;}
.h3_c00274{height:39.984000px;}
.h4_c00274{height:43.260000px;}
.h6_c00274{height:43.740000px;}
.h1_c00274{height:1135.500000px;}
.h0_c00274{height:1135.506150px;}
.w0_c00274{width:893.950200px;}
.w1_c00274{width:894.000000px;}
.x0_c00274{left:0.000000px;}
.x4_c00274{left:128.744700px;}
.x5_c00274{left:141.500700px;}
.x6_c00274{left:145.634700px;}
.x2_c00274{left:188.061900px;}
.x3_c00274{left:190.513350px;}
.x7_c00274{left:321.801150px;}
.x1_c00274{left:800.165850px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls3_c00274{letter-spacing:-0.640000pt;}
.ls4_c00274{letter-spacing:-0.560000pt;}
.ls2_c00274{letter-spacing:-0.336000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.426667pt;}
.ws1_c00274{word-spacing:-7.728000pt;}
.ws2_c00274{word-spacing:-5.766400pt;}
.ws0_c00274{word-spacing:-0.042667pt;}
.ws3_c00274{word-spacing:0.000000pt;}
.ws5_c00274{word-spacing:0.336000pt;}
.ws4_c00274{word-spacing:6.272000pt;}
._0_c00274{margin-left:-2449.134400pt;}
._4_c00274{margin-left:-6.175467pt;}
._1_c00274{margin-left:-2.005333pt;}
._3_c00274{margin-left:-1.066667pt;}
._2_c00274{width:0.896000pt;}
._7_c00274{width:6.912000pt;}
._5_c00274{width:49.488000pt;}
._6_c00274{width:52.565333pt;}
.fs5_c00274{font-size:27.200000pt;}
.fs6_c00274{font-size:32.000000pt;}
.fs3_c00274{font-size:37.333333pt;}
.fs0_c00274{font-size:42.666667pt;}
.fs4_c00274{font-size:48.000000pt;}
.fs2_c00274{font-size:50.666667pt;}
.fs1_c00274{font-size:53.333333pt;}
.y0_c00274{bottom:0.000000pt;}
.y19_c00274{bottom:293.702133pt;}
.y18_c00274{bottom:305.702133pt;}
.y17_c00274{bottom:317.702133pt;}
.y16_c00274{bottom:341.261200pt;}
.y15_c00274{bottom:353.261200pt;}
.y14_c00274{bottom:365.261200pt;}
.y13_c00274{bottom:388.820267pt;}
.y12_c00274{bottom:400.820267pt;}
.y11_c00274{bottom:412.820267pt;}
.y10_c00274{bottom:432.599733pt;}
.yf_c00274{bottom:448.599733pt;}
.ye_c00274{bottom:464.599733pt;}
.yd_c00274{bottom:488.158800pt;}
.yc_c00274{bottom:760.096800pt;}
.yb_c00274{bottom:772.096800pt;}
.ya_c00274{bottom:784.096800pt;}
.y9_c00274{bottom:803.876267pt;}
.y8_c00274{bottom:815.876267pt;}
.y7_c00274{bottom:839.435467pt;}
.y6_c00274{bottom:851.435467pt;}
.y5_c00274{bottom:863.435467pt;}
.y4_c00274{bottom:883.214933pt;}
.y3_c00274{bottom:899.214933pt;}
.y2_c00274{bottom:922.774000pt;}
.y1a_c00274{bottom:924.710533pt;}
.y1_c00274{bottom:972.089733pt;}
.h8_c00274{height:22.400000pt;}
.h7_c00274{height:26.917333pt;}
.h5_c00274{height:30.293333pt;}
.h2_c00274{height:34.901333pt;}
.h3_c00274{height:35.541333pt;}
.h4_c00274{height:38.453333pt;}
.h6_c00274{height:38.880000pt;}
.h1_c00274{height:1009.333333pt;}
.h0_c00274{height:1009.338800pt;}
.w0_c00274{width:794.622400pt;}
.w1_c00274{width:794.666667pt;}
.x0_c00274{left:0.000000pt;}
.x4_c00274{left:114.439733pt;}
.x5_c00274{left:125.778400pt;}
.x6_c00274{left:129.453067pt;}
.x2_c00274{left:167.166133pt;}
.x3_c00274{left:169.345200pt;}
.x7_c00274{left:286.045467pt;}
.x1_c00274{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00275;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00275{font-family:ff6_c00275;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00275;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00275{font-family:ff7_c00275;line-height:0.710000;font-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_c00275{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:-0.720000px;}
.ls2_c00275{letter-spacing:-0.630000px;}
.ls3_c00275{letter-spacing:-0.378000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00275{word-spacing:-8.694000px;}
.ws2_c00275{word-spacing:-6.487200px;}
.ws3_c00275{word-spacing:0.000000px;}
.ws5_c00275{word-spacing:0.378000px;}
.ws4_c00275{word-spacing:7.056000px;}
.ws0_c00275{word-spacing:1585.435200px;}
._3_c00275{margin-left:-7.042800px;}
._0_c00275{margin-left:-2.112000px;}
._1_c00275{margin-left:-1.104000px;}
._2_c00275{width:2.016000px;}
._6_c00275{width:7.776000px;}
._4_c00275{width:55.674000px;}
._5_c00275{width:59.136000px;}
.fc0_c00275{color:rgb(35,31,32);}
.fs5_c00275{font-size:30.600000px;}
.fs6_c00275{font-size:36.000000px;}
.fs3_c00275{font-size:42.000000px;}
.fs0_c00275{font-size:48.000000px;}
.fs4_c00275{font-size:54.000000px;}
.fs2_c00275{font-size:57.000000px;}
.fs1_c00275{font-size:60.000000px;}
.y0_c00275{bottom:0.000000px;}
.y18_c00275{bottom:361.685250px;}
.y17_c00275{bottom:375.185250px;}
.y16_c00275{bottom:388.685250px;}
.y15_c00275{bottom:415.189200px;}
.y14_c00275{bottom:428.689200px;}
.y13_c00275{bottom:455.193150px;}
.y12_c00275{bottom:468.693150px;}
.y11_c00275{bottom:482.193150px;}
.y10_c00275{bottom:504.445050px;}
.yf_c00275{bottom:522.445050px;}
.ye_c00275{bottom:548.949000px;}
.y19_c00275{bottom:551.490600px;}
.yd_c00275{bottom:836.478600px;}
.yc_c00275{bottom:849.978600px;}
.yb_c00275{bottom:863.478600px;}
.ya_c00275{bottom:889.982550px;}
.y9_c00275{bottom:903.482550px;}
.y8_c00275{bottom:916.982550px;}
.y7_c00275{bottom:943.486500px;}
.y6_c00275{bottom:956.986500px;}
.y5_c00275{bottom:970.486500px;}
.y4_c00275{bottom:992.738400px;}
.y3_c00275{bottom:1010.738400px;}
.y2_c00275{bottom:1037.242500px;}
.y1_c00275{bottom:1093.600950px;}
.h7_c00275{height:25.200000px;}
.h6_c00275{height:30.282000px;}
.h4_c00275{height:34.080000px;}
.h2_c00275{height:39.264000px;}
.h3_c00275{height:43.260000px;}
.h5_c00275{height:43.740000px;}
.h1_c00275{height:1135.500000px;}
.h0_c00275{height:1135.506150px;}
.w0_c00275{width:893.950200px;}
.w1_c00275{width:894.000000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:77.603100px;}
.x4_c00275{left:424.138500px;}
.x2_c00275{left:599.532150px;}
.x3_c00275{left:612.288150px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:-0.640000pt;}
.ls2_c00275{letter-spacing:-0.560000pt;}
.ls3_c00275{letter-spacing:-0.336000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws1_c00275{word-spacing:-7.728000pt;}
.ws2_c00275{word-spacing:-5.766400pt;}
.ws3_c00275{word-spacing:0.000000pt;}
.ws5_c00275{word-spacing:0.336000pt;}
.ws4_c00275{word-spacing:6.272000pt;}
.ws0_c00275{word-spacing:1409.275733pt;}
._3_c00275{margin-left:-6.260267pt;}
._0_c00275{margin-left:-1.877333pt;}
._1_c00275{margin-left:-0.981333pt;}
._2_c00275{width:1.792000pt;}
._6_c00275{width:6.912000pt;}
._4_c00275{width:49.488000pt;}
._5_c00275{width:52.565333pt;}
.fs5_c00275{font-size:27.200000pt;}
.fs6_c00275{font-size:32.000000pt;}
.fs3_c00275{font-size:37.333333pt;}
.fs0_c00275{font-size:42.666667pt;}
.fs4_c00275{font-size:48.000000pt;}
.fs2_c00275{font-size:50.666667pt;}
.fs1_c00275{font-size:53.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y18_c00275{bottom:321.498000pt;}
.y17_c00275{bottom:333.498000pt;}
.y16_c00275{bottom:345.498000pt;}
.y15_c00275{bottom:369.057067pt;}
.y14_c00275{bottom:381.057067pt;}
.y13_c00275{bottom:404.616133pt;}
.y12_c00275{bottom:416.616133pt;}
.y11_c00275{bottom:428.616133pt;}
.y10_c00275{bottom:448.395600pt;}
.yf_c00275{bottom:464.395600pt;}
.ye_c00275{bottom:487.954667pt;}
.y19_c00275{bottom:490.213867pt;}
.yd_c00275{bottom:743.536533pt;}
.yc_c00275{bottom:755.536533pt;}
.yb_c00275{bottom:767.536533pt;}
.ya_c00275{bottom:791.095600pt;}
.y9_c00275{bottom:803.095600pt;}
.y8_c00275{bottom:815.095600pt;}
.y7_c00275{bottom:838.654667pt;}
.y6_c00275{bottom:850.654667pt;}
.y5_c00275{bottom:862.654667pt;}
.y4_c00275{bottom:882.434133pt;}
.y3_c00275{bottom:898.434133pt;}
.y2_c00275{bottom:921.993333pt;}
.y1_c00275{bottom:972.089733pt;}
.h7_c00275{height:22.400000pt;}
.h6_c00275{height:26.917333pt;}
.h4_c00275{height:30.293333pt;}
.h2_c00275{height:34.901333pt;}
.h3_c00275{height:38.453333pt;}
.h5_c00275{height:38.880000pt;}
.h1_c00275{height:1009.333333pt;}
.h0_c00275{height:1009.338800pt;}
.w0_c00275{width:794.622400pt;}
.w1_c00275{width:794.666667pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:68.980533pt;}
.x4_c00275{left:377.012000pt;}
.x2_c00275{left:532.917467pt;}
.x3_c00275{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00276;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00276;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00276{font-family:ff7_c00276;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00276;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00276{font-family:ff8_c00276;line-height:0.710000;font-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_c00276{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls3_c00276{letter-spacing:-0.720000px;}
.ls4_c00276{letter-spacing:-0.630000px;}
.ls2_c00276{letter-spacing:-0.216000px;}
.ls1_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:0.480000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00276{word-spacing:-8.694000px;}
.ws2_c00276{word-spacing:-6.487200px;}
.ws0_c00276{word-spacing:-0.048000px;}
.ws3_c00276{word-spacing:0.000000px;}
.ws5_c00276{word-spacing:0.216000px;}
.ws4_c00276{word-spacing:7.056000px;}
._0_c00276{margin-left:-2755.276200px;}
._4_c00276{margin-left:-6.946800px;}
._1_c00276{margin-left:-2.256000px;}
._3_c00276{margin-left:-1.200000px;}
._2_c00276{width:1.008000px;}
._7_c00276{width:7.776000px;}
._5_c00276{width:55.674000px;}
._6_c00276{width:59.136000px;}
.fc0_c00276{color:rgb(35,31,32);}
.fs5_c00276{font-size:30.600000px;}
.fs6_c00276{font-size:36.000000px;}
.fs3_c00276{font-size:42.000000px;}
.fs0_c00276{font-size:48.000000px;}
.fs4_c00276{font-size:54.000000px;}
.fs2_c00276{font-size:57.000000px;}
.fs1_c00276{font-size:60.000000px;}
.y0_c00276{bottom:0.000000px;}
.y18_c00276{bottom:347.972700px;}
.y17_c00276{bottom:361.472700px;}
.y16_c00276{bottom:374.972550px;}
.y15_c00276{bottom:401.476500px;}
.y14_c00276{bottom:414.976500px;}
.y13_c00276{bottom:428.476500px;}
.y12_c00276{bottom:454.980450px;}
.y11_c00276{bottom:468.480450px;}
.y10_c00276{bottom:481.980450px;}
.yf_c00276{bottom:504.232500px;}
.ye_c00276{bottom:522.232500px;}
.yd_c00276{bottom:548.736450px;}
.y19_c00276{bottom:807.168150px;}
.yc_c00276{bottom:850.661550px;}
.yb_c00276{bottom:864.161550px;}
.ya_c00276{bottom:890.665500px;}
.y9_c00276{bottom:904.165500px;}
.y8_c00276{bottom:917.665500px;}
.y7_c00276{bottom:944.169450px;}
.y6_c00276{bottom:957.669450px;}
.y5_c00276{bottom:971.169450px;}
.y4_c00276{bottom:993.421350px;}
.y3_c00276{bottom:1011.421350px;}
.y2_c00276{bottom:1037.925300px;}
.y1_c00276{bottom:1093.600950px;}
.h8_c00276{height:25.200000px;}
.h7_c00276{height:30.282000px;}
.h5_c00276{height:34.080000px;}
.h2_c00276{height:39.264000px;}
.h3_c00276{height:39.984000px;}
.h4_c00276{height:43.260000px;}
.h6_c00276{height:43.740000px;}
.h1_c00276{height:1135.500000px;}
.h0_c00276{height:1135.506150px;}
.w0_c00276{width:893.950200px;}
.w1_c00276{width:894.000000px;}
.x0_c00276{left:0.000000px;}
.x4_c00276{left:128.626800px;}
.x5_c00276{left:141.382650px;}
.x2_c00276{left:188.061900px;}
.x3_c00276{left:190.513350px;}
.x6_c00276{left:321.919200px;}
.x1_c00276{left:800.165850px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls3_c00276{letter-spacing:-0.640000pt;}
.ls4_c00276{letter-spacing:-0.560000pt;}
.ls2_c00276{letter-spacing:-0.192000pt;}
.ls1_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:0.426667pt;}
.ws1_c00276{word-spacing:-7.728000pt;}
.ws2_c00276{word-spacing:-5.766400pt;}
.ws0_c00276{word-spacing:-0.042667pt;}
.ws3_c00276{word-spacing:0.000000pt;}
.ws5_c00276{word-spacing:0.192000pt;}
.ws4_c00276{word-spacing:6.272000pt;}
._0_c00276{margin-left:-2449.134400pt;}
._4_c00276{margin-left:-6.174933pt;}
._1_c00276{margin-left:-2.005333pt;}
._3_c00276{margin-left:-1.066667pt;}
._2_c00276{width:0.896000pt;}
._7_c00276{width:6.912000pt;}
._5_c00276{width:49.488000pt;}
._6_c00276{width:52.565333pt;}
.fs5_c00276{font-size:27.200000pt;}
.fs6_c00276{font-size:32.000000pt;}
.fs3_c00276{font-size:37.333333pt;}
.fs0_c00276{font-size:42.666667pt;}
.fs4_c00276{font-size:48.000000pt;}
.fs2_c00276{font-size:50.666667pt;}
.fs1_c00276{font-size:53.333333pt;}
.y0_c00276{bottom:0.000000pt;}
.y18_c00276{bottom:309.309067pt;}
.y17_c00276{bottom:321.309067pt;}
.y16_c00276{bottom:333.308933pt;}
.y15_c00276{bottom:356.868000pt;}
.y14_c00276{bottom:368.868000pt;}
.y13_c00276{bottom:380.868000pt;}
.y12_c00276{bottom:404.427067pt;}
.y11_c00276{bottom:416.427067pt;}
.y10_c00276{bottom:428.427067pt;}
.yf_c00276{bottom:448.206667pt;}
.ye_c00276{bottom:464.206667pt;}
.yd_c00276{bottom:487.765733pt;}
.y19_c00276{bottom:717.482800pt;}
.yc_c00276{bottom:756.143600pt;}
.yb_c00276{bottom:768.143600pt;}
.ya_c00276{bottom:791.702667pt;}
.y9_c00276{bottom:803.702667pt;}
.y8_c00276{bottom:815.702667pt;}
.y7_c00276{bottom:839.261733pt;}
.y6_c00276{bottom:851.261733pt;}
.y5_c00276{bottom:863.261733pt;}
.y4_c00276{bottom:883.041200pt;}
.y3_c00276{bottom:899.041200pt;}
.y2_c00276{bottom:922.600267pt;}
.y1_c00276{bottom:972.089733pt;}
.h8_c00276{height:22.400000pt;}
.h7_c00276{height:26.917333pt;}
.h5_c00276{height:30.293333pt;}
.h2_c00276{height:34.901333pt;}
.h3_c00276{height:35.541333pt;}
.h4_c00276{height:38.453333pt;}
.h6_c00276{height:38.880000pt;}
.h1_c00276{height:1009.333333pt;}
.h0_c00276{height:1009.338800pt;}
.w0_c00276{width:794.622400pt;}
.w1_c00276{width:794.666667pt;}
.x0_c00276{left:0.000000pt;}
.x4_c00276{left:114.334933pt;}
.x5_c00276{left:125.673467pt;}
.x2_c00276{left:167.166133pt;}
.x3_c00276{left:169.345200pt;}
.x6_c00276{left:286.150400pt;}
.x1_c00276{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00277;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00277;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00277{font-family:ff7_c00277;line-height:0.710000;font-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_c00277{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls1_c00277{letter-spacing:-0.720000px;}
.ls2_c00277{letter-spacing:-0.630000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00277{word-spacing:-8.694000px;}
.ws2_c00277{word-spacing:-6.487200px;}
.ws3_c00277{word-spacing:0.000000px;}
.ws4_c00277{word-spacing:7.056000px;}
.ws0_c00277{word-spacing:1585.435200px;}
._3_c00277{margin-left:-7.042800px;}
._0_c00277{margin-left:-2.112000px;}
._1_c00277{margin-left:-1.104000px;}
._2_c00277{width:2.016000px;}
._6_c00277{width:7.776000px;}
._4_c00277{width:55.674000px;}
._5_c00277{width:59.136000px;}
.fc0_c00277{color:rgb(35,31,32);}
.fs5_c00277{font-size:30.600000px;}
.fs6_c00277{font-size:36.000000px;}
.fs3_c00277{font-size:42.000000px;}
.fs0_c00277{font-size:48.000000px;}
.fs4_c00277{font-size:54.000000px;}
.fs2_c00277{font-size:57.000000px;}
.fs1_c00277{font-size:60.000000px;}
.y0_c00277{bottom:0.000000px;}
.y18_c00277{bottom:361.614300px;}
.y17_c00277{bottom:375.114300px;}
.y16_c00277{bottom:388.614300px;}
.y15_c00277{bottom:415.118100px;}
.y14_c00277{bottom:428.618100px;}
.y13_c00277{bottom:455.122050px;}
.y12_c00277{bottom:468.622050px;}
.y11_c00277{bottom:482.122050px;}
.y10_c00277{bottom:504.374100px;}
.yf_c00277{bottom:522.374100px;}
.ye_c00277{bottom:548.878050px;}
.y19_c00277{bottom:551.278050px;}
.yd_c00277{bottom:836.196150px;}
.yc_c00277{bottom:849.696150px;}
.yb_c00277{bottom:863.196150px;}
.ya_c00277{bottom:889.700100px;}
.y9_c00277{bottom:903.200100px;}
.y8_c00277{bottom:916.700100px;}
.y7_c00277{bottom:943.204200px;}
.y6_c00277{bottom:956.704200px;}
.y5_c00277{bottom:970.204200px;}
.y4_c00277{bottom:992.456100px;}
.y3_c00277{bottom:1010.456100px;}
.y2_c00277{bottom:1036.960050px;}
.y1_c00277{bottom:1093.600950px;}
.h7_c00277{height:25.200000px;}
.h6_c00277{height:30.282000px;}
.h4_c00277{height:34.080000px;}
.h2_c00277{height:39.264000px;}
.h3_c00277{height:43.260000px;}
.h5_c00277{height:43.740000px;}
.h1_c00277{height:1135.500000px;}
.h0_c00277{height:1135.506150px;}
.w0_c00277{width:893.950200px;}
.w1_c00277{width:894.000000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:77.603100px;}
.x4_c00277{left:424.138500px;}
.x2_c00277{left:599.532150px;}
.x3_c00277{left:612.288150px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls1_c00277{letter-spacing:-0.640000pt;}
.ls2_c00277{letter-spacing:-0.560000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws1_c00277{word-spacing:-7.728000pt;}
.ws2_c00277{word-spacing:-5.766400pt;}
.ws3_c00277{word-spacing:0.000000pt;}
.ws4_c00277{word-spacing:6.272000pt;}
.ws0_c00277{word-spacing:1409.275733pt;}
._3_c00277{margin-left:-6.260267pt;}
._0_c00277{margin-left:-1.877333pt;}
._1_c00277{margin-left:-0.981333pt;}
._2_c00277{width:1.792000pt;}
._6_c00277{width:6.912000pt;}
._4_c00277{width:49.488000pt;}
._5_c00277{width:52.565333pt;}
.fs5_c00277{font-size:27.200000pt;}
.fs6_c00277{font-size:32.000000pt;}
.fs3_c00277{font-size:37.333333pt;}
.fs0_c00277{font-size:42.666667pt;}
.fs4_c00277{font-size:48.000000pt;}
.fs2_c00277{font-size:50.666667pt;}
.fs1_c00277{font-size:53.333333pt;}
.y0_c00277{bottom:0.000000pt;}
.y18_c00277{bottom:321.434933pt;}
.y17_c00277{bottom:333.434933pt;}
.y16_c00277{bottom:345.434933pt;}
.y15_c00277{bottom:368.993867pt;}
.y14_c00277{bottom:380.993867pt;}
.y13_c00277{bottom:404.552933pt;}
.y12_c00277{bottom:416.552933pt;}
.y11_c00277{bottom:428.552933pt;}
.y10_c00277{bottom:448.332533pt;}
.yf_c00277{bottom:464.332533pt;}
.ye_c00277{bottom:487.891600pt;}
.y19_c00277{bottom:490.024933pt;}
.yd_c00277{bottom:743.285467pt;}
.yc_c00277{bottom:755.285467pt;}
.yb_c00277{bottom:767.285467pt;}
.ya_c00277{bottom:790.844533pt;}
.y9_c00277{bottom:802.844533pt;}
.y8_c00277{bottom:814.844533pt;}
.y7_c00277{bottom:838.403733pt;}
.y6_c00277{bottom:850.403733pt;}
.y5_c00277{bottom:862.403733pt;}
.y4_c00277{bottom:882.183200pt;}
.y3_c00277{bottom:898.183200pt;}
.y2_c00277{bottom:921.742267pt;}
.y1_c00277{bottom:972.089733pt;}
.h7_c00277{height:22.400000pt;}
.h6_c00277{height:26.917333pt;}
.h4_c00277{height:30.293333pt;}
.h2_c00277{height:34.901333pt;}
.h3_c00277{height:38.453333pt;}
.h5_c00277{height:38.880000pt;}
.h1_c00277{height:1009.333333pt;}
.h0_c00277{height:1009.338800pt;}
.w0_c00277{width:794.622400pt;}
.w1_c00277{width:794.666667pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:68.980533pt;}
.x4_c00277{left:377.012000pt;}
.x2_c00277{left:532.917467pt;}
.x3_c00277{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00278;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00278;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00278{font-family:ff8_c00278;line-height:0.710000;font-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_c00278{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls3_c00278{letter-spacing:-0.720000px;}
.ls4_c00278{letter-spacing:-0.630000px;}
.ls2_c00278{letter-spacing:-0.540000px;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00278{word-spacing:-8.694000px;}
.ws2_c00278{word-spacing:-6.487200px;}
.ws0_c00278{word-spacing:-0.048000px;}
.ws3_c00278{word-spacing:0.000000px;}
.ws5_c00278{word-spacing:0.540000px;}
.ws4_c00278{word-spacing:7.056000px;}
._0_c00278{margin-left:-2755.276200px;}
._4_c00278{margin-left:-6.946800px;}
._8_c00278{margin-left:-5.238000px;}
._1_c00278{margin-left:-2.256000px;}
._3_c00278{margin-left:-1.200000px;}
._2_c00278{width:1.008000px;}
._7_c00278{width:7.776000px;}
._5_c00278{width:55.674000px;}
._6_c00278{width:59.136000px;}
.fc0_c00278{color:rgb(35,31,32);}
.fs5_c00278{font-size:30.600000px;}
.fs6_c00278{font-size:36.000000px;}
.fs3_c00278{font-size:42.000000px;}
.fs0_c00278{font-size:48.000000px;}
.fs4_c00278{font-size:54.000000px;}
.fs2_c00278{font-size:57.000000px;}
.fs1_c00278{font-size:60.000000px;}
.y0_c00278{bottom:0.000000px;}
.y18_c00278{bottom:348.185250px;}
.y17_c00278{bottom:361.685250px;}
.y16_c00278{bottom:375.185250px;}
.y15_c00278{bottom:401.689200px;}
.y14_c00278{bottom:415.189200px;}
.y13_c00278{bottom:428.689200px;}
.y12_c00278{bottom:455.193150px;}
.y11_c00278{bottom:468.693150px;}
.y10_c00278{bottom:482.193150px;}
.yf_c00278{bottom:504.445050px;}
.ye_c00278{bottom:522.445050px;}
.yd_c00278{bottom:548.949000px;}
.yc_c00278{bottom:854.913450px;}
.yb_c00278{bottom:868.413450px;}
.ya_c00278{bottom:881.913450px;}
.y9_c00278{bottom:904.165500px;}
.y8_c00278{bottom:917.665500px;}
.y7_c00278{bottom:944.169450px;}
.y6_c00278{bottom:957.669450px;}
.y5_c00278{bottom:971.169450px;}
.y4_c00278{bottom:993.421350px;}
.y3_c00278{bottom:1011.421350px;}
.y2_c00278{bottom:1037.925300px;}
.y19_c00278{bottom:1040.299350px;}
.y1_c00278{bottom:1093.600950px;}
.h8_c00278{height:25.200000px;}
.h7_c00278{height:30.282000px;}
.h5_c00278{height:34.080000px;}
.h2_c00278{height:39.264000px;}
.h3_c00278{height:39.984000px;}
.h4_c00278{height:43.260000px;}
.h6_c00278{height:43.740000px;}
.h1_c00278{height:1135.500000px;}
.h0_c00278{height:1135.506150px;}
.w0_c00278{width:893.950200px;}
.w1_c00278{width:894.000000px;}
.x0_c00278{left:0.000000px;}
.x4_c00278{left:128.626800px;}
.x5_c00278{left:141.382650px;}
.x2_c00278{left:188.061900px;}
.x3_c00278{left:190.513350px;}
.x6_c00278{left:321.919200px;}
.x1_c00278{left:800.165850px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls3_c00278{letter-spacing:-0.640000pt;}
.ls4_c00278{letter-spacing:-0.560000pt;}
.ls2_c00278{letter-spacing:-0.480000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:0.426667pt;}
.ws1_c00278{word-spacing:-7.728000pt;}
.ws2_c00278{word-spacing:-5.766400pt;}
.ws0_c00278{word-spacing:-0.042667pt;}
.ws3_c00278{word-spacing:0.000000pt;}
.ws5_c00278{word-spacing:0.480000pt;}
.ws4_c00278{word-spacing:6.272000pt;}
._0_c00278{margin-left:-2449.134400pt;}
._4_c00278{margin-left:-6.174933pt;}
._8_c00278{margin-left:-4.656000pt;}
._1_c00278{margin-left:-2.005333pt;}
._3_c00278{margin-left:-1.066667pt;}
._2_c00278{width:0.896000pt;}
._7_c00278{width:6.912000pt;}
._5_c00278{width:49.488000pt;}
._6_c00278{width:52.565333pt;}
.fs5_c00278{font-size:27.200000pt;}
.fs6_c00278{font-size:32.000000pt;}
.fs3_c00278{font-size:37.333333pt;}
.fs0_c00278{font-size:42.666667pt;}
.fs4_c00278{font-size:48.000000pt;}
.fs2_c00278{font-size:50.666667pt;}
.fs1_c00278{font-size:53.333333pt;}
.y0_c00278{bottom:0.000000pt;}
.y18_c00278{bottom:309.498000pt;}
.y17_c00278{bottom:321.498000pt;}
.y16_c00278{bottom:333.498000pt;}
.y15_c00278{bottom:357.057067pt;}
.y14_c00278{bottom:369.057067pt;}
.y13_c00278{bottom:381.057067pt;}
.y12_c00278{bottom:404.616133pt;}
.y11_c00278{bottom:416.616133pt;}
.y10_c00278{bottom:428.616133pt;}
.yf_c00278{bottom:448.395600pt;}
.ye_c00278{bottom:464.395600pt;}
.yd_c00278{bottom:487.954667pt;}
.yc_c00278{bottom:759.923067pt;}
.yb_c00278{bottom:771.923067pt;}
.ya_c00278{bottom:783.923067pt;}
.y9_c00278{bottom:803.702667pt;}
.y8_c00278{bottom:815.702667pt;}
.y7_c00278{bottom:839.261733pt;}
.y6_c00278{bottom:851.261733pt;}
.y5_c00278{bottom:863.261733pt;}
.y4_c00278{bottom:883.041200pt;}
.y3_c00278{bottom:899.041200pt;}
.y2_c00278{bottom:922.600267pt;}
.y19_c00278{bottom:924.710533pt;}
.y1_c00278{bottom:972.089733pt;}
.h8_c00278{height:22.400000pt;}
.h7_c00278{height:26.917333pt;}
.h5_c00278{height:30.293333pt;}
.h2_c00278{height:34.901333pt;}
.h3_c00278{height:35.541333pt;}
.h4_c00278{height:38.453333pt;}
.h6_c00278{height:38.880000pt;}
.h1_c00278{height:1009.333333pt;}
.h0_c00278{height:1009.338800pt;}
.w0_c00278{width:794.622400pt;}
.w1_c00278{width:794.666667pt;}
.x0_c00278{left:0.000000pt;}
.x4_c00278{left:114.334933pt;}
.x5_c00278{left:125.673467pt;}
.x2_c00278{left:167.166133pt;}
.x3_c00278{left:169.345200pt;}
.x6_c00278{left:286.150400pt;}
.x1_c00278{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls1_c00279{letter-spacing:-1.026000px;}
.ls2_c00279{letter-spacing:-0.720000px;}
.ls3_c00279{letter-spacing:-0.630000px;}
.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;}
}
.ws2_c00279{word-spacing:-11.340000px;}
.ws1_c00279{word-spacing:-8.694000px;}
.ws3_c00279{word-spacing:0.000000px;}
.ws4_c00279{word-spacing:7.056000px;}
.ws0_c00279{word-spacing:1585.435200px;}
._3_c00279{margin-left:-7.042800px;}
._0_c00279{margin-left:-2.112000px;}
._1_c00279{margin-left:-1.104000px;}
._2_c00279{width:2.016000px;}
._6_c00279{width:7.776000px;}
._4_c00279{width:55.674000px;}
._5_c00279{width:59.136000px;}
.fc0_c00279{color:rgb(35,31,32);}
.fs3_c00279{font-size:42.000000px;}
.fs0_c00279{font-size:48.000000px;}
.fs4_c00279{font-size:54.000000px;}
.fs2_c00279{font-size:57.000000px;}
.fs1_c00279{font-size:60.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1a_c00279{bottom:347.743800px;}
.y19_c00279{bottom:361.243800px;}
.y18_c00279{bottom:374.743650px;}
.y17_c00279{bottom:401.247600px;}
.y16_c00279{bottom:414.747600px;}
.y15_c00279{bottom:428.247600px;}
.y14_c00279{bottom:454.751550px;}
.y13_c00279{bottom:468.251550px;}
.y12_c00279{bottom:481.751550px;}
.y11_c00279{bottom:504.003600px;}
.y10_c00279{bottom:522.003600px;}
.yf_c00279{bottom:548.507400px;}
.ye_c00279{bottom:825.539400px;}
.yd_c00279{bottom:839.039400px;}
.yc_c00279{bottom:852.539400px;}
.yb_c00279{bottom:879.043350px;}
.ya_c00279{bottom:892.543350px;}
.y9_c00279{bottom:906.043350px;}
.y8_c00279{bottom:932.547450px;}
.y7_c00279{bottom:946.047450px;}
.y6_c00279{bottom:959.547450px;}
.y5_c00279{bottom:981.799350px;}
.y4_c00279{bottom:999.799350px;}
.y3_c00279{bottom:1017.799350px;}
.y2_c00279{bottom:1044.303300px;}
.y1_c00279{bottom:1093.600950px;}
.h6_c00279{height:30.282000px;}
.h4_c00279{height:34.080000px;}
.h2_c00279{height:39.264000px;}
.h3_c00279{height:43.260000px;}
.h5_c00279{height:43.740000px;}
.h1_c00279{height:1135.500000px;}
.h0_c00279{height:1135.506150px;}
.w0_c00279{width:893.950200px;}
.w1_c00279{width:894.000000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:77.603100px;}
.x2_c00279{left:599.532150px;}
.x3_c00279{left:612.288150px;}
.x4_c00279{left:616.540050px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls1_c00279{letter-spacing:-0.912000pt;}
.ls2_c00279{letter-spacing:-0.640000pt;}
.ls3_c00279{letter-spacing:-0.560000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws2_c00279{word-spacing:-10.080000pt;}
.ws1_c00279{word-spacing:-7.728000pt;}
.ws3_c00279{word-spacing:0.000000pt;}
.ws4_c00279{word-spacing:6.272000pt;}
.ws0_c00279{word-spacing:1409.275733pt;}
._3_c00279{margin-left:-6.260267pt;}
._0_c00279{margin-left:-1.877333pt;}
._1_c00279{margin-left:-0.981333pt;}
._2_c00279{width:1.792000pt;}
._6_c00279{width:6.912000pt;}
._4_c00279{width:49.488000pt;}
._5_c00279{width:52.565333pt;}
.fs3_c00279{font-size:37.333333pt;}
.fs0_c00279{font-size:42.666667pt;}
.fs4_c00279{font-size:48.000000pt;}
.fs2_c00279{font-size:50.666667pt;}
.fs1_c00279{font-size:53.333333pt;}
.y0_c00279{bottom:0.000000pt;}
.y1a_c00279{bottom:309.105600pt;}
.y19_c00279{bottom:321.105600pt;}
.y18_c00279{bottom:333.105467pt;}
.y17_c00279{bottom:356.664533pt;}
.y16_c00279{bottom:368.664533pt;}
.y15_c00279{bottom:380.664533pt;}
.y14_c00279{bottom:404.223600pt;}
.y13_c00279{bottom:416.223600pt;}
.y12_c00279{bottom:428.223600pt;}
.y11_c00279{bottom:448.003200pt;}
.y10_c00279{bottom:464.003200pt;}
.yf_c00279{bottom:487.562133pt;}
.ye_c00279{bottom:733.812800pt;}
.yd_c00279{bottom:745.812800pt;}
.yc_c00279{bottom:757.812800pt;}
.yb_c00279{bottom:781.371867pt;}
.ya_c00279{bottom:793.371867pt;}
.y9_c00279{bottom:805.371867pt;}
.y8_c00279{bottom:828.931067pt;}
.y7_c00279{bottom:840.931067pt;}
.y6_c00279{bottom:852.931067pt;}
.y5_c00279{bottom:872.710533pt;}
.y4_c00279{bottom:888.710533pt;}
.y3_c00279{bottom:904.710533pt;}
.y2_c00279{bottom:928.269600pt;}
.y1_c00279{bottom:972.089733pt;}
.h6_c00279{height:26.917333pt;}
.h4_c00279{height:30.293333pt;}
.h2_c00279{height:34.901333pt;}
.h3_c00279{height:38.453333pt;}
.h5_c00279{height:38.880000pt;}
.h1_c00279{height:1009.333333pt;}
.h0_c00279{height:1009.338800pt;}
.w0_c00279{width:794.622400pt;}
.w1_c00279{width:794.666667pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:68.980533pt;}
.x2_c00279{left:532.917467pt;}
.x3_c00279{left:544.256133pt;}
.x4_c00279{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:0.908000;font-style:normal;font-weight: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_c00280;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00280{font-family:ff7_c00280;line-height:1.067000;font-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_c00280{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls3_c00280{letter-spacing:-0.720000px;}
.ls4_c00280{letter-spacing:-0.630000px;}
.ls5_c00280{letter-spacing:-0.540000px;}
.ls2_c00280{letter-spacing:-0.378000px;}
.ls1_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00280{word-spacing:-0.048000px;}
.ws2_c00280{word-spacing:0.000000px;}
.ws4_c00280{word-spacing:0.378000px;}
.ws3_c00280{word-spacing:7.056000px;}
.ws5_c00280{word-spacing:56.214000px;}
._0_c00280{margin-left:-2755.276200px;}
._4_c00280{margin-left:-6.947400px;}
._1_c00280{margin-left:-2.256000px;}
._3_c00280{margin-left:-1.200000px;}
._2_c00280{width:1.008000px;}
._7_c00280{width:7.776000px;}
._5_c00280{width:55.674000px;}
._6_c00280{width:59.136000px;}
.fc0_c00280{color:rgb(35,31,32);}
.fs3_c00280{font-size:42.000000px;}
.fs0_c00280{font-size:48.000000px;}
.fs4_c00280{font-size:54.000000px;}
.fs2_c00280{font-size:57.000000px;}
.fs1_c00280{font-size:60.000000px;}
.y0_c00280{bottom:0.000000px;}
.y19_c00280{bottom:348.823050px;}
.y18_c00280{bottom:362.323050px;}
.y17_c00280{bottom:375.823050px;}
.y16_c00280{bottom:402.327000px;}
.y15_c00280{bottom:415.827000px;}
.y14_c00280{bottom:429.327000px;}
.y13_c00280{bottom:455.830950px;}
.y12_c00280{bottom:469.330950px;}
.y11_c00280{bottom:482.830950px;}
.y10_c00280{bottom:505.082850px;}
.yf_c00280{bottom:523.082850px;}
.ye_c00280{bottom:549.586800px;}
.yd_c00280{bottom:836.925900px;}
.yc_c00280{bottom:850.425900px;}
.yb_c00280{bottom:863.925900px;}
.ya_c00280{bottom:890.429850px;}
.y9_c00280{bottom:903.929850px;}
.y8_c00280{bottom:917.429850px;}
.y7_c00280{bottom:943.933800px;}
.y6_c00280{bottom:957.433800px;}
.y5_c00280{bottom:970.933800px;}
.y4_c00280{bottom:993.185700px;}
.y3_c00280{bottom:1011.185700px;}
.y2_c00280{bottom:1037.689650px;}
.y1_c00280{bottom:1093.600950px;}
.h7_c00280{height:30.282000px;}
.h5_c00280{height:34.080000px;}
.h2_c00280{height:39.264000px;}
.h3_c00280{height:39.984000px;}
.h4_c00280{height:43.260000px;}
.h6_c00280{height:43.740000px;}
.h1_c00280{height:1135.500000px;}
.h0_c00280{height:1135.506150px;}
.w0_c00280{width:893.950200px;}
.w1_c00280{width:894.000000px;}
.x0_c00280{left:0.000000px;}
.x4_c00280{left:128.744700px;}
.x5_c00280{left:141.500700px;}
.x2_c00280{left:188.061900px;}
.x3_c00280{left:190.513350px;}
.x1_c00280{left:800.165850px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls3_c00280{letter-spacing:-0.640000pt;}
.ls4_c00280{letter-spacing:-0.560000pt;}
.ls5_c00280{letter-spacing:-0.480000pt;}
.ls2_c00280{letter-spacing:-0.336000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.426667pt;}
.ws1_c00280{word-spacing:-7.728000pt;}
.ws0_c00280{word-spacing:-0.042667pt;}
.ws2_c00280{word-spacing:0.000000pt;}
.ws4_c00280{word-spacing:0.336000pt;}
.ws3_c00280{word-spacing:6.272000pt;}
.ws5_c00280{word-spacing:49.968000pt;}
._0_c00280{margin-left:-2449.134400pt;}
._4_c00280{margin-left:-6.175467pt;}
._1_c00280{margin-left:-2.005333pt;}
._3_c00280{margin-left:-1.066667pt;}
._2_c00280{width:0.896000pt;}
._7_c00280{width:6.912000pt;}
._5_c00280{width:49.488000pt;}
._6_c00280{width:52.565333pt;}
.fs3_c00280{font-size:37.333333pt;}
.fs0_c00280{font-size:42.666667pt;}
.fs4_c00280{font-size:48.000000pt;}
.fs2_c00280{font-size:50.666667pt;}
.fs1_c00280{font-size:53.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y19_c00280{bottom:310.064933pt;}
.y18_c00280{bottom:322.064933pt;}
.y17_c00280{bottom:334.064933pt;}
.y16_c00280{bottom:357.624000pt;}
.y15_c00280{bottom:369.624000pt;}
.y14_c00280{bottom:381.624000pt;}
.y13_c00280{bottom:405.183067pt;}
.y12_c00280{bottom:417.183067pt;}
.y11_c00280{bottom:429.183067pt;}
.y10_c00280{bottom:448.962533pt;}
.yf_c00280{bottom:464.962533pt;}
.ye_c00280{bottom:488.521600pt;}
.yd_c00280{bottom:743.934133pt;}
.yc_c00280{bottom:755.934133pt;}
.yb_c00280{bottom:767.934133pt;}
.ya_c00280{bottom:791.493200pt;}
.y9_c00280{bottom:803.493200pt;}
.y8_c00280{bottom:815.493200pt;}
.y7_c00280{bottom:839.052267pt;}
.y6_c00280{bottom:851.052267pt;}
.y5_c00280{bottom:863.052267pt;}
.y4_c00280{bottom:882.831733pt;}
.y3_c00280{bottom:898.831733pt;}
.y2_c00280{bottom:922.390800pt;}
.y1_c00280{bottom:972.089733pt;}
.h7_c00280{height:26.917333pt;}
.h5_c00280{height:30.293333pt;}
.h2_c00280{height:34.901333pt;}
.h3_c00280{height:35.541333pt;}
.h4_c00280{height:38.453333pt;}
.h6_c00280{height:38.880000pt;}
.h1_c00280{height:1009.333333pt;}
.h0_c00280{height:1009.338800pt;}
.w0_c00280{width:794.622400pt;}
.w1_c00280{width:794.666667pt;}
.x0_c00280{left:0.000000pt;}
.x4_c00280{left:114.439733pt;}
.x5_c00280{left:125.778400pt;}
.x2_c00280{left:167.166133pt;}
.x3_c00280{left:169.345200pt;}
.x1_c00280{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00281;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls2_c00281{letter-spacing:-0.720000px;}
.ls3_c00281{letter-spacing:-0.630000px;}
.ls1_c00281{letter-spacing:-0.378000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00281{word-spacing:-8.694000px;}
.ws2_c00281{word-spacing:0.000000px;}
.ws4_c00281{word-spacing:0.378000px;}
.ws3_c00281{word-spacing:7.056000px;}
.ws0_c00281{word-spacing:1585.435200px;}
._3_c00281{margin-left:-7.042800px;}
._5_c00281{margin-left:-4.158000px;}
._0_c00281{margin-left:-2.112000px;}
._1_c00281{margin-left:-1.104000px;}
._2_c00281{width:2.016000px;}
._7_c00281{width:7.776000px;}
._4_c00281{width:55.674000px;}
._6_c00281{width:59.136000px;}
.fc0_c00281{color:rgb(35,31,32);}
.fs3_c00281{font-size:42.000000px;}
.fs0_c00281{font-size:48.000000px;}
.fs4_c00281{font-size:54.000000px;}
.fs2_c00281{font-size:57.000000px;}
.fs1_c00281{font-size:60.000000px;}
.y0_c00281{bottom:0.000000px;}
.y19_c00281{bottom:347.760150px;}
.y18_c00281{bottom:361.260000px;}
.y17_c00281{bottom:374.760000px;}
.y16_c00281{bottom:401.263950px;}
.y15_c00281{bottom:414.763950px;}
.y14_c00281{bottom:428.263950px;}
.y13_c00281{bottom:454.767900px;}
.y12_c00281{bottom:468.267900px;}
.y11_c00281{bottom:481.767900px;}
.y10_c00281{bottom:504.019800px;}
.yf_c00281{bottom:522.019800px;}
.ye_c00281{bottom:548.523750px;}
.yd_c00281{bottom:837.206400px;}
.yc_c00281{bottom:850.706400px;}
.yb_c00281{bottom:864.206400px;}
.ya_c00281{bottom:890.710350px;}
.y9_c00281{bottom:904.210350px;}
.y8_c00281{bottom:917.710350px;}
.y7_c00281{bottom:944.214300px;}
.y6_c00281{bottom:957.714300px;}
.y5_c00281{bottom:971.214300px;}
.y4_c00281{bottom:993.466350px;}
.y3_c00281{bottom:1011.466350px;}
.y2_c00281{bottom:1037.970300px;}
.y1_c00281{bottom:1093.600950px;}
.h6_c00281{height:30.282000px;}
.h4_c00281{height:34.080000px;}
.h2_c00281{height:39.264000px;}
.h3_c00281{height:43.260000px;}
.h5_c00281{height:43.740000px;}
.h1_c00281{height:1135.500000px;}
.h0_c00281{height:1135.506150px;}
.w0_c00281{width:893.950200px;}
.w1_c00281{width:894.000000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:77.603100px;}
.x2_c00281{left:599.532150px;}
.x3_c00281{left:612.288150px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls2_c00281{letter-spacing:-0.640000pt;}
.ls3_c00281{letter-spacing:-0.560000pt;}
.ls1_c00281{letter-spacing:-0.336000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws1_c00281{word-spacing:-7.728000pt;}
.ws2_c00281{word-spacing:0.000000pt;}
.ws4_c00281{word-spacing:0.336000pt;}
.ws3_c00281{word-spacing:6.272000pt;}
.ws0_c00281{word-spacing:1409.275733pt;}
._3_c00281{margin-left:-6.260267pt;}
._5_c00281{margin-left:-3.696000pt;}
._0_c00281{margin-left:-1.877333pt;}
._1_c00281{margin-left:-0.981333pt;}
._2_c00281{width:1.792000pt;}
._7_c00281{width:6.912000pt;}
._4_c00281{width:49.488000pt;}
._6_c00281{width:52.565333pt;}
.fs3_c00281{font-size:37.333333pt;}
.fs0_c00281{font-size:42.666667pt;}
.fs4_c00281{font-size:48.000000pt;}
.fs2_c00281{font-size:50.666667pt;}
.fs1_c00281{font-size:53.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y19_c00281{bottom:309.120133pt;}
.y18_c00281{bottom:321.120000pt;}
.y17_c00281{bottom:333.120000pt;}
.y16_c00281{bottom:356.679067pt;}
.y15_c00281{bottom:368.679067pt;}
.y14_c00281{bottom:380.679067pt;}
.y13_c00281{bottom:404.238133pt;}
.y12_c00281{bottom:416.238133pt;}
.y11_c00281{bottom:428.238133pt;}
.y10_c00281{bottom:448.017600pt;}
.yf_c00281{bottom:464.017600pt;}
.ye_c00281{bottom:487.576667pt;}
.yd_c00281{bottom:744.183467pt;}
.yc_c00281{bottom:756.183467pt;}
.yb_c00281{bottom:768.183467pt;}
.ya_c00281{bottom:791.742533pt;}
.y9_c00281{bottom:803.742533pt;}
.y8_c00281{bottom:815.742533pt;}
.y7_c00281{bottom:839.301600pt;}
.y6_c00281{bottom:851.301600pt;}
.y5_c00281{bottom:863.301600pt;}
.y4_c00281{bottom:883.081200pt;}
.y3_c00281{bottom:899.081200pt;}
.y2_c00281{bottom:922.640267pt;}
.y1_c00281{bottom:972.089733pt;}
.h6_c00281{height:26.917333pt;}
.h4_c00281{height:30.293333pt;}
.h2_c00281{height:34.901333pt;}
.h3_c00281{height:38.453333pt;}
.h5_c00281{height:38.880000pt;}
.h1_c00281{height:1009.333333pt;}
.h0_c00281{height:1009.338800pt;}
.w0_c00281{width:794.622400pt;}
.w1_c00281{width:794.666667pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:68.980533pt;}
.x2_c00281{left:532.917467pt;}
.x3_c00281{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00282;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00282;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00282{font-family:ff7_c00282;line-height:1.067000;font-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_c00282{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls2_c00282{letter-spacing:-0.720000px;}
.ls3_c00282{letter-spacing:-0.630000px;}
.ls1_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.480000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00282{word-spacing:-8.694000px;}
.ws0_c00282{word-spacing:-0.048000px;}
.ws2_c00282{word-spacing:0.000000px;}
.ws3_c00282{word-spacing:7.056000px;}
._0_c00282{margin-left:-2755.276200px;}
._4_c00282{margin-left:-6.947400px;}
._1_c00282{margin-left:-2.256000px;}
._3_c00282{margin-left:-1.200000px;}
._2_c00282{width:1.008000px;}
._7_c00282{width:7.776000px;}
._5_c00282{width:55.674000px;}
._6_c00282{width:59.136000px;}
.fc0_c00282{color:rgb(35,31,32);}
.fs3_c00282{font-size:42.000000px;}
.fs0_c00282{font-size:48.000000px;}
.fs4_c00282{font-size:54.000000px;}
.fs2_c00282{font-size:57.000000px;}
.fs1_c00282{font-size:60.000000px;}
.y0_c00282{bottom:0.000000px;}
.y19_c00282{bottom:347.760150px;}
.y18_c00282{bottom:361.260000px;}
.y17_c00282{bottom:374.760000px;}
.y16_c00282{bottom:401.263950px;}
.y15_c00282{bottom:414.763950px;}
.y14_c00282{bottom:428.263950px;}
.y13_c00282{bottom:454.767900px;}
.y12_c00282{bottom:468.267900px;}
.y11_c00282{bottom:481.767900px;}
.y10_c00282{bottom:504.019800px;}
.yf_c00282{bottom:522.019800px;}
.ye_c00282{bottom:548.523750px;}
.yd_c00282{bottom:836.808450px;}
.yc_c00282{bottom:850.308450px;}
.yb_c00282{bottom:863.808450px;}
.ya_c00282{bottom:890.312400px;}
.y9_c00282{bottom:903.812400px;}
.y8_c00282{bottom:917.312400px;}
.y7_c00282{bottom:943.816500px;}
.y6_c00282{bottom:957.316500px;}
.y5_c00282{bottom:970.816500px;}
.y4_c00282{bottom:993.068250px;}
.y3_c00282{bottom:1011.068250px;}
.y2_c00282{bottom:1037.572350px;}
.y1_c00282{bottom:1093.600950px;}
.h7_c00282{height:30.282000px;}
.h5_c00282{height:34.080000px;}
.h2_c00282{height:39.264000px;}
.h3_c00282{height:39.984000px;}
.h4_c00282{height:43.260000px;}
.h6_c00282{height:43.740000px;}
.h1_c00282{height:1135.500000px;}
.h0_c00282{height:1135.506150px;}
.w0_c00282{width:893.950200px;}
.w1_c00282{width:894.000000px;}
.x0_c00282{left:0.000000px;}
.x4_c00282{left:128.744700px;}
.x5_c00282{left:141.500700px;}
.x2_c00282{left:188.061900px;}
.x3_c00282{left:190.513350px;}
.x1_c00282{left:800.165850px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls2_c00282{letter-spacing:-0.640000pt;}
.ls3_c00282{letter-spacing:-0.560000pt;}
.ls1_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.426667pt;}
.ws1_c00282{word-spacing:-7.728000pt;}
.ws0_c00282{word-spacing:-0.042667pt;}
.ws2_c00282{word-spacing:0.000000pt;}
.ws3_c00282{word-spacing:6.272000pt;}
._0_c00282{margin-left:-2449.134400pt;}
._4_c00282{margin-left:-6.175467pt;}
._1_c00282{margin-left:-2.005333pt;}
._3_c00282{margin-left:-1.066667pt;}
._2_c00282{width:0.896000pt;}
._7_c00282{width:6.912000pt;}
._5_c00282{width:49.488000pt;}
._6_c00282{width:52.565333pt;}
.fs3_c00282{font-size:37.333333pt;}
.fs0_c00282{font-size:42.666667pt;}
.fs4_c00282{font-size:48.000000pt;}
.fs2_c00282{font-size:50.666667pt;}
.fs1_c00282{font-size:53.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y19_c00282{bottom:309.120133pt;}
.y18_c00282{bottom:321.120000pt;}
.y17_c00282{bottom:333.120000pt;}
.y16_c00282{bottom:356.679067pt;}
.y15_c00282{bottom:368.679067pt;}
.y14_c00282{bottom:380.679067pt;}
.y13_c00282{bottom:404.238133pt;}
.y12_c00282{bottom:416.238133pt;}
.y11_c00282{bottom:428.238133pt;}
.y10_c00282{bottom:448.017600pt;}
.yf_c00282{bottom:464.017600pt;}
.ye_c00282{bottom:487.576667pt;}
.yd_c00282{bottom:743.829733pt;}
.yc_c00282{bottom:755.829733pt;}
.yb_c00282{bottom:767.829733pt;}
.ya_c00282{bottom:791.388800pt;}
.y9_c00282{bottom:803.388800pt;}
.y8_c00282{bottom:815.388800pt;}
.y7_c00282{bottom:838.948000pt;}
.y6_c00282{bottom:850.948000pt;}
.y5_c00282{bottom:862.948000pt;}
.y4_c00282{bottom:882.727333pt;}
.y3_c00282{bottom:898.727333pt;}
.y2_c00282{bottom:922.286533pt;}
.y1_c00282{bottom:972.089733pt;}
.h7_c00282{height:26.917333pt;}
.h5_c00282{height:30.293333pt;}
.h2_c00282{height:34.901333pt;}
.h3_c00282{height:35.541333pt;}
.h4_c00282{height:38.453333pt;}
.h6_c00282{height:38.880000pt;}
.h1_c00282{height:1009.333333pt;}
.h0_c00282{height:1009.338800pt;}
.w0_c00282{width:794.622400pt;}
.w1_c00282{width:794.666667pt;}
.x0_c00282{left:0.000000pt;}
.x4_c00282{left:114.439733pt;}
.x5_c00282{left:125.778400pt;}
.x2_c00282{left:167.166133pt;}
.x3_c00282{left:169.345200pt;}
.x1_c00282{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls2_c00283{letter-spacing:-0.720000px;}
.ls3_c00283{letter-spacing:-0.630000px;}
.ls1_c00283{letter-spacing:-0.216000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00283{word-spacing:-8.694000px;}
.ws2_c00283{word-spacing:0.000000px;}
.ws4_c00283{word-spacing:0.216000px;}
.ws3_c00283{word-spacing:7.056000px;}
.ws0_c00283{word-spacing:1585.435200px;}
._3_c00283{margin-left:-7.042800px;}
._5_c00283{margin-left:-5.022000px;}
._6_c00283{margin-left:-3.240000px;}
._0_c00283{margin-left:-2.112000px;}
._1_c00283{margin-left:-1.104000px;}
._2_c00283{width:2.016000px;}
._8_c00283{width:7.776000px;}
._4_c00283{width:55.674000px;}
._7_c00283{width:59.136000px;}
.fc0_c00283{color:rgb(35,31,32);}
.fs3_c00283{font-size:42.000000px;}
.fs0_c00283{font-size:48.000000px;}
.fs4_c00283{font-size:54.000000px;}
.fs2_c00283{font-size:57.000000px;}
.fs1_c00283{font-size:60.000000px;}
.y0_c00283{bottom:0.000000px;}
.y19_c00283{bottom:348.185250px;}
.y18_c00283{bottom:361.685250px;}
.y17_c00283{bottom:375.185250px;}
.y16_c00283{bottom:401.689200px;}
.y15_c00283{bottom:415.189200px;}
.y14_c00283{bottom:428.689200px;}
.y13_c00283{bottom:455.193150px;}
.y12_c00283{bottom:468.693150px;}
.y11_c00283{bottom:482.193150px;}
.y10_c00283{bottom:504.445050px;}
.yf_c00283{bottom:522.445050px;}
.ye_c00283{bottom:548.949000px;}
.yd_c00283{bottom:836.182500px;}
.yc_c00283{bottom:849.682500px;}
.yb_c00283{bottom:863.182500px;}
.ya_c00283{bottom:889.686450px;}
.y9_c00283{bottom:903.186450px;}
.y8_c00283{bottom:916.686450px;}
.y7_c00283{bottom:943.190400px;}
.y6_c00283{bottom:956.690400px;}
.y5_c00283{bottom:970.190400px;}
.y4_c00283{bottom:992.442450px;}
.y3_c00283{bottom:1010.442450px;}
.y2_c00283{bottom:1036.946400px;}
.y1_c00283{bottom:1093.600950px;}
.h6_c00283{height:30.282000px;}
.h4_c00283{height:34.080000px;}
.h2_c00283{height:39.264000px;}
.h3_c00283{height:43.260000px;}
.h5_c00283{height:43.740000px;}
.h1_c00283{height:1135.500000px;}
.h0_c00283{height:1135.506150px;}
.w0_c00283{width:893.950200px;}
.w1_c00283{width:894.000000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:77.603100px;}
.x2_c00283{left:599.532150px;}
.x3_c00283{left:612.288150px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls2_c00283{letter-spacing:-0.640000pt;}
.ls3_c00283{letter-spacing:-0.560000pt;}
.ls1_c00283{letter-spacing:-0.192000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws1_c00283{word-spacing:-7.728000pt;}
.ws2_c00283{word-spacing:0.000000pt;}
.ws4_c00283{word-spacing:0.192000pt;}
.ws3_c00283{word-spacing:6.272000pt;}
.ws0_c00283{word-spacing:1409.275733pt;}
._3_c00283{margin-left:-6.260267pt;}
._5_c00283{margin-left:-4.464000pt;}
._6_c00283{margin-left:-2.880000pt;}
._0_c00283{margin-left:-1.877333pt;}
._1_c00283{margin-left:-0.981333pt;}
._2_c00283{width:1.792000pt;}
._8_c00283{width:6.912000pt;}
._4_c00283{width:49.488000pt;}
._7_c00283{width:52.565333pt;}
.fs3_c00283{font-size:37.333333pt;}
.fs0_c00283{font-size:42.666667pt;}
.fs4_c00283{font-size:48.000000pt;}
.fs2_c00283{font-size:50.666667pt;}
.fs1_c00283{font-size:53.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y19_c00283{bottom:309.498000pt;}
.y18_c00283{bottom:321.498000pt;}
.y17_c00283{bottom:333.498000pt;}
.y16_c00283{bottom:357.057067pt;}
.y15_c00283{bottom:369.057067pt;}
.y14_c00283{bottom:381.057067pt;}
.y13_c00283{bottom:404.616133pt;}
.y12_c00283{bottom:416.616133pt;}
.y11_c00283{bottom:428.616133pt;}
.y10_c00283{bottom:448.395600pt;}
.yf_c00283{bottom:464.395600pt;}
.ye_c00283{bottom:487.954667pt;}
.yd_c00283{bottom:743.273333pt;}
.yc_c00283{bottom:755.273333pt;}
.yb_c00283{bottom:767.273333pt;}
.ya_c00283{bottom:790.832400pt;}
.y9_c00283{bottom:802.832400pt;}
.y8_c00283{bottom:814.832400pt;}
.y7_c00283{bottom:838.391467pt;}
.y6_c00283{bottom:850.391467pt;}
.y5_c00283{bottom:862.391467pt;}
.y4_c00283{bottom:882.171067pt;}
.y3_c00283{bottom:898.171067pt;}
.y2_c00283{bottom:921.730133pt;}
.y1_c00283{bottom:972.089733pt;}
.h6_c00283{height:26.917333pt;}
.h4_c00283{height:30.293333pt;}
.h2_c00283{height:34.901333pt;}
.h3_c00283{height:38.453333pt;}
.h5_c00283{height:38.880000pt;}
.h1_c00283{height:1009.333333pt;}
.h0_c00283{height:1009.338800pt;}
.w0_c00283{width:794.622400pt;}
.w1_c00283{width:794.666667pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:68.980533pt;}
.x2_c00283{left:532.917467pt;}
.x3_c00283{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00284;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00284{font-family:ff7_c00284;line-height:1.067000;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00284{font-family:ff8_c00284;line-height:0.710000;font-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_c00284{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls3_c00284{letter-spacing:-0.720000px;}
.ls4_c00284{letter-spacing:-0.630000px;}
.ls2_c00284{letter-spacing:-0.216000px;}
.ls1_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:0.480000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-8.694000px;}
.ws2_c00284{word-spacing:-6.487200px;}
.ws0_c00284{word-spacing:-0.048000px;}
.ws3_c00284{word-spacing:0.000000px;}
.ws5_c00284{word-spacing:0.216000px;}
.ws4_c00284{word-spacing:7.056000px;}
._0_c00284{margin-left:-2755.276200px;}
._4_c00284{margin-left:-6.946800px;}
._1_c00284{margin-left:-2.256000px;}
._3_c00284{margin-left:-1.200000px;}
._2_c00284{width:1.008000px;}
._7_c00284{width:7.776000px;}
._5_c00284{width:55.674000px;}
._6_c00284{width:59.136000px;}
.fc0_c00284{color:rgb(35,31,32);}
.fs5_c00284{font-size:30.600000px;}
.fs6_c00284{font-size:36.000000px;}
.fs3_c00284{font-size:42.000000px;}
.fs0_c00284{font-size:48.000000px;}
.fs4_c00284{font-size:54.000000px;}
.fs2_c00284{font-size:57.000000px;}
.fs1_c00284{font-size:60.000000px;}
.y0_c00284{bottom:0.000000px;}
.y18_c00284{bottom:361.685250px;}
.y17_c00284{bottom:375.185250px;}
.y16_c00284{bottom:388.685250px;}
.y15_c00284{bottom:415.189200px;}
.y14_c00284{bottom:428.689200px;}
.y13_c00284{bottom:455.193150px;}
.y12_c00284{bottom:468.693150px;}
.y11_c00284{bottom:482.193150px;}
.y10_c00284{bottom:504.445050px;}
.yf_c00284{bottom:522.445050px;}
.ye_c00284{bottom:548.949000px;}
.y19_c00284{bottom:551.323050px;}
.yd_c00284{bottom:836.311050px;}
.yc_c00284{bottom:849.811050px;}
.yb_c00284{bottom:863.311050px;}
.ya_c00284{bottom:889.815000px;}
.y9_c00284{bottom:903.315000px;}
.y8_c00284{bottom:916.815000px;}
.y7_c00284{bottom:943.318950px;}
.y6_c00284{bottom:956.818950px;}
.y5_c00284{bottom:970.318950px;}
.y4_c00284{bottom:992.570850px;}
.y3_c00284{bottom:1010.570850px;}
.y2_c00284{bottom:1037.074950px;}
.y1_c00284{bottom:1093.600950px;}
.h8_c00284{height:25.200000px;}
.h7_c00284{height:30.282000px;}
.h5_c00284{height:34.080000px;}
.h2_c00284{height:39.264000px;}
.h3_c00284{height:39.984000px;}
.h4_c00284{height:43.260000px;}
.h6_c00284{height:43.740000px;}
.h1_c00284{height:1135.500000px;}
.h0_c00284{height:1135.506150px;}
.w0_c00284{width:893.950200px;}
.w1_c00284{width:894.000000px;}
.x0_c00284{left:0.000000px;}
.x4_c00284{left:128.626800px;}
.x5_c00284{left:141.382650px;}
.x2_c00284{left:188.061900px;}
.x3_c00284{left:190.513350px;}
.x6_c00284{left:321.801150px;}
.x1_c00284{left:800.165850px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls3_c00284{letter-spacing:-0.640000pt;}
.ls4_c00284{letter-spacing:-0.560000pt;}
.ls2_c00284{letter-spacing:-0.192000pt;}
.ls1_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:0.426667pt;}
.ws1_c00284{word-spacing:-7.728000pt;}
.ws2_c00284{word-spacing:-5.766400pt;}
.ws0_c00284{word-spacing:-0.042667pt;}
.ws3_c00284{word-spacing:0.000000pt;}
.ws5_c00284{word-spacing:0.192000pt;}
.ws4_c00284{word-spacing:6.272000pt;}
._0_c00284{margin-left:-2449.134400pt;}
._4_c00284{margin-left:-6.174933pt;}
._1_c00284{margin-left:-2.005333pt;}
._3_c00284{margin-left:-1.066667pt;}
._2_c00284{width:0.896000pt;}
._7_c00284{width:6.912000pt;}
._5_c00284{width:49.488000pt;}
._6_c00284{width:52.565333pt;}
.fs5_c00284{font-size:27.200000pt;}
.fs6_c00284{font-size:32.000000pt;}
.fs3_c00284{font-size:37.333333pt;}
.fs0_c00284{font-size:42.666667pt;}
.fs4_c00284{font-size:48.000000pt;}
.fs2_c00284{font-size:50.666667pt;}
.fs1_c00284{font-size:53.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y18_c00284{bottom:321.498000pt;}
.y17_c00284{bottom:333.498000pt;}
.y16_c00284{bottom:345.498000pt;}
.y15_c00284{bottom:369.057067pt;}
.y14_c00284{bottom:381.057067pt;}
.y13_c00284{bottom:404.616133pt;}
.y12_c00284{bottom:416.616133pt;}
.y11_c00284{bottom:428.616133pt;}
.y10_c00284{bottom:448.395600pt;}
.yf_c00284{bottom:464.395600pt;}
.ye_c00284{bottom:487.954667pt;}
.y19_c00284{bottom:490.064933pt;}
.yd_c00284{bottom:743.387600pt;}
.yc_c00284{bottom:755.387600pt;}
.yb_c00284{bottom:767.387600pt;}
.ya_c00284{bottom:790.946667pt;}
.y9_c00284{bottom:802.946667pt;}
.y8_c00284{bottom:814.946667pt;}
.y7_c00284{bottom:838.505733pt;}
.y6_c00284{bottom:850.505733pt;}
.y5_c00284{bottom:862.505733pt;}
.y4_c00284{bottom:882.285200pt;}
.y3_c00284{bottom:898.285200pt;}
.y2_c00284{bottom:921.844400pt;}
.y1_c00284{bottom:972.089733pt;}
.h8_c00284{height:22.400000pt;}
.h7_c00284{height:26.917333pt;}
.h5_c00284{height:30.293333pt;}
.h2_c00284{height:34.901333pt;}
.h3_c00284{height:35.541333pt;}
.h4_c00284{height:38.453333pt;}
.h6_c00284{height:38.880000pt;}
.h1_c00284{height:1009.333333pt;}
.h0_c00284{height:1009.338800pt;}
.w0_c00284{width:794.622400pt;}
.w1_c00284{width:794.666667pt;}
.x0_c00284{left:0.000000pt;}
.x4_c00284{left:114.334933pt;}
.x5_c00284{left:125.673467pt;}
.x2_c00284{left:167.166133pt;}
.x3_c00284{left:169.345200pt;}
.x6_c00284{left:286.045467pt;}
.x1_c00284{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00285{font-family:ff5_c00285;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00285;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00285{font-family:ff6_c00285;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls1_c00285{letter-spacing:-0.720000px;}
.ls2_c00285{letter-spacing:-0.630000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00285{word-spacing:-8.694000px;}
.ws2_c00285{word-spacing:0.000000px;}
.ws3_c00285{word-spacing:7.056000px;}
.ws0_c00285{word-spacing:1585.435200px;}
._3_c00285{margin-left:-7.042800px;}
._5_c00285{margin-left:-5.154000px;}
._0_c00285{margin-left:-2.112000px;}
._1_c00285{margin-left:-1.104000px;}
._2_c00285{width:2.016000px;}
._7_c00285{width:7.776000px;}
._4_c00285{width:55.674000px;}
._6_c00285{width:59.136000px;}
.fc0_c00285{color:rgb(35,31,32);}
.fs3_c00285{font-size:42.000000px;}
.fs0_c00285{font-size:48.000000px;}
.fs4_c00285{font-size:54.000000px;}
.fs2_c00285{font-size:57.000000px;}
.fs1_c00285{font-size:60.000000px;}
.y0_c00285{bottom:0.000000px;}
.y19_c00285{bottom:346.892550px;}
.y18_c00285{bottom:360.392550px;}
.y17_c00285{bottom:373.892400px;}
.y16_c00285{bottom:400.396500px;}
.y15_c00285{bottom:413.896500px;}
.y14_c00285{bottom:427.396500px;}
.y13_c00285{bottom:453.900300px;}
.y12_c00285{bottom:467.400300px;}
.y11_c00285{bottom:480.900300px;}
.y10_c00285{bottom:503.152350px;}
.yf_c00285{bottom:521.152350px;}
.ye_c00285{bottom:547.656300px;}
.yd_c00285{bottom:836.621400px;}
.yc_c00285{bottom:850.121400px;}
.yb_c00285{bottom:863.621400px;}
.ya_c00285{bottom:890.125350px;}
.y9_c00285{bottom:903.625350px;}
.y8_c00285{bottom:917.125350px;}
.y7_c00285{bottom:943.629300px;}
.y6_c00285{bottom:957.129300px;}
.y5_c00285{bottom:970.629300px;}
.y4_c00285{bottom:992.881350px;}
.y3_c00285{bottom:1010.881350px;}
.y2_c00285{bottom:1037.385300px;}
.y1_c00285{bottom:1093.600950px;}
.h6_c00285{height:30.282000px;}
.h4_c00285{height:34.080000px;}
.h2_c00285{height:39.264000px;}
.h3_c00285{height:43.260000px;}
.h5_c00285{height:43.740000px;}
.h1_c00285{height:1135.500000px;}
.h0_c00285{height:1135.506150px;}
.w0_c00285{width:893.950200px;}
.w1_c00285{width:894.000000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:77.603100px;}
.x2_c00285{left:599.532150px;}
.x3_c00285{left:612.288150px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls1_c00285{letter-spacing:-0.640000pt;}
.ls2_c00285{letter-spacing:-0.560000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws1_c00285{word-spacing:-7.728000pt;}
.ws2_c00285{word-spacing:0.000000pt;}
.ws3_c00285{word-spacing:6.272000pt;}
.ws0_c00285{word-spacing:1409.275733pt;}
._3_c00285{margin-left:-6.260267pt;}
._5_c00285{margin-left:-4.581333pt;}
._0_c00285{margin-left:-1.877333pt;}
._1_c00285{margin-left:-0.981333pt;}
._2_c00285{width:1.792000pt;}
._7_c00285{width:6.912000pt;}
._4_c00285{width:49.488000pt;}
._6_c00285{width:52.565333pt;}
.fs3_c00285{font-size:37.333333pt;}
.fs0_c00285{font-size:42.666667pt;}
.fs4_c00285{font-size:48.000000pt;}
.fs2_c00285{font-size:50.666667pt;}
.fs1_c00285{font-size:53.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y19_c00285{bottom:308.348933pt;}
.y18_c00285{bottom:320.348933pt;}
.y17_c00285{bottom:332.348800pt;}
.y16_c00285{bottom:355.908000pt;}
.y15_c00285{bottom:367.908000pt;}
.y14_c00285{bottom:379.908000pt;}
.y13_c00285{bottom:403.466933pt;}
.y12_c00285{bottom:415.466933pt;}
.y11_c00285{bottom:427.466933pt;}
.y10_c00285{bottom:447.246533pt;}
.yf_c00285{bottom:463.246533pt;}
.ye_c00285{bottom:486.805600pt;}
.yd_c00285{bottom:743.663467pt;}
.yc_c00285{bottom:755.663467pt;}
.yb_c00285{bottom:767.663467pt;}
.ya_c00285{bottom:791.222533pt;}
.y9_c00285{bottom:803.222533pt;}
.y8_c00285{bottom:815.222533pt;}
.y7_c00285{bottom:838.781600pt;}
.y6_c00285{bottom:850.781600pt;}
.y5_c00285{bottom:862.781600pt;}
.y4_c00285{bottom:882.561200pt;}
.y3_c00285{bottom:898.561200pt;}
.y2_c00285{bottom:922.120267pt;}
.y1_c00285{bottom:972.089733pt;}
.h6_c00285{height:26.917333pt;}
.h4_c00285{height:30.293333pt;}
.h2_c00285{height:34.901333pt;}
.h3_c00285{height:38.453333pt;}
.h5_c00285{height:38.880000pt;}
.h1_c00285{height:1009.333333pt;}
.h0_c00285{height:1009.338800pt;}
.w0_c00285{width:794.622400pt;}
.w1_c00285{width:794.666667pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:68.980533pt;}
.x2_c00285{left:532.917467pt;}
.x3_c00285{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00286;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00286;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00286;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00286{font-family:ff8_c00286;line-height:0.710000;font-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_c00286{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls2_c00286{letter-spacing:-1.890000px;}
.ls3_c00286{letter-spacing:-0.720000px;}
.ls4_c00286{letter-spacing:-0.630000px;}
.ls1_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00286{word-spacing:-6.487200px;}
.ws0_c00286{word-spacing:-0.048000px;}
.ws3_c00286{word-spacing:0.000000px;}
.ws5_c00286{word-spacing:1.890000px;}
.ws4_c00286{word-spacing:7.056000px;}
.ws6_c00286{word-spacing:55.674000px;}
._0_c00286{margin-left:-2755.276200px;}
._4_c00286{margin-left:-6.947400px;}
._1_c00286{margin-left:-2.256000px;}
._3_c00286{margin-left:-1.200000px;}
._2_c00286{width:1.008000px;}
._6_c00286{width:2.214000px;}
._8_c00286{width:7.776000px;}
._5_c00286{width:55.674000px;}
._7_c00286{width:59.136000px;}
.fc0_c00286{color:rgb(35,31,32);}
.fs5_c00286{font-size:30.600000px;}
.fs6_c00286{font-size:36.000000px;}
.fs3_c00286{font-size:42.000000px;}
.fs0_c00286{font-size:48.000000px;}
.fs4_c00286{font-size:54.000000px;}
.fs2_c00286{font-size:57.000000px;}
.fs1_c00286{font-size:60.000000px;}
.y0_c00286{bottom:0.000000px;}
.y18_c00286{bottom:360.622350px;}
.y17_c00286{bottom:374.122200px;}
.y16_c00286{bottom:387.622200px;}
.y15_c00286{bottom:414.126150px;}
.y14_c00286{bottom:427.626150px;}
.y13_c00286{bottom:454.130100px;}
.y12_c00286{bottom:467.630100px;}
.y11_c00286{bottom:481.130100px;}
.y10_c00286{bottom:503.382150px;}
.yf_c00286{bottom:521.382150px;}
.ye_c00286{bottom:547.885950px;}
.y19_c00286{bottom:551.323050px;}
.yd_c00286{bottom:836.808450px;}
.yc_c00286{bottom:850.308450px;}
.yb_c00286{bottom:863.808450px;}
.ya_c00286{bottom:890.312400px;}
.y9_c00286{bottom:903.812400px;}
.y8_c00286{bottom:917.312400px;}
.y7_c00286{bottom:943.816500px;}
.y6_c00286{bottom:957.316500px;}
.y5_c00286{bottom:970.816500px;}
.y4_c00286{bottom:993.068250px;}
.y3_c00286{bottom:1011.068250px;}
.y2_c00286{bottom:1037.572350px;}
.y1_c00286{bottom:1093.600950px;}
.h8_c00286{height:25.200000px;}
.h7_c00286{height:30.282000px;}
.h5_c00286{height:34.080000px;}
.h2_c00286{height:39.264000px;}
.h3_c00286{height:39.984000px;}
.h4_c00286{height:43.260000px;}
.h6_c00286{height:43.740000px;}
.h1_c00286{height:1135.500000px;}
.h0_c00286{height:1135.506150px;}
.w0_c00286{width:893.950200px;}
.w1_c00286{width:894.000000px;}
.x0_c00286{left:0.000000px;}
.x4_c00286{left:128.744700px;}
.x5_c00286{left:141.500700px;}
.x2_c00286{left:188.061900px;}
.x3_c00286{left:190.513350px;}
.x6_c00286{left:321.801150px;}
.x1_c00286{left:800.165850px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls2_c00286{letter-spacing:-1.680000pt;}
.ls3_c00286{letter-spacing:-0.640000pt;}
.ls4_c00286{letter-spacing:-0.560000pt;}
.ls1_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.426667pt;}
.ws1_c00286{word-spacing:-7.728000pt;}
.ws2_c00286{word-spacing:-5.766400pt;}
.ws0_c00286{word-spacing:-0.042667pt;}
.ws3_c00286{word-spacing:0.000000pt;}
.ws5_c00286{word-spacing:1.680000pt;}
.ws4_c00286{word-spacing:6.272000pt;}
.ws6_c00286{word-spacing:49.488000pt;}
._0_c00286{margin-left:-2449.134400pt;}
._4_c00286{margin-left:-6.175467pt;}
._1_c00286{margin-left:-2.005333pt;}
._3_c00286{margin-left:-1.066667pt;}
._2_c00286{width:0.896000pt;}
._6_c00286{width:1.968000pt;}
._8_c00286{width:6.912000pt;}
._5_c00286{width:49.488000pt;}
._7_c00286{width:52.565333pt;}
.fs5_c00286{font-size:27.200000pt;}
.fs6_c00286{font-size:32.000000pt;}
.fs3_c00286{font-size:37.333333pt;}
.fs0_c00286{font-size:42.666667pt;}
.fs4_c00286{font-size:48.000000pt;}
.fs2_c00286{font-size:50.666667pt;}
.fs1_c00286{font-size:53.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y18_c00286{bottom:320.553200pt;}
.y17_c00286{bottom:332.553067pt;}
.y16_c00286{bottom:344.553067pt;}
.y15_c00286{bottom:368.112133pt;}
.y14_c00286{bottom:380.112133pt;}
.y13_c00286{bottom:403.671200pt;}
.y12_c00286{bottom:415.671200pt;}
.y11_c00286{bottom:427.671200pt;}
.y10_c00286{bottom:447.450800pt;}
.yf_c00286{bottom:463.450800pt;}
.ye_c00286{bottom:487.009733pt;}
.y19_c00286{bottom:490.064933pt;}
.yd_c00286{bottom:743.829733pt;}
.yc_c00286{bottom:755.829733pt;}
.yb_c00286{bottom:767.829733pt;}
.ya_c00286{bottom:791.388800pt;}
.y9_c00286{bottom:803.388800pt;}
.y8_c00286{bottom:815.388800pt;}
.y7_c00286{bottom:838.948000pt;}
.y6_c00286{bottom:850.948000pt;}
.y5_c00286{bottom:862.948000pt;}
.y4_c00286{bottom:882.727333pt;}
.y3_c00286{bottom:898.727333pt;}
.y2_c00286{bottom:922.286533pt;}
.y1_c00286{bottom:972.089733pt;}
.h8_c00286{height:22.400000pt;}
.h7_c00286{height:26.917333pt;}
.h5_c00286{height:30.293333pt;}
.h2_c00286{height:34.901333pt;}
.h3_c00286{height:35.541333pt;}
.h4_c00286{height:38.453333pt;}
.h6_c00286{height:38.880000pt;}
.h1_c00286{height:1009.333333pt;}
.h0_c00286{height:1009.338800pt;}
.w0_c00286{width:794.622400pt;}
.w1_c00286{width:794.666667pt;}
.x0_c00286{left:0.000000pt;}
.x4_c00286{left:114.439733pt;}
.x5_c00286{left:125.778400pt;}
.x2_c00286{left:167.166133pt;}
.x3_c00286{left:169.345200pt;}
.x6_c00286{left:286.045467pt;}
.x1_c00286{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00287;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00287{font-family:ff6_c00287;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls2_c00287{letter-spacing:-0.720000px;}
.ls3_c00287{letter-spacing:-0.630000px;}
.ls1_c00287{letter-spacing:-0.216000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00287{word-spacing:-8.694000px;}
.ws2_c00287{word-spacing:0.000000px;}
.ws4_c00287{word-spacing:0.216000px;}
.ws3_c00287{word-spacing:7.056000px;}
.ws0_c00287{word-spacing:1585.435200px;}
._3_c00287{margin-left:-7.042800px;}
._0_c00287{margin-left:-2.112000px;}
._1_c00287{margin-left:-1.104000px;}
._2_c00287{width:2.016000px;}
._6_c00287{width:7.776000px;}
._4_c00287{width:55.674000px;}
._5_c00287{width:59.136000px;}
.fc0_c00287{color:rgb(35,31,32);}
.fs3_c00287{font-size:42.000000px;}
.fs0_c00287{font-size:48.000000px;}
.fs4_c00287{font-size:54.000000px;}
.fs2_c00287{font-size:57.000000px;}
.fs1_c00287{font-size:60.000000px;}
.y0_c00287{bottom:0.000000px;}
.y19_c00287{bottom:348.185250px;}
.y18_c00287{bottom:361.685250px;}
.y17_c00287{bottom:375.185250px;}
.y16_c00287{bottom:401.689200px;}
.y15_c00287{bottom:415.189200px;}
.y14_c00287{bottom:428.689200px;}
.y13_c00287{bottom:455.193150px;}
.y12_c00287{bottom:468.693150px;}
.y11_c00287{bottom:482.193150px;}
.y10_c00287{bottom:504.445050px;}
.yf_c00287{bottom:522.445050px;}
.ye_c00287{bottom:548.949000px;}
.yd_c00287{bottom:837.245400px;}
.yc_c00287{bottom:850.745400px;}
.yb_c00287{bottom:864.245400px;}
.ya_c00287{bottom:890.749350px;}
.y9_c00287{bottom:904.249350px;}
.y8_c00287{bottom:917.749350px;}
.y7_c00287{bottom:944.253300px;}
.y6_c00287{bottom:957.753300px;}
.y5_c00287{bottom:971.253300px;}
.y4_c00287{bottom:993.505350px;}
.y3_c00287{bottom:1011.505350px;}
.y2_c00287{bottom:1038.009300px;}
.y1_c00287{bottom:1093.600950px;}
.h6_c00287{height:30.282000px;}
.h4_c00287{height:34.080000px;}
.h2_c00287{height:39.264000px;}
.h3_c00287{height:43.260000px;}
.h5_c00287{height:43.740000px;}
.h1_c00287{height:1135.500000px;}
.h0_c00287{height:1135.506150px;}
.w0_c00287{width:893.950200px;}
.w1_c00287{width:894.000000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:77.603100px;}
.x2_c00287{left:599.532150px;}
.x3_c00287{left:612.288150px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls2_c00287{letter-spacing:-0.640000pt;}
.ls3_c00287{letter-spacing:-0.560000pt;}
.ls1_c00287{letter-spacing:-0.192000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws1_c00287{word-spacing:-7.728000pt;}
.ws2_c00287{word-spacing:0.000000pt;}
.ws4_c00287{word-spacing:0.192000pt;}
.ws3_c00287{word-spacing:6.272000pt;}
.ws0_c00287{word-spacing:1409.275733pt;}
._3_c00287{margin-left:-6.260267pt;}
._0_c00287{margin-left:-1.877333pt;}
._1_c00287{margin-left:-0.981333pt;}
._2_c00287{width:1.792000pt;}
._6_c00287{width:6.912000pt;}
._4_c00287{width:49.488000pt;}
._5_c00287{width:52.565333pt;}
.fs3_c00287{font-size:37.333333pt;}
.fs0_c00287{font-size:42.666667pt;}
.fs4_c00287{font-size:48.000000pt;}
.fs2_c00287{font-size:50.666667pt;}
.fs1_c00287{font-size:53.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y19_c00287{bottom:309.498000pt;}
.y18_c00287{bottom:321.498000pt;}
.y17_c00287{bottom:333.498000pt;}
.y16_c00287{bottom:357.057067pt;}
.y15_c00287{bottom:369.057067pt;}
.y14_c00287{bottom:381.057067pt;}
.y13_c00287{bottom:404.616133pt;}
.y12_c00287{bottom:416.616133pt;}
.y11_c00287{bottom:428.616133pt;}
.y10_c00287{bottom:448.395600pt;}
.yf_c00287{bottom:464.395600pt;}
.ye_c00287{bottom:487.954667pt;}
.yd_c00287{bottom:744.218133pt;}
.yc_c00287{bottom:756.218133pt;}
.yb_c00287{bottom:768.218133pt;}
.ya_c00287{bottom:791.777200pt;}
.y9_c00287{bottom:803.777200pt;}
.y8_c00287{bottom:815.777200pt;}
.y7_c00287{bottom:839.336267pt;}
.y6_c00287{bottom:851.336267pt;}
.y5_c00287{bottom:863.336267pt;}
.y4_c00287{bottom:883.115867pt;}
.y3_c00287{bottom:899.115867pt;}
.y2_c00287{bottom:922.674933pt;}
.y1_c00287{bottom:972.089733pt;}
.h6_c00287{height:26.917333pt;}
.h4_c00287{height:30.293333pt;}
.h2_c00287{height:34.901333pt;}
.h3_c00287{height:38.453333pt;}
.h5_c00287{height:38.880000pt;}
.h1_c00287{height:1009.333333pt;}
.h0_c00287{height:1009.338800pt;}
.w0_c00287{width:794.622400pt;}
.w1_c00287{width:794.666667pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:68.980533pt;}
.x2_c00287{left:532.917467pt;}
.x3_c00287{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00288;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00288;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00288{font-family:ff7_c00288;line-height:1.067000;font-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_c00288{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls3_c00288{letter-spacing:-0.720000px;}
.ls4_c00288{letter-spacing:-0.630000px;}
.ls2_c00288{letter-spacing:-0.216000px;}
.ls1_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00288{word-spacing:-8.694000px;}
.ws0_c00288{word-spacing:-0.048000px;}
.ws2_c00288{word-spacing:0.000000px;}
.ws4_c00288{word-spacing:0.216000px;}
.ws3_c00288{word-spacing:7.056000px;}
._0_c00288{margin-left:-2755.276200px;}
._4_c00288{margin-left:-6.947400px;}
._1_c00288{margin-left:-2.256000px;}
._3_c00288{margin-left:-1.200000px;}
._2_c00288{width:1.008000px;}
._7_c00288{width:7.776000px;}
._5_c00288{width:55.674000px;}
._6_c00288{width:59.136000px;}
.fc0_c00288{color:rgb(35,31,32);}
.fs3_c00288{font-size:42.000000px;}
.fs0_c00288{font-size:48.000000px;}
.fs4_c00288{font-size:54.000000px;}
.fs2_c00288{font-size:57.000000px;}
.fs1_c00288{font-size:60.000000px;}
.y0_c00288{bottom:0.000000px;}
.y19_c00288{bottom:347.547450px;}
.y18_c00288{bottom:361.047450px;}
.y17_c00288{bottom:374.547450px;}
.y16_c00288{bottom:401.051400px;}
.y15_c00288{bottom:414.551400px;}
.y14_c00288{bottom:428.051400px;}
.y13_c00288{bottom:454.555350px;}
.y12_c00288{bottom:468.055350px;}
.y11_c00288{bottom:481.555350px;}
.y10_c00288{bottom:503.807250px;}
.yf_c00288{bottom:521.807250px;}
.ye_c00288{bottom:548.311200px;}
.yd_c00288{bottom:836.523600px;}
.yc_c00288{bottom:850.023600px;}
.yb_c00288{bottom:863.523600px;}
.ya_c00288{bottom:890.027550px;}
.y9_c00288{bottom:903.527550px;}
.y8_c00288{bottom:917.027550px;}
.y7_c00288{bottom:943.531500px;}
.y6_c00288{bottom:957.031500px;}
.y5_c00288{bottom:970.531500px;}
.y4_c00288{bottom:992.783550px;}
.y3_c00288{bottom:1010.783550px;}
.y2_c00288{bottom:1037.287500px;}
.y1_c00288{bottom:1093.600950px;}
.h7_c00288{height:30.282000px;}
.h5_c00288{height:34.080000px;}
.h2_c00288{height:39.264000px;}
.h3_c00288{height:39.984000px;}
.h4_c00288{height:43.260000px;}
.h6_c00288{height:43.740000px;}
.h1_c00288{height:1135.500000px;}
.h0_c00288{height:1135.506150px;}
.w0_c00288{width:893.950200px;}
.w1_c00288{width:894.000000px;}
.x0_c00288{left:0.000000px;}
.x4_c00288{left:128.744700px;}
.x5_c00288{left:141.500700px;}
.x2_c00288{left:188.061900px;}
.x3_c00288{left:190.513350px;}
.x1_c00288{left:800.165850px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls3_c00288{letter-spacing:-0.640000pt;}
.ls4_c00288{letter-spacing:-0.560000pt;}
.ls2_c00288{letter-spacing:-0.192000pt;}
.ls1_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.426667pt;}
.ws1_c00288{word-spacing:-7.728000pt;}
.ws0_c00288{word-spacing:-0.042667pt;}
.ws2_c00288{word-spacing:0.000000pt;}
.ws4_c00288{word-spacing:0.192000pt;}
.ws3_c00288{word-spacing:6.272000pt;}
._0_c00288{margin-left:-2449.134400pt;}
._4_c00288{margin-left:-6.175467pt;}
._1_c00288{margin-left:-2.005333pt;}
._3_c00288{margin-left:-1.066667pt;}
._2_c00288{width:0.896000pt;}
._7_c00288{width:6.912000pt;}
._5_c00288{width:49.488000pt;}
._6_c00288{width:52.565333pt;}
.fs3_c00288{font-size:37.333333pt;}
.fs0_c00288{font-size:42.666667pt;}
.fs4_c00288{font-size:48.000000pt;}
.fs2_c00288{font-size:50.666667pt;}
.fs1_c00288{font-size:53.333333pt;}
.y0_c00288{bottom:0.000000pt;}
.y19_c00288{bottom:308.931067pt;}
.y18_c00288{bottom:320.931067pt;}
.y17_c00288{bottom:332.931067pt;}
.y16_c00288{bottom:356.490133pt;}
.y15_c00288{bottom:368.490133pt;}
.y14_c00288{bottom:380.490133pt;}
.y13_c00288{bottom:404.049200pt;}
.y12_c00288{bottom:416.049200pt;}
.y11_c00288{bottom:428.049200pt;}
.y10_c00288{bottom:447.828667pt;}
.yf_c00288{bottom:463.828667pt;}
.ye_c00288{bottom:487.387733pt;}
.yd_c00288{bottom:743.576533pt;}
.yc_c00288{bottom:755.576533pt;}
.yb_c00288{bottom:767.576533pt;}
.ya_c00288{bottom:791.135600pt;}
.y9_c00288{bottom:803.135600pt;}
.y8_c00288{bottom:815.135600pt;}
.y7_c00288{bottom:838.694667pt;}
.y6_c00288{bottom:850.694667pt;}
.y5_c00288{bottom:862.694667pt;}
.y4_c00288{bottom:882.474267pt;}
.y3_c00288{bottom:898.474267pt;}
.y2_c00288{bottom:922.033333pt;}
.y1_c00288{bottom:972.089733pt;}
.h7_c00288{height:26.917333pt;}
.h5_c00288{height:30.293333pt;}
.h2_c00288{height:34.901333pt;}
.h3_c00288{height:35.541333pt;}
.h4_c00288{height:38.453333pt;}
.h6_c00288{height:38.880000pt;}
.h1_c00288{height:1009.333333pt;}
.h0_c00288{height:1009.338800pt;}
.w0_c00288{width:794.622400pt;}
.w1_c00288{width:794.666667pt;}
.x0_c00288{left:0.000000pt;}
.x4_c00288{left:114.439733pt;}
.x5_c00288{left:125.778400pt;}
.x2_c00288{left:167.166133pt;}
.x3_c00288{left:169.345200pt;}
.x1_c00288{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00289;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00289{font-family:ff7_c00289;line-height:0.710000;font-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_c00289{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls1_c00289{letter-spacing:-0.720000px;}
.ls2_c00289{letter-spacing:-0.630000px;}
.ls3_c00289{letter-spacing:-0.216000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00289{word-spacing:-6.487200px;}
.ws3_c00289{word-spacing:0.000000px;}
.ws5_c00289{word-spacing:0.216000px;}
.ws4_c00289{word-spacing:7.056000px;}
.ws0_c00289{word-spacing:1585.435200px;}
._3_c00289{margin-left:-7.042800px;}
._0_c00289{margin-left:-2.112000px;}
._1_c00289{margin-left:-1.104000px;}
._2_c00289{width:2.016000px;}
._6_c00289{width:7.776000px;}
._4_c00289{width:55.674000px;}
._5_c00289{width:59.136000px;}
.fc0_c00289{color:rgb(35,31,32);}
.fs5_c00289{font-size:30.600000px;}
.fs6_c00289{font-size:36.000000px;}
.fs3_c00289{font-size:42.000000px;}
.fs0_c00289{font-size:48.000000px;}
.fs4_c00289{font-size:54.000000px;}
.fs2_c00289{font-size:57.000000px;}
.fs1_c00289{font-size:60.000000px;}
.y0_c00289{bottom:0.000000px;}
.y18_c00289{bottom:347.547450px;}
.y17_c00289{bottom:361.047450px;}
.y16_c00289{bottom:374.547450px;}
.y15_c00289{bottom:401.051400px;}
.y14_c00289{bottom:414.551400px;}
.y13_c00289{bottom:428.051400px;}
.y12_c00289{bottom:454.555350px;}
.y11_c00289{bottom:468.055350px;}
.y10_c00289{bottom:481.555350px;}
.yf_c00289{bottom:503.807250px;}
.ye_c00289{bottom:521.807250px;}
.yd_c00289{bottom:548.311200px;}
.yc_c00289{bottom:850.023600px;}
.yb_c00289{bottom:863.523600px;}
.ya_c00289{bottom:877.023600px;}
.y9_c00289{bottom:903.527550px;}
.y8_c00289{bottom:917.027550px;}
.y7_c00289{bottom:943.531500px;}
.y6_c00289{bottom:957.031500px;}
.y5_c00289{bottom:970.531500px;}
.y4_c00289{bottom:992.783550px;}
.y3_c00289{bottom:1010.783550px;}
.y2_c00289{bottom:1037.287500px;}
.y19_c00289{bottom:1040.299350px;}
.y1_c00289{bottom:1093.600950px;}
.h7_c00289{height:25.200000px;}
.h6_c00289{height:30.282000px;}
.h4_c00289{height:34.080000px;}
.h2_c00289{height:39.264000px;}
.h3_c00289{height:43.260000px;}
.h5_c00289{height:43.740000px;}
.h1_c00289{height:1135.500000px;}
.h0_c00289{height:1135.506150px;}
.w0_c00289{width:893.950200px;}
.w1_c00289{width:894.000000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:77.603100px;}
.x4_c00289{left:424.138500px;}
.x2_c00289{left:599.532150px;}
.x3_c00289{left:612.288150px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls1_c00289{letter-spacing:-0.640000pt;}
.ls2_c00289{letter-spacing:-0.560000pt;}
.ls3_c00289{letter-spacing:-0.192000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws1_c00289{word-spacing:-7.728000pt;}
.ws2_c00289{word-spacing:-5.766400pt;}
.ws3_c00289{word-spacing:0.000000pt;}
.ws5_c00289{word-spacing:0.192000pt;}
.ws4_c00289{word-spacing:6.272000pt;}
.ws0_c00289{word-spacing:1409.275733pt;}
._3_c00289{margin-left:-6.260267pt;}
._0_c00289{margin-left:-1.877333pt;}
._1_c00289{margin-left:-0.981333pt;}
._2_c00289{width:1.792000pt;}
._6_c00289{width:6.912000pt;}
._4_c00289{width:49.488000pt;}
._5_c00289{width:52.565333pt;}
.fs5_c00289{font-size:27.200000pt;}
.fs6_c00289{font-size:32.000000pt;}
.fs3_c00289{font-size:37.333333pt;}
.fs0_c00289{font-size:42.666667pt;}
.fs4_c00289{font-size:48.000000pt;}
.fs2_c00289{font-size:50.666667pt;}
.fs1_c00289{font-size:53.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y18_c00289{bottom:308.931067pt;}
.y17_c00289{bottom:320.931067pt;}
.y16_c00289{bottom:332.931067pt;}
.y15_c00289{bottom:356.490133pt;}
.y14_c00289{bottom:368.490133pt;}
.y13_c00289{bottom:380.490133pt;}
.y12_c00289{bottom:404.049200pt;}
.y11_c00289{bottom:416.049200pt;}
.y10_c00289{bottom:428.049200pt;}
.yf_c00289{bottom:447.828667pt;}
.ye_c00289{bottom:463.828667pt;}
.yd_c00289{bottom:487.387733pt;}
.yc_c00289{bottom:755.576533pt;}
.yb_c00289{bottom:767.576533pt;}
.ya_c00289{bottom:779.576533pt;}
.y9_c00289{bottom:803.135600pt;}
.y8_c00289{bottom:815.135600pt;}
.y7_c00289{bottom:838.694667pt;}
.y6_c00289{bottom:850.694667pt;}
.y5_c00289{bottom:862.694667pt;}
.y4_c00289{bottom:882.474267pt;}
.y3_c00289{bottom:898.474267pt;}
.y2_c00289{bottom:922.033333pt;}
.y19_c00289{bottom:924.710533pt;}
.y1_c00289{bottom:972.089733pt;}
.h7_c00289{height:22.400000pt;}
.h6_c00289{height:26.917333pt;}
.h4_c00289{height:30.293333pt;}
.h2_c00289{height:34.901333pt;}
.h3_c00289{height:38.453333pt;}
.h5_c00289{height:38.880000pt;}
.h1_c00289{height:1009.333333pt;}
.h0_c00289{height:1009.338800pt;}
.w0_c00289{width:794.622400pt;}
.w1_c00289{width:794.666667pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:68.980533pt;}
.x4_c00289{left:377.012000pt;}
.x2_c00289{left:532.917467pt;}
.x3_c00289{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00290;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00290{font-family:ff6_c00290;line-height:0.908000;font-style:normal;font-weight: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_c00290;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00290{font-family:ff7_c00290;line-height:1.067000;font-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_c00290{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls3_c00290{letter-spacing:-0.720000px;}
.ls4_c00290{letter-spacing:-0.630000px;}
.ls2_c00290{letter-spacing:-0.216000px;}
.ls1_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00290{word-spacing:-0.048000px;}
.ws2_c00290{word-spacing:0.000000px;}
.ws4_c00290{word-spacing:0.216000px;}
.ws3_c00290{word-spacing:7.056000px;}
._0_c00290{margin-left:-2755.276200px;}
._4_c00290{margin-left:-6.947400px;}
._1_c00290{margin-left:-2.256000px;}
._3_c00290{margin-left:-1.200000px;}
._2_c00290{width:1.008000px;}
._7_c00290{width:7.776000px;}
._5_c00290{width:55.674000px;}
._6_c00290{width:59.136000px;}
.fc0_c00290{color:rgb(35,31,32);}
.fs3_c00290{font-size:42.000000px;}
.fs0_c00290{font-size:48.000000px;}
.fs4_c00290{font-size:54.000000px;}
.fs2_c00290{font-size:57.000000px;}
.fs1_c00290{font-size:60.000000px;}
.y0_c00290{bottom:0.000000px;}
.y19_c00290{bottom:347.547450px;}
.y18_c00290{bottom:361.047450px;}
.y17_c00290{bottom:374.547450px;}
.y16_c00290{bottom:401.051400px;}
.y15_c00290{bottom:414.551400px;}
.y14_c00290{bottom:428.051400px;}
.y13_c00290{bottom:454.555350px;}
.y12_c00290{bottom:468.055350px;}
.y11_c00290{bottom:481.555350px;}
.y10_c00290{bottom:503.807250px;}
.yf_c00290{bottom:521.807250px;}
.ye_c00290{bottom:548.311200px;}
.yd_c00290{bottom:836.523600px;}
.yc_c00290{bottom:850.023600px;}
.yb_c00290{bottom:863.523600px;}
.ya_c00290{bottom:890.027550px;}
.y9_c00290{bottom:903.527550px;}
.y8_c00290{bottom:917.027550px;}
.y7_c00290{bottom:943.531500px;}
.y6_c00290{bottom:957.031500px;}
.y5_c00290{bottom:970.531500px;}
.y4_c00290{bottom:992.783550px;}
.y3_c00290{bottom:1010.783550px;}
.y2_c00290{bottom:1037.287500px;}
.y1_c00290{bottom:1093.600950px;}
.h7_c00290{height:30.282000px;}
.h5_c00290{height:34.080000px;}
.h2_c00290{height:39.264000px;}
.h3_c00290{height:39.984000px;}
.h4_c00290{height:43.260000px;}
.h6_c00290{height:43.740000px;}
.h1_c00290{height:1135.500000px;}
.h0_c00290{height:1135.506150px;}
.w0_c00290{width:893.950200px;}
.w1_c00290{width:894.000000px;}
.x0_c00290{left:0.000000px;}
.x4_c00290{left:128.744700px;}
.x5_c00290{left:141.500700px;}
.x2_c00290{left:188.061900px;}
.x3_c00290{left:190.513350px;}
.x1_c00290{left:800.165850px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls3_c00290{letter-spacing:-0.640000pt;}
.ls4_c00290{letter-spacing:-0.560000pt;}
.ls2_c00290{letter-spacing:-0.192000pt;}
.ls1_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.426667pt;}
.ws1_c00290{word-spacing:-7.728000pt;}
.ws0_c00290{word-spacing:-0.042667pt;}
.ws2_c00290{word-spacing:0.000000pt;}
.ws4_c00290{word-spacing:0.192000pt;}
.ws3_c00290{word-spacing:6.272000pt;}
._0_c00290{margin-left:-2449.134400pt;}
._4_c00290{margin-left:-6.175467pt;}
._1_c00290{margin-left:-2.005333pt;}
._3_c00290{margin-left:-1.066667pt;}
._2_c00290{width:0.896000pt;}
._7_c00290{width:6.912000pt;}
._5_c00290{width:49.488000pt;}
._6_c00290{width:52.565333pt;}
.fs3_c00290{font-size:37.333333pt;}
.fs0_c00290{font-size:42.666667pt;}
.fs4_c00290{font-size:48.000000pt;}
.fs2_c00290{font-size:50.666667pt;}
.fs1_c00290{font-size:53.333333pt;}
.y0_c00290{bottom:0.000000pt;}
.y19_c00290{bottom:308.931067pt;}
.y18_c00290{bottom:320.931067pt;}
.y17_c00290{bottom:332.931067pt;}
.y16_c00290{bottom:356.490133pt;}
.y15_c00290{bottom:368.490133pt;}
.y14_c00290{bottom:380.490133pt;}
.y13_c00290{bottom:404.049200pt;}
.y12_c00290{bottom:416.049200pt;}
.y11_c00290{bottom:428.049200pt;}
.y10_c00290{bottom:447.828667pt;}
.yf_c00290{bottom:463.828667pt;}
.ye_c00290{bottom:487.387733pt;}
.yd_c00290{bottom:743.576533pt;}
.yc_c00290{bottom:755.576533pt;}
.yb_c00290{bottom:767.576533pt;}
.ya_c00290{bottom:791.135600pt;}
.y9_c00290{bottom:803.135600pt;}
.y8_c00290{bottom:815.135600pt;}
.y7_c00290{bottom:838.694667pt;}
.y6_c00290{bottom:850.694667pt;}
.y5_c00290{bottom:862.694667pt;}
.y4_c00290{bottom:882.474267pt;}
.y3_c00290{bottom:898.474267pt;}
.y2_c00290{bottom:922.033333pt;}
.y1_c00290{bottom:972.089733pt;}
.h7_c00290{height:26.917333pt;}
.h5_c00290{height:30.293333pt;}
.h2_c00290{height:34.901333pt;}
.h3_c00290{height:35.541333pt;}
.h4_c00290{height:38.453333pt;}
.h6_c00290{height:38.880000pt;}
.h1_c00290{height:1009.333333pt;}
.h0_c00290{height:1009.338800pt;}
.w0_c00290{width:794.622400pt;}
.w1_c00290{width:794.666667pt;}
.x0_c00290{left:0.000000pt;}
.x4_c00290{left:114.439733pt;}
.x5_c00290{left:125.778400pt;}
.x2_c00290{left:167.166133pt;}
.x3_c00290{left:169.345200pt;}
.x1_c00290{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00291;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls1_c00291{letter-spacing:-0.720000px;}
.ls2_c00291{letter-spacing:-0.630000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00291{word-spacing:-8.694000px;}
.ws2_c00291{word-spacing:0.000000px;}
.ws3_c00291{word-spacing:7.056000px;}
.ws0_c00291{word-spacing:1585.435200px;}
._3_c00291{margin-left:-7.042800px;}
._0_c00291{margin-left:-2.112000px;}
._1_c00291{margin-left:-1.104000px;}
._2_c00291{width:2.016000px;}
._6_c00291{width:7.776000px;}
._4_c00291{width:55.674000px;}
._5_c00291{width:59.136000px;}
.fc0_c00291{color:rgb(35,31,32);}
.fs3_c00291{font-size:42.000000px;}
.fs0_c00291{font-size:48.000000px;}
.fs4_c00291{font-size:54.000000px;}
.fs2_c00291{font-size:57.000000px;}
.fs1_c00291{font-size:60.000000px;}
.y0_c00291{bottom:0.000000px;}
.y19_c00291{bottom:347.760150px;}
.y18_c00291{bottom:361.260000px;}
.y17_c00291{bottom:374.760000px;}
.y16_c00291{bottom:401.263950px;}
.y15_c00291{bottom:414.763950px;}
.y14_c00291{bottom:428.263950px;}
.y13_c00291{bottom:454.767900px;}
.y12_c00291{bottom:468.267900px;}
.y11_c00291{bottom:481.767900px;}
.y10_c00291{bottom:504.019800px;}
.yf_c00291{bottom:522.019800px;}
.ye_c00291{bottom:548.523750px;}
.yd_c00291{bottom:836.736150px;}
.yc_c00291{bottom:850.236150px;}
.yb_c00291{bottom:863.736150px;}
.ya_c00291{bottom:890.240100px;}
.y9_c00291{bottom:903.740100px;}
.y8_c00291{bottom:917.240100px;}
.y7_c00291{bottom:943.744050px;}
.y6_c00291{bottom:957.244050px;}
.y5_c00291{bottom:970.744050px;}
.y4_c00291{bottom:992.996100px;}
.y3_c00291{bottom:1010.996100px;}
.y2_c00291{bottom:1037.500050px;}
.y1_c00291{bottom:1093.600950px;}
.h6_c00291{height:30.282000px;}
.h4_c00291{height:34.080000px;}
.h2_c00291{height:39.264000px;}
.h3_c00291{height:43.260000px;}
.h5_c00291{height:43.740000px;}
.h1_c00291{height:1135.500000px;}
.h0_c00291{height:1135.506150px;}
.w0_c00291{width:893.950200px;}
.w1_c00291{width:894.000000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:77.603100px;}
.x2_c00291{left:599.532150px;}
.x3_c00291{left:612.288150px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1_c00291{letter-spacing:-0.640000pt;}
.ls2_c00291{letter-spacing:-0.560000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws1_c00291{word-spacing:-7.728000pt;}
.ws2_c00291{word-spacing:0.000000pt;}
.ws3_c00291{word-spacing:6.272000pt;}
.ws0_c00291{word-spacing:1409.275733pt;}
._3_c00291{margin-left:-6.260267pt;}
._0_c00291{margin-left:-1.877333pt;}
._1_c00291{margin-left:-0.981333pt;}
._2_c00291{width:1.792000pt;}
._6_c00291{width:6.912000pt;}
._4_c00291{width:49.488000pt;}
._5_c00291{width:52.565333pt;}
.fs3_c00291{font-size:37.333333pt;}
.fs0_c00291{font-size:42.666667pt;}
.fs4_c00291{font-size:48.000000pt;}
.fs2_c00291{font-size:50.666667pt;}
.fs1_c00291{font-size:53.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y19_c00291{bottom:309.120133pt;}
.y18_c00291{bottom:321.120000pt;}
.y17_c00291{bottom:333.120000pt;}
.y16_c00291{bottom:356.679067pt;}
.y15_c00291{bottom:368.679067pt;}
.y14_c00291{bottom:380.679067pt;}
.y13_c00291{bottom:404.238133pt;}
.y12_c00291{bottom:416.238133pt;}
.y11_c00291{bottom:428.238133pt;}
.y10_c00291{bottom:448.017600pt;}
.yf_c00291{bottom:464.017600pt;}
.ye_c00291{bottom:487.576667pt;}
.yd_c00291{bottom:743.765467pt;}
.yc_c00291{bottom:755.765467pt;}
.yb_c00291{bottom:767.765467pt;}
.ya_c00291{bottom:791.324533pt;}
.y9_c00291{bottom:803.324533pt;}
.y8_c00291{bottom:815.324533pt;}
.y7_c00291{bottom:838.883600pt;}
.y6_c00291{bottom:850.883600pt;}
.y5_c00291{bottom:862.883600pt;}
.y4_c00291{bottom:882.663200pt;}
.y3_c00291{bottom:898.663200pt;}
.y2_c00291{bottom:922.222267pt;}
.y1_c00291{bottom:972.089733pt;}
.h6_c00291{height:26.917333pt;}
.h4_c00291{height:30.293333pt;}
.h2_c00291{height:34.901333pt;}
.h3_c00291{height:38.453333pt;}
.h5_c00291{height:38.880000pt;}
.h1_c00291{height:1009.333333pt;}
.h0_c00291{height:1009.338800pt;}
.w0_c00291{width:794.622400pt;}
.w1_c00291{width:794.666667pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:68.980533pt;}
.x2_c00291{left:532.917467pt;}
.x3_c00291{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:0.908000;font-style:normal;font-weight: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_c00292;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:1.067000;font-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_c00292{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls2_c00292{letter-spacing:-0.720000px;}
.ls3_c00292{letter-spacing:-0.630000px;}
.ls4_c00292{letter-spacing:-0.216000px;}
.ls1_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00292{word-spacing:-8.694000px;}
.ws0_c00292{word-spacing:-0.048000px;}
.ws2_c00292{word-spacing:0.000000px;}
.ws3_c00292{word-spacing:7.056000px;}
.ws4_c00292{word-spacing:55.890000px;}
._0_c00292{margin-left:-2755.276200px;}
._4_c00292{margin-left:-6.947400px;}
._1_c00292{margin-left:-2.256000px;}
._3_c00292{margin-left:-1.200000px;}
._2_c00292{width:1.008000px;}
._7_c00292{width:7.776000px;}
._5_c00292{width:55.674000px;}
._6_c00292{width:59.136000px;}
.fc0_c00292{color:rgb(35,31,32);}
.fs3_c00292{font-size:42.000000px;}
.fs0_c00292{font-size:48.000000px;}
.fs4_c00292{font-size:54.000000px;}
.fs2_c00292{font-size:57.000000px;}
.fs1_c00292{font-size:60.000000px;}
.y0_c00292{bottom:0.000000px;}
.y19_c00292{bottom:348.078900px;}
.y18_c00292{bottom:361.578900px;}
.y17_c00292{bottom:375.078900px;}
.y16_c00292{bottom:401.582850px;}
.y15_c00292{bottom:415.082850px;}
.y14_c00292{bottom:428.582850px;}
.y13_c00292{bottom:455.086800px;}
.y12_c00292{bottom:468.586800px;}
.y11_c00292{bottom:482.086800px;}
.y10_c00292{bottom:504.338700px;}
.yf_c00292{bottom:522.338700px;}
.ye_c00292{bottom:548.842650px;}
.yd_c00292{bottom:837.055200px;}
.yc_c00292{bottom:850.555200px;}
.yb_c00292{bottom:864.055200px;}
.ya_c00292{bottom:890.559150px;}
.y9_c00292{bottom:904.059150px;}
.y8_c00292{bottom:917.559150px;}
.y7_c00292{bottom:944.063100px;}
.y6_c00292{bottom:957.563100px;}
.y5_c00292{bottom:971.063100px;}
.y4_c00292{bottom:993.315000px;}
.y3_c00292{bottom:1011.315000px;}
.y2_c00292{bottom:1037.819100px;}
.y1_c00292{bottom:1093.600950px;}
.h7_c00292{height:30.282000px;}
.h5_c00292{height:34.080000px;}
.h2_c00292{height:39.264000px;}
.h3_c00292{height:39.984000px;}
.h4_c00292{height:43.260000px;}
.h6_c00292{height:43.740000px;}
.h1_c00292{height:1135.500000px;}
.h0_c00292{height:1135.506150px;}
.w0_c00292{width:893.950200px;}
.w1_c00292{width:894.000000px;}
.x0_c00292{left:0.000000px;}
.x4_c00292{left:128.744700px;}
.x5_c00292{left:141.500700px;}
.x2_c00292{left:188.061900px;}
.x3_c00292{left:190.513350px;}
.x1_c00292{left:800.165850px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls2_c00292{letter-spacing:-0.640000pt;}
.ls3_c00292{letter-spacing:-0.560000pt;}
.ls4_c00292{letter-spacing:-0.192000pt;}
.ls1_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.426667pt;}
.ws1_c00292{word-spacing:-7.728000pt;}
.ws0_c00292{word-spacing:-0.042667pt;}
.ws2_c00292{word-spacing:0.000000pt;}
.ws3_c00292{word-spacing:6.272000pt;}
.ws4_c00292{word-spacing:49.680000pt;}
._0_c00292{margin-left:-2449.134400pt;}
._4_c00292{margin-left:-6.175467pt;}
._1_c00292{margin-left:-2.005333pt;}
._3_c00292{margin-left:-1.066667pt;}
._2_c00292{width:0.896000pt;}
._7_c00292{width:6.912000pt;}
._5_c00292{width:49.488000pt;}
._6_c00292{width:52.565333pt;}
.fs3_c00292{font-size:37.333333pt;}
.fs0_c00292{font-size:42.666667pt;}
.fs4_c00292{font-size:48.000000pt;}
.fs2_c00292{font-size:50.666667pt;}
.fs1_c00292{font-size:53.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y19_c00292{bottom:309.403467pt;}
.y18_c00292{bottom:321.403467pt;}
.y17_c00292{bottom:333.403467pt;}
.y16_c00292{bottom:356.962533pt;}
.y15_c00292{bottom:368.962533pt;}
.y14_c00292{bottom:380.962533pt;}
.y13_c00292{bottom:404.521600pt;}
.y12_c00292{bottom:416.521600pt;}
.y11_c00292{bottom:428.521600pt;}
.y10_c00292{bottom:448.301067pt;}
.yf_c00292{bottom:464.301067pt;}
.ye_c00292{bottom:487.860133pt;}
.yd_c00292{bottom:744.049067pt;}
.yc_c00292{bottom:756.049067pt;}
.yb_c00292{bottom:768.049067pt;}
.ya_c00292{bottom:791.608133pt;}
.y9_c00292{bottom:803.608133pt;}
.y8_c00292{bottom:815.608133pt;}
.y7_c00292{bottom:839.167200pt;}
.y6_c00292{bottom:851.167200pt;}
.y5_c00292{bottom:863.167200pt;}
.y4_c00292{bottom:882.946667pt;}
.y3_c00292{bottom:898.946667pt;}
.y2_c00292{bottom:922.505867pt;}
.y1_c00292{bottom:972.089733pt;}
.h7_c00292{height:26.917333pt;}
.h5_c00292{height:30.293333pt;}
.h2_c00292{height:34.901333pt;}
.h3_c00292{height:35.541333pt;}
.h4_c00292{height:38.453333pt;}
.h6_c00292{height:38.880000pt;}
.h1_c00292{height:1009.333333pt;}
.h0_c00292{height:1009.338800pt;}
.w0_c00292{width:794.622400pt;}
.w1_c00292{width:794.666667pt;}
.x0_c00292{left:0.000000pt;}
.x4_c00292{left:114.439733pt;}
.x5_c00292{left:125.778400pt;}
.x2_c00292{left:167.166133pt;}
.x3_c00292{left:169.345200pt;}
.x1_c00292{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00293;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00293;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00293{font-family:ff7_c00293;line-height:0.710000;font-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_c00293{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls1_c00293{letter-spacing:-0.720000px;}
.ls2_c00293{letter-spacing:-0.630000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00293{word-spacing:-8.694000px;}
.ws2_c00293{word-spacing:-6.487200px;}
.ws3_c00293{word-spacing:0.000000px;}
.ws4_c00293{word-spacing:7.056000px;}
.ws0_c00293{word-spacing:1585.435200px;}
._3_c00293{margin-left:-7.042800px;}
._7_c00293{margin-left:-5.238000px;}
._0_c00293{margin-left:-2.112000px;}
._1_c00293{margin-left:-1.104000px;}
._2_c00293{width:2.016000px;}
._6_c00293{width:7.776000px;}
._4_c00293{width:55.674000px;}
._5_c00293{width:59.136000px;}
.fc0_c00293{color:rgb(35,31,32);}
.fs5_c00293{font-size:30.600000px;}
.fs6_c00293{font-size:36.000000px;}
.fs3_c00293{font-size:42.000000px;}
.fs0_c00293{font-size:48.000000px;}
.fs4_c00293{font-size:54.000000px;}
.fs2_c00293{font-size:57.000000px;}
.fs1_c00293{font-size:60.000000px;}
.y0_c00293{bottom:0.000000px;}
.y17_c00293{bottom:361.047450px;}
.y16_c00293{bottom:374.547450px;}
.y15_c00293{bottom:388.047450px;}
.y14_c00293{bottom:414.551400px;}
.y13_c00293{bottom:428.051400px;}
.y12_c00293{bottom:454.555350px;}
.y11_c00293{bottom:468.055350px;}
.y10_c00293{bottom:481.555350px;}
.yf_c00293{bottom:503.807250px;}
.ye_c00293{bottom:521.807250px;}
.yd_c00293{bottom:548.311200px;}
.y19_c00293{bottom:551.323050px;}
.yc_c00293{bottom:850.023600px;}
.yb_c00293{bottom:863.523600px;}
.ya_c00293{bottom:877.023600px;}
.y9_c00293{bottom:903.527550px;}
.y8_c00293{bottom:917.027550px;}
.y7_c00293{bottom:943.531500px;}
.y6_c00293{bottom:957.031500px;}
.y5_c00293{bottom:970.531500px;}
.y4_c00293{bottom:992.783550px;}
.y3_c00293{bottom:1010.783550px;}
.y2_c00293{bottom:1037.287500px;}
.y18_c00293{bottom:1040.299350px;}
.y1_c00293{bottom:1093.600950px;}
.h7_c00293{height:25.200000px;}
.h6_c00293{height:30.282000px;}
.h4_c00293{height:34.080000px;}
.h2_c00293{height:39.264000px;}
.h3_c00293{height:43.260000px;}
.h5_c00293{height:43.740000px;}
.h1_c00293{height:1135.500000px;}
.h0_c00293{height:1135.506150px;}
.w0_c00293{width:893.950200px;}
.w1_c00293{width:894.000000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:77.603100px;}
.x4_c00293{left:424.138500px;}
.x2_c00293{left:599.532150px;}
.x3_c00293{left:612.288150px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls1_c00293{letter-spacing:-0.640000pt;}
.ls2_c00293{letter-spacing:-0.560000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws1_c00293{word-spacing:-7.728000pt;}
.ws2_c00293{word-spacing:-5.766400pt;}
.ws3_c00293{word-spacing:0.000000pt;}
.ws4_c00293{word-spacing:6.272000pt;}
.ws0_c00293{word-spacing:1409.275733pt;}
._3_c00293{margin-left:-6.260267pt;}
._7_c00293{margin-left:-4.656000pt;}
._0_c00293{margin-left:-1.877333pt;}
._1_c00293{margin-left:-0.981333pt;}
._2_c00293{width:1.792000pt;}
._6_c00293{width:6.912000pt;}
._4_c00293{width:49.488000pt;}
._5_c00293{width:52.565333pt;}
.fs5_c00293{font-size:27.200000pt;}
.fs6_c00293{font-size:32.000000pt;}
.fs3_c00293{font-size:37.333333pt;}
.fs0_c00293{font-size:42.666667pt;}
.fs4_c00293{font-size:48.000000pt;}
.fs2_c00293{font-size:50.666667pt;}
.fs1_c00293{font-size:53.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y17_c00293{bottom:320.931067pt;}
.y16_c00293{bottom:332.931067pt;}
.y15_c00293{bottom:344.931067pt;}
.y14_c00293{bottom:368.490133pt;}
.y13_c00293{bottom:380.490133pt;}
.y12_c00293{bottom:404.049200pt;}
.y11_c00293{bottom:416.049200pt;}
.y10_c00293{bottom:428.049200pt;}
.yf_c00293{bottom:447.828667pt;}
.ye_c00293{bottom:463.828667pt;}
.yd_c00293{bottom:487.387733pt;}
.y19_c00293{bottom:490.064933pt;}
.yc_c00293{bottom:755.576533pt;}
.yb_c00293{bottom:767.576533pt;}
.ya_c00293{bottom:779.576533pt;}
.y9_c00293{bottom:803.135600pt;}
.y8_c00293{bottom:815.135600pt;}
.y7_c00293{bottom:838.694667pt;}
.y6_c00293{bottom:850.694667pt;}
.y5_c00293{bottom:862.694667pt;}
.y4_c00293{bottom:882.474267pt;}
.y3_c00293{bottom:898.474267pt;}
.y2_c00293{bottom:922.033333pt;}
.y18_c00293{bottom:924.710533pt;}
.y1_c00293{bottom:972.089733pt;}
.h7_c00293{height:22.400000pt;}
.h6_c00293{height:26.917333pt;}
.h4_c00293{height:30.293333pt;}
.h2_c00293{height:34.901333pt;}
.h3_c00293{height:38.453333pt;}
.h5_c00293{height:38.880000pt;}
.h1_c00293{height:1009.333333pt;}
.h0_c00293{height:1009.338800pt;}
.w0_c00293{width:794.622400pt;}
.w1_c00293{width:794.666667pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:68.980533pt;}
.x4_c00293{left:377.012000pt;}
.x2_c00293{left:532.917467pt;}
.x3_c00293{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00294;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00294;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00294{font-family:ff7_c00294;line-height:1.067000;font-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_c00294{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls3_c00294{letter-spacing:-0.720000px;}
.ls4_c00294{letter-spacing:-0.630000px;}
.ls2_c00294{letter-spacing:-0.216000px;}
.ls1_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00294{word-spacing:-8.694000px;}
.ws0_c00294{word-spacing:-0.048000px;}
.ws2_c00294{word-spacing:0.000000px;}
.ws4_c00294{word-spacing:0.216000px;}
.ws3_c00294{word-spacing:7.056000px;}
._0_c00294{margin-left:-2755.276200px;}
._4_c00294{margin-left:-6.947400px;}
._1_c00294{margin-left:-2.256000px;}
._3_c00294{margin-left:-1.200000px;}
._2_c00294{width:1.008000px;}
._7_c00294{width:7.776000px;}
._5_c00294{width:55.674000px;}
._6_c00294{width:59.136000px;}
.fc0_c00294{color:rgb(35,31,32);}
.fs3_c00294{font-size:42.000000px;}
.fs0_c00294{font-size:48.000000px;}
.fs4_c00294{font-size:54.000000px;}
.fs2_c00294{font-size:57.000000px;}
.fs1_c00294{font-size:60.000000px;}
.y0_c00294{bottom:0.000000px;}
.y1a_c00294{bottom:347.547450px;}
.y19_c00294{bottom:361.047450px;}
.y18_c00294{bottom:374.547450px;}
.y17_c00294{bottom:401.051400px;}
.y16_c00294{bottom:414.551400px;}
.y15_c00294{bottom:428.051400px;}
.y14_c00294{bottom:454.555350px;}
.y13_c00294{bottom:468.055350px;}
.y12_c00294{bottom:481.555350px;}
.y11_c00294{bottom:503.807250px;}
.y10_c00294{bottom:521.807250px;}
.yf_c00294{bottom:548.311200px;}
.ye_c00294{bottom:818.523600px;}
.yd_c00294{bottom:832.023600px;}
.yc_c00294{bottom:845.523600px;}
.yb_c00294{bottom:872.027550px;}
.ya_c00294{bottom:885.527550px;}
.y9_c00294{bottom:899.027550px;}
.y8_c00294{bottom:925.531500px;}
.y7_c00294{bottom:939.031500px;}
.y6_c00294{bottom:952.531500px;}
.y5_c00294{bottom:974.783550px;}
.y4_c00294{bottom:992.783550px;}
.y3_c00294{bottom:1010.783550px;}
.y2_c00294{bottom:1037.287500px;}
.y1_c00294{bottom:1093.600950px;}
.h7_c00294{height:30.282000px;}
.h5_c00294{height:34.080000px;}
.h2_c00294{height:39.264000px;}
.h3_c00294{height:39.984000px;}
.h4_c00294{height:43.260000px;}
.h6_c00294{height:43.740000px;}
.h1_c00294{height:1135.500000px;}
.h0_c00294{height:1135.506150px;}
.w0_c00294{width:893.950200px;}
.w1_c00294{width:894.000000px;}
.x0_c00294{left:0.000000px;}
.x4_c00294{left:128.744700px;}
.x5_c00294{left:141.500700px;}
.x6_c00294{left:145.752600px;}
.x2_c00294{left:188.061900px;}
.x3_c00294{left:190.513350px;}
.x1_c00294{left:800.165850px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls3_c00294{letter-spacing:-0.640000pt;}
.ls4_c00294{letter-spacing:-0.560000pt;}
.ls2_c00294{letter-spacing:-0.192000pt;}
.ls1_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:0.426667pt;}
.ws1_c00294{word-spacing:-7.728000pt;}
.ws0_c00294{word-spacing:-0.042667pt;}
.ws2_c00294{word-spacing:0.000000pt;}
.ws4_c00294{word-spacing:0.192000pt;}
.ws3_c00294{word-spacing:6.272000pt;}
._0_c00294{margin-left:-2449.134400pt;}
._4_c00294{margin-left:-6.175467pt;}
._1_c00294{margin-left:-2.005333pt;}
._3_c00294{margin-left:-1.066667pt;}
._2_c00294{width:0.896000pt;}
._7_c00294{width:6.912000pt;}
._5_c00294{width:49.488000pt;}
._6_c00294{width:52.565333pt;}
.fs3_c00294{font-size:37.333333pt;}
.fs0_c00294{font-size:42.666667pt;}
.fs4_c00294{font-size:48.000000pt;}
.fs2_c00294{font-size:50.666667pt;}
.fs1_c00294{font-size:53.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.y1a_c00294{bottom:308.931067pt;}
.y19_c00294{bottom:320.931067pt;}
.y18_c00294{bottom:332.931067pt;}
.y17_c00294{bottom:356.490133pt;}
.y16_c00294{bottom:368.490133pt;}
.y15_c00294{bottom:380.490133pt;}
.y14_c00294{bottom:404.049200pt;}
.y13_c00294{bottom:416.049200pt;}
.y12_c00294{bottom:428.049200pt;}
.y11_c00294{bottom:447.828667pt;}
.y10_c00294{bottom:463.828667pt;}
.yf_c00294{bottom:487.387733pt;}
.ye_c00294{bottom:727.576533pt;}
.yd_c00294{bottom:739.576533pt;}
.yc_c00294{bottom:751.576533pt;}
.yb_c00294{bottom:775.135600pt;}
.ya_c00294{bottom:787.135600pt;}
.y9_c00294{bottom:799.135600pt;}
.y8_c00294{bottom:822.694667pt;}
.y7_c00294{bottom:834.694667pt;}
.y6_c00294{bottom:846.694667pt;}
.y5_c00294{bottom:866.474267pt;}
.y4_c00294{bottom:882.474267pt;}
.y3_c00294{bottom:898.474267pt;}
.y2_c00294{bottom:922.033333pt;}
.y1_c00294{bottom:972.089733pt;}
.h7_c00294{height:26.917333pt;}
.h5_c00294{height:30.293333pt;}
.h2_c00294{height:34.901333pt;}
.h3_c00294{height:35.541333pt;}
.h4_c00294{height:38.453333pt;}
.h6_c00294{height:38.880000pt;}
.h1_c00294{height:1009.333333pt;}
.h0_c00294{height:1009.338800pt;}
.w0_c00294{width:794.622400pt;}
.w1_c00294{width:794.666667pt;}
.x0_c00294{left:0.000000pt;}
.x4_c00294{left:114.439733pt;}
.x5_c00294{left:125.778400pt;}
.x6_c00294{left:129.557867pt;}
.x2_c00294{left:167.166133pt;}
.x3_c00294{left:169.345200pt;}
.x1_c00294{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00295;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00295;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00295{font-family:ff7_c00295;line-height:0.710000;font-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_c00295{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls2_c00295{letter-spacing:-0.720000px;}
.ls3_c00295{letter-spacing:-0.630000px;}
.ls1_c00295{letter-spacing:-0.378000px;}
.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;}
}
.ws1_c00295{word-spacing:-8.694000px;}
.ws2_c00295{word-spacing:-6.487200px;}
.ws3_c00295{word-spacing:0.000000px;}
.ws5_c00295{word-spacing:0.378000px;}
.ws4_c00295{word-spacing:7.056000px;}
.ws0_c00295{word-spacing:1585.435200px;}
._3_c00295{margin-left:-7.042800px;}
._7_c00295{margin-left:-4.050000px;}
._0_c00295{margin-left:-2.112000px;}
._1_c00295{margin-left:-1.104000px;}
._2_c00295{width:2.016000px;}
._6_c00295{width:7.776000px;}
._4_c00295{width:55.674000px;}
._5_c00295{width:59.136000px;}
.fc0_c00295{color:rgb(35,31,32);}
.fs5_c00295{font-size:30.600000px;}
.fs6_c00295{font-size:36.000000px;}
.fs3_c00295{font-size:42.000000px;}
.fs0_c00295{font-size:48.000000px;}
.fs4_c00295{font-size:54.000000px;}
.fs2_c00295{font-size:57.000000px;}
.fs1_c00295{font-size:60.000000px;}
.y0_c00295{bottom:0.000000px;}
.y19_c00295{bottom:347.547450px;}
.y18_c00295{bottom:361.047450px;}
.y17_c00295{bottom:374.547450px;}
.y16_c00295{bottom:401.051400px;}
.y15_c00295{bottom:414.551400px;}
.y14_c00295{bottom:428.051400px;}
.y13_c00295{bottom:454.555350px;}
.y12_c00295{bottom:468.055350px;}
.y11_c00295{bottom:481.555350px;}
.y10_c00295{bottom:503.807250px;}
.yf_c00295{bottom:521.807250px;}
.ye_c00295{bottom:548.311200px;}
.yd_c00295{bottom:832.023600px;}
.yc_c00295{bottom:845.523600px;}
.yb_c00295{bottom:859.023600px;}
.ya_c00295{bottom:885.527550px;}
.y9_c00295{bottom:899.027550px;}
.y8_c00295{bottom:925.531500px;}
.y7_c00295{bottom:939.031500px;}
.y6_c00295{bottom:952.531500px;}
.y5_c00295{bottom:974.783550px;}
.y4_c00295{bottom:992.783550px;}
.y3_c00295{bottom:1010.783550px;}
.y2_c00295{bottom:1037.287500px;}
.y1a_c00295{bottom:1040.299350px;}
.y1_c00295{bottom:1093.600950px;}
.h7_c00295{height:25.200000px;}
.h6_c00295{height:30.282000px;}
.h4_c00295{height:34.080000px;}
.h2_c00295{height:39.264000px;}
.h3_c00295{height:43.260000px;}
.h5_c00295{height:43.740000px;}
.h1_c00295{height:1135.500000px;}
.h0_c00295{height:1135.506150px;}
.w0_c00295{width:893.950200px;}
.w1_c00295{width:894.000000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:77.603100px;}
.x5_c00295{left:424.138500px;}
.x2_c00295{left:599.532150px;}
.x3_c00295{left:612.288150px;}
.x4_c00295{left:616.540050px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls2_c00295{letter-spacing:-0.640000pt;}
.ls3_c00295{letter-spacing:-0.560000pt;}
.ls1_c00295{letter-spacing:-0.336000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws1_c00295{word-spacing:-7.728000pt;}
.ws2_c00295{word-spacing:-5.766400pt;}
.ws3_c00295{word-spacing:0.000000pt;}
.ws5_c00295{word-spacing:0.336000pt;}
.ws4_c00295{word-spacing:6.272000pt;}
.ws0_c00295{word-spacing:1409.275733pt;}
._3_c00295{margin-left:-6.260267pt;}
._7_c00295{margin-left:-3.600000pt;}
._0_c00295{margin-left:-1.877333pt;}
._1_c00295{margin-left:-0.981333pt;}
._2_c00295{width:1.792000pt;}
._6_c00295{width:6.912000pt;}
._4_c00295{width:49.488000pt;}
._5_c00295{width:52.565333pt;}
.fs5_c00295{font-size:27.200000pt;}
.fs6_c00295{font-size:32.000000pt;}
.fs3_c00295{font-size:37.333333pt;}
.fs0_c00295{font-size:42.666667pt;}
.fs4_c00295{font-size:48.000000pt;}
.fs2_c00295{font-size:50.666667pt;}
.fs1_c00295{font-size:53.333333pt;}
.y0_c00295{bottom:0.000000pt;}
.y19_c00295{bottom:308.931067pt;}
.y18_c00295{bottom:320.931067pt;}
.y17_c00295{bottom:332.931067pt;}
.y16_c00295{bottom:356.490133pt;}
.y15_c00295{bottom:368.490133pt;}
.y14_c00295{bottom:380.490133pt;}
.y13_c00295{bottom:404.049200pt;}
.y12_c00295{bottom:416.049200pt;}
.y11_c00295{bottom:428.049200pt;}
.y10_c00295{bottom:447.828667pt;}
.yf_c00295{bottom:463.828667pt;}
.ye_c00295{bottom:487.387733pt;}
.yd_c00295{bottom:739.576533pt;}
.yc_c00295{bottom:751.576533pt;}
.yb_c00295{bottom:763.576533pt;}
.ya_c00295{bottom:787.135600pt;}
.y9_c00295{bottom:799.135600pt;}
.y8_c00295{bottom:822.694667pt;}
.y7_c00295{bottom:834.694667pt;}
.y6_c00295{bottom:846.694667pt;}
.y5_c00295{bottom:866.474267pt;}
.y4_c00295{bottom:882.474267pt;}
.y3_c00295{bottom:898.474267pt;}
.y2_c00295{bottom:922.033333pt;}
.y1a_c00295{bottom:924.710533pt;}
.y1_c00295{bottom:972.089733pt;}
.h7_c00295{height:22.400000pt;}
.h6_c00295{height:26.917333pt;}
.h4_c00295{height:30.293333pt;}
.h2_c00295{height:34.901333pt;}
.h3_c00295{height:38.453333pt;}
.h5_c00295{height:38.880000pt;}
.h1_c00295{height:1009.333333pt;}
.h0_c00295{height:1009.338800pt;}
.w0_c00295{width:794.622400pt;}
.w1_c00295{width:794.666667pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:68.980533pt;}
.x5_c00295{left:377.012000pt;}
.x2_c00295{left:532.917467pt;}
.x3_c00295{left:544.256133pt;}
.x4_c00295{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:0.908000;font-style:normal;font-weight: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_c00296;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00296{font-family:ff7_c00296;line-height:1.067000;font-style:normal;font-weight: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_c00296;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00296{font-family:ff8_c00296;line-height:0.710000;font-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_c00296{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls2_c00296{letter-spacing:-0.720000px;}
.ls3_c00296{letter-spacing:-0.630000px;}
.ls1_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00296{word-spacing:-8.694000px;}
.ws2_c00296{word-spacing:-6.487200px;}
.ws0_c00296{word-spacing:-0.048000px;}
.ws3_c00296{word-spacing:0.000000px;}
.ws4_c00296{word-spacing:7.056000px;}
._0_c00296{margin-left:-2755.276200px;}
._4_c00296{margin-left:-6.946800px;}
._1_c00296{margin-left:-2.256000px;}
._3_c00296{margin-left:-1.200000px;}
._2_c00296{width:1.008000px;}
._7_c00296{width:7.776000px;}
._5_c00296{width:55.674000px;}
._6_c00296{width:59.136000px;}
.fc0_c00296{color:rgb(35,31,32);}
.fs5_c00296{font-size:30.600000px;}
.fs6_c00296{font-size:36.000000px;}
.fs3_c00296{font-size:42.000000px;}
.fs0_c00296{font-size:48.000000px;}
.fs4_c00296{font-size:54.000000px;}
.fs2_c00296{font-size:57.000000px;}
.fs1_c00296{font-size:60.000000px;}
.y0_c00296{bottom:0.000000px;}
.y19_c00296{bottom:365.830950px;}
.y18_c00296{bottom:379.330950px;}
.y17_c00296{bottom:392.830950px;}
.y16_c00296{bottom:415.082850px;}
.y15_c00296{bottom:428.582850px;}
.y14_c00296{bottom:455.086800px;}
.y13_c00296{bottom:468.586800px;}
.y12_c00296{bottom:482.086800px;}
.y11_c00296{bottom:504.338700px;}
.y10_c00296{bottom:522.338700px;}
.yf_c00296{bottom:548.842650px;}
.y1a_c00296{bottom:551.323050px;}
.ye_c00296{bottom:819.055200px;}
.yd_c00296{bottom:832.555200px;}
.yc_c00296{bottom:846.055200px;}
.yb_c00296{bottom:872.559150px;}
.ya_c00296{bottom:886.059150px;}
.y9_c00296{bottom:899.559150px;}
.y8_c00296{bottom:926.063100px;}
.y7_c00296{bottom:939.563100px;}
.y6_c00296{bottom:953.063100px;}
.y5_c00296{bottom:975.315000px;}
.y4_c00296{bottom:993.315000px;}
.y3_c00296{bottom:1011.315000px;}
.y2_c00296{bottom:1037.819100px;}
.y1_c00296{bottom:1093.600950px;}
.h8_c00296{height:25.200000px;}
.h7_c00296{height:30.282000px;}
.h5_c00296{height:34.080000px;}
.h2_c00296{height:39.264000px;}
.h3_c00296{height:39.984000px;}
.h4_c00296{height:43.260000px;}
.h6_c00296{height:43.740000px;}
.h1_c00296{height:1135.500000px;}
.h0_c00296{height:1135.506150px;}
.w0_c00296{width:893.950200px;}
.w1_c00296{width:894.000000px;}
.x0_c00296{left:0.000000px;}
.x4_c00296{left:128.626800px;}
.x5_c00296{left:141.382650px;}
.x6_c00296{left:145.634700px;}
.x2_c00296{left:188.061900px;}
.x3_c00296{left:190.513350px;}
.x7_c00296{left:321.919200px;}
.x1_c00296{left:800.165850px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls2_c00296{letter-spacing:-0.640000pt;}
.ls3_c00296{letter-spacing:-0.560000pt;}
.ls1_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:0.426667pt;}
.ws1_c00296{word-spacing:-7.728000pt;}
.ws2_c00296{word-spacing:-5.766400pt;}
.ws0_c00296{word-spacing:-0.042667pt;}
.ws3_c00296{word-spacing:0.000000pt;}
.ws4_c00296{word-spacing:6.272000pt;}
._0_c00296{margin-left:-2449.134400pt;}
._4_c00296{margin-left:-6.174933pt;}
._1_c00296{margin-left:-2.005333pt;}
._3_c00296{margin-left:-1.066667pt;}
._2_c00296{width:0.896000pt;}
._7_c00296{width:6.912000pt;}
._5_c00296{width:49.488000pt;}
._6_c00296{width:52.565333pt;}
.fs5_c00296{font-size:27.200000pt;}
.fs6_c00296{font-size:32.000000pt;}
.fs3_c00296{font-size:37.333333pt;}
.fs0_c00296{font-size:42.666667pt;}
.fs4_c00296{font-size:48.000000pt;}
.fs2_c00296{font-size:50.666667pt;}
.fs1_c00296{font-size:53.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y19_c00296{bottom:325.183067pt;}
.y18_c00296{bottom:337.183067pt;}
.y17_c00296{bottom:349.183067pt;}
.y16_c00296{bottom:368.962533pt;}
.y15_c00296{bottom:380.962533pt;}
.y14_c00296{bottom:404.521600pt;}
.y13_c00296{bottom:416.521600pt;}
.y12_c00296{bottom:428.521600pt;}
.y11_c00296{bottom:448.301067pt;}
.y10_c00296{bottom:464.301067pt;}
.yf_c00296{bottom:487.860133pt;}
.y1a_c00296{bottom:490.064933pt;}
.ye_c00296{bottom:728.049067pt;}
.yd_c00296{bottom:740.049067pt;}
.yc_c00296{bottom:752.049067pt;}
.yb_c00296{bottom:775.608133pt;}
.ya_c00296{bottom:787.608133pt;}
.y9_c00296{bottom:799.608133pt;}
.y8_c00296{bottom:823.167200pt;}
.y7_c00296{bottom:835.167200pt;}
.y6_c00296{bottom:847.167200pt;}
.y5_c00296{bottom:866.946667pt;}
.y4_c00296{bottom:882.946667pt;}
.y3_c00296{bottom:898.946667pt;}
.y2_c00296{bottom:922.505867pt;}
.y1_c00296{bottom:972.089733pt;}
.h8_c00296{height:22.400000pt;}
.h7_c00296{height:26.917333pt;}
.h5_c00296{height:30.293333pt;}
.h2_c00296{height:34.901333pt;}
.h3_c00296{height:35.541333pt;}
.h4_c00296{height:38.453333pt;}
.h6_c00296{height:38.880000pt;}
.h1_c00296{height:1009.333333pt;}
.h0_c00296{height:1009.338800pt;}
.w0_c00296{width:794.622400pt;}
.w1_c00296{width:794.666667pt;}
.x0_c00296{left:0.000000pt;}
.x4_c00296{left:114.334933pt;}
.x5_c00296{left:125.673467pt;}
.x6_c00296{left:129.453067pt;}
.x2_c00296{left:167.166133pt;}
.x3_c00296{left:169.345200pt;}
.x7_c00296{left:286.150400pt;}
.x1_c00296{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls1_c00297{letter-spacing:-0.720000px;}
.ls2_c00297{letter-spacing:-0.630000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00297{word-spacing:-8.694000px;}
.ws2_c00297{word-spacing:0.000000px;}
.ws3_c00297{word-spacing:7.056000px;}
.ws0_c00297{word-spacing:1585.435200px;}
._3_c00297{margin-left:-7.042800px;}
._7_c00297{margin-left:-4.050000px;}
._0_c00297{margin-left:-2.112000px;}
._1_c00297{margin-left:-1.104000px;}
._2_c00297{width:2.016000px;}
._6_c00297{width:7.776000px;}
._4_c00297{width:55.674000px;}
._5_c00297{width:59.136000px;}
.fc0_c00297{color:rgb(35,31,32);}
.fs3_c00297{font-size:42.000000px;}
.fs0_c00297{font-size:48.000000px;}
.fs4_c00297{font-size:54.000000px;}
.fs2_c00297{font-size:57.000000px;}
.fs1_c00297{font-size:60.000000px;}
.y0_c00297{bottom:0.000000px;}
.yd_c00297{bottom:348.610500px;}
.yc_c00297{bottom:362.110500px;}
.yb_c00297{bottom:375.610500px;}
.ya_c00297{bottom:402.114300px;}
.y9_c00297{bottom:415.614300px;}
.y8_c00297{bottom:429.114300px;}
.y7_c00297{bottom:455.618250px;}
.y6_c00297{bottom:469.118250px;}
.y5_c00297{bottom:482.618250px;}
.y4_c00297{bottom:504.870300px;}
.y3_c00297{bottom:522.870300px;}
.y2_c00297{bottom:549.374250px;}
.y19_c00297{bottom:836.293950px;}
.y18_c00297{bottom:849.793950px;}
.y17_c00297{bottom:863.293950px;}
.y16_c00297{bottom:889.797900px;}
.y15_c00297{bottom:903.297900px;}
.y14_c00297{bottom:916.797900px;}
.y13_c00297{bottom:943.301850px;}
.y12_c00297{bottom:956.801850px;}
.y11_c00297{bottom:970.301850px;}
.y10_c00297{bottom:992.553900px;}
.yf_c00297{bottom:1010.553900px;}
.ye_c00297{bottom:1037.057850px;}
.y1_c00297{bottom:1093.600950px;}
.h6_c00297{height:30.282000px;}
.h4_c00297{height:34.080000px;}
.h2_c00297{height:39.264000px;}
.h3_c00297{height:43.260000px;}
.h5_c00297{height:43.740000px;}
.h1_c00297{height:1135.500000px;}
.h0_c00297{height:1135.506150px;}
.w0_c00297{width:893.950200px;}
.w1_c00297{width:894.000000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:77.603100px;}
.x2_c00297{left:599.532150px;}
.x3_c00297{left:612.288150px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls1_c00297{letter-spacing:-0.640000pt;}
.ls2_c00297{letter-spacing:-0.560000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws1_c00297{word-spacing:-7.728000pt;}
.ws2_c00297{word-spacing:0.000000pt;}
.ws3_c00297{word-spacing:6.272000pt;}
.ws0_c00297{word-spacing:1409.275733pt;}
._3_c00297{margin-left:-6.260267pt;}
._7_c00297{margin-left:-3.600000pt;}
._0_c00297{margin-left:-1.877333pt;}
._1_c00297{margin-left:-0.981333pt;}
._2_c00297{width:1.792000pt;}
._6_c00297{width:6.912000pt;}
._4_c00297{width:49.488000pt;}
._5_c00297{width:52.565333pt;}
.fs3_c00297{font-size:37.333333pt;}
.fs0_c00297{font-size:42.666667pt;}
.fs4_c00297{font-size:48.000000pt;}
.fs2_c00297{font-size:50.666667pt;}
.fs1_c00297{font-size:53.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.yd_c00297{bottom:309.876000pt;}
.yc_c00297{bottom:321.876000pt;}
.yb_c00297{bottom:333.876000pt;}
.ya_c00297{bottom:357.434933pt;}
.y9_c00297{bottom:369.434933pt;}
.y8_c00297{bottom:381.434933pt;}
.y7_c00297{bottom:404.994000pt;}
.y6_c00297{bottom:416.994000pt;}
.y5_c00297{bottom:428.994000pt;}
.y4_c00297{bottom:448.773600pt;}
.y3_c00297{bottom:464.773600pt;}
.y2_c00297{bottom:488.332667pt;}
.y19_c00297{bottom:743.372400pt;}
.y18_c00297{bottom:755.372400pt;}
.y17_c00297{bottom:767.372400pt;}
.y16_c00297{bottom:790.931467pt;}
.y15_c00297{bottom:802.931467pt;}
.y14_c00297{bottom:814.931467pt;}
.y13_c00297{bottom:838.490533pt;}
.y12_c00297{bottom:850.490533pt;}
.y11_c00297{bottom:862.490533pt;}
.y10_c00297{bottom:882.270133pt;}
.yf_c00297{bottom:898.270133pt;}
.ye_c00297{bottom:921.829200pt;}
.y1_c00297{bottom:972.089733pt;}
.h6_c00297{height:26.917333pt;}
.h4_c00297{height:30.293333pt;}
.h2_c00297{height:34.901333pt;}
.h3_c00297{height:38.453333pt;}
.h5_c00297{height:38.880000pt;}
.h1_c00297{height:1009.333333pt;}
.h0_c00297{height:1009.338800pt;}
.w0_c00297{width:794.622400pt;}
.w1_c00297{width:794.666667pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:68.980533pt;}
.x2_c00297{left:532.917467pt;}
.x3_c00297{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00298;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;line-height:0.908000;font-style:normal;font-weight: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_c00298;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00298{font-family:ff7_c00298;line-height:1.067000;font-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_c00298{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls2_c00298{letter-spacing:-0.720000px;}
.ls3_c00298{letter-spacing:-0.630000px;}
.ls1_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00298{word-spacing:-8.694000px;}
.ws0_c00298{word-spacing:-0.048000px;}
.ws2_c00298{word-spacing:0.000000px;}
.ws3_c00298{word-spacing:7.056000px;}
._0_c00298{margin-left:-2755.276200px;}
._4_c00298{margin-left:-6.947400px;}
._6_c00298{margin-left:-5.496000px;}
._1_c00298{margin-left:-2.256000px;}
._3_c00298{margin-left:-1.200000px;}
._2_c00298{width:1.008000px;}
._8_c00298{width:7.776000px;}
._5_c00298{width:55.674000px;}
._7_c00298{width:59.136000px;}
.fc0_c00298{color:rgb(35,31,32);}
.fs3_c00298{font-size:42.000000px;}
.fs0_c00298{font-size:48.000000px;}
.fs4_c00298{font-size:54.000000px;}
.fs2_c00298{font-size:57.000000px;}
.fs1_c00298{font-size:60.000000px;}
.y0_c00298{bottom:0.000000px;}
.y19_c00298{bottom:347.972700px;}
.y18_c00298{bottom:361.472700px;}
.y17_c00298{bottom:374.972550px;}
.y16_c00298{bottom:401.476500px;}
.y15_c00298{bottom:414.976500px;}
.y14_c00298{bottom:428.476500px;}
.y13_c00298{bottom:454.980450px;}
.y12_c00298{bottom:468.480450px;}
.y11_c00298{bottom:481.980450px;}
.y10_c00298{bottom:504.232500px;}
.yf_c00298{bottom:522.232500px;}
.ye_c00298{bottom:548.736450px;}
.yd_c00298{bottom:836.949000px;}
.yc_c00298{bottom:850.449000px;}
.yb_c00298{bottom:863.949000px;}
.ya_c00298{bottom:890.452950px;}
.y9_c00298{bottom:903.952950px;}
.y8_c00298{bottom:917.452950px;}
.y7_c00298{bottom:943.956900px;}
.y6_c00298{bottom:957.456900px;}
.y5_c00298{bottom:970.956900px;}
.y4_c00298{bottom:993.208800px;}
.y3_c00298{bottom:1011.208800px;}
.y2_c00298{bottom:1037.712750px;}
.y1_c00298{bottom:1093.600950px;}
.h7_c00298{height:30.282000px;}
.h5_c00298{height:34.080000px;}
.h2_c00298{height:39.264000px;}
.h3_c00298{height:39.984000px;}
.h4_c00298{height:43.260000px;}
.h6_c00298{height:43.740000px;}
.h1_c00298{height:1135.500000px;}
.h0_c00298{height:1135.506150px;}
.w0_c00298{width:893.950200px;}
.w1_c00298{width:894.000000px;}
.x0_c00298{left:0.000000px;}
.x4_c00298{left:128.744700px;}
.x5_c00298{left:141.500700px;}
.x2_c00298{left:188.061900px;}
.x3_c00298{left:190.513350px;}
.x1_c00298{left:800.165850px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls2_c00298{letter-spacing:-0.640000pt;}
.ls3_c00298{letter-spacing:-0.560000pt;}
.ls1_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.426667pt;}
.ws1_c00298{word-spacing:-7.728000pt;}
.ws0_c00298{word-spacing:-0.042667pt;}
.ws2_c00298{word-spacing:0.000000pt;}
.ws3_c00298{word-spacing:6.272000pt;}
._0_c00298{margin-left:-2449.134400pt;}
._4_c00298{margin-left:-6.175467pt;}
._6_c00298{margin-left:-4.885333pt;}
._1_c00298{margin-left:-2.005333pt;}
._3_c00298{margin-left:-1.066667pt;}
._2_c00298{width:0.896000pt;}
._8_c00298{width:6.912000pt;}
._5_c00298{width:49.488000pt;}
._7_c00298{width:52.565333pt;}
.fs3_c00298{font-size:37.333333pt;}
.fs0_c00298{font-size:42.666667pt;}
.fs4_c00298{font-size:48.000000pt;}
.fs2_c00298{font-size:50.666667pt;}
.fs1_c00298{font-size:53.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y19_c00298{bottom:309.309067pt;}
.y18_c00298{bottom:321.309067pt;}
.y17_c00298{bottom:333.308933pt;}
.y16_c00298{bottom:356.868000pt;}
.y15_c00298{bottom:368.868000pt;}
.y14_c00298{bottom:380.868000pt;}
.y13_c00298{bottom:404.427067pt;}
.y12_c00298{bottom:416.427067pt;}
.y11_c00298{bottom:428.427067pt;}
.y10_c00298{bottom:448.206667pt;}
.yf_c00298{bottom:464.206667pt;}
.ye_c00298{bottom:487.765733pt;}
.yd_c00298{bottom:743.954667pt;}
.yc_c00298{bottom:755.954667pt;}
.yb_c00298{bottom:767.954667pt;}
.ya_c00298{bottom:791.513733pt;}
.y9_c00298{bottom:803.513733pt;}
.y8_c00298{bottom:815.513733pt;}
.y7_c00298{bottom:839.072800pt;}
.y6_c00298{bottom:851.072800pt;}
.y5_c00298{bottom:863.072800pt;}
.y4_c00298{bottom:882.852267pt;}
.y3_c00298{bottom:898.852267pt;}
.y2_c00298{bottom:922.411333pt;}
.y1_c00298{bottom:972.089733pt;}
.h7_c00298{height:26.917333pt;}
.h5_c00298{height:30.293333pt;}
.h2_c00298{height:34.901333pt;}
.h3_c00298{height:35.541333pt;}
.h4_c00298{height:38.453333pt;}
.h6_c00298{height:38.880000pt;}
.h1_c00298{height:1009.333333pt;}
.h0_c00298{height:1009.338800pt;}
.w0_c00298{width:794.622400pt;}
.w1_c00298{width:794.666667pt;}
.x0_c00298{left:0.000000pt;}
.x4_c00298{left:114.439733pt;}
.x5_c00298{left:125.778400pt;}
.x2_c00298{left:167.166133pt;}
.x3_c00298{left:169.345200pt;}
.x1_c00298{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00299;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:1.067000;font-style:normal;font-weight: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_c00299;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00299{font-family:ff7_c00299;line-height:0.710000;font-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_c00299{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls1_c00299{letter-spacing:-1.026000px;}
.ls2_c00299{letter-spacing:-0.720000px;}
.ls3_c00299{letter-spacing:-0.630000px;}
.ls4_c00299{letter-spacing:-0.540000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00299{word-spacing:-8.694000px;}
.ws2_c00299{word-spacing:-6.487200px;}
.ws3_c00299{word-spacing:0.000000px;}
.ws6_c00299{word-spacing:0.540000px;}
.ws5_c00299{word-spacing:1.026000px;}
.ws4_c00299{word-spacing:7.056000px;}
.ws0_c00299{word-spacing:1585.435200px;}
._3_c00299{margin-left:-7.042800px;}
._0_c00299{margin-left:-2.112000px;}
._1_c00299{margin-left:-1.104000px;}
._2_c00299{width:2.016000px;}
._6_c00299{width:7.776000px;}
._4_c00299{width:55.674000px;}
._5_c00299{width:59.136000px;}
.fc0_c00299{color:rgb(35,31,32);}
.fs5_c00299{font-size:30.600000px;}
.fs6_c00299{font-size:36.000000px;}
.fs3_c00299{font-size:42.000000px;}
.fs0_c00299{font-size:48.000000px;}
.fs4_c00299{font-size:54.000000px;}
.fs2_c00299{font-size:57.000000px;}
.fs1_c00299{font-size:60.000000px;}
.y0_c00299{bottom:0.000000px;}
.y18_c00299{bottom:361.047450px;}
.y17_c00299{bottom:374.547450px;}
.y16_c00299{bottom:388.047450px;}
.y15_c00299{bottom:414.551400px;}
.y14_c00299{bottom:428.051400px;}
.y13_c00299{bottom:454.555350px;}
.y12_c00299{bottom:468.055350px;}
.y11_c00299{bottom:481.555350px;}
.y10_c00299{bottom:503.807250px;}
.yf_c00299{bottom:521.807250px;}
.ye_c00299{bottom:548.311200px;}
.y19_c00299{bottom:551.323050px;}
.yd_c00299{bottom:836.523600px;}
.yc_c00299{bottom:850.023600px;}
.yb_c00299{bottom:863.523600px;}
.ya_c00299{bottom:890.027550px;}
.y9_c00299{bottom:903.527550px;}
.y8_c00299{bottom:917.027550px;}
.y7_c00299{bottom:943.531500px;}
.y6_c00299{bottom:957.031500px;}
.y5_c00299{bottom:970.531500px;}
.y4_c00299{bottom:992.783550px;}
.y3_c00299{bottom:1010.783550px;}
.y2_c00299{bottom:1037.287500px;}
.y1_c00299{bottom:1093.600950px;}
.h7_c00299{height:25.200000px;}
.h6_c00299{height:30.282000px;}
.h4_c00299{height:34.080000px;}
.h2_c00299{height:39.264000px;}
.h3_c00299{height:43.260000px;}
.h5_c00299{height:43.740000px;}
.h1_c00299{height:1135.500000px;}
.h0_c00299{height:1135.506150px;}
.w0_c00299{width:893.950200px;}
.w1_c00299{width:894.000000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:77.603100px;}
.x4_c00299{left:424.138500px;}
.x2_c00299{left:599.532150px;}
.x3_c00299{left:612.288150px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls1_c00299{letter-spacing:-0.912000pt;}
.ls2_c00299{letter-spacing:-0.640000pt;}
.ls3_c00299{letter-spacing:-0.560000pt;}
.ls4_c00299{letter-spacing:-0.480000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws1_c00299{word-spacing:-7.728000pt;}
.ws2_c00299{word-spacing:-5.766400pt;}
.ws3_c00299{word-spacing:0.000000pt;}
.ws6_c00299{word-spacing:0.480000pt;}
.ws5_c00299{word-spacing:0.912000pt;}
.ws4_c00299{word-spacing:6.272000pt;}
.ws0_c00299{word-spacing:1409.275733pt;}
._3_c00299{margin-left:-6.260267pt;}
._0_c00299{margin-left:-1.877333pt;}
._1_c00299{margin-left:-0.981333pt;}
._2_c00299{width:1.792000pt;}
._6_c00299{width:6.912000pt;}
._4_c00299{width:49.488000pt;}
._5_c00299{width:52.565333pt;}
.fs5_c00299{font-size:27.200000pt;}
.fs6_c00299{font-size:32.000000pt;}
.fs3_c00299{font-size:37.333333pt;}
.fs0_c00299{font-size:42.666667pt;}
.fs4_c00299{font-size:48.000000pt;}
.fs2_c00299{font-size:50.666667pt;}
.fs1_c00299{font-size:53.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y18_c00299{bottom:320.931067pt;}
.y17_c00299{bottom:332.931067pt;}
.y16_c00299{bottom:344.931067pt;}
.y15_c00299{bottom:368.490133pt;}
.y14_c00299{bottom:380.490133pt;}
.y13_c00299{bottom:404.049200pt;}
.y12_c00299{bottom:416.049200pt;}
.y11_c00299{bottom:428.049200pt;}
.y10_c00299{bottom:447.828667pt;}
.yf_c00299{bottom:463.828667pt;}
.ye_c00299{bottom:487.387733pt;}
.y19_c00299{bottom:490.064933pt;}
.yd_c00299{bottom:743.576533pt;}
.yc_c00299{bottom:755.576533pt;}
.yb_c00299{bottom:767.576533pt;}
.ya_c00299{bottom:791.135600pt;}
.y9_c00299{bottom:803.135600pt;}
.y8_c00299{bottom:815.135600pt;}
.y7_c00299{bottom:838.694667pt;}
.y6_c00299{bottom:850.694667pt;}
.y5_c00299{bottom:862.694667pt;}
.y4_c00299{bottom:882.474267pt;}
.y3_c00299{bottom:898.474267pt;}
.y2_c00299{bottom:922.033333pt;}
.y1_c00299{bottom:972.089733pt;}
.h7_c00299{height:22.400000pt;}
.h6_c00299{height:26.917333pt;}
.h4_c00299{height:30.293333pt;}
.h2_c00299{height:34.901333pt;}
.h3_c00299{height:38.453333pt;}
.h5_c00299{height:38.880000pt;}
.h1_c00299{height:1009.333333pt;}
.h0_c00299{height:1009.338800pt;}
.w0_c00299{width:794.622400pt;}
.w1_c00299{width:794.666667pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:68.980533pt;}
.x4_c00299{left:377.012000pt;}
.x2_c00299{left:532.917467pt;}
.x3_c00299{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00300;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00300;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;line-height:1.067000;font-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_c00300{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls3_c00300{letter-spacing:-0.720000px;}
.ls4_c00300{letter-spacing:-0.630000px;}
.ls2_c00300{letter-spacing:-0.216000px;}
.ls1_c00300{letter-spacing:0.000000px;}
.ls0_c00300{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00300{word-spacing:-8.694000px;}
.ws0_c00300{word-spacing:-0.048000px;}
.ws2_c00300{word-spacing:0.000000px;}
.ws4_c00300{word-spacing:0.216000px;}
.ws3_c00300{word-spacing:7.056000px;}
._0_c00300{margin-left:-2755.276200px;}
._4_c00300{margin-left:-6.947400px;}
._1_c00300{margin-left:-2.256000px;}
._3_c00300{margin-left:-1.200000px;}
._2_c00300{width:1.008000px;}
._7_c00300{width:7.776000px;}
._5_c00300{width:55.674000px;}
._6_c00300{width:59.136000px;}
.fc0_c00300{color:rgb(35,31,32);}
.fs3_c00300{font-size:42.000000px;}
.fs0_c00300{font-size:48.000000px;}
.fs4_c00300{font-size:54.000000px;}
.fs2_c00300{font-size:57.000000px;}
.fs1_c00300{font-size:60.000000px;}
.y0_c00300{bottom:0.000000px;}
.y19_c00300{bottom:347.547450px;}
.y18_c00300{bottom:361.047450px;}
.y17_c00300{bottom:374.547450px;}
.y16_c00300{bottom:401.051400px;}
.y15_c00300{bottom:414.551400px;}
.y14_c00300{bottom:428.051400px;}
.y13_c00300{bottom:454.555350px;}
.y12_c00300{bottom:468.055350px;}
.y11_c00300{bottom:481.555350px;}
.y10_c00300{bottom:503.807250px;}
.yf_c00300{bottom:521.807250px;}
.ye_c00300{bottom:548.311200px;}
.yd_c00300{bottom:836.523600px;}
.yc_c00300{bottom:850.023600px;}
.yb_c00300{bottom:863.523600px;}
.ya_c00300{bottom:890.027550px;}
.y9_c00300{bottom:903.527550px;}
.y8_c00300{bottom:917.027550px;}
.y7_c00300{bottom:943.531500px;}
.y6_c00300{bottom:957.031500px;}
.y5_c00300{bottom:970.531500px;}
.y4_c00300{bottom:992.783550px;}
.y3_c00300{bottom:1010.783550px;}
.y2_c00300{bottom:1037.287500px;}
.y1_c00300{bottom:1093.600950px;}
.h7_c00300{height:30.282000px;}
.h5_c00300{height:34.080000px;}
.h2_c00300{height:39.264000px;}
.h3_c00300{height:39.984000px;}
.h4_c00300{height:43.260000px;}
.h6_c00300{height:43.740000px;}
.h1_c00300{height:1135.500000px;}
.h0_c00300{height:1135.506150px;}
.w0_c00300{width:893.950200px;}
.w1_c00300{width:894.000000px;}
.x0_c00300{left:0.000000px;}
.x4_c00300{left:128.744700px;}
.x5_c00300{left:141.500700px;}
.x2_c00300{left:188.061900px;}
.x3_c00300{left:190.513350px;}
.x1_c00300{left:800.165850px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls3_c00300{letter-spacing:-0.640000pt;}
.ls4_c00300{letter-spacing:-0.560000pt;}
.ls2_c00300{letter-spacing:-0.192000pt;}
.ls1_c00300{letter-spacing:0.000000pt;}
.ls0_c00300{letter-spacing:0.426667pt;}
.ws1_c00300{word-spacing:-7.728000pt;}
.ws0_c00300{word-spacing:-0.042667pt;}
.ws2_c00300{word-spacing:0.000000pt;}
.ws4_c00300{word-spacing:0.192000pt;}
.ws3_c00300{word-spacing:6.272000pt;}
._0_c00300{margin-left:-2449.134400pt;}
._4_c00300{margin-left:-6.175467pt;}
._1_c00300{margin-left:-2.005333pt;}
._3_c00300{margin-left:-1.066667pt;}
._2_c00300{width:0.896000pt;}
._7_c00300{width:6.912000pt;}
._5_c00300{width:49.488000pt;}
._6_c00300{width:52.565333pt;}
.fs3_c00300{font-size:37.333333pt;}
.fs0_c00300{font-size:42.666667pt;}
.fs4_c00300{font-size:48.000000pt;}
.fs2_c00300{font-size:50.666667pt;}
.fs1_c00300{font-size:53.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y19_c00300{bottom:308.931067pt;}
.y18_c00300{bottom:320.931067pt;}
.y17_c00300{bottom:332.931067pt;}
.y16_c00300{bottom:356.490133pt;}
.y15_c00300{bottom:368.490133pt;}
.y14_c00300{bottom:380.490133pt;}
.y13_c00300{bottom:404.049200pt;}
.y12_c00300{bottom:416.049200pt;}
.y11_c00300{bottom:428.049200pt;}
.y10_c00300{bottom:447.828667pt;}
.yf_c00300{bottom:463.828667pt;}
.ye_c00300{bottom:487.387733pt;}
.yd_c00300{bottom:743.576533pt;}
.yc_c00300{bottom:755.576533pt;}
.yb_c00300{bottom:767.576533pt;}
.ya_c00300{bottom:791.135600pt;}
.y9_c00300{bottom:803.135600pt;}
.y8_c00300{bottom:815.135600pt;}
.y7_c00300{bottom:838.694667pt;}
.y6_c00300{bottom:850.694667pt;}
.y5_c00300{bottom:862.694667pt;}
.y4_c00300{bottom:882.474267pt;}
.y3_c00300{bottom:898.474267pt;}
.y2_c00300{bottom:922.033333pt;}
.y1_c00300{bottom:972.089733pt;}
.h7_c00300{height:26.917333pt;}
.h5_c00300{height:30.293333pt;}
.h2_c00300{height:34.901333pt;}
.h3_c00300{height:35.541333pt;}
.h4_c00300{height:38.453333pt;}
.h6_c00300{height:38.880000pt;}
.h1_c00300{height:1009.333333pt;}
.h0_c00300{height:1009.338800pt;}
.w0_c00300{width:794.622400pt;}
.w1_c00300{width:794.666667pt;}
.x0_c00300{left:0.000000pt;}
.x4_c00300{left:114.439733pt;}
.x5_c00300{left:125.778400pt;}
.x2_c00300{left:167.166133pt;}
.x3_c00300{left:169.345200pt;}
.x1_c00300{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00301;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00301{font-family:ff6_c00301;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls1_c00301{letter-spacing:-0.720000px;}
.ls2_c00301{letter-spacing:-0.630000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00301{word-spacing:-8.694000px;}
.ws2_c00301{word-spacing:0.000000px;}
.ws3_c00301{word-spacing:7.056000px;}
.ws0_c00301{word-spacing:1585.435200px;}
._3_c00301{margin-left:-7.042800px;}
._0_c00301{margin-left:-2.112000px;}
._1_c00301{margin-left:-1.104000px;}
._2_c00301{width:2.016000px;}
._6_c00301{width:7.776000px;}
._4_c00301{width:55.674000px;}
._5_c00301{width:59.136000px;}
.fc0_c00301{color:rgb(35,31,32);}
.fs3_c00301{font-size:42.000000px;}
.fs0_c00301{font-size:48.000000px;}
.fs4_c00301{font-size:54.000000px;}
.fs2_c00301{font-size:57.000000px;}
.fs1_c00301{font-size:60.000000px;}
.y0_c00301{bottom:0.000000px;}
.y19_c00301{bottom:347.547450px;}
.y18_c00301{bottom:361.047450px;}
.y17_c00301{bottom:374.547450px;}
.y16_c00301{bottom:401.051400px;}
.y15_c00301{bottom:414.551400px;}
.y14_c00301{bottom:428.051400px;}
.y13_c00301{bottom:454.555350px;}
.y12_c00301{bottom:468.055350px;}
.y11_c00301{bottom:481.555350px;}
.y10_c00301{bottom:503.807250px;}
.yf_c00301{bottom:521.807250px;}
.ye_c00301{bottom:548.311200px;}
.yd_c00301{bottom:836.523600px;}
.yc_c00301{bottom:850.023600px;}
.yb_c00301{bottom:863.523600px;}
.ya_c00301{bottom:890.027550px;}
.y9_c00301{bottom:903.527550px;}
.y8_c00301{bottom:917.027550px;}
.y7_c00301{bottom:943.531500px;}
.y6_c00301{bottom:957.031500px;}
.y5_c00301{bottom:970.531500px;}
.y4_c00301{bottom:992.783550px;}
.y3_c00301{bottom:1010.783550px;}
.y2_c00301{bottom:1037.287500px;}
.y1_c00301{bottom:1093.600950px;}
.h6_c00301{height:30.282000px;}
.h4_c00301{height:34.080000px;}
.h2_c00301{height:39.264000px;}
.h3_c00301{height:43.260000px;}
.h5_c00301{height:43.740000px;}
.h1_c00301{height:1135.500000px;}
.h0_c00301{height:1135.506150px;}
.w0_c00301{width:893.950200px;}
.w1_c00301{width:894.000000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:77.603100px;}
.x2_c00301{left:599.532150px;}
.x3_c00301{left:612.288150px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls1_c00301{letter-spacing:-0.640000pt;}
.ls2_c00301{letter-spacing:-0.560000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws1_c00301{word-spacing:-7.728000pt;}
.ws2_c00301{word-spacing:0.000000pt;}
.ws3_c00301{word-spacing:6.272000pt;}
.ws0_c00301{word-spacing:1409.275733pt;}
._3_c00301{margin-left:-6.260267pt;}
._0_c00301{margin-left:-1.877333pt;}
._1_c00301{margin-left:-0.981333pt;}
._2_c00301{width:1.792000pt;}
._6_c00301{width:6.912000pt;}
._4_c00301{width:49.488000pt;}
._5_c00301{width:52.565333pt;}
.fs3_c00301{font-size:37.333333pt;}
.fs0_c00301{font-size:42.666667pt;}
.fs4_c00301{font-size:48.000000pt;}
.fs2_c00301{font-size:50.666667pt;}
.fs1_c00301{font-size:53.333333pt;}
.y0_c00301{bottom:0.000000pt;}
.y19_c00301{bottom:308.931067pt;}
.y18_c00301{bottom:320.931067pt;}
.y17_c00301{bottom:332.931067pt;}
.y16_c00301{bottom:356.490133pt;}
.y15_c00301{bottom:368.490133pt;}
.y14_c00301{bottom:380.490133pt;}
.y13_c00301{bottom:404.049200pt;}
.y12_c00301{bottom:416.049200pt;}
.y11_c00301{bottom:428.049200pt;}
.y10_c00301{bottom:447.828667pt;}
.yf_c00301{bottom:463.828667pt;}
.ye_c00301{bottom:487.387733pt;}
.yd_c00301{bottom:743.576533pt;}
.yc_c00301{bottom:755.576533pt;}
.yb_c00301{bottom:767.576533pt;}
.ya_c00301{bottom:791.135600pt;}
.y9_c00301{bottom:803.135600pt;}
.y8_c00301{bottom:815.135600pt;}
.y7_c00301{bottom:838.694667pt;}
.y6_c00301{bottom:850.694667pt;}
.y5_c00301{bottom:862.694667pt;}
.y4_c00301{bottom:882.474267pt;}
.y3_c00301{bottom:898.474267pt;}
.y2_c00301{bottom:922.033333pt;}
.y1_c00301{bottom:972.089733pt;}
.h6_c00301{height:26.917333pt;}
.h4_c00301{height:30.293333pt;}
.h2_c00301{height:34.901333pt;}
.h3_c00301{height:38.453333pt;}
.h5_c00301{height:38.880000pt;}
.h1_c00301{height:1009.333333pt;}
.h0_c00301{height:1009.338800pt;}
.w0_c00301{width:794.622400pt;}
.w1_c00301{width:794.666667pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:68.980533pt;}
.x2_c00301{left:532.917467pt;}
.x3_c00301{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00302;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00302{font-family:ff7_c00302;line-height:1.067000;font-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_c00302{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls5_c00302{letter-spacing:-0.864000px;}
.ls3_c00302{letter-spacing:-0.720000px;}
.ls4_c00302{letter-spacing:-0.630000px;}
.ls2_c00302{letter-spacing:-0.378000px;}
.ls1_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:0.480000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00302{word-spacing:-8.694000px;}
.ws0_c00302{word-spacing:-0.048000px;}
.ws2_c00302{word-spacing:0.000000px;}
.ws4_c00302{word-spacing:0.378000px;}
.ws5_c00302{word-spacing:0.864000px;}
.ws3_c00302{word-spacing:7.056000px;}
._0_c00302{margin-left:-2755.276200px;}
._4_c00302{margin-left:-6.947400px;}
._1_c00302{margin-left:-2.256000px;}
._3_c00302{margin-left:-1.200000px;}
._2_c00302{width:1.008000px;}
._7_c00302{width:7.776000px;}
._5_c00302{width:55.674000px;}
._6_c00302{width:59.136000px;}
.fc0_c00302{color:rgb(35,31,32);}
.fs3_c00302{font-size:42.000000px;}
.fs0_c00302{font-size:48.000000px;}
.fs4_c00302{font-size:54.000000px;}
.fs2_c00302{font-size:57.000000px;}
.fs1_c00302{font-size:60.000000px;}
.y0_c00302{bottom:0.000000px;}
.y1a_c00302{bottom:329.760000px;}
.y19_c00302{bottom:343.260000px;}
.y18_c00302{bottom:356.760000px;}
.y17_c00302{bottom:383.263950px;}
.y16_c00302{bottom:396.763950px;}
.y15_c00302{bottom:410.263950px;}
.y14_c00302{bottom:436.767900px;}
.y13_c00302{bottom:450.267900px;}
.y12_c00302{bottom:463.767900px;}
.y11_c00302{bottom:486.019800px;}
.y10_c00302{bottom:504.019800px;}
.yf_c00302{bottom:522.019800px;}
.ye_c00302{bottom:548.523750px;}
.yd_c00302{bottom:836.736150px;}
.yc_c00302{bottom:850.236150px;}
.yb_c00302{bottom:863.736150px;}
.ya_c00302{bottom:890.240100px;}
.y9_c00302{bottom:903.740100px;}
.y8_c00302{bottom:917.240100px;}
.y7_c00302{bottom:943.744050px;}
.y6_c00302{bottom:957.244050px;}
.y5_c00302{bottom:970.744050px;}
.y4_c00302{bottom:992.996100px;}
.y3_c00302{bottom:1010.996100px;}
.y2_c00302{bottom:1037.500050px;}
.y1_c00302{bottom:1093.600950px;}
.h7_c00302{height:30.282000px;}
.h5_c00302{height:34.080000px;}
.h2_c00302{height:39.264000px;}
.h3_c00302{height:39.984000px;}
.h4_c00302{height:43.260000px;}
.h6_c00302{height:43.740000px;}
.h1_c00302{height:1135.500000px;}
.h0_c00302{height:1135.506150px;}
.w0_c00302{width:893.950200px;}
.w1_c00302{width:894.000000px;}
.x0_c00302{left:0.000000px;}
.x4_c00302{left:128.744700px;}
.x5_c00302{left:141.500700px;}
.x6_c00302{left:145.752600px;}
.x2_c00302{left:188.061900px;}
.x3_c00302{left:190.513350px;}
.x1_c00302{left:800.165850px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls5_c00302{letter-spacing:-0.768000pt;}
.ls3_c00302{letter-spacing:-0.640000pt;}
.ls4_c00302{letter-spacing:-0.560000pt;}
.ls2_c00302{letter-spacing:-0.336000pt;}
.ls1_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:0.426667pt;}
.ws1_c00302{word-spacing:-7.728000pt;}
.ws0_c00302{word-spacing:-0.042667pt;}
.ws2_c00302{word-spacing:0.000000pt;}
.ws4_c00302{word-spacing:0.336000pt;}
.ws5_c00302{word-spacing:0.768000pt;}
.ws3_c00302{word-spacing:6.272000pt;}
._0_c00302{margin-left:-2449.134400pt;}
._4_c00302{margin-left:-6.175467pt;}
._1_c00302{margin-left:-2.005333pt;}
._3_c00302{margin-left:-1.066667pt;}
._2_c00302{width:0.896000pt;}
._7_c00302{width:6.912000pt;}
._5_c00302{width:49.488000pt;}
._6_c00302{width:52.565333pt;}
.fs3_c00302{font-size:37.333333pt;}
.fs0_c00302{font-size:42.666667pt;}
.fs4_c00302{font-size:48.000000pt;}
.fs2_c00302{font-size:50.666667pt;}
.fs1_c00302{font-size:53.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y1a_c00302{bottom:293.120000pt;}
.y19_c00302{bottom:305.120000pt;}
.y18_c00302{bottom:317.120000pt;}
.y17_c00302{bottom:340.679067pt;}
.y16_c00302{bottom:352.679067pt;}
.y15_c00302{bottom:364.679067pt;}
.y14_c00302{bottom:388.238133pt;}
.y13_c00302{bottom:400.238133pt;}
.y12_c00302{bottom:412.238133pt;}
.y11_c00302{bottom:432.017600pt;}
.y10_c00302{bottom:448.017600pt;}
.yf_c00302{bottom:464.017600pt;}
.ye_c00302{bottom:487.576667pt;}
.yd_c00302{bottom:743.765467pt;}
.yc_c00302{bottom:755.765467pt;}
.yb_c00302{bottom:767.765467pt;}
.ya_c00302{bottom:791.324533pt;}
.y9_c00302{bottom:803.324533pt;}
.y8_c00302{bottom:815.324533pt;}
.y7_c00302{bottom:838.883600pt;}
.y6_c00302{bottom:850.883600pt;}
.y5_c00302{bottom:862.883600pt;}
.y4_c00302{bottom:882.663200pt;}
.y3_c00302{bottom:898.663200pt;}
.y2_c00302{bottom:922.222267pt;}
.y1_c00302{bottom:972.089733pt;}
.h7_c00302{height:26.917333pt;}
.h5_c00302{height:30.293333pt;}
.h2_c00302{height:34.901333pt;}
.h3_c00302{height:35.541333pt;}
.h4_c00302{height:38.453333pt;}
.h6_c00302{height:38.880000pt;}
.h1_c00302{height:1009.333333pt;}
.h0_c00302{height:1009.338800pt;}
.w0_c00302{width:794.622400pt;}
.w1_c00302{width:794.666667pt;}
.x0_c00302{left:0.000000pt;}
.x4_c00302{left:114.439733pt;}
.x5_c00302{left:125.778400pt;}
.x6_c00302{left:129.557867pt;}
.x2_c00302{left:167.166133pt;}
.x3_c00302{left:169.345200pt;}
.x1_c00302{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00303;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls1_c00303{letter-spacing:-0.720000px;}
.ls2_c00303{letter-spacing:-0.630000px;}
.ls3_c00303{letter-spacing:-0.378000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.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:-12.366000px;}
.ws1_c00303{word-spacing:-8.694000px;}
.ws3_c00303{word-spacing:0.000000px;}
.ws5_c00303{word-spacing:0.378000px;}
.ws4_c00303{word-spacing:7.056000px;}
.ws0_c00303{word-spacing:1585.435200px;}
._3_c00303{margin-left:-7.042800px;}
._0_c00303{margin-left:-2.112000px;}
._1_c00303{margin-left:-1.104000px;}
._2_c00303{width:2.016000px;}
._6_c00303{width:7.776000px;}
._4_c00303{width:55.674000px;}
._5_c00303{width:59.136000px;}
.fc0_c00303{color:rgb(35,31,32);}
.fs3_c00303{font-size:42.000000px;}
.fs0_c00303{font-size:48.000000px;}
.fs4_c00303{font-size:54.000000px;}
.fs2_c00303{font-size:57.000000px;}
.fs1_c00303{font-size:60.000000px;}
.y0_c00303{bottom:0.000000px;}
.y1a_c00303{bottom:347.760150px;}
.y19_c00303{bottom:361.260000px;}
.y18_c00303{bottom:374.760000px;}
.y17_c00303{bottom:401.263950px;}
.y16_c00303{bottom:414.763950px;}
.y15_c00303{bottom:428.263950px;}
.y14_c00303{bottom:454.767900px;}
.y13_c00303{bottom:468.267900px;}
.y12_c00303{bottom:481.767900px;}
.y11_c00303{bottom:504.019800px;}
.y10_c00303{bottom:522.019800px;}
.yf_c00303{bottom:548.523750px;}
.ye_c00303{bottom:818.736150px;}
.yd_c00303{bottom:832.236150px;}
.yc_c00303{bottom:845.736150px;}
.yb_c00303{bottom:872.240100px;}
.ya_c00303{bottom:885.740100px;}
.y9_c00303{bottom:899.240100px;}
.y8_c00303{bottom:925.744050px;}
.y7_c00303{bottom:939.244050px;}
.y6_c00303{bottom:952.744050px;}
.y5_c00303{bottom:974.996100px;}
.y4_c00303{bottom:992.996100px;}
.y3_c00303{bottom:1010.996100px;}
.y2_c00303{bottom:1037.500050px;}
.y1_c00303{bottom:1093.600950px;}
.h6_c00303{height:30.282000px;}
.h4_c00303{height:34.080000px;}
.h2_c00303{height:39.264000px;}
.h3_c00303{height:43.260000px;}
.h5_c00303{height:43.740000px;}
.h1_c00303{height:1135.500000px;}
.h0_c00303{height:1135.506150px;}
.w0_c00303{width:893.950200px;}
.w1_c00303{width:894.000000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:77.603100px;}
.x2_c00303{left:599.532150px;}
.x3_c00303{left:612.288150px;}
.x4_c00303{left:616.540050px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls1_c00303{letter-spacing:-0.640000pt;}
.ls2_c00303{letter-spacing:-0.560000pt;}
.ls3_c00303{letter-spacing:-0.336000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws2_c00303{word-spacing:-10.992000pt;}
.ws1_c00303{word-spacing:-7.728000pt;}
.ws3_c00303{word-spacing:0.000000pt;}
.ws5_c00303{word-spacing:0.336000pt;}
.ws4_c00303{word-spacing:6.272000pt;}
.ws0_c00303{word-spacing:1409.275733pt;}
._3_c00303{margin-left:-6.260267pt;}
._0_c00303{margin-left:-1.877333pt;}
._1_c00303{margin-left:-0.981333pt;}
._2_c00303{width:1.792000pt;}
._6_c00303{width:6.912000pt;}
._4_c00303{width:49.488000pt;}
._5_c00303{width:52.565333pt;}
.fs3_c00303{font-size:37.333333pt;}
.fs0_c00303{font-size:42.666667pt;}
.fs4_c00303{font-size:48.000000pt;}
.fs2_c00303{font-size:50.666667pt;}
.fs1_c00303{font-size:53.333333pt;}
.y0_c00303{bottom:0.000000pt;}
.y1a_c00303{bottom:309.120133pt;}
.y19_c00303{bottom:321.120000pt;}
.y18_c00303{bottom:333.120000pt;}
.y17_c00303{bottom:356.679067pt;}
.y16_c00303{bottom:368.679067pt;}
.y15_c00303{bottom:380.679067pt;}
.y14_c00303{bottom:404.238133pt;}
.y13_c00303{bottom:416.238133pt;}
.y12_c00303{bottom:428.238133pt;}
.y11_c00303{bottom:448.017600pt;}
.y10_c00303{bottom:464.017600pt;}
.yf_c00303{bottom:487.576667pt;}
.ye_c00303{bottom:727.765467pt;}
.yd_c00303{bottom:739.765467pt;}
.yc_c00303{bottom:751.765467pt;}
.yb_c00303{bottom:775.324533pt;}
.ya_c00303{bottom:787.324533pt;}
.y9_c00303{bottom:799.324533pt;}
.y8_c00303{bottom:822.883600pt;}
.y7_c00303{bottom:834.883600pt;}
.y6_c00303{bottom:846.883600pt;}
.y5_c00303{bottom:866.663200pt;}
.y4_c00303{bottom:882.663200pt;}
.y3_c00303{bottom:898.663200pt;}
.y2_c00303{bottom:922.222267pt;}
.y1_c00303{bottom:972.089733pt;}
.h6_c00303{height:26.917333pt;}
.h4_c00303{height:30.293333pt;}
.h2_c00303{height:34.901333pt;}
.h3_c00303{height:38.453333pt;}
.h5_c00303{height:38.880000pt;}
.h1_c00303{height:1009.333333pt;}
.h0_c00303{height:1009.338800pt;}
.w0_c00303{width:794.622400pt;}
.w1_c00303{width:794.666667pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:68.980533pt;}
.x2_c00303{left:532.917467pt;}
.x3_c00303{left:544.256133pt;}
.x4_c00303{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:0.908000;font-style:normal;font-weight: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_c00304;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:1.067000;font-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_c00304{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls3_c00304{letter-spacing:-0.720000px;}
.ls4_c00304{letter-spacing:-0.630000px;}
.ls2_c00304{letter-spacing:-0.216000px;}
.ls1_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00304{word-spacing:-8.694000px;}
.ws0_c00304{word-spacing:-0.048000px;}
.ws2_c00304{word-spacing:0.000000px;}
.ws4_c00304{word-spacing:0.216000px;}
.ws3_c00304{word-spacing:7.056000px;}
._0_c00304{margin-left:-2755.276200px;}
._4_c00304{margin-left:-6.947400px;}
._1_c00304{margin-left:-2.256000px;}
._3_c00304{margin-left:-1.200000px;}
._2_c00304{width:1.008000px;}
._7_c00304{width:7.776000px;}
._5_c00304{width:55.674000px;}
._6_c00304{width:59.136000px;}
.fc0_c00304{color:rgb(35,31,32);}
.fs3_c00304{font-size:42.000000px;}
.fs0_c00304{font-size:48.000000px;}
.fs4_c00304{font-size:54.000000px;}
.fs2_c00304{font-size:57.000000px;}
.fs1_c00304{font-size:60.000000px;}
.y0_c00304{bottom:0.000000px;}
.y19_c00304{bottom:347.972700px;}
.y18_c00304{bottom:361.472700px;}
.y17_c00304{bottom:374.972550px;}
.y16_c00304{bottom:401.476500px;}
.y15_c00304{bottom:414.976500px;}
.y14_c00304{bottom:428.476500px;}
.y13_c00304{bottom:454.980450px;}
.y12_c00304{bottom:468.480450px;}
.y11_c00304{bottom:481.980450px;}
.y10_c00304{bottom:504.232500px;}
.yf_c00304{bottom:522.232500px;}
.ye_c00304{bottom:548.736450px;}
.yd_c00304{bottom:836.949000px;}
.yc_c00304{bottom:850.449000px;}
.yb_c00304{bottom:863.949000px;}
.ya_c00304{bottom:890.452950px;}
.y9_c00304{bottom:903.952950px;}
.y8_c00304{bottom:917.452950px;}
.y7_c00304{bottom:943.956900px;}
.y6_c00304{bottom:957.456900px;}
.y5_c00304{bottom:970.956900px;}
.y4_c00304{bottom:993.208800px;}
.y3_c00304{bottom:1011.208800px;}
.y2_c00304{bottom:1037.712750px;}
.y1_c00304{bottom:1093.600950px;}
.h7_c00304{height:30.282000px;}
.h5_c00304{height:34.080000px;}
.h2_c00304{height:39.264000px;}
.h3_c00304{height:39.984000px;}
.h4_c00304{height:43.260000px;}
.h6_c00304{height:43.740000px;}
.h1_c00304{height:1135.500000px;}
.h0_c00304{height:1135.506150px;}
.w0_c00304{width:893.950200px;}
.w1_c00304{width:894.000000px;}
.x0_c00304{left:0.000000px;}
.x4_c00304{left:128.744700px;}
.x5_c00304{left:141.500700px;}
.x2_c00304{left:188.061900px;}
.x3_c00304{left:190.513350px;}
.x1_c00304{left:800.165850px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls3_c00304{letter-spacing:-0.640000pt;}
.ls4_c00304{letter-spacing:-0.560000pt;}
.ls2_c00304{letter-spacing:-0.192000pt;}
.ls1_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:0.426667pt;}
.ws1_c00304{word-spacing:-7.728000pt;}
.ws0_c00304{word-spacing:-0.042667pt;}
.ws2_c00304{word-spacing:0.000000pt;}
.ws4_c00304{word-spacing:0.192000pt;}
.ws3_c00304{word-spacing:6.272000pt;}
._0_c00304{margin-left:-2449.134400pt;}
._4_c00304{margin-left:-6.175467pt;}
._1_c00304{margin-left:-2.005333pt;}
._3_c00304{margin-left:-1.066667pt;}
._2_c00304{width:0.896000pt;}
._7_c00304{width:6.912000pt;}
._5_c00304{width:49.488000pt;}
._6_c00304{width:52.565333pt;}
.fs3_c00304{font-size:37.333333pt;}
.fs0_c00304{font-size:42.666667pt;}
.fs4_c00304{font-size:48.000000pt;}
.fs2_c00304{font-size:50.666667pt;}
.fs1_c00304{font-size:53.333333pt;}
.y0_c00304{bottom:0.000000pt;}
.y19_c00304{bottom:309.309067pt;}
.y18_c00304{bottom:321.309067pt;}
.y17_c00304{bottom:333.308933pt;}
.y16_c00304{bottom:356.868000pt;}
.y15_c00304{bottom:368.868000pt;}
.y14_c00304{bottom:380.868000pt;}
.y13_c00304{bottom:404.427067pt;}
.y12_c00304{bottom:416.427067pt;}
.y11_c00304{bottom:428.427067pt;}
.y10_c00304{bottom:448.206667pt;}
.yf_c00304{bottom:464.206667pt;}
.ye_c00304{bottom:487.765733pt;}
.yd_c00304{bottom:743.954667pt;}
.yc_c00304{bottom:755.954667pt;}
.yb_c00304{bottom:767.954667pt;}
.ya_c00304{bottom:791.513733pt;}
.y9_c00304{bottom:803.513733pt;}
.y8_c00304{bottom:815.513733pt;}
.y7_c00304{bottom:839.072800pt;}
.y6_c00304{bottom:851.072800pt;}
.y5_c00304{bottom:863.072800pt;}
.y4_c00304{bottom:882.852267pt;}
.y3_c00304{bottom:898.852267pt;}
.y2_c00304{bottom:922.411333pt;}
.y1_c00304{bottom:972.089733pt;}
.h7_c00304{height:26.917333pt;}
.h5_c00304{height:30.293333pt;}
.h2_c00304{height:34.901333pt;}
.h3_c00304{height:35.541333pt;}
.h4_c00304{height:38.453333pt;}
.h6_c00304{height:38.880000pt;}
.h1_c00304{height:1009.333333pt;}
.h0_c00304{height:1009.338800pt;}
.w0_c00304{width:794.622400pt;}
.w1_c00304{width:794.666667pt;}
.x0_c00304{left:0.000000pt;}
.x4_c00304{left:114.439733pt;}
.x5_c00304{left:125.778400pt;}
.x2_c00304{left:167.166133pt;}
.x3_c00304{left:169.345200pt;}
.x1_c00304{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls1_c00305{letter-spacing:-0.720000px;}
.ls2_c00305{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00305{word-spacing:-8.694000px;}
.ws2_c00305{word-spacing:0.000000px;}
.ws3_c00305{word-spacing:7.056000px;}
.ws0_c00305{word-spacing:1585.435200px;}
._3_c00305{margin-left:-7.042800px;}
._0_c00305{margin-left:-2.112000px;}
._1_c00305{margin-left:-1.104000px;}
._2_c00305{width:2.016000px;}
._6_c00305{width:7.776000px;}
._4_c00305{width:55.674000px;}
._5_c00305{width:59.136000px;}
.fc0_c00305{color:rgb(35,31,32);}
.fs3_c00305{font-size:42.000000px;}
.fs0_c00305{font-size:48.000000px;}
.fs4_c00305{font-size:54.000000px;}
.fs2_c00305{font-size:57.000000px;}
.fs1_c00305{font-size:60.000000px;}
.y0_c00305{bottom:0.000000px;}
.y19_c00305{bottom:347.547450px;}
.y18_c00305{bottom:361.047450px;}
.y17_c00305{bottom:374.547450px;}
.y16_c00305{bottom:401.051400px;}
.y15_c00305{bottom:414.551400px;}
.y14_c00305{bottom:428.051400px;}
.y13_c00305{bottom:454.555350px;}
.y12_c00305{bottom:468.055350px;}
.y11_c00305{bottom:481.555350px;}
.y10_c00305{bottom:503.807250px;}
.yf_c00305{bottom:521.807250px;}
.ye_c00305{bottom:548.311200px;}
.yd_c00305{bottom:836.523600px;}
.yc_c00305{bottom:850.023600px;}
.yb_c00305{bottom:863.523600px;}
.ya_c00305{bottom:890.027550px;}
.y9_c00305{bottom:903.527550px;}
.y8_c00305{bottom:917.027550px;}
.y7_c00305{bottom:943.531500px;}
.y6_c00305{bottom:957.031500px;}
.y5_c00305{bottom:970.531500px;}
.y4_c00305{bottom:992.783550px;}
.y3_c00305{bottom:1010.783550px;}
.y2_c00305{bottom:1037.287500px;}
.y1_c00305{bottom:1093.600950px;}
.h6_c00305{height:30.282000px;}
.h4_c00305{height:34.080000px;}
.h2_c00305{height:39.264000px;}
.h3_c00305{height:43.260000px;}
.h5_c00305{height:43.740000px;}
.h1_c00305{height:1135.500000px;}
.h0_c00305{height:1135.506150px;}
.w0_c00305{width:893.950200px;}
.w1_c00305{width:894.000000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:77.603100px;}
.x2_c00305{left:599.532150px;}
.x3_c00305{left:612.288150px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls1_c00305{letter-spacing:-0.640000pt;}
.ls2_c00305{letter-spacing:-0.560000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws1_c00305{word-spacing:-7.728000pt;}
.ws2_c00305{word-spacing:0.000000pt;}
.ws3_c00305{word-spacing:6.272000pt;}
.ws0_c00305{word-spacing:1409.275733pt;}
._3_c00305{margin-left:-6.260267pt;}
._0_c00305{margin-left:-1.877333pt;}
._1_c00305{margin-left:-0.981333pt;}
._2_c00305{width:1.792000pt;}
._6_c00305{width:6.912000pt;}
._4_c00305{width:49.488000pt;}
._5_c00305{width:52.565333pt;}
.fs3_c00305{font-size:37.333333pt;}
.fs0_c00305{font-size:42.666667pt;}
.fs4_c00305{font-size:48.000000pt;}
.fs2_c00305{font-size:50.666667pt;}
.fs1_c00305{font-size:53.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y19_c00305{bottom:308.931067pt;}
.y18_c00305{bottom:320.931067pt;}
.y17_c00305{bottom:332.931067pt;}
.y16_c00305{bottom:356.490133pt;}
.y15_c00305{bottom:368.490133pt;}
.y14_c00305{bottom:380.490133pt;}
.y13_c00305{bottom:404.049200pt;}
.y12_c00305{bottom:416.049200pt;}
.y11_c00305{bottom:428.049200pt;}
.y10_c00305{bottom:447.828667pt;}
.yf_c00305{bottom:463.828667pt;}
.ye_c00305{bottom:487.387733pt;}
.yd_c00305{bottom:743.576533pt;}
.yc_c00305{bottom:755.576533pt;}
.yb_c00305{bottom:767.576533pt;}
.ya_c00305{bottom:791.135600pt;}
.y9_c00305{bottom:803.135600pt;}
.y8_c00305{bottom:815.135600pt;}
.y7_c00305{bottom:838.694667pt;}
.y6_c00305{bottom:850.694667pt;}
.y5_c00305{bottom:862.694667pt;}
.y4_c00305{bottom:882.474267pt;}
.y3_c00305{bottom:898.474267pt;}
.y2_c00305{bottom:922.033333pt;}
.y1_c00305{bottom:972.089733pt;}
.h6_c00305{height:26.917333pt;}
.h4_c00305{height:30.293333pt;}
.h2_c00305{height:34.901333pt;}
.h3_c00305{height:38.453333pt;}
.h5_c00305{height:38.880000pt;}
.h1_c00305{height:1009.333333pt;}
.h0_c00305{height:1009.338800pt;}
.w0_c00305{width:794.622400pt;}
.w1_c00305{width:794.666667pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:68.980533pt;}
.x2_c00305{left:532.917467pt;}
.x3_c00305{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00306;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00306;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.067000;font-style:normal;font-weight: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_c00306;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00306{font-family:ff8_c00306;line-height:0.710000;font-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_c00306{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls3_c00306{letter-spacing:-0.720000px;}
.ls2_c00306{letter-spacing:-0.702000px;}
.ls4_c00306{letter-spacing:-0.630000px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00306{word-spacing:-6.487200px;}
.ws0_c00306{word-spacing:-0.048000px;}
.ws3_c00306{word-spacing:0.000000px;}
.ws5_c00306{word-spacing:0.702000px;}
.ws4_c00306{word-spacing:7.056000px;}
._0_c00306{margin-left:-2755.276200px;}
._4_c00306{margin-left:-6.947400px;}
._1_c00306{margin-left:-2.256000px;}
._3_c00306{margin-left:-1.200000px;}
._2_c00306{width:1.008000px;}
._7_c00306{width:7.776000px;}
._5_c00306{width:55.674000px;}
._6_c00306{width:59.136000px;}
.fc0_c00306{color:rgb(35,31,32);}
.fs5_c00306{font-size:30.600000px;}
.fs6_c00306{font-size:36.000000px;}
.fs3_c00306{font-size:42.000000px;}
.fs0_c00306{font-size:48.000000px;}
.fs4_c00306{font-size:54.000000px;}
.fs2_c00306{font-size:57.000000px;}
.fs1_c00306{font-size:60.000000px;}
.y0_c00306{bottom:0.000000px;}
.y18_c00306{bottom:347.547450px;}
.y17_c00306{bottom:361.047450px;}
.y16_c00306{bottom:374.547450px;}
.y15_c00306{bottom:401.051400px;}
.y14_c00306{bottom:414.551400px;}
.y13_c00306{bottom:428.051400px;}
.y12_c00306{bottom:454.555350px;}
.y11_c00306{bottom:468.055350px;}
.y10_c00306{bottom:481.555350px;}
.yf_c00306{bottom:503.807250px;}
.ye_c00306{bottom:521.807250px;}
.yd_c00306{bottom:548.311200px;}
.yc_c00306{bottom:850.023600px;}
.yb_c00306{bottom:863.523600px;}
.ya_c00306{bottom:877.023600px;}
.y9_c00306{bottom:903.527550px;}
.y8_c00306{bottom:917.027550px;}
.y7_c00306{bottom:943.531500px;}
.y6_c00306{bottom:957.031500px;}
.y5_c00306{bottom:970.531500px;}
.y4_c00306{bottom:992.783550px;}
.y3_c00306{bottom:1010.783550px;}
.y2_c00306{bottom:1037.287500px;}
.y19_c00306{bottom:1040.299350px;}
.y1_c00306{bottom:1093.600950px;}
.h8_c00306{height:25.200000px;}
.h7_c00306{height:30.282000px;}
.h5_c00306{height:34.080000px;}
.h2_c00306{height:39.264000px;}
.h3_c00306{height:39.984000px;}
.h4_c00306{height:43.260000px;}
.h6_c00306{height:43.740000px;}
.h1_c00306{height:1135.500000px;}
.h0_c00306{height:1135.506150px;}
.w0_c00306{width:893.950200px;}
.w1_c00306{width:894.000000px;}
.x0_c00306{left:0.000000px;}
.x4_c00306{left:128.744700px;}
.x5_c00306{left:141.500700px;}
.x2_c00306{left:188.061900px;}
.x3_c00306{left:190.513350px;}
.x6_c00306{left:321.801150px;}
.x1_c00306{left:800.165850px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls3_c00306{letter-spacing:-0.640000pt;}
.ls2_c00306{letter-spacing:-0.624000pt;}
.ls4_c00306{letter-spacing:-0.560000pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.426667pt;}
.ws1_c00306{word-spacing:-7.728000pt;}
.ws2_c00306{word-spacing:-5.766400pt;}
.ws0_c00306{word-spacing:-0.042667pt;}
.ws3_c00306{word-spacing:0.000000pt;}
.ws5_c00306{word-spacing:0.624000pt;}
.ws4_c00306{word-spacing:6.272000pt;}
._0_c00306{margin-left:-2449.134400pt;}
._4_c00306{margin-left:-6.175467pt;}
._1_c00306{margin-left:-2.005333pt;}
._3_c00306{margin-left:-1.066667pt;}
._2_c00306{width:0.896000pt;}
._7_c00306{width:6.912000pt;}
._5_c00306{width:49.488000pt;}
._6_c00306{width:52.565333pt;}
.fs5_c00306{font-size:27.200000pt;}
.fs6_c00306{font-size:32.000000pt;}
.fs3_c00306{font-size:37.333333pt;}
.fs0_c00306{font-size:42.666667pt;}
.fs4_c00306{font-size:48.000000pt;}
.fs2_c00306{font-size:50.666667pt;}
.fs1_c00306{font-size:53.333333pt;}
.y0_c00306{bottom:0.000000pt;}
.y18_c00306{bottom:308.931067pt;}
.y17_c00306{bottom:320.931067pt;}
.y16_c00306{bottom:332.931067pt;}
.y15_c00306{bottom:356.490133pt;}
.y14_c00306{bottom:368.490133pt;}
.y13_c00306{bottom:380.490133pt;}
.y12_c00306{bottom:404.049200pt;}
.y11_c00306{bottom:416.049200pt;}
.y10_c00306{bottom:428.049200pt;}
.yf_c00306{bottom:447.828667pt;}
.ye_c00306{bottom:463.828667pt;}
.yd_c00306{bottom:487.387733pt;}
.yc_c00306{bottom:755.576533pt;}
.yb_c00306{bottom:767.576533pt;}
.ya_c00306{bottom:779.576533pt;}
.y9_c00306{bottom:803.135600pt;}
.y8_c00306{bottom:815.135600pt;}
.y7_c00306{bottom:838.694667pt;}
.y6_c00306{bottom:850.694667pt;}
.y5_c00306{bottom:862.694667pt;}
.y4_c00306{bottom:882.474267pt;}
.y3_c00306{bottom:898.474267pt;}
.y2_c00306{bottom:922.033333pt;}
.y19_c00306{bottom:924.710533pt;}
.y1_c00306{bottom:972.089733pt;}
.h8_c00306{height:22.400000pt;}
.h7_c00306{height:26.917333pt;}
.h5_c00306{height:30.293333pt;}
.h2_c00306{height:34.901333pt;}
.h3_c00306{height:35.541333pt;}
.h4_c00306{height:38.453333pt;}
.h6_c00306{height:38.880000pt;}
.h1_c00306{height:1009.333333pt;}
.h0_c00306{height:1009.338800pt;}
.w0_c00306{width:794.622400pt;}
.w1_c00306{width:794.666667pt;}
.x0_c00306{left:0.000000pt;}
.x4_c00306{left:114.439733pt;}
.x5_c00306{left:125.778400pt;}
.x2_c00306{left:167.166133pt;}
.x3_c00306{left:169.345200pt;}
.x6_c00306{left:286.045467pt;}
.x1_c00306{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00307;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00307;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:0.710000;font-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_c00307{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls1_c00307{letter-spacing:-0.720000px;}
.ls2_c00307{letter-spacing:-0.630000px;}
.ls3_c00307{letter-spacing:-0.216000px;}
.ls0_c00307{letter-spacing:0.000000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00307{word-spacing:-8.694000px;}
.ws2_c00307{word-spacing:-6.487200px;}
.ws3_c00307{word-spacing:0.000000px;}
.ws4_c00307{word-spacing:7.056000px;}
.ws5_c00307{word-spacing:55.890000px;}
.ws0_c00307{word-spacing:1585.435200px;}
._3_c00307{margin-left:-7.042800px;}
._0_c00307{margin-left:-2.112000px;}
._1_c00307{margin-left:-1.104000px;}
._2_c00307{width:2.016000px;}
._6_c00307{width:7.776000px;}
._4_c00307{width:55.674000px;}
._5_c00307{width:59.136000px;}
.fc0_c00307{color:rgb(35,31,32);}
.fs5_c00307{font-size:30.600000px;}
.fs6_c00307{font-size:36.000000px;}
.fs3_c00307{font-size:42.000000px;}
.fs0_c00307{font-size:48.000000px;}
.fs4_c00307{font-size:54.000000px;}
.fs2_c00307{font-size:57.000000px;}
.fs1_c00307{font-size:60.000000px;}
.y0_c00307{bottom:0.000000px;}
.y18_c00307{bottom:361.260000px;}
.y17_c00307{bottom:374.760000px;}
.y16_c00307{bottom:388.260000px;}
.y15_c00307{bottom:414.763950px;}
.y14_c00307{bottom:428.263950px;}
.y13_c00307{bottom:454.767900px;}
.y12_c00307{bottom:468.267900px;}
.y11_c00307{bottom:481.767900px;}
.y10_c00307{bottom:504.019800px;}
.yf_c00307{bottom:522.019800px;}
.ye_c00307{bottom:548.523750px;}
.y19_c00307{bottom:551.323050px;}
.yd_c00307{bottom:836.736150px;}
.yc_c00307{bottom:850.236150px;}
.yb_c00307{bottom:863.736150px;}
.ya_c00307{bottom:890.240100px;}
.y9_c00307{bottom:903.740100px;}
.y8_c00307{bottom:917.240100px;}
.y7_c00307{bottom:943.744050px;}
.y6_c00307{bottom:957.244050px;}
.y5_c00307{bottom:970.744050px;}
.y4_c00307{bottom:992.996100px;}
.y3_c00307{bottom:1010.996100px;}
.y2_c00307{bottom:1037.500050px;}
.y1_c00307{bottom:1093.600950px;}
.h7_c00307{height:25.200000px;}
.h6_c00307{height:30.282000px;}
.h4_c00307{height:34.080000px;}
.h2_c00307{height:39.264000px;}
.h3_c00307{height:43.260000px;}
.h5_c00307{height:43.740000px;}
.h1_c00307{height:1135.500000px;}
.h0_c00307{height:1135.506150px;}
.w0_c00307{width:893.950200px;}
.w1_c00307{width:894.000000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:77.603100px;}
.x4_c00307{left:424.138500px;}
.x2_c00307{left:599.532150px;}
.x3_c00307{left:612.288150px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:-0.640000pt;}
.ls2_c00307{letter-spacing:-0.560000pt;}
.ls3_c00307{letter-spacing:-0.192000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws1_c00307{word-spacing:-7.728000pt;}
.ws2_c00307{word-spacing:-5.766400pt;}
.ws3_c00307{word-spacing:0.000000pt;}
.ws4_c00307{word-spacing:6.272000pt;}
.ws5_c00307{word-spacing:49.680000pt;}
.ws0_c00307{word-spacing:1409.275733pt;}
._3_c00307{margin-left:-6.260267pt;}
._0_c00307{margin-left:-1.877333pt;}
._1_c00307{margin-left:-0.981333pt;}
._2_c00307{width:1.792000pt;}
._6_c00307{width:6.912000pt;}
._4_c00307{width:49.488000pt;}
._5_c00307{width:52.565333pt;}
.fs5_c00307{font-size:27.200000pt;}
.fs6_c00307{font-size:32.000000pt;}
.fs3_c00307{font-size:37.333333pt;}
.fs0_c00307{font-size:42.666667pt;}
.fs4_c00307{font-size:48.000000pt;}
.fs2_c00307{font-size:50.666667pt;}
.fs1_c00307{font-size:53.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y18_c00307{bottom:321.120000pt;}
.y17_c00307{bottom:333.120000pt;}
.y16_c00307{bottom:345.120000pt;}
.y15_c00307{bottom:368.679067pt;}
.y14_c00307{bottom:380.679067pt;}
.y13_c00307{bottom:404.238133pt;}
.y12_c00307{bottom:416.238133pt;}
.y11_c00307{bottom:428.238133pt;}
.y10_c00307{bottom:448.017600pt;}
.yf_c00307{bottom:464.017600pt;}
.ye_c00307{bottom:487.576667pt;}
.y19_c00307{bottom:490.064933pt;}
.yd_c00307{bottom:743.765467pt;}
.yc_c00307{bottom:755.765467pt;}
.yb_c00307{bottom:767.765467pt;}
.ya_c00307{bottom:791.324533pt;}
.y9_c00307{bottom:803.324533pt;}
.y8_c00307{bottom:815.324533pt;}
.y7_c00307{bottom:838.883600pt;}
.y6_c00307{bottom:850.883600pt;}
.y5_c00307{bottom:862.883600pt;}
.y4_c00307{bottom:882.663200pt;}
.y3_c00307{bottom:898.663200pt;}
.y2_c00307{bottom:922.222267pt;}
.y1_c00307{bottom:972.089733pt;}
.h7_c00307{height:22.400000pt;}
.h6_c00307{height:26.917333pt;}
.h4_c00307{height:30.293333pt;}
.h2_c00307{height:34.901333pt;}
.h3_c00307{height:38.453333pt;}
.h5_c00307{height:38.880000pt;}
.h1_c00307{height:1009.333333pt;}
.h0_c00307{height:1009.338800pt;}
.w0_c00307{width:794.622400pt;}
.w1_c00307{width:794.666667pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:68.980533pt;}
.x4_c00307{left:377.012000pt;}
.x2_c00307{left:532.917467pt;}
.x3_c00307{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00308;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00308{font-family:ff6_c00308;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00308;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00308{font-family:ff7_c00308;line-height:1.067000;font-style:normal;font-weight: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_c00308;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00308{font-family:ff8_c00308;line-height:0.710000;font-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_c00308{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls3_c00308{letter-spacing:-0.720000px;}
.ls4_c00308{letter-spacing:-0.630000px;}
.ls2_c00308{letter-spacing:-0.216000px;}
.ls1_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00308{word-spacing:-8.694000px;}
.ws2_c00308{word-spacing:-6.487200px;}
.ws0_c00308{word-spacing:-0.048000px;}
.ws3_c00308{word-spacing:0.000000px;}
.ws5_c00308{word-spacing:0.216000px;}
.ws4_c00308{word-spacing:7.056000px;}
.ws6_c00308{word-spacing:55.674000px;}
._0_c00308{margin-left:-2755.276200px;}
._4_c00308{margin-left:-6.947400px;}
._1_c00308{margin-left:-2.256000px;}
._3_c00308{margin-left:-1.200000px;}
._2_c00308{width:1.008000px;}
._7_c00308{width:7.776000px;}
._5_c00308{width:55.674000px;}
._6_c00308{width:59.136000px;}
.fc0_c00308{color:rgb(35,31,32);}
.fs5_c00308{font-size:30.600000px;}
.fs6_c00308{font-size:36.000000px;}
.fs3_c00308{font-size:42.000000px;}
.fs0_c00308{font-size:48.000000px;}
.fs4_c00308{font-size:54.000000px;}
.fs2_c00308{font-size:57.000000px;}
.fs1_c00308{font-size:60.000000px;}
.y0_c00308{bottom:0.000000px;}
.y18_c00308{bottom:365.511900px;}
.y17_c00308{bottom:379.011900px;}
.y16_c00308{bottom:392.511900px;}
.y15_c00308{bottom:414.763950px;}
.y14_c00308{bottom:428.263950px;}
.y13_c00308{bottom:454.767900px;}
.y12_c00308{bottom:468.267900px;}
.y11_c00308{bottom:481.767900px;}
.y10_c00308{bottom:504.019800px;}
.yf_c00308{bottom:522.019800px;}
.ye_c00308{bottom:548.523750px;}
.y19_c00308{bottom:551.323050px;}
.yd_c00308{bottom:836.736150px;}
.yc_c00308{bottom:850.236150px;}
.yb_c00308{bottom:863.736150px;}
.ya_c00308{bottom:890.240100px;}
.y9_c00308{bottom:903.740100px;}
.y8_c00308{bottom:917.240100px;}
.y7_c00308{bottom:943.744050px;}
.y6_c00308{bottom:957.244050px;}
.y5_c00308{bottom:970.744050px;}
.y4_c00308{bottom:992.996100px;}
.y3_c00308{bottom:1010.996100px;}
.y2_c00308{bottom:1037.500050px;}
.y1_c00308{bottom:1093.600950px;}
.h8_c00308{height:25.200000px;}
.h7_c00308{height:30.282000px;}
.h5_c00308{height:34.080000px;}
.h2_c00308{height:39.264000px;}
.h3_c00308{height:39.984000px;}
.h4_c00308{height:43.260000px;}
.h6_c00308{height:43.740000px;}
.h1_c00308{height:1135.500000px;}
.h0_c00308{height:1135.506150px;}
.w0_c00308{width:893.950200px;}
.w1_c00308{width:894.000000px;}
.x0_c00308{left:0.000000px;}
.x4_c00308{left:128.744700px;}
.x5_c00308{left:141.500700px;}
.x2_c00308{left:188.061900px;}
.x3_c00308{left:190.513350px;}
.x6_c00308{left:321.801150px;}
.x1_c00308{left:800.165850px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls3_c00308{letter-spacing:-0.640000pt;}
.ls4_c00308{letter-spacing:-0.560000pt;}
.ls2_c00308{letter-spacing:-0.192000pt;}
.ls1_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.426667pt;}
.ws1_c00308{word-spacing:-7.728000pt;}
.ws2_c00308{word-spacing:-5.766400pt;}
.ws0_c00308{word-spacing:-0.042667pt;}
.ws3_c00308{word-spacing:0.000000pt;}
.ws5_c00308{word-spacing:0.192000pt;}
.ws4_c00308{word-spacing:6.272000pt;}
.ws6_c00308{word-spacing:49.488000pt;}
._0_c00308{margin-left:-2449.134400pt;}
._4_c00308{margin-left:-6.175467pt;}
._1_c00308{margin-left:-2.005333pt;}
._3_c00308{margin-left:-1.066667pt;}
._2_c00308{width:0.896000pt;}
._7_c00308{width:6.912000pt;}
._5_c00308{width:49.488000pt;}
._6_c00308{width:52.565333pt;}
.fs5_c00308{font-size:27.200000pt;}
.fs6_c00308{font-size:32.000000pt;}
.fs3_c00308{font-size:37.333333pt;}
.fs0_c00308{font-size:42.666667pt;}
.fs4_c00308{font-size:48.000000pt;}
.fs2_c00308{font-size:50.666667pt;}
.fs1_c00308{font-size:53.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y18_c00308{bottom:324.899467pt;}
.y17_c00308{bottom:336.899467pt;}
.y16_c00308{bottom:348.899467pt;}
.y15_c00308{bottom:368.679067pt;}
.y14_c00308{bottom:380.679067pt;}
.y13_c00308{bottom:404.238133pt;}
.y12_c00308{bottom:416.238133pt;}
.y11_c00308{bottom:428.238133pt;}
.y10_c00308{bottom:448.017600pt;}
.yf_c00308{bottom:464.017600pt;}
.ye_c00308{bottom:487.576667pt;}
.y19_c00308{bottom:490.064933pt;}
.yd_c00308{bottom:743.765467pt;}
.yc_c00308{bottom:755.765467pt;}
.yb_c00308{bottom:767.765467pt;}
.ya_c00308{bottom:791.324533pt;}
.y9_c00308{bottom:803.324533pt;}
.y8_c00308{bottom:815.324533pt;}
.y7_c00308{bottom:838.883600pt;}
.y6_c00308{bottom:850.883600pt;}
.y5_c00308{bottom:862.883600pt;}
.y4_c00308{bottom:882.663200pt;}
.y3_c00308{bottom:898.663200pt;}
.y2_c00308{bottom:922.222267pt;}
.y1_c00308{bottom:972.089733pt;}
.h8_c00308{height:22.400000pt;}
.h7_c00308{height:26.917333pt;}
.h5_c00308{height:30.293333pt;}
.h2_c00308{height:34.901333pt;}
.h3_c00308{height:35.541333pt;}
.h4_c00308{height:38.453333pt;}
.h6_c00308{height:38.880000pt;}
.h1_c00308{height:1009.333333pt;}
.h0_c00308{height:1009.338800pt;}
.w0_c00308{width:794.622400pt;}
.w1_c00308{width:794.666667pt;}
.x0_c00308{left:0.000000pt;}
.x4_c00308{left:114.439733pt;}
.x5_c00308{left:125.778400pt;}
.x2_c00308{left:167.166133pt;}
.x3_c00308{left:169.345200pt;}
.x6_c00308{left:286.045467pt;}
.x1_c00308{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.067000;font-style:normal;font-weight: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_c00309;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00309{font-family:ff7_c00309;line-height:0.710000;font-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_c00309{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls1_c00309{letter-spacing:-0.720000px;}
.ls2_c00309{letter-spacing:-0.630000px;}
.ls0_c00309{letter-spacing:0.000000px;}
.ls3_c00309{letter-spacing:0.486000px;}
.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;}
}
.ws1_c00309{word-spacing:-8.694000px;}
.ws2_c00309{word-spacing:-6.487200px;}
.ws3_c00309{word-spacing:0.000000px;}
.ws4_c00309{word-spacing:7.056000px;}
.ws5_c00309{word-spacing:55.188000px;}
.ws0_c00309{word-spacing:1585.435200px;}
._3_c00309{margin-left:-7.042800px;}
._0_c00309{margin-left:-2.112000px;}
._1_c00309{margin-left:-1.104000px;}
._2_c00309{width:2.016000px;}
._6_c00309{width:7.776000px;}
._4_c00309{width:55.674000px;}
._5_c00309{width:59.136000px;}
.fc0_c00309{color:rgb(35,31,32);}
.fs5_c00309{font-size:30.600000px;}
.fs6_c00309{font-size:36.000000px;}
.fs3_c00309{font-size:42.000000px;}
.fs0_c00309{font-size:48.000000px;}
.fs4_c00309{font-size:54.000000px;}
.fs2_c00309{font-size:57.000000px;}
.fs1_c00309{font-size:60.000000px;}
.y0_c00309{bottom:0.000000px;}
.y18_c00309{bottom:348.078900px;}
.y17_c00309{bottom:361.578900px;}
.y16_c00309{bottom:375.078900px;}
.y15_c00309{bottom:401.582850px;}
.y14_c00309{bottom:415.082850px;}
.y13_c00309{bottom:428.582850px;}
.y12_c00309{bottom:455.086800px;}
.y11_c00309{bottom:468.586800px;}
.y10_c00309{bottom:482.086800px;}
.yf_c00309{bottom:504.338700px;}
.ye_c00309{bottom:522.338700px;}
.yd_c00309{bottom:548.842650px;}
.yc_c00309{bottom:850.555200px;}
.yb_c00309{bottom:864.055200px;}
.ya_c00309{bottom:877.555200px;}
.y9_c00309{bottom:904.059150px;}
.y8_c00309{bottom:917.559150px;}
.y7_c00309{bottom:944.063100px;}
.y6_c00309{bottom:957.563100px;}
.y5_c00309{bottom:971.063100px;}
.y4_c00309{bottom:993.315000px;}
.y3_c00309{bottom:1011.315000px;}
.y2_c00309{bottom:1037.819100px;}
.y19_c00309{bottom:1040.299350px;}
.y1_c00309{bottom:1093.600950px;}
.h7_c00309{height:25.200000px;}
.h6_c00309{height:30.282000px;}
.h4_c00309{height:34.080000px;}
.h2_c00309{height:39.264000px;}
.h3_c00309{height:43.260000px;}
.h5_c00309{height:43.740000px;}
.h1_c00309{height:1135.500000px;}
.h0_c00309{height:1135.506150px;}
.w0_c00309{width:893.950200px;}
.w1_c00309{width:894.000000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:77.603100px;}
.x4_c00309{left:424.138500px;}
.x2_c00309{left:599.532150px;}
.x3_c00309{left:612.288150px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls1_c00309{letter-spacing:-0.640000pt;}
.ls2_c00309{letter-spacing:-0.560000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ls3_c00309{letter-spacing:0.432000pt;}
.ws1_c00309{word-spacing:-7.728000pt;}
.ws2_c00309{word-spacing:-5.766400pt;}
.ws3_c00309{word-spacing:0.000000pt;}
.ws4_c00309{word-spacing:6.272000pt;}
.ws5_c00309{word-spacing:49.056000pt;}
.ws0_c00309{word-spacing:1409.275733pt;}
._3_c00309{margin-left:-6.260267pt;}
._0_c00309{margin-left:-1.877333pt;}
._1_c00309{margin-left:-0.981333pt;}
._2_c00309{width:1.792000pt;}
._6_c00309{width:6.912000pt;}
._4_c00309{width:49.488000pt;}
._5_c00309{width:52.565333pt;}
.fs5_c00309{font-size:27.200000pt;}
.fs6_c00309{font-size:32.000000pt;}
.fs3_c00309{font-size:37.333333pt;}
.fs0_c00309{font-size:42.666667pt;}
.fs4_c00309{font-size:48.000000pt;}
.fs2_c00309{font-size:50.666667pt;}
.fs1_c00309{font-size:53.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y18_c00309{bottom:309.403467pt;}
.y17_c00309{bottom:321.403467pt;}
.y16_c00309{bottom:333.403467pt;}
.y15_c00309{bottom:356.962533pt;}
.y14_c00309{bottom:368.962533pt;}
.y13_c00309{bottom:380.962533pt;}
.y12_c00309{bottom:404.521600pt;}
.y11_c00309{bottom:416.521600pt;}
.y10_c00309{bottom:428.521600pt;}
.yf_c00309{bottom:448.301067pt;}
.ye_c00309{bottom:464.301067pt;}
.yd_c00309{bottom:487.860133pt;}
.yc_c00309{bottom:756.049067pt;}
.yb_c00309{bottom:768.049067pt;}
.ya_c00309{bottom:780.049067pt;}
.y9_c00309{bottom:803.608133pt;}
.y8_c00309{bottom:815.608133pt;}
.y7_c00309{bottom:839.167200pt;}
.y6_c00309{bottom:851.167200pt;}
.y5_c00309{bottom:863.167200pt;}
.y4_c00309{bottom:882.946667pt;}
.y3_c00309{bottom:898.946667pt;}
.y2_c00309{bottom:922.505867pt;}
.y19_c00309{bottom:924.710533pt;}
.y1_c00309{bottom:972.089733pt;}
.h7_c00309{height:22.400000pt;}
.h6_c00309{height:26.917333pt;}
.h4_c00309{height:30.293333pt;}
.h2_c00309{height:34.901333pt;}
.h3_c00309{height:38.453333pt;}
.h5_c00309{height:38.880000pt;}
.h1_c00309{height:1009.333333pt;}
.h0_c00309{height:1009.338800pt;}
.w0_c00309{width:794.622400pt;}
.w1_c00309{width:794.666667pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:68.980533pt;}
.x4_c00309{left:377.012000pt;}
.x2_c00309{left:532.917467pt;}
.x3_c00309{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00310;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:0.908000;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00310{font-family:ff7_c00310;line-height:1.067000;font-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_c00310{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls5_c00310{letter-spacing:-0.918000px;}
.ls2_c00310{letter-spacing:-0.864000px;}
.ls3_c00310{letter-spacing:-0.720000px;}
.ls4_c00310{letter-spacing:-0.630000px;}
.ls1_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.480000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-8.694000px;}
.ws0_c00310{word-spacing:-0.048000px;}
.ws2_c00310{word-spacing:0.000000px;}
.ws6_c00310{word-spacing:0.630000px;}
.ws4_c00310{word-spacing:0.864000px;}
.ws5_c00310{word-spacing:0.918000px;}
.ws3_c00310{word-spacing:7.056000px;}
._0_c00310{margin-left:-2755.276200px;}
._4_c00310{margin-left:-6.946800px;}
._8_c00310{margin-left:-5.238000px;}
._1_c00310{margin-left:-2.256000px;}
._3_c00310{margin-left:-1.200000px;}
._2_c00310{width:1.008000px;}
._7_c00310{width:7.776000px;}
._5_c00310{width:55.674000px;}
._6_c00310{width:59.136000px;}
.fc0_c00310{color:rgb(35,31,32);}
.fs3_c00310{font-size:42.000000px;}
.fs0_c00310{font-size:48.000000px;}
.fs4_c00310{font-size:54.000000px;}
.fs2_c00310{font-size:57.000000px;}
.fs1_c00310{font-size:60.000000px;}
.y0_c00310{bottom:0.000000px;}
.y1b_c00310{bottom:330.185250px;}
.y1a_c00310{bottom:343.685250px;}
.y19_c00310{bottom:357.185250px;}
.y18_c00310{bottom:383.689200px;}
.y17_c00310{bottom:397.189200px;}
.y16_c00310{bottom:410.689200px;}
.y15_c00310{bottom:437.193150px;}
.y14_c00310{bottom:450.693150px;}
.y13_c00310{bottom:464.193150px;}
.y12_c00310{bottom:486.445050px;}
.y11_c00310{bottom:504.445050px;}
.y10_c00310{bottom:522.445050px;}
.yf_c00310{bottom:548.949000px;}
.ye_c00310{bottom:819.161550px;}
.yd_c00310{bottom:832.661550px;}
.yc_c00310{bottom:846.161550px;}
.yb_c00310{bottom:872.665500px;}
.ya_c00310{bottom:886.165500px;}
.y9_c00310{bottom:899.665500px;}
.y8_c00310{bottom:926.169450px;}
.y7_c00310{bottom:939.669450px;}
.y6_c00310{bottom:953.169450px;}
.y5_c00310{bottom:975.421350px;}
.y4_c00310{bottom:993.421350px;}
.y3_c00310{bottom:1011.421350px;}
.y2_c00310{bottom:1037.925300px;}
.y1_c00310{bottom:1093.600950px;}
.h7_c00310{height:30.282000px;}
.h5_c00310{height:34.080000px;}
.h2_c00310{height:39.264000px;}
.h3_c00310{height:39.984000px;}
.h4_c00310{height:43.260000px;}
.h6_c00310{height:43.740000px;}
.h1_c00310{height:1135.500000px;}
.h0_c00310{height:1135.506150px;}
.w0_c00310{width:893.950200px;}
.w1_c00310{width:894.000000px;}
.x0_c00310{left:0.000000px;}
.x4_c00310{left:128.626800px;}
.x5_c00310{left:141.382650px;}
.x6_c00310{left:145.634700px;}
.x2_c00310{left:188.061900px;}
.x3_c00310{left:190.513350px;}
.x1_c00310{left:800.165850px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls5_c00310{letter-spacing:-0.816000pt;}
.ls2_c00310{letter-spacing:-0.768000pt;}
.ls3_c00310{letter-spacing:-0.640000pt;}
.ls4_c00310{letter-spacing:-0.560000pt;}
.ls1_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.426667pt;}
.ws1_c00310{word-spacing:-7.728000pt;}
.ws0_c00310{word-spacing:-0.042667pt;}
.ws2_c00310{word-spacing:0.000000pt;}
.ws6_c00310{word-spacing:0.560000pt;}
.ws4_c00310{word-spacing:0.768000pt;}
.ws5_c00310{word-spacing:0.816000pt;}
.ws3_c00310{word-spacing:6.272000pt;}
._0_c00310{margin-left:-2449.134400pt;}
._4_c00310{margin-left:-6.174933pt;}
._8_c00310{margin-left:-4.656000pt;}
._1_c00310{margin-left:-2.005333pt;}
._3_c00310{margin-left:-1.066667pt;}
._2_c00310{width:0.896000pt;}
._7_c00310{width:6.912000pt;}
._5_c00310{width:49.488000pt;}
._6_c00310{width:52.565333pt;}
.fs3_c00310{font-size:37.333333pt;}
.fs0_c00310{font-size:42.666667pt;}
.fs4_c00310{font-size:48.000000pt;}
.fs2_c00310{font-size:50.666667pt;}
.fs1_c00310{font-size:53.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y1b_c00310{bottom:293.498000pt;}
.y1a_c00310{bottom:305.498000pt;}
.y19_c00310{bottom:317.498000pt;}
.y18_c00310{bottom:341.057067pt;}
.y17_c00310{bottom:353.057067pt;}
.y16_c00310{bottom:365.057067pt;}
.y15_c00310{bottom:388.616133pt;}
.y14_c00310{bottom:400.616133pt;}
.y13_c00310{bottom:412.616133pt;}
.y12_c00310{bottom:432.395600pt;}
.y11_c00310{bottom:448.395600pt;}
.y10_c00310{bottom:464.395600pt;}
.yf_c00310{bottom:487.954667pt;}
.ye_c00310{bottom:728.143600pt;}
.yd_c00310{bottom:740.143600pt;}
.yc_c00310{bottom:752.143600pt;}
.yb_c00310{bottom:775.702667pt;}
.ya_c00310{bottom:787.702667pt;}
.y9_c00310{bottom:799.702667pt;}
.y8_c00310{bottom:823.261733pt;}
.y7_c00310{bottom:835.261733pt;}
.y6_c00310{bottom:847.261733pt;}
.y5_c00310{bottom:867.041200pt;}
.y4_c00310{bottom:883.041200pt;}
.y3_c00310{bottom:899.041200pt;}
.y2_c00310{bottom:922.600267pt;}
.y1_c00310{bottom:972.089733pt;}
.h7_c00310{height:26.917333pt;}
.h5_c00310{height:30.293333pt;}
.h2_c00310{height:34.901333pt;}
.h3_c00310{height:35.541333pt;}
.h4_c00310{height:38.453333pt;}
.h6_c00310{height:38.880000pt;}
.h1_c00310{height:1009.333333pt;}
.h0_c00310{height:1009.338800pt;}
.w0_c00310{width:794.622400pt;}
.w1_c00310{width:794.666667pt;}
.x0_c00310{left:0.000000pt;}
.x4_c00310{left:114.334933pt;}
.x5_c00310{left:125.673467pt;}
.x6_c00310{left:129.453067pt;}
.x2_c00310{left:167.166133pt;}
.x3_c00310{left:169.345200pt;}
.x1_c00310{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls1_c00311{letter-spacing:-1.620000px;}
.ls2_c00311{letter-spacing:-0.720000px;}
.ls3_c00311{letter-spacing:-0.630000px;}
.ls4_c00311{letter-spacing:-0.540000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00311{word-spacing:-8.694000px;}
.ws2_c00311{word-spacing:0.000000px;}
.ws5_c00311{word-spacing:0.540000px;}
.ws3_c00311{word-spacing:7.056000px;}
.ws4_c00311{word-spacing:57.294000px;}
.ws0_c00311{word-spacing:1585.435200px;}
._3_c00311{margin-left:-7.042800px;}
._0_c00311{margin-left:-2.112000px;}
._1_c00311{margin-left:-1.104000px;}
._2_c00311{width:2.016000px;}
._5_c00311{width:7.776000px;}
._6_c00311{width:55.674000px;}
._4_c00311{width:59.136000px;}
.fc0_c00311{color:rgb(35,31,32);}
.fs3_c00311{font-size:42.000000px;}
.fs0_c00311{font-size:48.000000px;}
.fs4_c00311{font-size:54.000000px;}
.fs2_c00311{font-size:57.000000px;}
.fs1_c00311{font-size:60.000000px;}
.y0_c00311{bottom:0.000000px;}
.y19_c00311{bottom:347.972700px;}
.y18_c00311{bottom:361.472700px;}
.y17_c00311{bottom:374.972550px;}
.y16_c00311{bottom:401.476500px;}
.y15_c00311{bottom:414.976500px;}
.y14_c00311{bottom:428.476500px;}
.y13_c00311{bottom:454.980450px;}
.y12_c00311{bottom:468.480450px;}
.y11_c00311{bottom:481.980450px;}
.y10_c00311{bottom:504.232500px;}
.yf_c00311{bottom:522.232500px;}
.ye_c00311{bottom:548.736450px;}
.yd_c00311{bottom:836.949000px;}
.yc_c00311{bottom:850.449000px;}
.yb_c00311{bottom:863.949000px;}
.ya_c00311{bottom:890.452950px;}
.y9_c00311{bottom:903.952950px;}
.y8_c00311{bottom:917.452950px;}
.y7_c00311{bottom:943.956900px;}
.y6_c00311{bottom:957.456900px;}
.y5_c00311{bottom:970.956900px;}
.y4_c00311{bottom:993.208800px;}
.y3_c00311{bottom:1011.208800px;}
.y2_c00311{bottom:1037.712750px;}
.y1_c00311{bottom:1093.600950px;}
.h6_c00311{height:30.282000px;}
.h4_c00311{height:34.080000px;}
.h2_c00311{height:39.264000px;}
.h3_c00311{height:43.260000px;}
.h5_c00311{height:43.740000px;}
.h1_c00311{height:1135.500000px;}
.h0_c00311{height:1135.506150px;}
.w0_c00311{width:893.950200px;}
.w1_c00311{width:894.000000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:77.603100px;}
.x2_c00311{left:599.532150px;}
.x3_c00311{left:612.288150px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls1_c00311{letter-spacing:-1.440000pt;}
.ls2_c00311{letter-spacing:-0.640000pt;}
.ls3_c00311{letter-spacing:-0.560000pt;}
.ls4_c00311{letter-spacing:-0.480000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws1_c00311{word-spacing:-7.728000pt;}
.ws2_c00311{word-spacing:0.000000pt;}
.ws5_c00311{word-spacing:0.480000pt;}
.ws3_c00311{word-spacing:6.272000pt;}
.ws4_c00311{word-spacing:50.928000pt;}
.ws0_c00311{word-spacing:1409.275733pt;}
._3_c00311{margin-left:-6.260267pt;}
._0_c00311{margin-left:-1.877333pt;}
._1_c00311{margin-left:-0.981333pt;}
._2_c00311{width:1.792000pt;}
._5_c00311{width:6.912000pt;}
._6_c00311{width:49.488000pt;}
._4_c00311{width:52.565333pt;}
.fs3_c00311{font-size:37.333333pt;}
.fs0_c00311{font-size:42.666667pt;}
.fs4_c00311{font-size:48.000000pt;}
.fs2_c00311{font-size:50.666667pt;}
.fs1_c00311{font-size:53.333333pt;}
.y0_c00311{bottom:0.000000pt;}
.y19_c00311{bottom:309.309067pt;}
.y18_c00311{bottom:321.309067pt;}
.y17_c00311{bottom:333.308933pt;}
.y16_c00311{bottom:356.868000pt;}
.y15_c00311{bottom:368.868000pt;}
.y14_c00311{bottom:380.868000pt;}
.y13_c00311{bottom:404.427067pt;}
.y12_c00311{bottom:416.427067pt;}
.y11_c00311{bottom:428.427067pt;}
.y10_c00311{bottom:448.206667pt;}
.yf_c00311{bottom:464.206667pt;}
.ye_c00311{bottom:487.765733pt;}
.yd_c00311{bottom:743.954667pt;}
.yc_c00311{bottom:755.954667pt;}
.yb_c00311{bottom:767.954667pt;}
.ya_c00311{bottom:791.513733pt;}
.y9_c00311{bottom:803.513733pt;}
.y8_c00311{bottom:815.513733pt;}
.y7_c00311{bottom:839.072800pt;}
.y6_c00311{bottom:851.072800pt;}
.y5_c00311{bottom:863.072800pt;}
.y4_c00311{bottom:882.852267pt;}
.y3_c00311{bottom:898.852267pt;}
.y2_c00311{bottom:922.411333pt;}
.y1_c00311{bottom:972.089733pt;}
.h6_c00311{height:26.917333pt;}
.h4_c00311{height:30.293333pt;}
.h2_c00311{height:34.901333pt;}
.h3_c00311{height:38.453333pt;}
.h5_c00311{height:38.880000pt;}
.h1_c00311{height:1009.333333pt;}
.h0_c00311{height:1009.338800pt;}
.w0_c00311{width:794.622400pt;}
.w1_c00311{width:794.666667pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:68.980533pt;}
.x2_c00311{left:532.917467pt;}
.x3_c00311{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00312;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:0.908000;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.067000;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00312{font-family:ff8_c00312;line-height:0.710000;font-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_c00312{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls3_c00312{letter-spacing:-0.720000px;}
.ls2_c00312{letter-spacing:-0.702000px;}
.ls4_c00312{letter-spacing:-0.630000px;}
.ls1_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00312{word-spacing:-8.694000px;}
.ws2_c00312{word-spacing:-6.487200px;}
.ws0_c00312{word-spacing:-0.048000px;}
.ws3_c00312{word-spacing:0.000000px;}
.ws5_c00312{word-spacing:0.702000px;}
.ws4_c00312{word-spacing:7.056000px;}
._0_c00312{margin-left:-2755.276200px;}
._4_c00312{margin-left:-6.946800px;}
._1_c00312{margin-left:-2.256000px;}
._3_c00312{margin-left:-1.200000px;}
._2_c00312{width:1.008000px;}
._6_c00312{width:2.118000px;}
._8_c00312{width:7.776000px;}
._5_c00312{width:55.674000px;}
._7_c00312{width:59.136000px;}
.fc0_c00312{color:rgb(35,31,32);}
.fs5_c00312{font-size:30.600000px;}
.fs6_c00312{font-size:36.000000px;}
.fs3_c00312{font-size:42.000000px;}
.fs0_c00312{font-size:48.000000px;}
.fs4_c00312{font-size:54.000000px;}
.fs2_c00312{font-size:57.000000px;}
.fs1_c00312{font-size:60.000000px;}
.y0_c00312{bottom:0.000000px;}
.y18_c00312{bottom:347.547450px;}
.y17_c00312{bottom:361.047450px;}
.y16_c00312{bottom:374.547450px;}
.y15_c00312{bottom:401.051400px;}
.y14_c00312{bottom:414.551400px;}
.y13_c00312{bottom:428.051400px;}
.y12_c00312{bottom:454.555350px;}
.y11_c00312{bottom:468.055350px;}
.y10_c00312{bottom:481.555350px;}
.yf_c00312{bottom:503.807250px;}
.ye_c00312{bottom:521.807250px;}
.yd_c00312{bottom:548.311200px;}
.yc_c00312{bottom:851.086650px;}
.yb_c00312{bottom:864.586650px;}
.ya_c00312{bottom:878.086650px;}
.y9_c00312{bottom:904.590600px;}
.y8_c00312{bottom:918.090600px;}
.y7_c00312{bottom:944.594700px;}
.y6_c00312{bottom:958.094700px;}
.y5_c00312{bottom:971.594700px;}
.y4_c00312{bottom:993.846600px;}
.y3_c00312{bottom:1011.846600px;}
.y2_c00312{bottom:1038.350550px;}
.y19_c00312{bottom:1040.299350px;}
.y1_c00312{bottom:1093.600950px;}
.h8_c00312{height:25.200000px;}
.h7_c00312{height:30.282000px;}
.h5_c00312{height:34.080000px;}
.h2_c00312{height:39.264000px;}
.h3_c00312{height:39.984000px;}
.h4_c00312{height:43.260000px;}
.h6_c00312{height:43.740000px;}
.h1_c00312{height:1135.500000px;}
.h0_c00312{height:1135.506150px;}
.w0_c00312{width:893.950200px;}
.w1_c00312{width:894.000000px;}
.x0_c00312{left:0.000000px;}
.x4_c00312{left:128.626800px;}
.x5_c00312{left:141.382650px;}
.x2_c00312{left:188.061900px;}
.x3_c00312{left:190.513350px;}
.x6_c00312{left:321.919200px;}
.x1_c00312{left:800.165850px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls3_c00312{letter-spacing:-0.640000pt;}
.ls2_c00312{letter-spacing:-0.624000pt;}
.ls4_c00312{letter-spacing:-0.560000pt;}
.ls1_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.426667pt;}
.ws1_c00312{word-spacing:-7.728000pt;}
.ws2_c00312{word-spacing:-5.766400pt;}
.ws0_c00312{word-spacing:-0.042667pt;}
.ws3_c00312{word-spacing:0.000000pt;}
.ws5_c00312{word-spacing:0.624000pt;}
.ws4_c00312{word-spacing:6.272000pt;}
._0_c00312{margin-left:-2449.134400pt;}
._4_c00312{margin-left:-6.174933pt;}
._1_c00312{margin-left:-2.005333pt;}
._3_c00312{margin-left:-1.066667pt;}
._2_c00312{width:0.896000pt;}
._6_c00312{width:1.882667pt;}
._8_c00312{width:6.912000pt;}
._5_c00312{width:49.488000pt;}
._7_c00312{width:52.565333pt;}
.fs5_c00312{font-size:27.200000pt;}
.fs6_c00312{font-size:32.000000pt;}
.fs3_c00312{font-size:37.333333pt;}
.fs0_c00312{font-size:42.666667pt;}
.fs4_c00312{font-size:48.000000pt;}
.fs2_c00312{font-size:50.666667pt;}
.fs1_c00312{font-size:53.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y18_c00312{bottom:308.931067pt;}
.y17_c00312{bottom:320.931067pt;}
.y16_c00312{bottom:332.931067pt;}
.y15_c00312{bottom:356.490133pt;}
.y14_c00312{bottom:368.490133pt;}
.y13_c00312{bottom:380.490133pt;}
.y12_c00312{bottom:404.049200pt;}
.y11_c00312{bottom:416.049200pt;}
.y10_c00312{bottom:428.049200pt;}
.yf_c00312{bottom:447.828667pt;}
.ye_c00312{bottom:463.828667pt;}
.yd_c00312{bottom:487.387733pt;}
.yc_c00312{bottom:756.521467pt;}
.yb_c00312{bottom:768.521467pt;}
.ya_c00312{bottom:780.521467pt;}
.y9_c00312{bottom:804.080533pt;}
.y8_c00312{bottom:816.080533pt;}
.y7_c00312{bottom:839.639733pt;}
.y6_c00312{bottom:851.639733pt;}
.y5_c00312{bottom:863.639733pt;}
.y4_c00312{bottom:883.419200pt;}
.y3_c00312{bottom:899.419200pt;}
.y2_c00312{bottom:922.978267pt;}
.y19_c00312{bottom:924.710533pt;}
.y1_c00312{bottom:972.089733pt;}
.h8_c00312{height:22.400000pt;}
.h7_c00312{height:26.917333pt;}
.h5_c00312{height:30.293333pt;}
.h2_c00312{height:34.901333pt;}
.h3_c00312{height:35.541333pt;}
.h4_c00312{height:38.453333pt;}
.h6_c00312{height:38.880000pt;}
.h1_c00312{height:1009.333333pt;}
.h0_c00312{height:1009.338800pt;}
.w0_c00312{width:794.622400pt;}
.w1_c00312{width:794.666667pt;}
.x0_c00312{left:0.000000pt;}
.x4_c00312{left:114.334933pt;}
.x5_c00312{left:125.673467pt;}
.x2_c00312{left:167.166133pt;}
.x3_c00312{left:169.345200pt;}
.x6_c00312{left:286.150400pt;}
.x1_c00312{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls2_c00313{letter-spacing:-0.720000px;}
.ls3_c00313{letter-spacing:-0.630000px;}
.ls1_c00313{letter-spacing:-0.378000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00313{word-spacing:-8.694000px;}
.ws2_c00313{word-spacing:0.000000px;}
.ws4_c00313{word-spacing:0.378000px;}
.ws3_c00313{word-spacing:7.056000px;}
.ws0_c00313{word-spacing:1585.435200px;}
._3_c00313{margin-left:-7.042800px;}
._0_c00313{margin-left:-2.112000px;}
._1_c00313{margin-left:-1.104000px;}
._2_c00313{width:2.016000px;}
._6_c00313{width:7.776000px;}
._4_c00313{width:55.674000px;}
._5_c00313{width:59.136000px;}
.fc0_c00313{color:rgb(35,31,32);}
.fs3_c00313{font-size:42.000000px;}
.fs0_c00313{font-size:48.000000px;}
.fs4_c00313{font-size:54.000000px;}
.fs2_c00313{font-size:57.000000px;}
.fs1_c00313{font-size:60.000000px;}
.y0_c00313{bottom:0.000000px;}
.yd_c00313{bottom:347.547450px;}
.yc_c00313{bottom:361.047450px;}
.yb_c00313{bottom:374.547450px;}
.ya_c00313{bottom:401.051400px;}
.y9_c00313{bottom:414.551400px;}
.y8_c00313{bottom:428.051400px;}
.y7_c00313{bottom:454.555350px;}
.y6_c00313{bottom:468.055350px;}
.y5_c00313{bottom:481.555350px;}
.y4_c00313{bottom:503.807250px;}
.y3_c00313{bottom:521.807250px;}
.y2_c00313{bottom:548.311200px;}
.y19_c00313{bottom:837.553350px;}
.y18_c00313{bottom:851.053350px;}
.y17_c00313{bottom:864.553350px;}
.y16_c00313{bottom:891.057300px;}
.y15_c00313{bottom:904.557300px;}
.y14_c00313{bottom:918.057300px;}
.y13_c00313{bottom:944.561250px;}
.y12_c00313{bottom:958.061250px;}
.y11_c00313{bottom:971.561250px;}
.y10_c00313{bottom:993.813300px;}
.yf_c00313{bottom:1011.813300px;}
.ye_c00313{bottom:1038.317250px;}
.y1_c00313{bottom:1093.600950px;}
.h6_c00313{height:30.282000px;}
.h4_c00313{height:34.080000px;}
.h2_c00313{height:39.264000px;}
.h3_c00313{height:43.260000px;}
.h5_c00313{height:43.740000px;}
.h1_c00313{height:1135.500000px;}
.h0_c00313{height:1135.506150px;}
.w0_c00313{width:893.950200px;}
.w1_c00313{width:894.000000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:77.603100px;}
.x2_c00313{left:599.532150px;}
.x3_c00313{left:612.288150px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls2_c00313{letter-spacing:-0.640000pt;}
.ls3_c00313{letter-spacing:-0.560000pt;}
.ls1_c00313{letter-spacing:-0.336000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws1_c00313{word-spacing:-7.728000pt;}
.ws2_c00313{word-spacing:0.000000pt;}
.ws4_c00313{word-spacing:0.336000pt;}
.ws3_c00313{word-spacing:6.272000pt;}
.ws0_c00313{word-spacing:1409.275733pt;}
._3_c00313{margin-left:-6.260267pt;}
._0_c00313{margin-left:-1.877333pt;}
._1_c00313{margin-left:-0.981333pt;}
._2_c00313{width:1.792000pt;}
._6_c00313{width:6.912000pt;}
._4_c00313{width:49.488000pt;}
._5_c00313{width:52.565333pt;}
.fs3_c00313{font-size:37.333333pt;}
.fs0_c00313{font-size:42.666667pt;}
.fs4_c00313{font-size:48.000000pt;}
.fs2_c00313{font-size:50.666667pt;}
.fs1_c00313{font-size:53.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.yd_c00313{bottom:308.931067pt;}
.yc_c00313{bottom:320.931067pt;}
.yb_c00313{bottom:332.931067pt;}
.ya_c00313{bottom:356.490133pt;}
.y9_c00313{bottom:368.490133pt;}
.y8_c00313{bottom:380.490133pt;}
.y7_c00313{bottom:404.049200pt;}
.y6_c00313{bottom:416.049200pt;}
.y5_c00313{bottom:428.049200pt;}
.y4_c00313{bottom:447.828667pt;}
.y3_c00313{bottom:463.828667pt;}
.y2_c00313{bottom:487.387733pt;}
.y19_c00313{bottom:744.491867pt;}
.y18_c00313{bottom:756.491867pt;}
.y17_c00313{bottom:768.491867pt;}
.y16_c00313{bottom:792.050933pt;}
.y15_c00313{bottom:804.050933pt;}
.y14_c00313{bottom:816.050933pt;}
.y13_c00313{bottom:839.610000pt;}
.y12_c00313{bottom:851.610000pt;}
.y11_c00313{bottom:863.610000pt;}
.y10_c00313{bottom:883.389600pt;}
.yf_c00313{bottom:899.389600pt;}
.ye_c00313{bottom:922.948667pt;}
.y1_c00313{bottom:972.089733pt;}
.h6_c00313{height:26.917333pt;}
.h4_c00313{height:30.293333pt;}
.h2_c00313{height:34.901333pt;}
.h3_c00313{height:38.453333pt;}
.h5_c00313{height:38.880000pt;}
.h1_c00313{height:1009.333333pt;}
.h0_c00313{height:1009.338800pt;}
.w0_c00313{width:794.622400pt;}
.w1_c00313{width:794.666667pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:68.980533pt;}
.x2_c00313{left:532.917467pt;}
.x3_c00313{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:0.908000;font-style:normal;font-weight: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_c00314;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00314{font-family:ff7_c00314;line-height:1.067000;font-style:normal;font-weight: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_c00314;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00314{font-family:ff8_c00314;line-height:0.710000;font-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_c00314{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls3_c00314{letter-spacing:-0.720000px;}
.ls4_c00314{letter-spacing:-0.630000px;}
.ls2_c00314{letter-spacing:-0.216000px;}
.ls1_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00314{word-spacing:-8.694000px;}
.ws2_c00314{word-spacing:-6.487200px;}
.ws0_c00314{word-spacing:-0.048000px;}
.ws3_c00314{word-spacing:0.000000px;}
.ws5_c00314{word-spacing:0.216000px;}
.ws4_c00314{word-spacing:7.056000px;}
._0_c00314{margin-left:-2755.276200px;}
._4_c00314{margin-left:-6.946800px;}
._1_c00314{margin-left:-2.256000px;}
._3_c00314{margin-left:-1.200000px;}
._2_c00314{width:1.008000px;}
._7_c00314{width:7.776000px;}
._5_c00314{width:55.674000px;}
._6_c00314{width:59.136000px;}
.fc0_c00314{color:rgb(35,31,32);}
.fs5_c00314{font-size:30.600000px;}
.fs6_c00314{font-size:36.000000px;}
.fs3_c00314{font-size:42.000000px;}
.fs0_c00314{font-size:48.000000px;}
.fs4_c00314{font-size:54.000000px;}
.fs2_c00314{font-size:57.000000px;}
.fs1_c00314{font-size:60.000000px;}
.y0_c00314{bottom:0.000000px;}
.y18_c00314{bottom:361.472700px;}
.y17_c00314{bottom:374.972550px;}
.y16_c00314{bottom:388.472550px;}
.y15_c00314{bottom:414.976500px;}
.y14_c00314{bottom:428.476500px;}
.y13_c00314{bottom:454.980450px;}
.y12_c00314{bottom:468.480450px;}
.y11_c00314{bottom:481.980450px;}
.y10_c00314{bottom:504.232500px;}
.yf_c00314{bottom:522.232500px;}
.ye_c00314{bottom:548.736450px;}
.y19_c00314{bottom:551.323050px;}
.yd_c00314{bottom:836.949000px;}
.yc_c00314{bottom:850.449000px;}
.yb_c00314{bottom:863.949000px;}
.ya_c00314{bottom:890.452950px;}
.y9_c00314{bottom:903.952950px;}
.y8_c00314{bottom:917.452950px;}
.y7_c00314{bottom:943.956900px;}
.y6_c00314{bottom:957.456900px;}
.y5_c00314{bottom:970.956900px;}
.y4_c00314{bottom:993.208800px;}
.y3_c00314{bottom:1011.208800px;}
.y2_c00314{bottom:1037.712750px;}
.y1_c00314{bottom:1093.600950px;}
.h8_c00314{height:25.200000px;}
.h7_c00314{height:30.282000px;}
.h5_c00314{height:34.080000px;}
.h2_c00314{height:39.264000px;}
.h3_c00314{height:39.984000px;}
.h4_c00314{height:43.260000px;}
.h6_c00314{height:43.740000px;}
.h1_c00314{height:1135.500000px;}
.h0_c00314{height:1135.506150px;}
.w0_c00314{width:893.950200px;}
.w1_c00314{width:894.000000px;}
.x0_c00314{left:0.000000px;}
.x4_c00314{left:128.626800px;}
.x5_c00314{left:141.382650px;}
.x2_c00314{left:188.061900px;}
.x3_c00314{left:190.513350px;}
.x6_c00314{left:321.068700px;}
.x1_c00314{left:800.165850px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls3_c00314{letter-spacing:-0.640000pt;}
.ls4_c00314{letter-spacing:-0.560000pt;}
.ls2_c00314{letter-spacing:-0.192000pt;}
.ls1_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:0.426667pt;}
.ws1_c00314{word-spacing:-7.728000pt;}
.ws2_c00314{word-spacing:-5.766400pt;}
.ws0_c00314{word-spacing:-0.042667pt;}
.ws3_c00314{word-spacing:0.000000pt;}
.ws5_c00314{word-spacing:0.192000pt;}
.ws4_c00314{word-spacing:6.272000pt;}
._0_c00314{margin-left:-2449.134400pt;}
._4_c00314{margin-left:-6.174933pt;}
._1_c00314{margin-left:-2.005333pt;}
._3_c00314{margin-left:-1.066667pt;}
._2_c00314{width:0.896000pt;}
._7_c00314{width:6.912000pt;}
._5_c00314{width:49.488000pt;}
._6_c00314{width:52.565333pt;}
.fs5_c00314{font-size:27.200000pt;}
.fs6_c00314{font-size:32.000000pt;}
.fs3_c00314{font-size:37.333333pt;}
.fs0_c00314{font-size:42.666667pt;}
.fs4_c00314{font-size:48.000000pt;}
.fs2_c00314{font-size:50.666667pt;}
.fs1_c00314{font-size:53.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y18_c00314{bottom:321.309067pt;}
.y17_c00314{bottom:333.308933pt;}
.y16_c00314{bottom:345.308933pt;}
.y15_c00314{bottom:368.868000pt;}
.y14_c00314{bottom:380.868000pt;}
.y13_c00314{bottom:404.427067pt;}
.y12_c00314{bottom:416.427067pt;}
.y11_c00314{bottom:428.427067pt;}
.y10_c00314{bottom:448.206667pt;}
.yf_c00314{bottom:464.206667pt;}
.ye_c00314{bottom:487.765733pt;}
.y19_c00314{bottom:490.064933pt;}
.yd_c00314{bottom:743.954667pt;}
.yc_c00314{bottom:755.954667pt;}
.yb_c00314{bottom:767.954667pt;}
.ya_c00314{bottom:791.513733pt;}
.y9_c00314{bottom:803.513733pt;}
.y8_c00314{bottom:815.513733pt;}
.y7_c00314{bottom:839.072800pt;}
.y6_c00314{bottom:851.072800pt;}
.y5_c00314{bottom:863.072800pt;}
.y4_c00314{bottom:882.852267pt;}
.y3_c00314{bottom:898.852267pt;}
.y2_c00314{bottom:922.411333pt;}
.y1_c00314{bottom:972.089733pt;}
.h8_c00314{height:22.400000pt;}
.h7_c00314{height:26.917333pt;}
.h5_c00314{height:30.293333pt;}
.h2_c00314{height:34.901333pt;}
.h3_c00314{height:35.541333pt;}
.h4_c00314{height:38.453333pt;}
.h6_c00314{height:38.880000pt;}
.h1_c00314{height:1009.333333pt;}
.h0_c00314{height:1009.338800pt;}
.w0_c00314{width:794.622400pt;}
.w1_c00314{width:794.666667pt;}
.x0_c00314{left:0.000000pt;}
.x4_c00314{left:114.334933pt;}
.x5_c00314{left:125.673467pt;}
.x2_c00314{left:167.166133pt;}
.x3_c00314{left:169.345200pt;}
.x6_c00314{left:285.394400pt;}
.x1_c00314{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00315;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls1_c00315{letter-spacing:-0.720000px;}
.ls2_c00315{letter-spacing:-0.630000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00315{word-spacing:-8.694000px;}
.ws2_c00315{word-spacing:0.000000px;}
.ws3_c00315{word-spacing:7.056000px;}
.ws0_c00315{word-spacing:1585.435200px;}
._3_c00315{margin-left:-7.042800px;}
._0_c00315{margin-left:-2.112000px;}
._1_c00315{margin-left:-1.104000px;}
._2_c00315{width:2.016000px;}
._6_c00315{width:7.776000px;}
._4_c00315{width:55.674000px;}
._5_c00315{width:59.136000px;}
.fc0_c00315{color:rgb(35,31,32);}
.fs3_c00315{font-size:42.000000px;}
.fs0_c00315{font-size:48.000000px;}
.fs4_c00315{font-size:54.000000px;}
.fs2_c00315{font-size:57.000000px;}
.fs1_c00315{font-size:60.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1a_c00315{bottom:347.547450px;}
.y19_c00315{bottom:361.047450px;}
.y18_c00315{bottom:374.547450px;}
.y17_c00315{bottom:401.051400px;}
.y16_c00315{bottom:414.551400px;}
.y15_c00315{bottom:428.051400px;}
.y14_c00315{bottom:454.555350px;}
.y13_c00315{bottom:468.055350px;}
.y12_c00315{bottom:481.555350px;}
.y11_c00315{bottom:503.807250px;}
.y10_c00315{bottom:521.807250px;}
.yf_c00315{bottom:548.311200px;}
.ye_c00315{bottom:818.523600px;}
.yd_c00315{bottom:832.023600px;}
.yc_c00315{bottom:845.523600px;}
.yb_c00315{bottom:872.027550px;}
.ya_c00315{bottom:885.527550px;}
.y9_c00315{bottom:899.027550px;}
.y8_c00315{bottom:925.531500px;}
.y7_c00315{bottom:939.031500px;}
.y6_c00315{bottom:952.531500px;}
.y5_c00315{bottom:974.783550px;}
.y4_c00315{bottom:992.783550px;}
.y3_c00315{bottom:1010.783550px;}
.y2_c00315{bottom:1037.287500px;}
.y1_c00315{bottom:1093.600950px;}
.h6_c00315{height:30.282000px;}
.h4_c00315{height:34.080000px;}
.h2_c00315{height:39.264000px;}
.h3_c00315{height:43.260000px;}
.h5_c00315{height:43.740000px;}
.h1_c00315{height:1135.500000px;}
.h0_c00315{height:1135.506150px;}
.w0_c00315{width:893.950200px;}
.w1_c00315{width:894.000000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:77.603100px;}
.x2_c00315{left:599.532150px;}
.x3_c00315{left:612.288150px;}
.x4_c00315{left:616.540050px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls1_c00315{letter-spacing:-0.640000pt;}
.ls2_c00315{letter-spacing:-0.560000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws1_c00315{word-spacing:-7.728000pt;}
.ws2_c00315{word-spacing:0.000000pt;}
.ws3_c00315{word-spacing:6.272000pt;}
.ws0_c00315{word-spacing:1409.275733pt;}
._3_c00315{margin-left:-6.260267pt;}
._0_c00315{margin-left:-1.877333pt;}
._1_c00315{margin-left:-0.981333pt;}
._2_c00315{width:1.792000pt;}
._6_c00315{width:6.912000pt;}
._4_c00315{width:49.488000pt;}
._5_c00315{width:52.565333pt;}
.fs3_c00315{font-size:37.333333pt;}
.fs0_c00315{font-size:42.666667pt;}
.fs4_c00315{font-size:48.000000pt;}
.fs2_c00315{font-size:50.666667pt;}
.fs1_c00315{font-size:53.333333pt;}
.y0_c00315{bottom:0.000000pt;}
.y1a_c00315{bottom:308.931067pt;}
.y19_c00315{bottom:320.931067pt;}
.y18_c00315{bottom:332.931067pt;}
.y17_c00315{bottom:356.490133pt;}
.y16_c00315{bottom:368.490133pt;}
.y15_c00315{bottom:380.490133pt;}
.y14_c00315{bottom:404.049200pt;}
.y13_c00315{bottom:416.049200pt;}
.y12_c00315{bottom:428.049200pt;}
.y11_c00315{bottom:447.828667pt;}
.y10_c00315{bottom:463.828667pt;}
.yf_c00315{bottom:487.387733pt;}
.ye_c00315{bottom:727.576533pt;}
.yd_c00315{bottom:739.576533pt;}
.yc_c00315{bottom:751.576533pt;}
.yb_c00315{bottom:775.135600pt;}
.ya_c00315{bottom:787.135600pt;}
.y9_c00315{bottom:799.135600pt;}
.y8_c00315{bottom:822.694667pt;}
.y7_c00315{bottom:834.694667pt;}
.y6_c00315{bottom:846.694667pt;}
.y5_c00315{bottom:866.474267pt;}
.y4_c00315{bottom:882.474267pt;}
.y3_c00315{bottom:898.474267pt;}
.y2_c00315{bottom:922.033333pt;}
.y1_c00315{bottom:972.089733pt;}
.h6_c00315{height:26.917333pt;}
.h4_c00315{height:30.293333pt;}
.h2_c00315{height:34.901333pt;}
.h3_c00315{height:38.453333pt;}
.h5_c00315{height:38.880000pt;}
.h1_c00315{height:1009.333333pt;}
.h0_c00315{height:1009.338800pt;}
.w0_c00315{width:794.622400pt;}
.w1_c00315{width:794.666667pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:68.980533pt;}
.x2_c00315{left:532.917467pt;}
.x3_c00315{left:544.256133pt;}
.x4_c00315{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00316;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;line-height:0.908000;font-style:normal;font-weight: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_c00316;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00316{font-family:ff7_c00316;line-height:1.067000;font-style:normal;font-weight: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_c00316;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00316{font-family:ff8_c00316;line-height:0.710000;font-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_c00316{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls4_c00316{letter-spacing:-0.864000px;}
.ls2_c00316{letter-spacing:-0.720000px;}
.ls3_c00316{letter-spacing:-0.630000px;}
.ls1_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00316{word-spacing:-8.694000px;}
.ws2_c00316{word-spacing:-6.487200px;}
.ws0_c00316{word-spacing:-0.048000px;}
.ws3_c00316{word-spacing:0.000000px;}
.ws5_c00316{word-spacing:0.864000px;}
.ws4_c00316{word-spacing:7.056000px;}
._0_c00316{margin-left:-2755.276200px;}
._4_c00316{margin-left:-6.947400px;}
._1_c00316{margin-left:-2.256000px;}
._3_c00316{margin-left:-1.200000px;}
._2_c00316{width:1.008000px;}
._7_c00316{width:7.776000px;}
._5_c00316{width:55.674000px;}
._6_c00316{width:59.136000px;}
.fc0_c00316{color:rgb(35,31,32);}
.fs5_c00316{font-size:30.600000px;}
.fs6_c00316{font-size:36.000000px;}
.fs3_c00316{font-size:42.000000px;}
.fs0_c00316{font-size:48.000000px;}
.fs4_c00316{font-size:54.000000px;}
.fs2_c00316{font-size:57.000000px;}
.fs1_c00316{font-size:60.000000px;}
.y0_c00316{bottom:0.000000px;}
.y18_c00316{bottom:361.472700px;}
.y17_c00316{bottom:374.972550px;}
.y16_c00316{bottom:388.472550px;}
.y15_c00316{bottom:414.976500px;}
.y14_c00316{bottom:428.476500px;}
.y13_c00316{bottom:454.980450px;}
.y12_c00316{bottom:468.480450px;}
.y11_c00316{bottom:481.980450px;}
.y10_c00316{bottom:504.232500px;}
.yf_c00316{bottom:522.232500px;}
.ye_c00316{bottom:548.736450px;}
.y19_c00316{bottom:551.323050px;}
.yd_c00316{bottom:832.449000px;}
.yc_c00316{bottom:845.949000px;}
.yb_c00316{bottom:859.449000px;}
.ya_c00316{bottom:885.952950px;}
.y9_c00316{bottom:899.452950px;}
.y8_c00316{bottom:925.956900px;}
.y7_c00316{bottom:939.456900px;}
.y6_c00316{bottom:952.956900px;}
.y5_c00316{bottom:975.208800px;}
.y4_c00316{bottom:993.208800px;}
.y3_c00316{bottom:1011.208800px;}
.y2_c00316{bottom:1037.712750px;}
.y1a_c00316{bottom:1040.299350px;}
.y1_c00316{bottom:1093.600950px;}
.h8_c00316{height:25.200000px;}
.h7_c00316{height:30.282000px;}
.h5_c00316{height:34.080000px;}
.h2_c00316{height:39.264000px;}
.h3_c00316{height:39.984000px;}
.h4_c00316{height:43.260000px;}
.h6_c00316{height:43.740000px;}
.h1_c00316{height:1135.500000px;}
.h0_c00316{height:1135.506150px;}
.w0_c00316{width:893.950200px;}
.w1_c00316{width:894.000000px;}
.x0_c00316{left:0.000000px;}
.x4_c00316{left:128.744700px;}
.x5_c00316{left:141.500700px;}
.x6_c00316{left:145.752600px;}
.x2_c00316{left:188.061900px;}
.x3_c00316{left:190.513350px;}
.x7_c00316{left:321.375900px;}
.x1_c00316{left:800.165850px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls4_c00316{letter-spacing:-0.768000pt;}
.ls2_c00316{letter-spacing:-0.640000pt;}
.ls3_c00316{letter-spacing:-0.560000pt;}
.ls1_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.426667pt;}
.ws1_c00316{word-spacing:-7.728000pt;}
.ws2_c00316{word-spacing:-5.766400pt;}
.ws0_c00316{word-spacing:-0.042667pt;}
.ws3_c00316{word-spacing:0.000000pt;}
.ws5_c00316{word-spacing:0.768000pt;}
.ws4_c00316{word-spacing:6.272000pt;}
._0_c00316{margin-left:-2449.134400pt;}
._4_c00316{margin-left:-6.175467pt;}
._1_c00316{margin-left:-2.005333pt;}
._3_c00316{margin-left:-1.066667pt;}
._2_c00316{width:0.896000pt;}
._7_c00316{width:6.912000pt;}
._5_c00316{width:49.488000pt;}
._6_c00316{width:52.565333pt;}
.fs5_c00316{font-size:27.200000pt;}
.fs6_c00316{font-size:32.000000pt;}
.fs3_c00316{font-size:37.333333pt;}
.fs0_c00316{font-size:42.666667pt;}
.fs4_c00316{font-size:48.000000pt;}
.fs2_c00316{font-size:50.666667pt;}
.fs1_c00316{font-size:53.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y18_c00316{bottom:321.309067pt;}
.y17_c00316{bottom:333.308933pt;}
.y16_c00316{bottom:345.308933pt;}
.y15_c00316{bottom:368.868000pt;}
.y14_c00316{bottom:380.868000pt;}
.y13_c00316{bottom:404.427067pt;}
.y12_c00316{bottom:416.427067pt;}
.y11_c00316{bottom:428.427067pt;}
.y10_c00316{bottom:448.206667pt;}
.yf_c00316{bottom:464.206667pt;}
.ye_c00316{bottom:487.765733pt;}
.y19_c00316{bottom:490.064933pt;}
.yd_c00316{bottom:739.954667pt;}
.yc_c00316{bottom:751.954667pt;}
.yb_c00316{bottom:763.954667pt;}
.ya_c00316{bottom:787.513733pt;}
.y9_c00316{bottom:799.513733pt;}
.y8_c00316{bottom:823.072800pt;}
.y7_c00316{bottom:835.072800pt;}
.y6_c00316{bottom:847.072800pt;}
.y5_c00316{bottom:866.852267pt;}
.y4_c00316{bottom:882.852267pt;}
.y3_c00316{bottom:898.852267pt;}
.y2_c00316{bottom:922.411333pt;}
.y1a_c00316{bottom:924.710533pt;}
.y1_c00316{bottom:972.089733pt;}
.h8_c00316{height:22.400000pt;}
.h7_c00316{height:26.917333pt;}
.h5_c00316{height:30.293333pt;}
.h2_c00316{height:34.901333pt;}
.h3_c00316{height:35.541333pt;}
.h4_c00316{height:38.453333pt;}
.h6_c00316{height:38.880000pt;}
.h1_c00316{height:1009.333333pt;}
.h0_c00316{height:1009.338800pt;}
.w0_c00316{width:794.622400pt;}
.w1_c00316{width:794.666667pt;}
.x0_c00316{left:0.000000pt;}
.x4_c00316{left:114.439733pt;}
.x5_c00316{left:125.778400pt;}
.x6_c00316{left:129.557867pt;}
.x2_c00316{left:167.166133pt;}
.x3_c00316{left:169.345200pt;}
.x7_c00316{left:285.667467pt;}
.x1_c00316{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00317;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;line-height:0.710000;font-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_c00317{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls1_c00317{letter-spacing:-0.720000px;}
.ls2_c00317{letter-spacing:-0.630000px;}
.ls3_c00317{letter-spacing:-0.216000px;}
.ls0_c00317{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00317{word-spacing:-8.694000px;}
.ws2_c00317{word-spacing:-6.487200px;}
.ws3_c00317{word-spacing:0.000000px;}
.ws5_c00317{word-spacing:0.216000px;}
.ws4_c00317{word-spacing:7.056000px;}
.ws0_c00317{word-spacing:1585.435200px;}
._3_c00317{margin-left:-7.042800px;}
._0_c00317{margin-left:-2.112000px;}
._1_c00317{margin-left:-1.104000px;}
._2_c00317{width:2.016000px;}
._6_c00317{width:7.776000px;}
._4_c00317{width:55.674000px;}
._5_c00317{width:59.136000px;}
.fc0_c00317{color:rgb(35,31,32);}
.fs5_c00317{font-size:30.600000px;}
.fs6_c00317{font-size:36.000000px;}
.fs3_c00317{font-size:42.000000px;}
.fs0_c00317{font-size:48.000000px;}
.fs4_c00317{font-size:54.000000px;}
.fs2_c00317{font-size:57.000000px;}
.fs1_c00317{font-size:60.000000px;}
.y0_c00317{bottom:0.000000px;}
.y18_c00317{bottom:347.547450px;}
.y17_c00317{bottom:361.047450px;}
.y16_c00317{bottom:374.547450px;}
.y15_c00317{bottom:401.051400px;}
.y14_c00317{bottom:414.551400px;}
.y13_c00317{bottom:428.051400px;}
.y12_c00317{bottom:454.555350px;}
.y11_c00317{bottom:468.055350px;}
.y10_c00317{bottom:481.555350px;}
.yf_c00317{bottom:503.807250px;}
.ye_c00317{bottom:521.807250px;}
.yd_c00317{bottom:548.311200px;}
.yc_c00317{bottom:850.023600px;}
.yb_c00317{bottom:863.523600px;}
.ya_c00317{bottom:877.023600px;}
.y9_c00317{bottom:903.527550px;}
.y8_c00317{bottom:917.027550px;}
.y7_c00317{bottom:943.531500px;}
.y6_c00317{bottom:957.031500px;}
.y5_c00317{bottom:970.531500px;}
.y4_c00317{bottom:992.783550px;}
.y3_c00317{bottom:1010.783550px;}
.y2_c00317{bottom:1037.287500px;}
.y19_c00317{bottom:1040.299350px;}
.y1_c00317{bottom:1093.600950px;}
.h7_c00317{height:25.200000px;}
.h6_c00317{height:30.282000px;}
.h4_c00317{height:34.080000px;}
.h2_c00317{height:39.264000px;}
.h3_c00317{height:43.260000px;}
.h5_c00317{height:43.740000px;}
.h1_c00317{height:1135.500000px;}
.h0_c00317{height:1135.506150px;}
.w0_c00317{width:893.950200px;}
.w1_c00317{width:894.000000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:77.603100px;}
.x4_c00317{left:424.138500px;}
.x2_c00317{left:599.532150px;}
.x3_c00317{left:612.288150px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls1_c00317{letter-spacing:-0.640000pt;}
.ls2_c00317{letter-spacing:-0.560000pt;}
.ls3_c00317{letter-spacing:-0.192000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws1_c00317{word-spacing:-7.728000pt;}
.ws2_c00317{word-spacing:-5.766400pt;}
.ws3_c00317{word-spacing:0.000000pt;}
.ws5_c00317{word-spacing:0.192000pt;}
.ws4_c00317{word-spacing:6.272000pt;}
.ws0_c00317{word-spacing:1409.275733pt;}
._3_c00317{margin-left:-6.260267pt;}
._0_c00317{margin-left:-1.877333pt;}
._1_c00317{margin-left:-0.981333pt;}
._2_c00317{width:1.792000pt;}
._6_c00317{width:6.912000pt;}
._4_c00317{width:49.488000pt;}
._5_c00317{width:52.565333pt;}
.fs5_c00317{font-size:27.200000pt;}
.fs6_c00317{font-size:32.000000pt;}
.fs3_c00317{font-size:37.333333pt;}
.fs0_c00317{font-size:42.666667pt;}
.fs4_c00317{font-size:48.000000pt;}
.fs2_c00317{font-size:50.666667pt;}
.fs1_c00317{font-size:53.333333pt;}
.y0_c00317{bottom:0.000000pt;}
.y18_c00317{bottom:308.931067pt;}
.y17_c00317{bottom:320.931067pt;}
.y16_c00317{bottom:332.931067pt;}
.y15_c00317{bottom:356.490133pt;}
.y14_c00317{bottom:368.490133pt;}
.y13_c00317{bottom:380.490133pt;}
.y12_c00317{bottom:404.049200pt;}
.y11_c00317{bottom:416.049200pt;}
.y10_c00317{bottom:428.049200pt;}
.yf_c00317{bottom:447.828667pt;}
.ye_c00317{bottom:463.828667pt;}
.yd_c00317{bottom:487.387733pt;}
.yc_c00317{bottom:755.576533pt;}
.yb_c00317{bottom:767.576533pt;}
.ya_c00317{bottom:779.576533pt;}
.y9_c00317{bottom:803.135600pt;}
.y8_c00317{bottom:815.135600pt;}
.y7_c00317{bottom:838.694667pt;}
.y6_c00317{bottom:850.694667pt;}
.y5_c00317{bottom:862.694667pt;}
.y4_c00317{bottom:882.474267pt;}
.y3_c00317{bottom:898.474267pt;}
.y2_c00317{bottom:922.033333pt;}
.y19_c00317{bottom:924.710533pt;}
.y1_c00317{bottom:972.089733pt;}
.h7_c00317{height:22.400000pt;}
.h6_c00317{height:26.917333pt;}
.h4_c00317{height:30.293333pt;}
.h2_c00317{height:34.901333pt;}
.h3_c00317{height:38.453333pt;}
.h5_c00317{height:38.880000pt;}
.h1_c00317{height:1009.333333pt;}
.h0_c00317{height:1009.338800pt;}
.w0_c00317{width:794.622400pt;}
.w1_c00317{width:794.666667pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:68.980533pt;}
.x4_c00317{left:377.012000pt;}
.x2_c00317{left:532.917467pt;}
.x3_c00317{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00318;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;line-height:1.067000;font-style:normal;font-weight: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_c00318;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00318{font-family:ff8_c00318;line-height:0.710000;font-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_c00318{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls2_c00318{letter-spacing:-0.720000px;}
.ls3_c00318{letter-spacing:-0.630000px;}
.ls1_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00318{word-spacing:-6.487200px;}
.ws0_c00318{word-spacing:-0.048000px;}
.ws3_c00318{word-spacing:0.000000px;}
.ws4_c00318{word-spacing:7.056000px;}
._0_c00318{margin-left:-2755.276200px;}
._4_c00318{margin-left:-6.947400px;}
._1_c00318{margin-left:-2.256000px;}
._3_c00318{margin-left:-1.200000px;}
._2_c00318{width:1.008000px;}
._7_c00318{width:7.776000px;}
._5_c00318{width:55.674000px;}
._6_c00318{width:59.136000px;}
.fc0_c00318{color:rgb(35,31,32);}
.fs5_c00318{font-size:30.600000px;}
.fs6_c00318{font-size:36.000000px;}
.fs3_c00318{font-size:42.000000px;}
.fs0_c00318{font-size:48.000000px;}
.fs4_c00318{font-size:54.000000px;}
.fs2_c00318{font-size:57.000000px;}
.fs1_c00318{font-size:60.000000px;}
.y0_c00318{bottom:0.000000px;}
.y17_c00318{bottom:366.362400px;}
.y16_c00318{bottom:379.862400px;}
.y15_c00318{bottom:393.362400px;}
.y14_c00318{bottom:415.614300px;}
.y13_c00318{bottom:429.114300px;}
.y12_c00318{bottom:455.618250px;}
.y11_c00318{bottom:469.118250px;}
.y10_c00318{bottom:482.618250px;}
.yf_c00318{bottom:504.870300px;}
.ye_c00318{bottom:522.870300px;}
.yd_c00318{bottom:549.374250px;}
.y18_c00318{bottom:551.323050px;}
.yc_c00318{bottom:851.086650px;}
.yb_c00318{bottom:864.586650px;}
.ya_c00318{bottom:878.086650px;}
.y9_c00318{bottom:904.590600px;}
.y8_c00318{bottom:918.090600px;}
.y7_c00318{bottom:944.594700px;}
.y6_c00318{bottom:958.094700px;}
.y5_c00318{bottom:971.594700px;}
.y4_c00318{bottom:993.846600px;}
.y3_c00318{bottom:1011.846600px;}
.y2_c00318{bottom:1038.350550px;}
.y19_c00318{bottom:1040.299350px;}
.y1_c00318{bottom:1093.600950px;}
.h8_c00318{height:25.200000px;}
.h7_c00318{height:30.282000px;}
.h5_c00318{height:34.080000px;}
.h2_c00318{height:39.264000px;}
.h3_c00318{height:39.984000px;}
.h4_c00318{height:43.260000px;}
.h6_c00318{height:43.740000px;}
.h1_c00318{height:1135.500000px;}
.h0_c00318{height:1135.506150px;}
.w0_c00318{width:893.950200px;}
.w1_c00318{width:894.000000px;}
.x0_c00318{left:0.000000px;}
.x4_c00318{left:128.744700px;}
.x5_c00318{left:141.500700px;}
.x2_c00318{left:188.061900px;}
.x3_c00318{left:190.513350px;}
.x6_c00318{left:321.493950px;}
.x1_c00318{left:800.165850px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls2_c00318{letter-spacing:-0.640000pt;}
.ls3_c00318{letter-spacing:-0.560000pt;}
.ls1_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.426667pt;}
.ws1_c00318{word-spacing:-7.728000pt;}
.ws2_c00318{word-spacing:-5.766400pt;}
.ws0_c00318{word-spacing:-0.042667pt;}
.ws3_c00318{word-spacing:0.000000pt;}
.ws4_c00318{word-spacing:6.272000pt;}
._0_c00318{margin-left:-2449.134400pt;}
._4_c00318{margin-left:-6.175467pt;}
._1_c00318{margin-left:-2.005333pt;}
._3_c00318{margin-left:-1.066667pt;}
._2_c00318{width:0.896000pt;}
._7_c00318{width:6.912000pt;}
._5_c00318{width:49.488000pt;}
._6_c00318{width:52.565333pt;}
.fs5_c00318{font-size:27.200000pt;}
.fs6_c00318{font-size:32.000000pt;}
.fs3_c00318{font-size:37.333333pt;}
.fs0_c00318{font-size:42.666667pt;}
.fs4_c00318{font-size:48.000000pt;}
.fs2_c00318{font-size:50.666667pt;}
.fs1_c00318{font-size:53.333333pt;}
.y0_c00318{bottom:0.000000pt;}
.y17_c00318{bottom:325.655467pt;}
.y16_c00318{bottom:337.655467pt;}
.y15_c00318{bottom:349.655467pt;}
.y14_c00318{bottom:369.434933pt;}
.y13_c00318{bottom:381.434933pt;}
.y12_c00318{bottom:404.994000pt;}
.y11_c00318{bottom:416.994000pt;}
.y10_c00318{bottom:428.994000pt;}
.yf_c00318{bottom:448.773600pt;}
.ye_c00318{bottom:464.773600pt;}
.yd_c00318{bottom:488.332667pt;}
.y18_c00318{bottom:490.064933pt;}
.yc_c00318{bottom:756.521467pt;}
.yb_c00318{bottom:768.521467pt;}
.ya_c00318{bottom:780.521467pt;}
.y9_c00318{bottom:804.080533pt;}
.y8_c00318{bottom:816.080533pt;}
.y7_c00318{bottom:839.639733pt;}
.y6_c00318{bottom:851.639733pt;}
.y5_c00318{bottom:863.639733pt;}
.y4_c00318{bottom:883.419200pt;}
.y3_c00318{bottom:899.419200pt;}
.y2_c00318{bottom:922.978267pt;}
.y19_c00318{bottom:924.710533pt;}
.y1_c00318{bottom:972.089733pt;}
.h8_c00318{height:22.400000pt;}
.h7_c00318{height:26.917333pt;}
.h5_c00318{height:30.293333pt;}
.h2_c00318{height:34.901333pt;}
.h3_c00318{height:35.541333pt;}
.h4_c00318{height:38.453333pt;}
.h6_c00318{height:38.880000pt;}
.h1_c00318{height:1009.333333pt;}
.h0_c00318{height:1009.338800pt;}
.w0_c00318{width:794.622400pt;}
.w1_c00318{width:794.666667pt;}
.x0_c00318{left:0.000000pt;}
.x4_c00318{left:114.439733pt;}
.x5_c00318{left:125.778400pt;}
.x2_c00318{left:167.166133pt;}
.x3_c00318{left:169.345200pt;}
.x6_c00318{left:285.772400pt;}
.x1_c00318{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00319;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:1.067000;font-style:normal;font-weight: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_c00319;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00319{font-family:ff7_c00319;line-height:0.710000;font-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_c00319{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls2_c00319{letter-spacing:-0.720000px;}
.ls3_c00319{letter-spacing:-0.630000px;}
.ls1_c00319{letter-spacing:-0.216000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00319{word-spacing:-8.694000px;}
.ws2_c00319{word-spacing:-6.487200px;}
.ws3_c00319{word-spacing:0.000000px;}
.ws5_c00319{word-spacing:0.216000px;}
.ws4_c00319{word-spacing:7.056000px;}
.ws0_c00319{word-spacing:1585.435200px;}
._3_c00319{margin-left:-7.042800px;}
._0_c00319{margin-left:-2.112000px;}
._1_c00319{margin-left:-1.104000px;}
._2_c00319{width:2.016000px;}
._6_c00319{width:7.776000px;}
._4_c00319{width:55.674000px;}
._5_c00319{width:59.136000px;}
.fc0_c00319{color:rgb(35,31,32);}
.fs5_c00319{font-size:30.600000px;}
.fs6_c00319{font-size:36.000000px;}
.fs3_c00319{font-size:42.000000px;}
.fs0_c00319{font-size:48.000000px;}
.fs4_c00319{font-size:54.000000px;}
.fs2_c00319{font-size:57.000000px;}
.fs1_c00319{font-size:60.000000px;}
.y0_c00319{bottom:0.000000px;}
.y18_c00319{bottom:361.047450px;}
.y17_c00319{bottom:374.547450px;}
.y16_c00319{bottom:388.047450px;}
.y15_c00319{bottom:414.551400px;}
.y14_c00319{bottom:428.051400px;}
.y13_c00319{bottom:454.555350px;}
.y12_c00319{bottom:468.055350px;}
.y11_c00319{bottom:481.555350px;}
.y10_c00319{bottom:503.807250px;}
.yf_c00319{bottom:521.807250px;}
.ye_c00319{bottom:548.311200px;}
.y19_c00319{bottom:551.323050px;}
.yd_c00319{bottom:836.523600px;}
.yc_c00319{bottom:850.023600px;}
.yb_c00319{bottom:863.523600px;}
.ya_c00319{bottom:890.027550px;}
.y9_c00319{bottom:903.527550px;}
.y8_c00319{bottom:917.027550px;}
.y7_c00319{bottom:943.531500px;}
.y6_c00319{bottom:957.031500px;}
.y5_c00319{bottom:970.531500px;}
.y4_c00319{bottom:992.783550px;}
.y3_c00319{bottom:1010.783550px;}
.y2_c00319{bottom:1037.287500px;}
.y1_c00319{bottom:1093.600950px;}
.h7_c00319{height:25.200000px;}
.h6_c00319{height:30.282000px;}
.h4_c00319{height:34.080000px;}
.h2_c00319{height:39.264000px;}
.h3_c00319{height:43.260000px;}
.h5_c00319{height:43.740000px;}
.h1_c00319{height:1135.500000px;}
.h0_c00319{height:1135.506150px;}
.w0_c00319{width:893.950200px;}
.w1_c00319{width:894.000000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:77.603100px;}
.x4_c00319{left:424.138500px;}
.x2_c00319{left:599.532150px;}
.x3_c00319{left:612.288150px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls2_c00319{letter-spacing:-0.640000pt;}
.ls3_c00319{letter-spacing:-0.560000pt;}
.ls1_c00319{letter-spacing:-0.192000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws1_c00319{word-spacing:-7.728000pt;}
.ws2_c00319{word-spacing:-5.766400pt;}
.ws3_c00319{word-spacing:0.000000pt;}
.ws5_c00319{word-spacing:0.192000pt;}
.ws4_c00319{word-spacing:6.272000pt;}
.ws0_c00319{word-spacing:1409.275733pt;}
._3_c00319{margin-left:-6.260267pt;}
._0_c00319{margin-left:-1.877333pt;}
._1_c00319{margin-left:-0.981333pt;}
._2_c00319{width:1.792000pt;}
._6_c00319{width:6.912000pt;}
._4_c00319{width:49.488000pt;}
._5_c00319{width:52.565333pt;}
.fs5_c00319{font-size:27.200000pt;}
.fs6_c00319{font-size:32.000000pt;}
.fs3_c00319{font-size:37.333333pt;}
.fs0_c00319{font-size:42.666667pt;}
.fs4_c00319{font-size:48.000000pt;}
.fs2_c00319{font-size:50.666667pt;}
.fs1_c00319{font-size:53.333333pt;}
.y0_c00319{bottom:0.000000pt;}
.y18_c00319{bottom:320.931067pt;}
.y17_c00319{bottom:332.931067pt;}
.y16_c00319{bottom:344.931067pt;}
.y15_c00319{bottom:368.490133pt;}
.y14_c00319{bottom:380.490133pt;}
.y13_c00319{bottom:404.049200pt;}
.y12_c00319{bottom:416.049200pt;}
.y11_c00319{bottom:428.049200pt;}
.y10_c00319{bottom:447.828667pt;}
.yf_c00319{bottom:463.828667pt;}
.ye_c00319{bottom:487.387733pt;}
.y19_c00319{bottom:490.064933pt;}
.yd_c00319{bottom:743.576533pt;}
.yc_c00319{bottom:755.576533pt;}
.yb_c00319{bottom:767.576533pt;}
.ya_c00319{bottom:791.135600pt;}
.y9_c00319{bottom:803.135600pt;}
.y8_c00319{bottom:815.135600pt;}
.y7_c00319{bottom:838.694667pt;}
.y6_c00319{bottom:850.694667pt;}
.y5_c00319{bottom:862.694667pt;}
.y4_c00319{bottom:882.474267pt;}
.y3_c00319{bottom:898.474267pt;}
.y2_c00319{bottom:922.033333pt;}
.y1_c00319{bottom:972.089733pt;}
.h7_c00319{height:22.400000pt;}
.h6_c00319{height:26.917333pt;}
.h4_c00319{height:30.293333pt;}
.h2_c00319{height:34.901333pt;}
.h3_c00319{height:38.453333pt;}
.h5_c00319{height:38.880000pt;}
.h1_c00319{height:1009.333333pt;}
.h0_c00319{height:1009.338800pt;}
.w0_c00319{width:794.622400pt;}
.w1_c00319{width:794.666667pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:68.980533pt;}
.x4_c00319{left:377.012000pt;}
.x2_c00319{left:532.917467pt;}
.x3_c00319{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:0.908000;font-style:normal;font-weight: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_c00320;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00320{font-family:ff7_c00320;line-height:1.067000;font-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_c00320{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls3_c00320{letter-spacing:-0.720000px;}
.ls4_c00320{letter-spacing:-0.630000px;}
.ls2_c00320{letter-spacing:-0.540000px;}
.ls1_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00320{word-spacing:-8.694000px;}
.ws0_c00320{word-spacing:-0.048000px;}
.ws2_c00320{word-spacing:0.000000px;}
.ws4_c00320{word-spacing:0.540000px;}
.ws3_c00320{word-spacing:7.056000px;}
._0_c00320{margin-left:-2755.276200px;}
._4_c00320{margin-left:-6.947400px;}
._6_c00320{margin-left:-4.986000px;}
._1_c00320{margin-left:-2.256000px;}
._3_c00320{margin-left:-1.200000px;}
._2_c00320{width:1.008000px;}
._8_c00320{width:7.776000px;}
._5_c00320{width:55.674000px;}
._7_c00320{width:59.136000px;}
.fc0_c00320{color:rgb(35,31,32);}
.fs3_c00320{font-size:42.000000px;}
.fs0_c00320{font-size:48.000000px;}
.fs4_c00320{font-size:54.000000px;}
.fs2_c00320{font-size:57.000000px;}
.fs1_c00320{font-size:60.000000px;}
.y0_c00320{bottom:0.000000px;}
.y19_c00320{bottom:347.972700px;}
.y18_c00320{bottom:361.472700px;}
.y17_c00320{bottom:374.972550px;}
.y16_c00320{bottom:401.476500px;}
.y15_c00320{bottom:414.976500px;}
.y14_c00320{bottom:428.476500px;}
.y13_c00320{bottom:454.980450px;}
.y12_c00320{bottom:468.480450px;}
.y11_c00320{bottom:481.980450px;}
.y10_c00320{bottom:504.232500px;}
.yf_c00320{bottom:522.232500px;}
.ye_c00320{bottom:548.736450px;}
.yd_c00320{bottom:836.949000px;}
.yc_c00320{bottom:850.449000px;}
.yb_c00320{bottom:863.949000px;}
.ya_c00320{bottom:890.452950px;}
.y9_c00320{bottom:903.952950px;}
.y8_c00320{bottom:917.452950px;}
.y7_c00320{bottom:943.956900px;}
.y6_c00320{bottom:957.456900px;}
.y5_c00320{bottom:970.956900px;}
.y4_c00320{bottom:993.208800px;}
.y3_c00320{bottom:1011.208800px;}
.y2_c00320{bottom:1037.712750px;}
.y1_c00320{bottom:1093.600950px;}
.h7_c00320{height:30.282000px;}
.h5_c00320{height:34.080000px;}
.h2_c00320{height:39.264000px;}
.h3_c00320{height:39.984000px;}
.h4_c00320{height:43.260000px;}
.h6_c00320{height:43.740000px;}
.h1_c00320{height:1135.500000px;}
.h0_c00320{height:1135.506150px;}
.w0_c00320{width:893.950200px;}
.w1_c00320{width:894.000000px;}
.x0_c00320{left:0.000000px;}
.x4_c00320{left:128.744700px;}
.x5_c00320{left:141.500700px;}
.x2_c00320{left:188.061900px;}
.x3_c00320{left:190.513350px;}
.x1_c00320{left:800.165850px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls3_c00320{letter-spacing:-0.640000pt;}
.ls4_c00320{letter-spacing:-0.560000pt;}
.ls2_c00320{letter-spacing:-0.480000pt;}
.ls1_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.426667pt;}
.ws1_c00320{word-spacing:-7.728000pt;}
.ws0_c00320{word-spacing:-0.042667pt;}
.ws2_c00320{word-spacing:0.000000pt;}
.ws4_c00320{word-spacing:0.480000pt;}
.ws3_c00320{word-spacing:6.272000pt;}
._0_c00320{margin-left:-2449.134400pt;}
._4_c00320{margin-left:-6.175467pt;}
._6_c00320{margin-left:-4.432000pt;}
._1_c00320{margin-left:-2.005333pt;}
._3_c00320{margin-left:-1.066667pt;}
._2_c00320{width:0.896000pt;}
._8_c00320{width:6.912000pt;}
._5_c00320{width:49.488000pt;}
._7_c00320{width:52.565333pt;}
.fs3_c00320{font-size:37.333333pt;}
.fs0_c00320{font-size:42.666667pt;}
.fs4_c00320{font-size:48.000000pt;}
.fs2_c00320{font-size:50.666667pt;}
.fs1_c00320{font-size:53.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y19_c00320{bottom:309.309067pt;}
.y18_c00320{bottom:321.309067pt;}
.y17_c00320{bottom:333.308933pt;}
.y16_c00320{bottom:356.868000pt;}
.y15_c00320{bottom:368.868000pt;}
.y14_c00320{bottom:380.868000pt;}
.y13_c00320{bottom:404.427067pt;}
.y12_c00320{bottom:416.427067pt;}
.y11_c00320{bottom:428.427067pt;}
.y10_c00320{bottom:448.206667pt;}
.yf_c00320{bottom:464.206667pt;}
.ye_c00320{bottom:487.765733pt;}
.yd_c00320{bottom:743.954667pt;}
.yc_c00320{bottom:755.954667pt;}
.yb_c00320{bottom:767.954667pt;}
.ya_c00320{bottom:791.513733pt;}
.y9_c00320{bottom:803.513733pt;}
.y8_c00320{bottom:815.513733pt;}
.y7_c00320{bottom:839.072800pt;}
.y6_c00320{bottom:851.072800pt;}
.y5_c00320{bottom:863.072800pt;}
.y4_c00320{bottom:882.852267pt;}
.y3_c00320{bottom:898.852267pt;}
.y2_c00320{bottom:922.411333pt;}
.y1_c00320{bottom:972.089733pt;}
.h7_c00320{height:26.917333pt;}
.h5_c00320{height:30.293333pt;}
.h2_c00320{height:34.901333pt;}
.h3_c00320{height:35.541333pt;}
.h4_c00320{height:38.453333pt;}
.h6_c00320{height:38.880000pt;}
.h1_c00320{height:1009.333333pt;}
.h0_c00320{height:1009.338800pt;}
.w0_c00320{width:794.622400pt;}
.w1_c00320{width:794.666667pt;}
.x0_c00320{left:0.000000pt;}
.x4_c00320{left:114.439733pt;}
.x5_c00320{left:125.778400pt;}
.x2_c00320{left:167.166133pt;}
.x3_c00320{left:169.345200pt;}
.x1_c00320{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls1_c00321{letter-spacing:-0.720000px;}
.ls2_c00321{letter-spacing:-0.630000px;}
.ls0_c00321{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00321{word-spacing:-8.694000px;}
.ws2_c00321{word-spacing:0.000000px;}
.ws3_c00321{word-spacing:7.056000px;}
.ws0_c00321{word-spacing:1585.435200px;}
._3_c00321{margin-left:-7.042800px;}
._0_c00321{margin-left:-2.112000px;}
._1_c00321{margin-left:-1.104000px;}
._2_c00321{width:2.016000px;}
._6_c00321{width:7.776000px;}
._4_c00321{width:55.674000px;}
._5_c00321{width:59.136000px;}
.fc0_c00321{color:rgb(35,31,32);}
.fs3_c00321{font-size:42.000000px;}
.fs0_c00321{font-size:48.000000px;}
.fs4_c00321{font-size:54.000000px;}
.fs2_c00321{font-size:57.000000px;}
.fs1_c00321{font-size:60.000000px;}
.y0_c00321{bottom:0.000000px;}
.y19_c00321{bottom:347.547450px;}
.y18_c00321{bottom:361.047450px;}
.y17_c00321{bottom:374.547450px;}
.y16_c00321{bottom:401.051400px;}
.y15_c00321{bottom:414.551400px;}
.y14_c00321{bottom:428.051400px;}
.y13_c00321{bottom:454.555350px;}
.y12_c00321{bottom:468.055350px;}
.y11_c00321{bottom:481.555350px;}
.y10_c00321{bottom:503.807250px;}
.yf_c00321{bottom:521.807250px;}
.ye_c00321{bottom:548.311200px;}
.yd_c00321{bottom:836.523600px;}
.yc_c00321{bottom:850.023600px;}
.yb_c00321{bottom:863.523600px;}
.ya_c00321{bottom:890.027550px;}
.y9_c00321{bottom:903.527550px;}
.y8_c00321{bottom:917.027550px;}
.y7_c00321{bottom:943.531500px;}
.y6_c00321{bottom:957.031500px;}
.y5_c00321{bottom:970.531500px;}
.y4_c00321{bottom:992.783550px;}
.y3_c00321{bottom:1010.783550px;}
.y2_c00321{bottom:1037.287500px;}
.y1_c00321{bottom:1093.600950px;}
.h6_c00321{height:30.282000px;}
.h4_c00321{height:34.080000px;}
.h2_c00321{height:39.264000px;}
.h3_c00321{height:43.260000px;}
.h5_c00321{height:43.740000px;}
.h1_c00321{height:1135.500000px;}
.h0_c00321{height:1135.506150px;}
.w0_c00321{width:893.950200px;}
.w1_c00321{width:894.000000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:77.603100px;}
.x2_c00321{left:599.532150px;}
.x3_c00321{left:612.288150px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:-0.640000pt;}
.ls2_c00321{letter-spacing:-0.560000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws1_c00321{word-spacing:-7.728000pt;}
.ws2_c00321{word-spacing:0.000000pt;}
.ws3_c00321{word-spacing:6.272000pt;}
.ws0_c00321{word-spacing:1409.275733pt;}
._3_c00321{margin-left:-6.260267pt;}
._0_c00321{margin-left:-1.877333pt;}
._1_c00321{margin-left:-0.981333pt;}
._2_c00321{width:1.792000pt;}
._6_c00321{width:6.912000pt;}
._4_c00321{width:49.488000pt;}
._5_c00321{width:52.565333pt;}
.fs3_c00321{font-size:37.333333pt;}
.fs0_c00321{font-size:42.666667pt;}
.fs4_c00321{font-size:48.000000pt;}
.fs2_c00321{font-size:50.666667pt;}
.fs1_c00321{font-size:53.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y19_c00321{bottom:308.931067pt;}
.y18_c00321{bottom:320.931067pt;}
.y17_c00321{bottom:332.931067pt;}
.y16_c00321{bottom:356.490133pt;}
.y15_c00321{bottom:368.490133pt;}
.y14_c00321{bottom:380.490133pt;}
.y13_c00321{bottom:404.049200pt;}
.y12_c00321{bottom:416.049200pt;}
.y11_c00321{bottom:428.049200pt;}
.y10_c00321{bottom:447.828667pt;}
.yf_c00321{bottom:463.828667pt;}
.ye_c00321{bottom:487.387733pt;}
.yd_c00321{bottom:743.576533pt;}
.yc_c00321{bottom:755.576533pt;}
.yb_c00321{bottom:767.576533pt;}
.ya_c00321{bottom:791.135600pt;}
.y9_c00321{bottom:803.135600pt;}
.y8_c00321{bottom:815.135600pt;}
.y7_c00321{bottom:838.694667pt;}
.y6_c00321{bottom:850.694667pt;}
.y5_c00321{bottom:862.694667pt;}
.y4_c00321{bottom:882.474267pt;}
.y3_c00321{bottom:898.474267pt;}
.y2_c00321{bottom:922.033333pt;}
.y1_c00321{bottom:972.089733pt;}
.h6_c00321{height:26.917333pt;}
.h4_c00321{height:30.293333pt;}
.h2_c00321{height:34.901333pt;}
.h3_c00321{height:38.453333pt;}
.h5_c00321{height:38.880000pt;}
.h1_c00321{height:1009.333333pt;}
.h0_c00321{height:1009.338800pt;}
.w0_c00321{width:794.622400pt;}
.w1_c00321{width:794.666667pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:68.980533pt;}
.x2_c00321{left:532.917467pt;}
.x3_c00321{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:0.908000;font-style:normal;font-weight: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_c00322;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00322{font-family:ff7_c00322;line-height:1.067000;font-style:normal;font-weight: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_c00322;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00322{font-family:ff8_c00322;line-height:0.710000;font-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_c00322{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls2_c00322{letter-spacing:-4.590000px;}
.ls3_c00322{letter-spacing:-0.720000px;}
.ls4_c00322{letter-spacing:-0.630000px;}
.ls1_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00322{word-spacing:-6.487200px;}
.ws0_c00322{word-spacing:-0.048000px;}
.ws3_c00322{word-spacing:0.000000px;}
.ws4_c00322{word-spacing:7.056000px;}
.ws5_c00322{word-spacing:60.264000px;}
._0_c00322{margin-left:-2755.276200px;}
._4_c00322{margin-left:-6.946800px;}
._1_c00322{margin-left:-2.256000px;}
._3_c00322{margin-left:-1.200000px;}
._2_c00322{width:1.008000px;}
._5_c00322{width:4.373400px;}
._7_c00322{width:7.776000px;}
._8_c00322{width:55.674000px;}
._6_c00322{width:59.136000px;}
.fc0_c00322{color:rgb(35,31,32);}
.fs5_c00322{font-size:30.600000px;}
.fs6_c00322{font-size:36.000000px;}
.fs3_c00322{font-size:42.000000px;}
.fs0_c00322{font-size:48.000000px;}
.fs4_c00322{font-size:54.000000px;}
.fs2_c00322{font-size:57.000000px;}
.fs1_c00322{font-size:60.000000px;}
.y0_c00322{bottom:0.000000px;}
.y19_c00322{bottom:317.979150px;}
.y17_c00322{bottom:374.972550px;}
.y16_c00322{bottom:388.472550px;}
.y15_c00322{bottom:414.976500px;}
.y14_c00322{bottom:428.476500px;}
.y13_c00322{bottom:454.980450px;}
.y12_c00322{bottom:468.480450px;}
.y11_c00322{bottom:481.980450px;}
.y10_c00322{bottom:504.232500px;}
.yf_c00322{bottom:522.232500px;}
.ye_c00322{bottom:548.736450px;}
.y18_c00322{bottom:551.323050px;}
.yd_c00322{bottom:836.949000px;}
.yc_c00322{bottom:850.449000px;}
.yb_c00322{bottom:863.949000px;}
.ya_c00322{bottom:890.452950px;}
.y9_c00322{bottom:903.952950px;}
.y8_c00322{bottom:917.452950px;}
.y7_c00322{bottom:943.956900px;}
.y6_c00322{bottom:957.456900px;}
.y5_c00322{bottom:970.956900px;}
.y4_c00322{bottom:993.208800px;}
.y3_c00322{bottom:1011.208800px;}
.y2_c00322{bottom:1037.712750px;}
.y1_c00322{bottom:1093.600950px;}
.h8_c00322{height:25.200000px;}
.h7_c00322{height:30.282000px;}
.h5_c00322{height:34.080000px;}
.h2_c00322{height:39.264000px;}
.h3_c00322{height:39.984000px;}
.h4_c00322{height:43.260000px;}
.h6_c00322{height:43.740000px;}
.h1_c00322{height:1135.500000px;}
.h0_c00322{height:1135.506150px;}
.w0_c00322{width:893.950200px;}
.w1_c00322{width:894.000000px;}
.x0_c00322{left:0.000000px;}
.x4_c00322{left:128.626800px;}
.x5_c00322{left:141.382650px;}
.x2_c00322{left:188.061900px;}
.x3_c00322{left:190.513350px;}
.x6_c00322{left:321.405750px;}
.x1_c00322{left:800.165850px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls2_c00322{letter-spacing:-4.080000pt;}
.ls3_c00322{letter-spacing:-0.640000pt;}
.ls4_c00322{letter-spacing:-0.560000pt;}
.ls1_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.426667pt;}
.ws1_c00322{word-spacing:-7.728000pt;}
.ws2_c00322{word-spacing:-5.766400pt;}
.ws0_c00322{word-spacing:-0.042667pt;}
.ws3_c00322{word-spacing:0.000000pt;}
.ws4_c00322{word-spacing:6.272000pt;}
.ws5_c00322{word-spacing:53.568000pt;}
._0_c00322{margin-left:-2449.134400pt;}
._4_c00322{margin-left:-6.174933pt;}
._1_c00322{margin-left:-2.005333pt;}
._3_c00322{margin-left:-1.066667pt;}
._2_c00322{width:0.896000pt;}
._5_c00322{width:3.887467pt;}
._7_c00322{width:6.912000pt;}
._8_c00322{width:49.488000pt;}
._6_c00322{width:52.565333pt;}
.fs5_c00322{font-size:27.200000pt;}
.fs6_c00322{font-size:32.000000pt;}
.fs3_c00322{font-size:37.333333pt;}
.fs0_c00322{font-size:42.666667pt;}
.fs4_c00322{font-size:48.000000pt;}
.fs2_c00322{font-size:50.666667pt;}
.fs1_c00322{font-size:53.333333pt;}
.y0_c00322{bottom:0.000000pt;}
.y19_c00322{bottom:282.648133pt;}
.y17_c00322{bottom:333.308933pt;}
.y16_c00322{bottom:345.308933pt;}
.y15_c00322{bottom:368.868000pt;}
.y14_c00322{bottom:380.868000pt;}
.y13_c00322{bottom:404.427067pt;}
.y12_c00322{bottom:416.427067pt;}
.y11_c00322{bottom:428.427067pt;}
.y10_c00322{bottom:448.206667pt;}
.yf_c00322{bottom:464.206667pt;}
.ye_c00322{bottom:487.765733pt;}
.y18_c00322{bottom:490.064933pt;}
.yd_c00322{bottom:743.954667pt;}
.yc_c00322{bottom:755.954667pt;}
.yb_c00322{bottom:767.954667pt;}
.ya_c00322{bottom:791.513733pt;}
.y9_c00322{bottom:803.513733pt;}
.y8_c00322{bottom:815.513733pt;}
.y7_c00322{bottom:839.072800pt;}
.y6_c00322{bottom:851.072800pt;}
.y5_c00322{bottom:863.072800pt;}
.y4_c00322{bottom:882.852267pt;}
.y3_c00322{bottom:898.852267pt;}
.y2_c00322{bottom:922.411333pt;}
.y1_c00322{bottom:972.089733pt;}
.h8_c00322{height:22.400000pt;}
.h7_c00322{height:26.917333pt;}
.h5_c00322{height:30.293333pt;}
.h2_c00322{height:34.901333pt;}
.h3_c00322{height:35.541333pt;}
.h4_c00322{height:38.453333pt;}
.h6_c00322{height:38.880000pt;}
.h1_c00322{height:1009.333333pt;}
.h0_c00322{height:1009.338800pt;}
.w0_c00322{width:794.622400pt;}
.w1_c00322{width:794.666667pt;}
.x0_c00322{left:0.000000pt;}
.x4_c00322{left:114.334933pt;}
.x5_c00322{left:125.673467pt;}
.x2_c00322{left:167.166133pt;}
.x3_c00322{left:169.345200pt;}
.x6_c00322{left:285.694000pt;}
.x1_c00322{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00323;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:1.067000;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00323{font-family:ff7_c00323;line-height:0.710000;font-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_c00323{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls2_c00323{letter-spacing:-0.720000px;}
.ls3_c00323{letter-spacing:-0.630000px;}
.ls1_c00323{letter-spacing:-0.216000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00323{word-spacing:-8.694000px;}
.ws2_c00323{word-spacing:-6.487200px;}
.ws3_c00323{word-spacing:0.000000px;}
.ws5_c00323{word-spacing:0.216000px;}
.ws4_c00323{word-spacing:7.056000px;}
.ws0_c00323{word-spacing:1585.435200px;}
._3_c00323{margin-left:-7.042800px;}
._0_c00323{margin-left:-2.112000px;}
._1_c00323{margin-left:-1.104000px;}
._2_c00323{width:2.016000px;}
._6_c00323{width:7.776000px;}
._4_c00323{width:55.674000px;}
._5_c00323{width:59.136000px;}
.fc0_c00323{color:rgb(35,31,32);}
.fs5_c00323{font-size:30.600000px;}
.fs6_c00323{font-size:36.000000px;}
.fs3_c00323{font-size:42.000000px;}
.fs0_c00323{font-size:48.000000px;}
.fs4_c00323{font-size:54.000000px;}
.fs2_c00323{font-size:57.000000px;}
.fs1_c00323{font-size:60.000000px;}
.y0_c00323{bottom:0.000000px;}
.y18_c00323{bottom:361.685250px;}
.y17_c00323{bottom:375.185250px;}
.y16_c00323{bottom:388.685250px;}
.y15_c00323{bottom:415.189200px;}
.y14_c00323{bottom:428.689200px;}
.y13_c00323{bottom:455.193150px;}
.y12_c00323{bottom:468.693150px;}
.y11_c00323{bottom:482.193150px;}
.y10_c00323{bottom:504.445050px;}
.yf_c00323{bottom:522.445050px;}
.ye_c00323{bottom:548.949000px;}
.y19_c00323{bottom:551.323050px;}
.yd_c00323{bottom:837.161550px;}
.yc_c00323{bottom:850.661550px;}
.yb_c00323{bottom:864.161550px;}
.ya_c00323{bottom:890.665500px;}
.y9_c00323{bottom:904.165500px;}
.y8_c00323{bottom:917.665500px;}
.y7_c00323{bottom:944.169450px;}
.y6_c00323{bottom:957.669450px;}
.y5_c00323{bottom:971.169450px;}
.y4_c00323{bottom:993.421350px;}
.y3_c00323{bottom:1011.421350px;}
.y2_c00323{bottom:1037.925300px;}
.y1_c00323{bottom:1093.600950px;}
.h7_c00323{height:25.200000px;}
.h6_c00323{height:30.282000px;}
.h4_c00323{height:34.080000px;}
.h2_c00323{height:39.264000px;}
.h3_c00323{height:43.260000px;}
.h5_c00323{height:43.740000px;}
.h1_c00323{height:1135.500000px;}
.h0_c00323{height:1135.506150px;}
.w0_c00323{width:893.950200px;}
.w1_c00323{width:894.000000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:77.603100px;}
.x4_c00323{left:423.701550px;}
.x2_c00323{left:599.532150px;}
.x3_c00323{left:612.288150px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls2_c00323{letter-spacing:-0.640000pt;}
.ls3_c00323{letter-spacing:-0.560000pt;}
.ls1_c00323{letter-spacing:-0.192000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws1_c00323{word-spacing:-7.728000pt;}
.ws2_c00323{word-spacing:-5.766400pt;}
.ws3_c00323{word-spacing:0.000000pt;}
.ws5_c00323{word-spacing:0.192000pt;}
.ws4_c00323{word-spacing:6.272000pt;}
.ws0_c00323{word-spacing:1409.275733pt;}
._3_c00323{margin-left:-6.260267pt;}
._0_c00323{margin-left:-1.877333pt;}
._1_c00323{margin-left:-0.981333pt;}
._2_c00323{width:1.792000pt;}
._6_c00323{width:6.912000pt;}
._4_c00323{width:49.488000pt;}
._5_c00323{width:52.565333pt;}
.fs5_c00323{font-size:27.200000pt;}
.fs6_c00323{font-size:32.000000pt;}
.fs3_c00323{font-size:37.333333pt;}
.fs0_c00323{font-size:42.666667pt;}
.fs4_c00323{font-size:48.000000pt;}
.fs2_c00323{font-size:50.666667pt;}
.fs1_c00323{font-size:53.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y18_c00323{bottom:321.498000pt;}
.y17_c00323{bottom:333.498000pt;}
.y16_c00323{bottom:345.498000pt;}
.y15_c00323{bottom:369.057067pt;}
.y14_c00323{bottom:381.057067pt;}
.y13_c00323{bottom:404.616133pt;}
.y12_c00323{bottom:416.616133pt;}
.y11_c00323{bottom:428.616133pt;}
.y10_c00323{bottom:448.395600pt;}
.yf_c00323{bottom:464.395600pt;}
.ye_c00323{bottom:487.954667pt;}
.y19_c00323{bottom:490.064933pt;}
.yd_c00323{bottom:744.143600pt;}
.yc_c00323{bottom:756.143600pt;}
.yb_c00323{bottom:768.143600pt;}
.ya_c00323{bottom:791.702667pt;}
.y9_c00323{bottom:803.702667pt;}
.y8_c00323{bottom:815.702667pt;}
.y7_c00323{bottom:839.261733pt;}
.y6_c00323{bottom:851.261733pt;}
.y5_c00323{bottom:863.261733pt;}
.y4_c00323{bottom:883.041200pt;}
.y3_c00323{bottom:899.041200pt;}
.y2_c00323{bottom:922.600267pt;}
.y1_c00323{bottom:972.089733pt;}
.h7_c00323{height:22.400000pt;}
.h6_c00323{height:26.917333pt;}
.h4_c00323{height:30.293333pt;}
.h2_c00323{height:34.901333pt;}
.h3_c00323{height:38.453333pt;}
.h5_c00323{height:38.880000pt;}
.h1_c00323{height:1009.333333pt;}
.h0_c00323{height:1009.338800pt;}
.w0_c00323{width:794.622400pt;}
.w1_c00323{width:794.666667pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:68.980533pt;}
.x4_c00323{left:376.623600pt;}
.x2_c00323{left:532.917467pt;}
.x3_c00323{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00324;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00324{font-family:ff7_c00324;line-height:1.067000;font-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_c00324{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls2_c00324{letter-spacing:-0.810000px;}
.ls3_c00324{letter-spacing:-0.720000px;}
.ls4_c00324{letter-spacing:-0.630000px;}
.ls5_c00324{letter-spacing:-0.216000px;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00324{word-spacing:-8.694000px;}
.ws0_c00324{word-spacing:-0.048000px;}
.ws2_c00324{word-spacing:0.000000px;}
.ws5_c00324{word-spacing:0.216000px;}
.ws4_c00324{word-spacing:0.810000px;}
.ws3_c00324{word-spacing:7.056000px;}
._0_c00324{margin-left:-2755.276200px;}
._4_c00324{margin-left:-6.947400px;}
._1_c00324{margin-left:-2.256000px;}
._3_c00324{margin-left:-1.200000px;}
._2_c00324{width:1.008000px;}
._7_c00324{width:7.776000px;}
._5_c00324{width:55.674000px;}
._6_c00324{width:59.136000px;}
.fc0_c00324{color:rgb(35,31,32);}
.fs3_c00324{font-size:42.000000px;}
.fs0_c00324{font-size:48.000000px;}
.fs4_c00324{font-size:54.000000px;}
.fs2_c00324{font-size:57.000000px;}
.fs1_c00324{font-size:60.000000px;}
.y0_c00324{bottom:0.000000px;}
.y19_c00324{bottom:347.760150px;}
.y18_c00324{bottom:361.260000px;}
.y17_c00324{bottom:374.760000px;}
.y16_c00324{bottom:401.263950px;}
.y15_c00324{bottom:414.763950px;}
.y14_c00324{bottom:428.263950px;}
.y13_c00324{bottom:454.767900px;}
.y12_c00324{bottom:468.267900px;}
.y11_c00324{bottom:481.767900px;}
.y10_c00324{bottom:504.019800px;}
.yf_c00324{bottom:522.019800px;}
.ye_c00324{bottom:548.523750px;}
.yd_c00324{bottom:836.736150px;}
.yc_c00324{bottom:850.236150px;}
.yb_c00324{bottom:863.736150px;}
.ya_c00324{bottom:890.240100px;}
.y9_c00324{bottom:903.740100px;}
.y8_c00324{bottom:917.240100px;}
.y7_c00324{bottom:943.744050px;}
.y6_c00324{bottom:957.244050px;}
.y5_c00324{bottom:970.744050px;}
.y4_c00324{bottom:992.996100px;}
.y3_c00324{bottom:1010.996100px;}
.y2_c00324{bottom:1037.500050px;}
.y1_c00324{bottom:1093.600950px;}
.h7_c00324{height:30.282000px;}
.h5_c00324{height:34.080000px;}
.h2_c00324{height:39.264000px;}
.h3_c00324{height:39.984000px;}
.h4_c00324{height:43.260000px;}
.h6_c00324{height:43.740000px;}
.h1_c00324{height:1135.500000px;}
.h0_c00324{height:1135.506150px;}
.w0_c00324{width:893.950200px;}
.w1_c00324{width:894.000000px;}
.x0_c00324{left:0.000000px;}
.x4_c00324{left:128.744700px;}
.x5_c00324{left:141.500700px;}
.x2_c00324{left:188.061900px;}
.x3_c00324{left:190.513350px;}
.x1_c00324{left:800.165850px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls2_c00324{letter-spacing:-0.720000pt;}
.ls3_c00324{letter-spacing:-0.640000pt;}
.ls4_c00324{letter-spacing:-0.560000pt;}
.ls5_c00324{letter-spacing:-0.192000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:0.426667pt;}
.ws1_c00324{word-spacing:-7.728000pt;}
.ws0_c00324{word-spacing:-0.042667pt;}
.ws2_c00324{word-spacing:0.000000pt;}
.ws5_c00324{word-spacing:0.192000pt;}
.ws4_c00324{word-spacing:0.720000pt;}
.ws3_c00324{word-spacing:6.272000pt;}
._0_c00324{margin-left:-2449.134400pt;}
._4_c00324{margin-left:-6.175467pt;}
._1_c00324{margin-left:-2.005333pt;}
._3_c00324{margin-left:-1.066667pt;}
._2_c00324{width:0.896000pt;}
._7_c00324{width:6.912000pt;}
._5_c00324{width:49.488000pt;}
._6_c00324{width:52.565333pt;}
.fs3_c00324{font-size:37.333333pt;}
.fs0_c00324{font-size:42.666667pt;}
.fs4_c00324{font-size:48.000000pt;}
.fs2_c00324{font-size:50.666667pt;}
.fs1_c00324{font-size:53.333333pt;}
.y0_c00324{bottom:0.000000pt;}
.y19_c00324{bottom:309.120133pt;}
.y18_c00324{bottom:321.120000pt;}
.y17_c00324{bottom:333.120000pt;}
.y16_c00324{bottom:356.679067pt;}
.y15_c00324{bottom:368.679067pt;}
.y14_c00324{bottom:380.679067pt;}
.y13_c00324{bottom:404.238133pt;}
.y12_c00324{bottom:416.238133pt;}
.y11_c00324{bottom:428.238133pt;}
.y10_c00324{bottom:448.017600pt;}
.yf_c00324{bottom:464.017600pt;}
.ye_c00324{bottom:487.576667pt;}
.yd_c00324{bottom:743.765467pt;}
.yc_c00324{bottom:755.765467pt;}
.yb_c00324{bottom:767.765467pt;}
.ya_c00324{bottom:791.324533pt;}
.y9_c00324{bottom:803.324533pt;}
.y8_c00324{bottom:815.324533pt;}
.y7_c00324{bottom:838.883600pt;}
.y6_c00324{bottom:850.883600pt;}
.y5_c00324{bottom:862.883600pt;}
.y4_c00324{bottom:882.663200pt;}
.y3_c00324{bottom:898.663200pt;}
.y2_c00324{bottom:922.222267pt;}
.y1_c00324{bottom:972.089733pt;}
.h7_c00324{height:26.917333pt;}
.h5_c00324{height:30.293333pt;}
.h2_c00324{height:34.901333pt;}
.h3_c00324{height:35.541333pt;}
.h4_c00324{height:38.453333pt;}
.h6_c00324{height:38.880000pt;}
.h1_c00324{height:1009.333333pt;}
.h0_c00324{height:1009.338800pt;}
.w0_c00324{width:794.622400pt;}
.w1_c00324{width:794.666667pt;}
.x0_c00324{left:0.000000pt;}
.x4_c00324{left:114.439733pt;}
.x5_c00324{left:125.778400pt;}
.x2_c00324{left:167.166133pt;}
.x3_c00324{left:169.345200pt;}
.x1_c00324{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls1_c00325{letter-spacing:-0.864000px;}
.ls2_c00325{letter-spacing:-0.720000px;}
.ls3_c00325{letter-spacing:-0.630000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00325{word-spacing:-8.694000px;}
.ws2_c00325{word-spacing:0.000000px;}
.ws4_c00325{word-spacing:0.864000px;}
.ws3_c00325{word-spacing:7.056000px;}
.ws0_c00325{word-spacing:1585.435200px;}
._3_c00325{margin-left:-7.042800px;}
._0_c00325{margin-left:-2.112000px;}
._1_c00325{margin-left:-1.104000px;}
._2_c00325{width:2.016000px;}
._6_c00325{width:7.776000px;}
._4_c00325{width:55.674000px;}
._5_c00325{width:59.136000px;}
.fc0_c00325{color:rgb(35,31,32);}
.fs3_c00325{font-size:42.000000px;}
.fs0_c00325{font-size:48.000000px;}
.fs4_c00325{font-size:54.000000px;}
.fs2_c00325{font-size:57.000000px;}
.fs1_c00325{font-size:60.000000px;}
.y0_c00325{bottom:0.000000px;}
.y19_c00325{bottom:347.547450px;}
.y18_c00325{bottom:361.047450px;}
.y17_c00325{bottom:374.547450px;}
.y16_c00325{bottom:401.051400px;}
.y15_c00325{bottom:414.551400px;}
.y14_c00325{bottom:428.051400px;}
.y13_c00325{bottom:454.555350px;}
.y12_c00325{bottom:468.055350px;}
.y11_c00325{bottom:481.555350px;}
.y10_c00325{bottom:503.807250px;}
.yf_c00325{bottom:521.807250px;}
.ye_c00325{bottom:548.311200px;}
.yd_c00325{bottom:836.523600px;}
.yc_c00325{bottom:850.023600px;}
.yb_c00325{bottom:863.523600px;}
.ya_c00325{bottom:890.027550px;}
.y9_c00325{bottom:903.527550px;}
.y8_c00325{bottom:917.027550px;}
.y7_c00325{bottom:943.531500px;}
.y6_c00325{bottom:957.031500px;}
.y5_c00325{bottom:970.531500px;}
.y4_c00325{bottom:992.783550px;}
.y3_c00325{bottom:1010.783550px;}
.y2_c00325{bottom:1037.287500px;}
.y1_c00325{bottom:1093.600950px;}
.h6_c00325{height:30.282000px;}
.h4_c00325{height:34.080000px;}
.h2_c00325{height:39.264000px;}
.h3_c00325{height:43.260000px;}
.h5_c00325{height:43.740000px;}
.h1_c00325{height:1135.500000px;}
.h0_c00325{height:1135.506150px;}
.w0_c00325{width:893.950200px;}
.w1_c00325{width:894.000000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:77.603100px;}
.x2_c00325{left:599.532150px;}
.x3_c00325{left:612.288150px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls1_c00325{letter-spacing:-0.768000pt;}
.ls2_c00325{letter-spacing:-0.640000pt;}
.ls3_c00325{letter-spacing:-0.560000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws1_c00325{word-spacing:-7.728000pt;}
.ws2_c00325{word-spacing:0.000000pt;}
.ws4_c00325{word-spacing:0.768000pt;}
.ws3_c00325{word-spacing:6.272000pt;}
.ws0_c00325{word-spacing:1409.275733pt;}
._3_c00325{margin-left:-6.260267pt;}
._0_c00325{margin-left:-1.877333pt;}
._1_c00325{margin-left:-0.981333pt;}
._2_c00325{width:1.792000pt;}
._6_c00325{width:6.912000pt;}
._4_c00325{width:49.488000pt;}
._5_c00325{width:52.565333pt;}
.fs3_c00325{font-size:37.333333pt;}
.fs0_c00325{font-size:42.666667pt;}
.fs4_c00325{font-size:48.000000pt;}
.fs2_c00325{font-size:50.666667pt;}
.fs1_c00325{font-size:53.333333pt;}
.y0_c00325{bottom:0.000000pt;}
.y19_c00325{bottom:308.931067pt;}
.y18_c00325{bottom:320.931067pt;}
.y17_c00325{bottom:332.931067pt;}
.y16_c00325{bottom:356.490133pt;}
.y15_c00325{bottom:368.490133pt;}
.y14_c00325{bottom:380.490133pt;}
.y13_c00325{bottom:404.049200pt;}
.y12_c00325{bottom:416.049200pt;}
.y11_c00325{bottom:428.049200pt;}
.y10_c00325{bottom:447.828667pt;}
.yf_c00325{bottom:463.828667pt;}
.ye_c00325{bottom:487.387733pt;}
.yd_c00325{bottom:743.576533pt;}
.yc_c00325{bottom:755.576533pt;}
.yb_c00325{bottom:767.576533pt;}
.ya_c00325{bottom:791.135600pt;}
.y9_c00325{bottom:803.135600pt;}
.y8_c00325{bottom:815.135600pt;}
.y7_c00325{bottom:838.694667pt;}
.y6_c00325{bottom:850.694667pt;}
.y5_c00325{bottom:862.694667pt;}
.y4_c00325{bottom:882.474267pt;}
.y3_c00325{bottom:898.474267pt;}
.y2_c00325{bottom:922.033333pt;}
.y1_c00325{bottom:972.089733pt;}
.h6_c00325{height:26.917333pt;}
.h4_c00325{height:30.293333pt;}
.h2_c00325{height:34.901333pt;}
.h3_c00325{height:38.453333pt;}
.h5_c00325{height:38.880000pt;}
.h1_c00325{height:1009.333333pt;}
.h0_c00325{height:1009.338800pt;}
.w0_c00325{width:794.622400pt;}
.w1_c00325{width:794.666667pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:68.980533pt;}
.x2_c00325{left:532.917467pt;}
.x3_c00325{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00326;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00326;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00326{font-family:ff7_c00326;line-height:1.067000;font-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_c00326{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls4_c00326{letter-spacing:-2.106000px;}
.ls2_c00326{letter-spacing:-0.720000px;}
.ls3_c00326{letter-spacing:-0.630000px;}
.ls1_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00326{word-spacing:-8.694000px;}
.ws0_c00326{word-spacing:-0.048000px;}
.ws2_c00326{word-spacing:0.000000px;}
.ws4_c00326{word-spacing:2.106000px;}
.ws3_c00326{word-spacing:7.056000px;}
._0_c00326{margin-left:-2755.276200px;}
._4_c00326{margin-left:-6.947400px;}
._1_c00326{margin-left:-2.256000px;}
._3_c00326{margin-left:-1.200000px;}
._2_c00326{width:1.008000px;}
._8_c00326{width:2.268000px;}
._7_c00326{width:7.776000px;}
._5_c00326{width:55.674000px;}
._6_c00326{width:59.136000px;}
.fc0_c00326{color:rgb(35,31,32);}
.fs3_c00326{font-size:42.000000px;}
.fs0_c00326{font-size:48.000000px;}
.fs4_c00326{font-size:54.000000px;}
.fs2_c00326{font-size:57.000000px;}
.fs1_c00326{font-size:60.000000px;}
.y0_c00326{bottom:0.000000px;}
.y1a_c00326{bottom:329.760000px;}
.y19_c00326{bottom:343.260000px;}
.y18_c00326{bottom:356.760000px;}
.y17_c00326{bottom:383.263950px;}
.y16_c00326{bottom:396.763950px;}
.y15_c00326{bottom:410.263950px;}
.y14_c00326{bottom:436.767900px;}
.y13_c00326{bottom:450.267900px;}
.y12_c00326{bottom:463.767900px;}
.y11_c00326{bottom:486.019800px;}
.y10_c00326{bottom:504.019800px;}
.yf_c00326{bottom:522.019800px;}
.ye_c00326{bottom:548.523750px;}
.yd_c00326{bottom:836.736150px;}
.yc_c00326{bottom:850.236150px;}
.yb_c00326{bottom:863.736150px;}
.ya_c00326{bottom:890.240100px;}
.y9_c00326{bottom:903.740100px;}
.y8_c00326{bottom:917.240100px;}
.y7_c00326{bottom:943.744050px;}
.y6_c00326{bottom:957.244050px;}
.y5_c00326{bottom:970.744050px;}
.y4_c00326{bottom:992.996100px;}
.y3_c00326{bottom:1010.996100px;}
.y2_c00326{bottom:1037.500050px;}
.y1_c00326{bottom:1093.600950px;}
.h7_c00326{height:30.282000px;}
.h5_c00326{height:34.080000px;}
.h2_c00326{height:39.264000px;}
.h3_c00326{height:39.984000px;}
.h4_c00326{height:43.260000px;}
.h6_c00326{height:43.740000px;}
.h1_c00326{height:1135.500000px;}
.h0_c00326{height:1135.506150px;}
.w0_c00326{width:893.950200px;}
.w1_c00326{width:894.000000px;}
.x0_c00326{left:0.000000px;}
.x4_c00326{left:128.744700px;}
.x5_c00326{left:141.500700px;}
.x6_c00326{left:145.634700px;}
.x2_c00326{left:188.061900px;}
.x3_c00326{left:190.513350px;}
.x1_c00326{left:800.165850px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls4_c00326{letter-spacing:-1.872000pt;}
.ls2_c00326{letter-spacing:-0.640000pt;}
.ls3_c00326{letter-spacing:-0.560000pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:0.426667pt;}
.ws1_c00326{word-spacing:-7.728000pt;}
.ws0_c00326{word-spacing:-0.042667pt;}
.ws2_c00326{word-spacing:0.000000pt;}
.ws4_c00326{word-spacing:1.872000pt;}
.ws3_c00326{word-spacing:6.272000pt;}
._0_c00326{margin-left:-2449.134400pt;}
._4_c00326{margin-left:-6.175467pt;}
._1_c00326{margin-left:-2.005333pt;}
._3_c00326{margin-left:-1.066667pt;}
._2_c00326{width:0.896000pt;}
._8_c00326{width:2.016000pt;}
._7_c00326{width:6.912000pt;}
._5_c00326{width:49.488000pt;}
._6_c00326{width:52.565333pt;}
.fs3_c00326{font-size:37.333333pt;}
.fs0_c00326{font-size:42.666667pt;}
.fs4_c00326{font-size:48.000000pt;}
.fs2_c00326{font-size:50.666667pt;}
.fs1_c00326{font-size:53.333333pt;}
.y0_c00326{bottom:0.000000pt;}
.y1a_c00326{bottom:293.120000pt;}
.y19_c00326{bottom:305.120000pt;}
.y18_c00326{bottom:317.120000pt;}
.y17_c00326{bottom:340.679067pt;}
.y16_c00326{bottom:352.679067pt;}
.y15_c00326{bottom:364.679067pt;}
.y14_c00326{bottom:388.238133pt;}
.y13_c00326{bottom:400.238133pt;}
.y12_c00326{bottom:412.238133pt;}
.y11_c00326{bottom:432.017600pt;}
.y10_c00326{bottom:448.017600pt;}
.yf_c00326{bottom:464.017600pt;}
.ye_c00326{bottom:487.576667pt;}
.yd_c00326{bottom:743.765467pt;}
.yc_c00326{bottom:755.765467pt;}
.yb_c00326{bottom:767.765467pt;}
.ya_c00326{bottom:791.324533pt;}
.y9_c00326{bottom:803.324533pt;}
.y8_c00326{bottom:815.324533pt;}
.y7_c00326{bottom:838.883600pt;}
.y6_c00326{bottom:850.883600pt;}
.y5_c00326{bottom:862.883600pt;}
.y4_c00326{bottom:882.663200pt;}
.y3_c00326{bottom:898.663200pt;}
.y2_c00326{bottom:922.222267pt;}
.y1_c00326{bottom:972.089733pt;}
.h7_c00326{height:26.917333pt;}
.h5_c00326{height:30.293333pt;}
.h2_c00326{height:34.901333pt;}
.h3_c00326{height:35.541333pt;}
.h4_c00326{height:38.453333pt;}
.h6_c00326{height:38.880000pt;}
.h1_c00326{height:1009.333333pt;}
.h0_c00326{height:1009.338800pt;}
.w0_c00326{width:794.622400pt;}
.w1_c00326{width:794.666667pt;}
.x0_c00326{left:0.000000pt;}
.x4_c00326{left:114.439733pt;}
.x5_c00326{left:125.778400pt;}
.x6_c00326{left:129.453067pt;}
.x2_c00326{left:167.166133pt;}
.x3_c00326{left:169.345200pt;}
.x1_c00326{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00327;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.067000;font-style:normal;font-weight: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_c00327;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00327{font-family:ff7_c00327;line-height:0.710000;font-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_c00327{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls2_c00327{letter-spacing:-0.720000px;}
.ls3_c00327{letter-spacing:-0.630000px;}
.ls4_c00327{letter-spacing:-0.540000px;}
.ls1_c00327{letter-spacing:-0.216000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00327{word-spacing:-11.826000px;}
.ws1_c00327{word-spacing:-8.694000px;}
.ws3_c00327{word-spacing:-6.487200px;}
.ws4_c00327{word-spacing:0.000000px;}
.ws6_c00327{word-spacing:0.216000px;}
.ws5_c00327{word-spacing:7.056000px;}
.ws0_c00327{word-spacing:1585.435200px;}
._3_c00327{margin-left:-7.042800px;}
._0_c00327{margin-left:-2.112000px;}
._1_c00327{margin-left:-1.104000px;}
._2_c00327{width:2.016000px;}
._6_c00327{width:7.776000px;}
._4_c00327{width:55.674000px;}
._5_c00327{width:59.136000px;}
.fc0_c00327{color:rgb(35,31,32);}
.fs5_c00327{font-size:30.600000px;}
.fs6_c00327{font-size:36.000000px;}
.fs3_c00327{font-size:42.000000px;}
.fs0_c00327{font-size:48.000000px;}
.fs4_c00327{font-size:54.000000px;}
.fs2_c00327{font-size:57.000000px;}
.fs1_c00327{font-size:60.000000px;}
.y0_c00327{bottom:0.000000px;}
.y19_c00327{bottom:329.547450px;}
.y18_c00327{bottom:343.047450px;}
.y17_c00327{bottom:356.547450px;}
.y16_c00327{bottom:383.051400px;}
.y15_c00327{bottom:396.551400px;}
.y14_c00327{bottom:410.051400px;}
.y13_c00327{bottom:436.555350px;}
.y12_c00327{bottom:450.055350px;}
.y11_c00327{bottom:463.555350px;}
.y10_c00327{bottom:485.807250px;}
.yf_c00327{bottom:503.807250px;}
.ye_c00327{bottom:521.807250px;}
.yd_c00327{bottom:548.311200px;}
.yc_c00327{bottom:854.275500px;}
.yb_c00327{bottom:867.775500px;}
.ya_c00327{bottom:881.275500px;}
.y9_c00327{bottom:903.527550px;}
.y8_c00327{bottom:917.027550px;}
.y7_c00327{bottom:943.531500px;}
.y6_c00327{bottom:957.031500px;}
.y5_c00327{bottom:970.531500px;}
.y4_c00327{bottom:992.783550px;}
.y3_c00327{bottom:1010.783550px;}
.y2_c00327{bottom:1037.287500px;}
.y1a_c00327{bottom:1040.299350px;}
.y1_c00327{bottom:1093.600950px;}
.h7_c00327{height:25.200000px;}
.h6_c00327{height:30.282000px;}
.h4_c00327{height:34.080000px;}
.h2_c00327{height:39.264000px;}
.h3_c00327{height:43.260000px;}
.h5_c00327{height:43.740000px;}
.h1_c00327{height:1135.500000px;}
.h0_c00327{height:1135.506150px;}
.w0_c00327{width:893.950200px;}
.w1_c00327{width:894.000000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:77.603100px;}
.x5_c00327{left:424.138500px;}
.x2_c00327{left:599.532150px;}
.x3_c00327{left:612.288150px;}
.x4_c00327{left:616.540050px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls2_c00327{letter-spacing:-0.640000pt;}
.ls3_c00327{letter-spacing:-0.560000pt;}
.ls4_c00327{letter-spacing:-0.480000pt;}
.ls1_c00327{letter-spacing:-0.192000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws2_c00327{word-spacing:-10.512000pt;}
.ws1_c00327{word-spacing:-7.728000pt;}
.ws3_c00327{word-spacing:-5.766400pt;}
.ws4_c00327{word-spacing:0.000000pt;}
.ws6_c00327{word-spacing:0.192000pt;}
.ws5_c00327{word-spacing:6.272000pt;}
.ws0_c00327{word-spacing:1409.275733pt;}
._3_c00327{margin-left:-6.260267pt;}
._0_c00327{margin-left:-1.877333pt;}
._1_c00327{margin-left:-0.981333pt;}
._2_c00327{width:1.792000pt;}
._6_c00327{width:6.912000pt;}
._4_c00327{width:49.488000pt;}
._5_c00327{width:52.565333pt;}
.fs5_c00327{font-size:27.200000pt;}
.fs6_c00327{font-size:32.000000pt;}
.fs3_c00327{font-size:37.333333pt;}
.fs0_c00327{font-size:42.666667pt;}
.fs4_c00327{font-size:48.000000pt;}
.fs2_c00327{font-size:50.666667pt;}
.fs1_c00327{font-size:53.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y19_c00327{bottom:292.931067pt;}
.y18_c00327{bottom:304.931067pt;}
.y17_c00327{bottom:316.931067pt;}
.y16_c00327{bottom:340.490133pt;}
.y15_c00327{bottom:352.490133pt;}
.y14_c00327{bottom:364.490133pt;}
.y13_c00327{bottom:388.049200pt;}
.y12_c00327{bottom:400.049200pt;}
.y11_c00327{bottom:412.049200pt;}
.y10_c00327{bottom:431.828667pt;}
.yf_c00327{bottom:447.828667pt;}
.ye_c00327{bottom:463.828667pt;}
.yd_c00327{bottom:487.387733pt;}
.yc_c00327{bottom:759.356000pt;}
.yb_c00327{bottom:771.356000pt;}
.ya_c00327{bottom:783.356000pt;}
.y9_c00327{bottom:803.135600pt;}
.y8_c00327{bottom:815.135600pt;}
.y7_c00327{bottom:838.694667pt;}
.y6_c00327{bottom:850.694667pt;}
.y5_c00327{bottom:862.694667pt;}
.y4_c00327{bottom:882.474267pt;}
.y3_c00327{bottom:898.474267pt;}
.y2_c00327{bottom:922.033333pt;}
.y1a_c00327{bottom:924.710533pt;}
.y1_c00327{bottom:972.089733pt;}
.h7_c00327{height:22.400000pt;}
.h6_c00327{height:26.917333pt;}
.h4_c00327{height:30.293333pt;}
.h2_c00327{height:34.901333pt;}
.h3_c00327{height:38.453333pt;}
.h5_c00327{height:38.880000pt;}
.h1_c00327{height:1009.333333pt;}
.h0_c00327{height:1009.338800pt;}
.w0_c00327{width:794.622400pt;}
.w1_c00327{width:794.666667pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:68.980533pt;}
.x5_c00327{left:377.012000pt;}
.x2_c00327{left:532.917467pt;}
.x3_c00327{left:544.256133pt;}
.x4_c00327{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:0.908000;font-style:normal;font-weight: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_c00328;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00328{font-family:ff7_c00328;line-height:1.067000;font-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_c00328{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls3_c00328{letter-spacing:-0.720000px;}
.ls4_c00328{letter-spacing:-0.630000px;}
.ls2_c00328{letter-spacing:-0.216000px;}
.ls1_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00328{word-spacing:-0.048000px;}
.ws2_c00328{word-spacing:0.000000px;}
.ws4_c00328{word-spacing:0.216000px;}
.ws3_c00328{word-spacing:7.056000px;}
._0_c00328{margin-left:-2755.276200px;}
._4_c00328{margin-left:-6.947400px;}
._1_c00328{margin-left:-2.256000px;}
._3_c00328{margin-left:-1.200000px;}
._2_c00328{width:1.008000px;}
._7_c00328{width:7.776000px;}
._5_c00328{width:55.674000px;}
._6_c00328{width:59.136000px;}
.fc0_c00328{color:rgb(35,31,32);}
.fs3_c00328{font-size:42.000000px;}
.fs0_c00328{font-size:48.000000px;}
.fs4_c00328{font-size:54.000000px;}
.fs2_c00328{font-size:57.000000px;}
.fs1_c00328{font-size:60.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1a_c00328{bottom:329.760000px;}
.y19_c00328{bottom:343.260000px;}
.y18_c00328{bottom:356.760000px;}
.y17_c00328{bottom:383.263950px;}
.y16_c00328{bottom:396.763950px;}
.y15_c00328{bottom:410.263950px;}
.y14_c00328{bottom:436.767900px;}
.y13_c00328{bottom:450.267900px;}
.y12_c00328{bottom:463.767900px;}
.y11_c00328{bottom:486.019800px;}
.y10_c00328{bottom:504.019800px;}
.yf_c00328{bottom:522.019800px;}
.ye_c00328{bottom:548.523750px;}
.yd_c00328{bottom:836.736150px;}
.yc_c00328{bottom:850.236150px;}
.yb_c00328{bottom:863.736150px;}
.ya_c00328{bottom:890.240100px;}
.y9_c00328{bottom:903.740100px;}
.y8_c00328{bottom:917.240100px;}
.y7_c00328{bottom:943.744050px;}
.y6_c00328{bottom:957.244050px;}
.y5_c00328{bottom:970.744050px;}
.y4_c00328{bottom:992.996100px;}
.y3_c00328{bottom:1010.996100px;}
.y2_c00328{bottom:1037.500050px;}
.y1_c00328{bottom:1093.600950px;}
.h7_c00328{height:30.282000px;}
.h5_c00328{height:34.080000px;}
.h2_c00328{height:39.264000px;}
.h3_c00328{height:39.984000px;}
.h4_c00328{height:43.260000px;}
.h6_c00328{height:43.740000px;}
.h1_c00328{height:1135.500000px;}
.h0_c00328{height:1135.506150px;}
.w0_c00328{width:893.950200px;}
.w1_c00328{width:894.000000px;}
.x0_c00328{left:0.000000px;}
.x4_c00328{left:128.744700px;}
.x5_c00328{left:141.500700px;}
.x6_c00328{left:145.752600px;}
.x2_c00328{left:188.061900px;}
.x3_c00328{left:190.513350px;}
.x1_c00328{left:800.165850px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls3_c00328{letter-spacing:-0.640000pt;}
.ls4_c00328{letter-spacing:-0.560000pt;}
.ls2_c00328{letter-spacing:-0.192000pt;}
.ls1_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:0.426667pt;}
.ws1_c00328{word-spacing:-7.728000pt;}
.ws0_c00328{word-spacing:-0.042667pt;}
.ws2_c00328{word-spacing:0.000000pt;}
.ws4_c00328{word-spacing:0.192000pt;}
.ws3_c00328{word-spacing:6.272000pt;}
._0_c00328{margin-left:-2449.134400pt;}
._4_c00328{margin-left:-6.175467pt;}
._1_c00328{margin-left:-2.005333pt;}
._3_c00328{margin-left:-1.066667pt;}
._2_c00328{width:0.896000pt;}
._7_c00328{width:6.912000pt;}
._5_c00328{width:49.488000pt;}
._6_c00328{width:52.565333pt;}
.fs3_c00328{font-size:37.333333pt;}
.fs0_c00328{font-size:42.666667pt;}
.fs4_c00328{font-size:48.000000pt;}
.fs2_c00328{font-size:50.666667pt;}
.fs1_c00328{font-size:53.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y1a_c00328{bottom:293.120000pt;}
.y19_c00328{bottom:305.120000pt;}
.y18_c00328{bottom:317.120000pt;}
.y17_c00328{bottom:340.679067pt;}
.y16_c00328{bottom:352.679067pt;}
.y15_c00328{bottom:364.679067pt;}
.y14_c00328{bottom:388.238133pt;}
.y13_c00328{bottom:400.238133pt;}
.y12_c00328{bottom:412.238133pt;}
.y11_c00328{bottom:432.017600pt;}
.y10_c00328{bottom:448.017600pt;}
.yf_c00328{bottom:464.017600pt;}
.ye_c00328{bottom:487.576667pt;}
.yd_c00328{bottom:743.765467pt;}
.yc_c00328{bottom:755.765467pt;}
.yb_c00328{bottom:767.765467pt;}
.ya_c00328{bottom:791.324533pt;}
.y9_c00328{bottom:803.324533pt;}
.y8_c00328{bottom:815.324533pt;}
.y7_c00328{bottom:838.883600pt;}
.y6_c00328{bottom:850.883600pt;}
.y5_c00328{bottom:862.883600pt;}
.y4_c00328{bottom:882.663200pt;}
.y3_c00328{bottom:898.663200pt;}
.y2_c00328{bottom:922.222267pt;}
.y1_c00328{bottom:972.089733pt;}
.h7_c00328{height:26.917333pt;}
.h5_c00328{height:30.293333pt;}
.h2_c00328{height:34.901333pt;}
.h3_c00328{height:35.541333pt;}
.h4_c00328{height:38.453333pt;}
.h6_c00328{height:38.880000pt;}
.h1_c00328{height:1009.333333pt;}
.h0_c00328{height:1009.338800pt;}
.w0_c00328{width:794.622400pt;}
.w1_c00328{width:794.666667pt;}
.x0_c00328{left:0.000000pt;}
.x4_c00328{left:114.439733pt;}
.x5_c00328{left:125.778400pt;}
.x6_c00328{left:129.557867pt;}
.x2_c00328{left:167.166133pt;}
.x3_c00328{left:169.345200pt;}
.x1_c00328{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls2_c00329{letter-spacing:-0.720000px;}
.ls3_c00329{letter-spacing:-0.630000px;}
.ls1_c00329{letter-spacing:-0.216000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00329{word-spacing:-12.150000px;}
.ws1_c00329{word-spacing:-8.694000px;}
.ws3_c00329{word-spacing:0.000000px;}
.ws5_c00329{word-spacing:0.216000px;}
.ws4_c00329{word-spacing:7.056000px;}
.ws0_c00329{word-spacing:1585.435200px;}
._3_c00329{margin-left:-7.042800px;}
._7_c00329{margin-left:-5.076000px;}
._0_c00329{margin-left:-2.112000px;}
._1_c00329{margin-left:-1.104000px;}
._2_c00329{width:2.016000px;}
._6_c00329{width:7.776000px;}
._4_c00329{width:55.674000px;}
._5_c00329{width:59.136000px;}
.fc0_c00329{color:rgb(35,31,32);}
.fs3_c00329{font-size:42.000000px;}
.fs0_c00329{font-size:48.000000px;}
.fs4_c00329{font-size:54.000000px;}
.fs2_c00329{font-size:57.000000px;}
.fs1_c00329{font-size:60.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1a_c00329{bottom:347.547450px;}
.y19_c00329{bottom:361.047450px;}
.y18_c00329{bottom:374.547450px;}
.y17_c00329{bottom:401.051400px;}
.y16_c00329{bottom:414.551400px;}
.y15_c00329{bottom:428.051400px;}
.y14_c00329{bottom:454.555350px;}
.y13_c00329{bottom:468.055350px;}
.y12_c00329{bottom:481.555350px;}
.y11_c00329{bottom:503.807250px;}
.y10_c00329{bottom:521.807250px;}
.yf_c00329{bottom:548.311200px;}
.ye_c00329{bottom:818.523600px;}
.yd_c00329{bottom:832.023600px;}
.yc_c00329{bottom:845.523600px;}
.yb_c00329{bottom:872.027550px;}
.ya_c00329{bottom:885.527550px;}
.y9_c00329{bottom:899.027550px;}
.y8_c00329{bottom:925.531500px;}
.y7_c00329{bottom:939.031500px;}
.y6_c00329{bottom:952.531500px;}
.y5_c00329{bottom:974.783550px;}
.y4_c00329{bottom:992.783550px;}
.y3_c00329{bottom:1010.783550px;}
.y2_c00329{bottom:1037.287500px;}
.y1_c00329{bottom:1093.600950px;}
.h6_c00329{height:30.282000px;}
.h4_c00329{height:34.080000px;}
.h2_c00329{height:39.264000px;}
.h3_c00329{height:43.260000px;}
.h5_c00329{height:43.740000px;}
.h1_c00329{height:1135.500000px;}
.h0_c00329{height:1135.506150px;}
.w0_c00329{width:893.950200px;}
.w1_c00329{width:894.000000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:77.603100px;}
.x2_c00329{left:599.532150px;}
.x3_c00329{left:612.288150px;}
.x4_c00329{left:616.540050px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls2_c00329{letter-spacing:-0.640000pt;}
.ls3_c00329{letter-spacing:-0.560000pt;}
.ls1_c00329{letter-spacing:-0.192000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws2_c00329{word-spacing:-10.800000pt;}
.ws1_c00329{word-spacing:-7.728000pt;}
.ws3_c00329{word-spacing:0.000000pt;}
.ws5_c00329{word-spacing:0.192000pt;}
.ws4_c00329{word-spacing:6.272000pt;}
.ws0_c00329{word-spacing:1409.275733pt;}
._3_c00329{margin-left:-6.260267pt;}
._7_c00329{margin-left:-4.512000pt;}
._0_c00329{margin-left:-1.877333pt;}
._1_c00329{margin-left:-0.981333pt;}
._2_c00329{width:1.792000pt;}
._6_c00329{width:6.912000pt;}
._4_c00329{width:49.488000pt;}
._5_c00329{width:52.565333pt;}
.fs3_c00329{font-size:37.333333pt;}
.fs0_c00329{font-size:42.666667pt;}
.fs4_c00329{font-size:48.000000pt;}
.fs2_c00329{font-size:50.666667pt;}
.fs1_c00329{font-size:53.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y1a_c00329{bottom:308.931067pt;}
.y19_c00329{bottom:320.931067pt;}
.y18_c00329{bottom:332.931067pt;}
.y17_c00329{bottom:356.490133pt;}
.y16_c00329{bottom:368.490133pt;}
.y15_c00329{bottom:380.490133pt;}
.y14_c00329{bottom:404.049200pt;}
.y13_c00329{bottom:416.049200pt;}
.y12_c00329{bottom:428.049200pt;}
.y11_c00329{bottom:447.828667pt;}
.y10_c00329{bottom:463.828667pt;}
.yf_c00329{bottom:487.387733pt;}
.ye_c00329{bottom:727.576533pt;}
.yd_c00329{bottom:739.576533pt;}
.yc_c00329{bottom:751.576533pt;}
.yb_c00329{bottom:775.135600pt;}
.ya_c00329{bottom:787.135600pt;}
.y9_c00329{bottom:799.135600pt;}
.y8_c00329{bottom:822.694667pt;}
.y7_c00329{bottom:834.694667pt;}
.y6_c00329{bottom:846.694667pt;}
.y5_c00329{bottom:866.474267pt;}
.y4_c00329{bottom:882.474267pt;}
.y3_c00329{bottom:898.474267pt;}
.y2_c00329{bottom:922.033333pt;}
.y1_c00329{bottom:972.089733pt;}
.h6_c00329{height:26.917333pt;}
.h4_c00329{height:30.293333pt;}
.h2_c00329{height:34.901333pt;}
.h3_c00329{height:38.453333pt;}
.h5_c00329{height:38.880000pt;}
.h1_c00329{height:1009.333333pt;}
.h0_c00329{height:1009.338800pt;}
.w0_c00329{width:794.622400pt;}
.w1_c00329{width:794.666667pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:68.980533pt;}
.x2_c00329{left:532.917467pt;}
.x3_c00329{left:544.256133pt;}
.x4_c00329{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00330;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00330;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00330{font-family:ff7_c00330;line-height:1.067000;font-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_c00330{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls3_c00330{letter-spacing:-0.720000px;}
.ls4_c00330{letter-spacing:-0.630000px;}
.ls2_c00330{letter-spacing:-0.216000px;}
.ls1_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00330{word-spacing:-8.694000px;}
.ws0_c00330{word-spacing:-0.048000px;}
.ws2_c00330{word-spacing:0.000000px;}
.ws4_c00330{word-spacing:0.216000px;}
.ws3_c00330{word-spacing:7.056000px;}
._0_c00330{margin-left:-2755.276200px;}
._4_c00330{margin-left:-6.947400px;}
._1_c00330{margin-left:-2.256000px;}
._3_c00330{margin-left:-1.200000px;}
._2_c00330{width:1.008000px;}
._7_c00330{width:7.776000px;}
._5_c00330{width:55.674000px;}
._6_c00330{width:59.136000px;}
.fc0_c00330{color:rgb(35,31,32);}
.fs3_c00330{font-size:42.000000px;}
.fs0_c00330{font-size:48.000000px;}
.fs4_c00330{font-size:54.000000px;}
.fs2_c00330{font-size:57.000000px;}
.fs1_c00330{font-size:60.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1a_c00330{bottom:329.760000px;}
.y19_c00330{bottom:343.260000px;}
.y18_c00330{bottom:356.760000px;}
.y17_c00330{bottom:383.263950px;}
.y16_c00330{bottom:396.763950px;}
.y15_c00330{bottom:410.263950px;}
.y14_c00330{bottom:436.767900px;}
.y13_c00330{bottom:450.267900px;}
.y12_c00330{bottom:463.767900px;}
.y11_c00330{bottom:486.019800px;}
.y10_c00330{bottom:504.019800px;}
.yf_c00330{bottom:522.019800px;}
.ye_c00330{bottom:548.523750px;}
.yd_c00330{bottom:836.736150px;}
.yc_c00330{bottom:850.236150px;}
.yb_c00330{bottom:863.736150px;}
.ya_c00330{bottom:890.240100px;}
.y9_c00330{bottom:903.740100px;}
.y8_c00330{bottom:917.240100px;}
.y7_c00330{bottom:943.744050px;}
.y6_c00330{bottom:957.244050px;}
.y5_c00330{bottom:970.744050px;}
.y4_c00330{bottom:992.996100px;}
.y3_c00330{bottom:1010.996100px;}
.y2_c00330{bottom:1037.500050px;}
.y1_c00330{bottom:1093.600950px;}
.h7_c00330{height:30.282000px;}
.h5_c00330{height:34.080000px;}
.h2_c00330{height:39.264000px;}
.h3_c00330{height:39.984000px;}
.h4_c00330{height:43.260000px;}
.h6_c00330{height:43.740000px;}
.h1_c00330{height:1135.500000px;}
.h0_c00330{height:1135.506150px;}
.w0_c00330{width:893.950200px;}
.w1_c00330{width:894.000000px;}
.x0_c00330{left:0.000000px;}
.x4_c00330{left:128.744700px;}
.x5_c00330{left:141.500700px;}
.x6_c00330{left:145.634700px;}
.x2_c00330{left:188.061900px;}
.x3_c00330{left:190.513350px;}
.x1_c00330{left:800.165850px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls3_c00330{letter-spacing:-0.640000pt;}
.ls4_c00330{letter-spacing:-0.560000pt;}
.ls2_c00330{letter-spacing:-0.192000pt;}
.ls1_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:0.426667pt;}
.ws1_c00330{word-spacing:-7.728000pt;}
.ws0_c00330{word-spacing:-0.042667pt;}
.ws2_c00330{word-spacing:0.000000pt;}
.ws4_c00330{word-spacing:0.192000pt;}
.ws3_c00330{word-spacing:6.272000pt;}
._0_c00330{margin-left:-2449.134400pt;}
._4_c00330{margin-left:-6.175467pt;}
._1_c00330{margin-left:-2.005333pt;}
._3_c00330{margin-left:-1.066667pt;}
._2_c00330{width:0.896000pt;}
._7_c00330{width:6.912000pt;}
._5_c00330{width:49.488000pt;}
._6_c00330{width:52.565333pt;}
.fs3_c00330{font-size:37.333333pt;}
.fs0_c00330{font-size:42.666667pt;}
.fs4_c00330{font-size:48.000000pt;}
.fs2_c00330{font-size:50.666667pt;}
.fs1_c00330{font-size:53.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y1a_c00330{bottom:293.120000pt;}
.y19_c00330{bottom:305.120000pt;}
.y18_c00330{bottom:317.120000pt;}
.y17_c00330{bottom:340.679067pt;}
.y16_c00330{bottom:352.679067pt;}
.y15_c00330{bottom:364.679067pt;}
.y14_c00330{bottom:388.238133pt;}
.y13_c00330{bottom:400.238133pt;}
.y12_c00330{bottom:412.238133pt;}
.y11_c00330{bottom:432.017600pt;}
.y10_c00330{bottom:448.017600pt;}
.yf_c00330{bottom:464.017600pt;}
.ye_c00330{bottom:487.576667pt;}
.yd_c00330{bottom:743.765467pt;}
.yc_c00330{bottom:755.765467pt;}
.yb_c00330{bottom:767.765467pt;}
.ya_c00330{bottom:791.324533pt;}
.y9_c00330{bottom:803.324533pt;}
.y8_c00330{bottom:815.324533pt;}
.y7_c00330{bottom:838.883600pt;}
.y6_c00330{bottom:850.883600pt;}
.y5_c00330{bottom:862.883600pt;}
.y4_c00330{bottom:882.663200pt;}
.y3_c00330{bottom:898.663200pt;}
.y2_c00330{bottom:922.222267pt;}
.y1_c00330{bottom:972.089733pt;}
.h7_c00330{height:26.917333pt;}
.h5_c00330{height:30.293333pt;}
.h2_c00330{height:34.901333pt;}
.h3_c00330{height:35.541333pt;}
.h4_c00330{height:38.453333pt;}
.h6_c00330{height:38.880000pt;}
.h1_c00330{height:1009.333333pt;}
.h0_c00330{height:1009.338800pt;}
.w0_c00330{width:794.622400pt;}
.w1_c00330{width:794.666667pt;}
.x0_c00330{left:0.000000pt;}
.x4_c00330{left:114.439733pt;}
.x5_c00330{left:125.778400pt;}
.x6_c00330{left:129.453067pt;}
.x2_c00330{left:167.166133pt;}
.x3_c00330{left:169.345200pt;}
.x1_c00330{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00331;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00331;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00331{font-family:ff7_c00331;line-height:0.710000;font-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_c00331{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls3_c00331{letter-spacing:-1.026000px;}
.ls1_c00331{letter-spacing:-0.720000px;}
.ls2_c00331{letter-spacing:-0.630000px;}
.ls0_c00331{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00331{word-spacing:-11.340000px;}
.ws1_c00331{word-spacing:-8.694000px;}
.ws2_c00331{word-spacing:-6.487200px;}
.ws4_c00331{word-spacing:0.000000px;}
.ws5_c00331{word-spacing:7.056000px;}
.ws0_c00331{word-spacing:1585.435200px;}
._3_c00331{margin-left:-7.042800px;}
._7_c00331{margin-left:-5.022000px;}
._0_c00331{margin-left:-2.112000px;}
._1_c00331{margin-left:-1.104000px;}
._2_c00331{width:2.016000px;}
._6_c00331{width:7.776000px;}
._4_c00331{width:55.674000px;}
._5_c00331{width:59.136000px;}
.fc0_c00331{color:rgb(35,31,32);}
.fs5_c00331{font-size:30.600000px;}
.fs6_c00331{font-size:36.000000px;}
.fs3_c00331{font-size:42.000000px;}
.fs0_c00331{font-size:48.000000px;}
.fs4_c00331{font-size:54.000000px;}
.fs2_c00331{font-size:57.000000px;}
.fs1_c00331{font-size:60.000000px;}
.y0_c00331{bottom:0.000000px;}
.yd_c00331{bottom:343.047450px;}
.yc_c00331{bottom:356.547450px;}
.yb_c00331{bottom:370.047450px;}
.ya_c00331{bottom:396.551400px;}
.y9_c00331{bottom:410.051400px;}
.y8_c00331{bottom:436.555350px;}
.y7_c00331{bottom:450.055350px;}
.y6_c00331{bottom:463.555350px;}
.y5_c00331{bottom:485.807250px;}
.y4_c00331{bottom:503.807250px;}
.y3_c00331{bottom:521.807250px;}
.y2_c00331{bottom:548.311200px;}
.ye_c00331{bottom:551.323050px;}
.y1b_c00331{bottom:819.161550px;}
.y1a_c00331{bottom:832.661550px;}
.y19_c00331{bottom:846.161550px;}
.y18_c00331{bottom:872.665500px;}
.y17_c00331{bottom:886.165500px;}
.y16_c00331{bottom:899.665500px;}
.y15_c00331{bottom:926.169450px;}
.y14_c00331{bottom:939.669450px;}
.y13_c00331{bottom:953.169450px;}
.y12_c00331{bottom:975.421350px;}
.y11_c00331{bottom:993.421350px;}
.y10_c00331{bottom:1011.421350px;}
.yf_c00331{bottom:1037.925300px;}
.y1_c00331{bottom:1093.600950px;}
.h7_c00331{height:25.200000px;}
.h6_c00331{height:30.282000px;}
.h4_c00331{height:34.080000px;}
.h2_c00331{height:39.264000px;}
.h3_c00331{height:43.260000px;}
.h5_c00331{height:43.740000px;}
.h1_c00331{height:1135.500000px;}
.h0_c00331{height:1135.506150px;}
.w0_c00331{width:893.950200px;}
.w1_c00331{width:894.000000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:77.603100px;}
.x5_c00331{left:424.138500px;}
.x2_c00331{left:599.532150px;}
.x3_c00331{left:612.288150px;}
.x4_c00331{left:616.540050px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls3_c00331{letter-spacing:-0.912000pt;}
.ls1_c00331{letter-spacing:-0.640000pt;}
.ls2_c00331{letter-spacing:-0.560000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws3_c00331{word-spacing:-10.080000pt;}
.ws1_c00331{word-spacing:-7.728000pt;}
.ws2_c00331{word-spacing:-5.766400pt;}
.ws4_c00331{word-spacing:0.000000pt;}
.ws5_c00331{word-spacing:6.272000pt;}
.ws0_c00331{word-spacing:1409.275733pt;}
._3_c00331{margin-left:-6.260267pt;}
._7_c00331{margin-left:-4.464000pt;}
._0_c00331{margin-left:-1.877333pt;}
._1_c00331{margin-left:-0.981333pt;}
._2_c00331{width:1.792000pt;}
._6_c00331{width:6.912000pt;}
._4_c00331{width:49.488000pt;}
._5_c00331{width:52.565333pt;}
.fs5_c00331{font-size:27.200000pt;}
.fs6_c00331{font-size:32.000000pt;}
.fs3_c00331{font-size:37.333333pt;}
.fs0_c00331{font-size:42.666667pt;}
.fs4_c00331{font-size:48.000000pt;}
.fs2_c00331{font-size:50.666667pt;}
.fs1_c00331{font-size:53.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.yd_c00331{bottom:304.931067pt;}
.yc_c00331{bottom:316.931067pt;}
.yb_c00331{bottom:328.931067pt;}
.ya_c00331{bottom:352.490133pt;}
.y9_c00331{bottom:364.490133pt;}
.y8_c00331{bottom:388.049200pt;}
.y7_c00331{bottom:400.049200pt;}
.y6_c00331{bottom:412.049200pt;}
.y5_c00331{bottom:431.828667pt;}
.y4_c00331{bottom:447.828667pt;}
.y3_c00331{bottom:463.828667pt;}
.y2_c00331{bottom:487.387733pt;}
.ye_c00331{bottom:490.064933pt;}
.y1b_c00331{bottom:728.143600pt;}
.y1a_c00331{bottom:740.143600pt;}
.y19_c00331{bottom:752.143600pt;}
.y18_c00331{bottom:775.702667pt;}
.y17_c00331{bottom:787.702667pt;}
.y16_c00331{bottom:799.702667pt;}
.y15_c00331{bottom:823.261733pt;}
.y14_c00331{bottom:835.261733pt;}
.y13_c00331{bottom:847.261733pt;}
.y12_c00331{bottom:867.041200pt;}
.y11_c00331{bottom:883.041200pt;}
.y10_c00331{bottom:899.041200pt;}
.yf_c00331{bottom:922.600267pt;}
.y1_c00331{bottom:972.089733pt;}
.h7_c00331{height:22.400000pt;}
.h6_c00331{height:26.917333pt;}
.h4_c00331{height:30.293333pt;}
.h2_c00331{height:34.901333pt;}
.h3_c00331{height:38.453333pt;}
.h5_c00331{height:38.880000pt;}
.h1_c00331{height:1009.333333pt;}
.h0_c00331{height:1009.338800pt;}
.w0_c00331{width:794.622400pt;}
.w1_c00331{width:794.666667pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:68.980533pt;}
.x5_c00331{left:377.012000pt;}
.x2_c00331{left:532.917467pt;}
.x3_c00331{left:544.256133pt;}
.x4_c00331{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00332;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00332;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00332{font-family:ff7_c00332;line-height:1.067000;font-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_c00332{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls3_c00332{letter-spacing:-0.720000px;}
.ls4_c00332{letter-spacing:-0.630000px;}
.ls2_c00332{letter-spacing:-0.216000px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00332{word-spacing:-0.048000px;}
.ws2_c00332{word-spacing:0.000000px;}
.ws4_c00332{word-spacing:0.216000px;}
.ws3_c00332{word-spacing:7.056000px;}
._0_c00332{margin-left:-2755.276200px;}
._4_c00332{margin-left:-6.946800px;}
._1_c00332{margin-left:-2.256000px;}
._3_c00332{margin-left:-1.200000px;}
._2_c00332{width:1.008000px;}
._7_c00332{width:7.776000px;}
._5_c00332{width:55.674000px;}
._6_c00332{width:59.136000px;}
.fc0_c00332{color:rgb(35,31,32);}
.fs3_c00332{font-size:42.000000px;}
.fs0_c00332{font-size:48.000000px;}
.fs4_c00332{font-size:54.000000px;}
.fs2_c00332{font-size:57.000000px;}
.fs1_c00332{font-size:60.000000px;}
.y0_c00332{bottom:0.000000px;}
.y19_c00332{bottom:347.972700px;}
.y18_c00332{bottom:361.472700px;}
.y17_c00332{bottom:374.972550px;}
.y16_c00332{bottom:401.476500px;}
.y15_c00332{bottom:414.976500px;}
.y14_c00332{bottom:428.476500px;}
.y13_c00332{bottom:454.980450px;}
.y12_c00332{bottom:468.480450px;}
.y11_c00332{bottom:481.980450px;}
.y10_c00332{bottom:504.232500px;}
.yf_c00332{bottom:522.232500px;}
.ye_c00332{bottom:548.736450px;}
.yd_c00332{bottom:836.738700px;}
.yc_c00332{bottom:850.238700px;}
.yb_c00332{bottom:863.738700px;}
.ya_c00332{bottom:890.242650px;}
.y9_c00332{bottom:903.742650px;}
.y8_c00332{bottom:917.242650px;}
.y7_c00332{bottom:943.746600px;}
.y6_c00332{bottom:957.246600px;}
.y5_c00332{bottom:970.746600px;}
.y4_c00332{bottom:992.998500px;}
.y3_c00332{bottom:1010.998500px;}
.y2_c00332{bottom:1037.502600px;}
.y1_c00332{bottom:1093.600950px;}
.h7_c00332{height:30.282000px;}
.h5_c00332{height:34.080000px;}
.h2_c00332{height:39.264000px;}
.h3_c00332{height:39.984000px;}
.h4_c00332{height:43.260000px;}
.h6_c00332{height:43.740000px;}
.h1_c00332{height:1135.500000px;}
.h0_c00332{height:1135.506150px;}
.w0_c00332{width:893.950200px;}
.w1_c00332{width:894.000000px;}
.x0_c00332{left:0.000000px;}
.x4_c00332{left:128.626800px;}
.x5_c00332{left:141.382650px;}
.x2_c00332{left:188.061900px;}
.x3_c00332{left:190.513350px;}
.x1_c00332{left:800.165850px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls3_c00332{letter-spacing:-0.640000pt;}
.ls4_c00332{letter-spacing:-0.560000pt;}
.ls2_c00332{letter-spacing:-0.192000pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:0.426667pt;}
.ws1_c00332{word-spacing:-7.728000pt;}
.ws0_c00332{word-spacing:-0.042667pt;}
.ws2_c00332{word-spacing:0.000000pt;}
.ws4_c00332{word-spacing:0.192000pt;}
.ws3_c00332{word-spacing:6.272000pt;}
._0_c00332{margin-left:-2449.134400pt;}
._4_c00332{margin-left:-6.174933pt;}
._1_c00332{margin-left:-2.005333pt;}
._3_c00332{margin-left:-1.066667pt;}
._2_c00332{width:0.896000pt;}
._7_c00332{width:6.912000pt;}
._5_c00332{width:49.488000pt;}
._6_c00332{width:52.565333pt;}
.fs3_c00332{font-size:37.333333pt;}
.fs0_c00332{font-size:42.666667pt;}
.fs4_c00332{font-size:48.000000pt;}
.fs2_c00332{font-size:50.666667pt;}
.fs1_c00332{font-size:53.333333pt;}
.y0_c00332{bottom:0.000000pt;}
.y19_c00332{bottom:309.309067pt;}
.y18_c00332{bottom:321.309067pt;}
.y17_c00332{bottom:333.308933pt;}
.y16_c00332{bottom:356.868000pt;}
.y15_c00332{bottom:368.868000pt;}
.y14_c00332{bottom:380.868000pt;}
.y13_c00332{bottom:404.427067pt;}
.y12_c00332{bottom:416.427067pt;}
.y11_c00332{bottom:428.427067pt;}
.y10_c00332{bottom:448.206667pt;}
.yf_c00332{bottom:464.206667pt;}
.ye_c00332{bottom:487.765733pt;}
.yd_c00332{bottom:743.767733pt;}
.yc_c00332{bottom:755.767733pt;}
.yb_c00332{bottom:767.767733pt;}
.ya_c00332{bottom:791.326800pt;}
.y9_c00332{bottom:803.326800pt;}
.y8_c00332{bottom:815.326800pt;}
.y7_c00332{bottom:838.885867pt;}
.y6_c00332{bottom:850.885867pt;}
.y5_c00332{bottom:862.885867pt;}
.y4_c00332{bottom:882.665333pt;}
.y3_c00332{bottom:898.665333pt;}
.y2_c00332{bottom:922.224533pt;}
.y1_c00332{bottom:972.089733pt;}
.h7_c00332{height:26.917333pt;}
.h5_c00332{height:30.293333pt;}
.h2_c00332{height:34.901333pt;}
.h3_c00332{height:35.541333pt;}
.h4_c00332{height:38.453333pt;}
.h6_c00332{height:38.880000pt;}
.h1_c00332{height:1009.333333pt;}
.h0_c00332{height:1009.338800pt;}
.w0_c00332{width:794.622400pt;}
.w1_c00332{width:794.666667pt;}
.x0_c00332{left:0.000000pt;}
.x4_c00332{left:114.334933pt;}
.x5_c00332{left:125.673467pt;}
.x2_c00332{left:167.166133pt;}
.x3_c00332{left:169.345200pt;}
.x1_c00332{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls2_c00333{letter-spacing:-0.720000px;}
.ls3_c00333{letter-spacing:-0.630000px;}
.ls1_c00333{letter-spacing:-0.378000px;}
.ls4_c00333{letter-spacing:-0.270000px;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-8.694000px;}
.ws2_c00333{word-spacing:0.000000px;}
.ws4_c00333{word-spacing:0.378000px;}
.ws3_c00333{word-spacing:7.056000px;}
.ws5_c00333{word-spacing:55.944000px;}
.ws0_c00333{word-spacing:1585.435200px;}
._3_c00333{margin-left:-7.042800px;}
._0_c00333{margin-left:-2.112000px;}
._1_c00333{margin-left:-1.104000px;}
._2_c00333{width:2.016000px;}
._6_c00333{width:7.776000px;}
._4_c00333{width:55.674000px;}
._5_c00333{width:59.136000px;}
.fc0_c00333{color:rgb(35,31,32);}
.fs3_c00333{font-size:42.000000px;}
.fs0_c00333{font-size:48.000000px;}
.fs4_c00333{font-size:54.000000px;}
.fs2_c00333{font-size:57.000000px;}
.fs1_c00333{font-size:60.000000px;}
.y0_c00333{bottom:0.000000px;}
.y19_c00333{bottom:348.185250px;}
.y18_c00333{bottom:361.685250px;}
.y17_c00333{bottom:375.185250px;}
.y16_c00333{bottom:401.689200px;}
.y15_c00333{bottom:415.189200px;}
.y14_c00333{bottom:428.689200px;}
.y13_c00333{bottom:455.193150px;}
.y12_c00333{bottom:468.693150px;}
.y11_c00333{bottom:482.193150px;}
.y10_c00333{bottom:504.445050px;}
.yf_c00333{bottom:522.445050px;}
.ye_c00333{bottom:548.949000px;}
.yd_c00333{bottom:836.098350px;}
.yc_c00333{bottom:849.598350px;}
.yb_c00333{bottom:863.098350px;}
.ya_c00333{bottom:889.602450px;}
.y9_c00333{bottom:903.102450px;}
.y8_c00333{bottom:916.602450px;}
.y7_c00333{bottom:943.106400px;}
.y6_c00333{bottom:956.606400px;}
.y5_c00333{bottom:974.358300px;}
.y4_c00333{bottom:992.358300px;}
.y3_c00333{bottom:1010.358300px;}
.y2_c00333{bottom:1036.862250px;}
.y1_c00333{bottom:1093.600950px;}
.h6_c00333{height:30.282000px;}
.h4_c00333{height:34.080000px;}
.h2_c00333{height:39.264000px;}
.h3_c00333{height:43.260000px;}
.h5_c00333{height:43.740000px;}
.h1_c00333{height:1135.500000px;}
.h0_c00333{height:1135.506150px;}
.w0_c00333{width:893.950200px;}
.w1_c00333{width:894.000000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:77.603100px;}
.x2_c00333{left:599.532150px;}
.x3_c00333{left:612.288150px;}
.x4_c00333{left:616.540050px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls2_c00333{letter-spacing:-0.640000pt;}
.ls3_c00333{letter-spacing:-0.560000pt;}
.ls1_c00333{letter-spacing:-0.336000pt;}
.ls4_c00333{letter-spacing:-0.240000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws1_c00333{word-spacing:-7.728000pt;}
.ws2_c00333{word-spacing:0.000000pt;}
.ws4_c00333{word-spacing:0.336000pt;}
.ws3_c00333{word-spacing:6.272000pt;}
.ws5_c00333{word-spacing:49.728000pt;}
.ws0_c00333{word-spacing:1409.275733pt;}
._3_c00333{margin-left:-6.260267pt;}
._0_c00333{margin-left:-1.877333pt;}
._1_c00333{margin-left:-0.981333pt;}
._2_c00333{width:1.792000pt;}
._6_c00333{width:6.912000pt;}
._4_c00333{width:49.488000pt;}
._5_c00333{width:52.565333pt;}
.fs3_c00333{font-size:37.333333pt;}
.fs0_c00333{font-size:42.666667pt;}
.fs4_c00333{font-size:48.000000pt;}
.fs2_c00333{font-size:50.666667pt;}
.fs1_c00333{font-size:53.333333pt;}
.y0_c00333{bottom:0.000000pt;}
.y19_c00333{bottom:309.498000pt;}
.y18_c00333{bottom:321.498000pt;}
.y17_c00333{bottom:333.498000pt;}
.y16_c00333{bottom:357.057067pt;}
.y15_c00333{bottom:369.057067pt;}
.y14_c00333{bottom:381.057067pt;}
.y13_c00333{bottom:404.616133pt;}
.y12_c00333{bottom:416.616133pt;}
.y11_c00333{bottom:428.616133pt;}
.y10_c00333{bottom:448.395600pt;}
.yf_c00333{bottom:464.395600pt;}
.ye_c00333{bottom:487.954667pt;}
.yd_c00333{bottom:743.198533pt;}
.yc_c00333{bottom:755.198533pt;}
.yb_c00333{bottom:767.198533pt;}
.ya_c00333{bottom:790.757733pt;}
.y9_c00333{bottom:802.757733pt;}
.y8_c00333{bottom:814.757733pt;}
.y7_c00333{bottom:838.316800pt;}
.y6_c00333{bottom:850.316800pt;}
.y5_c00333{bottom:866.096267pt;}
.y4_c00333{bottom:882.096267pt;}
.y3_c00333{bottom:898.096267pt;}
.y2_c00333{bottom:921.655333pt;}
.y1_c00333{bottom:972.089733pt;}
.h6_c00333{height:26.917333pt;}
.h4_c00333{height:30.293333pt;}
.h2_c00333{height:34.901333pt;}
.h3_c00333{height:38.453333pt;}
.h5_c00333{height:38.880000pt;}
.h1_c00333{height:1009.333333pt;}
.h0_c00333{height:1009.338800pt;}
.w0_c00333{width:794.622400pt;}
.w1_c00333{width:794.666667pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:68.980533pt;}
.x2_c00333{left:532.917467pt;}
.x3_c00333{left:544.256133pt;}
.x4_c00333{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00334;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00334{font-family:ff7_c00334;line-height:1.067000;font-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_c00334{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls2_c00334{letter-spacing:-0.720000px;}
.ls3_c00334{letter-spacing:-0.630000px;}
.ls4_c00334{letter-spacing:-0.378000px;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:0.480000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00334{word-spacing:-8.694000px;}
.ws0_c00334{word-spacing:-0.048000px;}
.ws2_c00334{word-spacing:0.000000px;}
.ws4_c00334{word-spacing:0.378000px;}
.ws3_c00334{word-spacing:7.056000px;}
._0_c00334{margin-left:-2755.276200px;}
._4_c00334{margin-left:-6.947400px;}
._1_c00334{margin-left:-2.256000px;}
._3_c00334{margin-left:-1.200000px;}
._2_c00334{width:1.008000px;}
._7_c00334{width:7.776000px;}
._5_c00334{width:55.674000px;}
._6_c00334{width:59.136000px;}
.fc0_c00334{color:rgb(35,31,32);}
.fs3_c00334{font-size:42.000000px;}
.fs0_c00334{font-size:48.000000px;}
.fs4_c00334{font-size:54.000000px;}
.fs2_c00334{font-size:57.000000px;}
.fs1_c00334{font-size:60.000000px;}
.y0_c00334{bottom:0.000000px;}
.y19_c00334{bottom:347.760150px;}
.y18_c00334{bottom:361.260000px;}
.y17_c00334{bottom:374.760000px;}
.y16_c00334{bottom:401.263950px;}
.y15_c00334{bottom:414.763950px;}
.y14_c00334{bottom:428.263950px;}
.y13_c00334{bottom:454.767900px;}
.y12_c00334{bottom:468.267900px;}
.y11_c00334{bottom:481.767900px;}
.y10_c00334{bottom:504.019800px;}
.yf_c00334{bottom:522.019800px;}
.ye_c00334{bottom:548.523750px;}
.yd_c00334{bottom:836.736150px;}
.yc_c00334{bottom:850.236150px;}
.yb_c00334{bottom:863.736150px;}
.ya_c00334{bottom:890.240100px;}
.y9_c00334{bottom:903.740100px;}
.y8_c00334{bottom:917.240100px;}
.y7_c00334{bottom:943.744050px;}
.y6_c00334{bottom:957.244050px;}
.y5_c00334{bottom:970.744050px;}
.y4_c00334{bottom:992.996100px;}
.y3_c00334{bottom:1010.996100px;}
.y2_c00334{bottom:1037.500050px;}
.y1_c00334{bottom:1093.600950px;}
.h7_c00334{height:30.282000px;}
.h5_c00334{height:34.080000px;}
.h2_c00334{height:39.264000px;}
.h3_c00334{height:39.984000px;}
.h4_c00334{height:43.260000px;}
.h6_c00334{height:43.740000px;}
.h1_c00334{height:1135.500000px;}
.h0_c00334{height:1135.506150px;}
.w0_c00334{width:893.950200px;}
.w1_c00334{width:894.000000px;}
.x0_c00334{left:0.000000px;}
.x4_c00334{left:128.744700px;}
.x5_c00334{left:141.500700px;}
.x2_c00334{left:188.061900px;}
.x3_c00334{left:190.513350px;}
.x1_c00334{left:800.165850px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls2_c00334{letter-spacing:-0.640000pt;}
.ls3_c00334{letter-spacing:-0.560000pt;}
.ls4_c00334{letter-spacing:-0.336000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:0.426667pt;}
.ws1_c00334{word-spacing:-7.728000pt;}
.ws0_c00334{word-spacing:-0.042667pt;}
.ws2_c00334{word-spacing:0.000000pt;}
.ws4_c00334{word-spacing:0.336000pt;}
.ws3_c00334{word-spacing:6.272000pt;}
._0_c00334{margin-left:-2449.134400pt;}
._4_c00334{margin-left:-6.175467pt;}
._1_c00334{margin-left:-2.005333pt;}
._3_c00334{margin-left:-1.066667pt;}
._2_c00334{width:0.896000pt;}
._7_c00334{width:6.912000pt;}
._5_c00334{width:49.488000pt;}
._6_c00334{width:52.565333pt;}
.fs3_c00334{font-size:37.333333pt;}
.fs0_c00334{font-size:42.666667pt;}
.fs4_c00334{font-size:48.000000pt;}
.fs2_c00334{font-size:50.666667pt;}
.fs1_c00334{font-size:53.333333pt;}
.y0_c00334{bottom:0.000000pt;}
.y19_c00334{bottom:309.120133pt;}
.y18_c00334{bottom:321.120000pt;}
.y17_c00334{bottom:333.120000pt;}
.y16_c00334{bottom:356.679067pt;}
.y15_c00334{bottom:368.679067pt;}
.y14_c00334{bottom:380.679067pt;}
.y13_c00334{bottom:404.238133pt;}
.y12_c00334{bottom:416.238133pt;}
.y11_c00334{bottom:428.238133pt;}
.y10_c00334{bottom:448.017600pt;}
.yf_c00334{bottom:464.017600pt;}
.ye_c00334{bottom:487.576667pt;}
.yd_c00334{bottom:743.765467pt;}
.yc_c00334{bottom:755.765467pt;}
.yb_c00334{bottom:767.765467pt;}
.ya_c00334{bottom:791.324533pt;}
.y9_c00334{bottom:803.324533pt;}
.y8_c00334{bottom:815.324533pt;}
.y7_c00334{bottom:838.883600pt;}
.y6_c00334{bottom:850.883600pt;}
.y5_c00334{bottom:862.883600pt;}
.y4_c00334{bottom:882.663200pt;}
.y3_c00334{bottom:898.663200pt;}
.y2_c00334{bottom:922.222267pt;}
.y1_c00334{bottom:972.089733pt;}
.h7_c00334{height:26.917333pt;}
.h5_c00334{height:30.293333pt;}
.h2_c00334{height:34.901333pt;}
.h3_c00334{height:35.541333pt;}
.h4_c00334{height:38.453333pt;}
.h6_c00334{height:38.880000pt;}
.h1_c00334{height:1009.333333pt;}
.h0_c00334{height:1009.338800pt;}
.w0_c00334{width:794.622400pt;}
.w1_c00334{width:794.666667pt;}
.x0_c00334{left:0.000000pt;}
.x4_c00334{left:114.439733pt;}
.x5_c00334{left:125.778400pt;}
.x2_c00334{left:167.166133pt;}
.x3_c00334{left:169.345200pt;}
.x1_c00334{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00335;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00335;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00335;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00335{font-family:ff7_c00335;line-height:0.710000;font-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_c00335{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls1_c00335{letter-spacing:-0.720000px;}
.ls2_c00335{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00335{word-spacing:-8.694000px;}
.ws2_c00335{word-spacing:-6.487200px;}
.ws3_c00335{word-spacing:0.000000px;}
.ws4_c00335{word-spacing:7.056000px;}
.ws0_c00335{word-spacing:1585.435200px;}
._3_c00335{margin-left:-7.042800px;}
._0_c00335{margin-left:-2.112000px;}
._1_c00335{margin-left:-1.104000px;}
._2_c00335{width:2.016000px;}
._6_c00335{width:7.776000px;}
._4_c00335{width:55.674000px;}
._5_c00335{width:59.136000px;}
.fc0_c00335{color:rgb(35,31,32);}
.fs5_c00335{font-size:30.600000px;}
.fs6_c00335{font-size:36.000000px;}
.fs3_c00335{font-size:42.000000px;}
.fs0_c00335{font-size:48.000000px;}
.fs4_c00335{font-size:54.000000px;}
.fs2_c00335{font-size:57.000000px;}
.fs1_c00335{font-size:60.000000px;}
.y0_c00335{bottom:0.000000px;}
.y18_c00335{bottom:347.547450px;}
.y17_c00335{bottom:361.047450px;}
.y16_c00335{bottom:374.547450px;}
.y15_c00335{bottom:401.051400px;}
.y14_c00335{bottom:414.551400px;}
.y13_c00335{bottom:428.051400px;}
.y12_c00335{bottom:454.555350px;}
.y11_c00335{bottom:468.055350px;}
.y10_c00335{bottom:481.555350px;}
.yf_c00335{bottom:503.807250px;}
.ye_c00335{bottom:521.807250px;}
.yd_c00335{bottom:548.311200px;}
.yc_c00335{bottom:851.086650px;}
.yb_c00335{bottom:864.586650px;}
.ya_c00335{bottom:878.086650px;}
.y9_c00335{bottom:904.590600px;}
.y8_c00335{bottom:918.090600px;}
.y7_c00335{bottom:944.594700px;}
.y6_c00335{bottom:958.094700px;}
.y5_c00335{bottom:971.594700px;}
.y4_c00335{bottom:993.846600px;}
.y3_c00335{bottom:1011.846600px;}
.y2_c00335{bottom:1038.350550px;}
.y19_c00335{bottom:1040.299350px;}
.y1_c00335{bottom:1093.600950px;}
.h7_c00335{height:25.200000px;}
.h6_c00335{height:30.282000px;}
.h4_c00335{height:34.080000px;}
.h2_c00335{height:39.264000px;}
.h3_c00335{height:43.260000px;}
.h5_c00335{height:43.740000px;}
.h1_c00335{height:1135.500000px;}
.h0_c00335{height:1135.506150px;}
.w0_c00335{width:893.950200px;}
.w1_c00335{width:894.000000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:77.603100px;}
.x4_c00335{left:424.138500px;}
.x2_c00335{left:599.532150px;}
.x3_c00335{left:612.288150px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:-0.640000pt;}
.ls2_c00335{letter-spacing:-0.560000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws1_c00335{word-spacing:-7.728000pt;}
.ws2_c00335{word-spacing:-5.766400pt;}
.ws3_c00335{word-spacing:0.000000pt;}
.ws4_c00335{word-spacing:6.272000pt;}
.ws0_c00335{word-spacing:1409.275733pt;}
._3_c00335{margin-left:-6.260267pt;}
._0_c00335{margin-left:-1.877333pt;}
._1_c00335{margin-left:-0.981333pt;}
._2_c00335{width:1.792000pt;}
._6_c00335{width:6.912000pt;}
._4_c00335{width:49.488000pt;}
._5_c00335{width:52.565333pt;}
.fs5_c00335{font-size:27.200000pt;}
.fs6_c00335{font-size:32.000000pt;}
.fs3_c00335{font-size:37.333333pt;}
.fs0_c00335{font-size:42.666667pt;}
.fs4_c00335{font-size:48.000000pt;}
.fs2_c00335{font-size:50.666667pt;}
.fs1_c00335{font-size:53.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y18_c00335{bottom:308.931067pt;}
.y17_c00335{bottom:320.931067pt;}
.y16_c00335{bottom:332.931067pt;}
.y15_c00335{bottom:356.490133pt;}
.y14_c00335{bottom:368.490133pt;}
.y13_c00335{bottom:380.490133pt;}
.y12_c00335{bottom:404.049200pt;}
.y11_c00335{bottom:416.049200pt;}
.y10_c00335{bottom:428.049200pt;}
.yf_c00335{bottom:447.828667pt;}
.ye_c00335{bottom:463.828667pt;}
.yd_c00335{bottom:487.387733pt;}
.yc_c00335{bottom:756.521467pt;}
.yb_c00335{bottom:768.521467pt;}
.ya_c00335{bottom:780.521467pt;}
.y9_c00335{bottom:804.080533pt;}
.y8_c00335{bottom:816.080533pt;}
.y7_c00335{bottom:839.639733pt;}
.y6_c00335{bottom:851.639733pt;}
.y5_c00335{bottom:863.639733pt;}
.y4_c00335{bottom:883.419200pt;}
.y3_c00335{bottom:899.419200pt;}
.y2_c00335{bottom:922.978267pt;}
.y19_c00335{bottom:924.710533pt;}
.y1_c00335{bottom:972.089733pt;}
.h7_c00335{height:22.400000pt;}
.h6_c00335{height:26.917333pt;}
.h4_c00335{height:30.293333pt;}
.h2_c00335{height:34.901333pt;}
.h3_c00335{height:38.453333pt;}
.h5_c00335{height:38.880000pt;}
.h1_c00335{height:1009.333333pt;}
.h0_c00335{height:1009.338800pt;}
.w0_c00335{width:794.622400pt;}
.w1_c00335{width:794.666667pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:68.980533pt;}
.x4_c00335{left:377.012000pt;}
.x2_c00335{left:532.917467pt;}
.x3_c00335{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00336;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00336;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;line-height:1.067000;font-style:normal;font-weight: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_c00336;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00336{font-family:ff8_c00336;line-height:0.710000;font-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_c00336{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls3_c00336{letter-spacing:-0.720000px;}
.ls4_c00336{letter-spacing:-0.630000px;}
.ls2_c00336{letter-spacing:-0.378000px;}
.ls1_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:0.480000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:-8.694000px;}
.ws2_c00336{word-spacing:-6.487200px;}
.ws0_c00336{word-spacing:-0.048000px;}
.ws3_c00336{word-spacing:0.000000px;}
.ws5_c00336{word-spacing:0.378000px;}
.ws4_c00336{word-spacing:7.056000px;}
._0_c00336{margin-left:-2755.276200px;}
._4_c00336{margin-left:-6.947400px;}
._1_c00336{margin-left:-2.256000px;}
._3_c00336{margin-left:-1.200000px;}
._2_c00336{width:1.008000px;}
._7_c00336{width:7.776000px;}
._5_c00336{width:55.674000px;}
._6_c00336{width:59.136000px;}
.fc0_c00336{color:rgb(35,31,32);}
.fs5_c00336{font-size:30.600000px;}
.fs6_c00336{font-size:36.000000px;}
.fs3_c00336{font-size:42.000000px;}
.fs0_c00336{font-size:48.000000px;}
.fs4_c00336{font-size:54.000000px;}
.fs2_c00336{font-size:57.000000px;}
.fs1_c00336{font-size:60.000000px;}
.y0_c00336{bottom:0.000000px;}
.y18_c00336{bottom:360.834900px;}
.y17_c00336{bottom:374.334900px;}
.y16_c00336{bottom:387.834900px;}
.y15_c00336{bottom:414.338700px;}
.y14_c00336{bottom:427.838700px;}
.y13_c00336{bottom:454.342650px;}
.y12_c00336{bottom:467.842650px;}
.y11_c00336{bottom:481.342650px;}
.y10_c00336{bottom:503.594700px;}
.yf_c00336{bottom:521.594700px;}
.ye_c00336{bottom:548.098650px;}
.y19_c00336{bottom:551.323050px;}
.yd_c00336{bottom:837.374100px;}
.yc_c00336{bottom:850.874100px;}
.yb_c00336{bottom:864.374100px;}
.ya_c00336{bottom:890.878050px;}
.y9_c00336{bottom:904.378050px;}
.y8_c00336{bottom:917.878050px;}
.y7_c00336{bottom:944.382000px;}
.y6_c00336{bottom:957.882000px;}
.y5_c00336{bottom:971.382000px;}
.y4_c00336{bottom:993.633900px;}
.y3_c00336{bottom:1011.633900px;}
.y2_c00336{bottom:1038.137850px;}
.y1_c00336{bottom:1093.600950px;}
.h8_c00336{height:25.200000px;}
.h7_c00336{height:30.282000px;}
.h5_c00336{height:34.080000px;}
.h2_c00336{height:39.264000px;}
.h3_c00336{height:39.984000px;}
.h4_c00336{height:43.260000px;}
.h6_c00336{height:43.740000px;}
.h1_c00336{height:1135.500000px;}
.h0_c00336{height:1135.506150px;}
.w0_c00336{width:893.950200px;}
.w1_c00336{width:894.000000px;}
.x0_c00336{left:0.000000px;}
.x4_c00336{left:128.744700px;}
.x5_c00336{left:141.500700px;}
.x2_c00336{left:188.061900px;}
.x3_c00336{left:190.513350px;}
.x6_c00336{left:321.375900px;}
.x1_c00336{left:800.165850px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls3_c00336{letter-spacing:-0.640000pt;}
.ls4_c00336{letter-spacing:-0.560000pt;}
.ls2_c00336{letter-spacing:-0.336000pt;}
.ls1_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.426667pt;}
.ws1_c00336{word-spacing:-7.728000pt;}
.ws2_c00336{word-spacing:-5.766400pt;}
.ws0_c00336{word-spacing:-0.042667pt;}
.ws3_c00336{word-spacing:0.000000pt;}
.ws5_c00336{word-spacing:0.336000pt;}
.ws4_c00336{word-spacing:6.272000pt;}
._0_c00336{margin-left:-2449.134400pt;}
._4_c00336{margin-left:-6.175467pt;}
._1_c00336{margin-left:-2.005333pt;}
._3_c00336{margin-left:-1.066667pt;}
._2_c00336{width:0.896000pt;}
._7_c00336{width:6.912000pt;}
._5_c00336{width:49.488000pt;}
._6_c00336{width:52.565333pt;}
.fs5_c00336{font-size:27.200000pt;}
.fs6_c00336{font-size:32.000000pt;}
.fs3_c00336{font-size:37.333333pt;}
.fs0_c00336{font-size:42.666667pt;}
.fs4_c00336{font-size:48.000000pt;}
.fs2_c00336{font-size:50.666667pt;}
.fs1_c00336{font-size:53.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y18_c00336{bottom:320.742133pt;}
.y17_c00336{bottom:332.742133pt;}
.y16_c00336{bottom:344.742133pt;}
.y15_c00336{bottom:368.301067pt;}
.y14_c00336{bottom:380.301067pt;}
.y13_c00336{bottom:403.860133pt;}
.y12_c00336{bottom:415.860133pt;}
.y11_c00336{bottom:427.860133pt;}
.y10_c00336{bottom:447.639733pt;}
.yf_c00336{bottom:463.639733pt;}
.ye_c00336{bottom:487.198800pt;}
.y19_c00336{bottom:490.064933pt;}
.yd_c00336{bottom:744.332533pt;}
.yc_c00336{bottom:756.332533pt;}
.yb_c00336{bottom:768.332533pt;}
.ya_c00336{bottom:791.891600pt;}
.y9_c00336{bottom:803.891600pt;}
.y8_c00336{bottom:815.891600pt;}
.y7_c00336{bottom:839.450667pt;}
.y6_c00336{bottom:851.450667pt;}
.y5_c00336{bottom:863.450667pt;}
.y4_c00336{bottom:883.230133pt;}
.y3_c00336{bottom:899.230133pt;}
.y2_c00336{bottom:922.789200pt;}
.y1_c00336{bottom:972.089733pt;}
.h8_c00336{height:22.400000pt;}
.h7_c00336{height:26.917333pt;}
.h5_c00336{height:30.293333pt;}
.h2_c00336{height:34.901333pt;}
.h3_c00336{height:35.541333pt;}
.h4_c00336{height:38.453333pt;}
.h6_c00336{height:38.880000pt;}
.h1_c00336{height:1009.333333pt;}
.h0_c00336{height:1009.338800pt;}
.w0_c00336{width:794.622400pt;}
.w1_c00336{width:794.666667pt;}
.x0_c00336{left:0.000000pt;}
.x4_c00336{left:114.439733pt;}
.x5_c00336{left:125.778400pt;}
.x2_c00336{left:167.166133pt;}
.x3_c00336{left:169.345200pt;}
.x6_c00336{left:285.667467pt;}
.x1_c00336{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00337;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00337{font-family:ff6_c00337;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00337;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00337{font-family:ff7_c00337;line-height:0.710000;font-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_c00337{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls1_c00337{letter-spacing:-1.026000px;}
.ls2_c00337{letter-spacing:-0.720000px;}
.ls3_c00337{letter-spacing:-0.630000px;}
.ls4_c00337{letter-spacing:-0.378000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00337{word-spacing:-8.694000px;}
.ws2_c00337{word-spacing:-6.487200px;}
.ws3_c00337{word-spacing:0.000000px;}
.ws6_c00337{word-spacing:0.378000px;}
.ws4_c00337{word-spacing:7.056000px;}
.ws5_c00337{word-spacing:56.700000px;}
.ws0_c00337{word-spacing:1585.435200px;}
._3_c00337{margin-left:-7.042800px;}
._0_c00337{margin-left:-2.112000px;}
._1_c00337{margin-left:-1.104000px;}
._2_c00337{width:2.016000px;}
._5_c00337{width:7.776000px;}
._6_c00337{width:55.674000px;}
._4_c00337{width:59.136000px;}
.fc0_c00337{color:rgb(35,31,32);}
.fs5_c00337{font-size:30.600000px;}
.fs6_c00337{font-size:36.000000px;}
.fs3_c00337{font-size:42.000000px;}
.fs0_c00337{font-size:48.000000px;}
.fs4_c00337{font-size:54.000000px;}
.fs2_c00337{font-size:57.000000px;}
.fs1_c00337{font-size:60.000000px;}
.y0_c00337{bottom:0.000000px;}
.y18_c00337{bottom:347.547450px;}
.y17_c00337{bottom:361.047450px;}
.y16_c00337{bottom:374.547450px;}
.y15_c00337{bottom:401.051400px;}
.y14_c00337{bottom:414.551400px;}
.y13_c00337{bottom:428.051400px;}
.y12_c00337{bottom:454.555350px;}
.y11_c00337{bottom:468.055350px;}
.y10_c00337{bottom:481.555350px;}
.yf_c00337{bottom:503.807250px;}
.ye_c00337{bottom:521.807250px;}
.yd_c00337{bottom:548.311200px;}
.yc_c00337{bottom:850.023600px;}
.yb_c00337{bottom:863.523600px;}
.ya_c00337{bottom:877.023600px;}
.y9_c00337{bottom:903.527550px;}
.y8_c00337{bottom:917.027550px;}
.y7_c00337{bottom:943.531500px;}
.y6_c00337{bottom:957.031500px;}
.y5_c00337{bottom:970.531500px;}
.y4_c00337{bottom:992.783550px;}
.y3_c00337{bottom:1010.783550px;}
.y2_c00337{bottom:1037.287500px;}
.y19_c00337{bottom:1040.299350px;}
.y1_c00337{bottom:1093.600950px;}
.h7_c00337{height:25.200000px;}
.h6_c00337{height:30.282000px;}
.h4_c00337{height:34.080000px;}
.h2_c00337{height:39.264000px;}
.h3_c00337{height:43.260000px;}
.h5_c00337{height:43.740000px;}
.h1_c00337{height:1135.500000px;}
.h0_c00337{height:1135.506150px;}
.w0_c00337{width:893.950200px;}
.w1_c00337{width:894.000000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:77.603100px;}
.x4_c00337{left:424.138500px;}
.x2_c00337{left:599.532150px;}
.x3_c00337{left:612.288150px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls1_c00337{letter-spacing:-0.912000pt;}
.ls2_c00337{letter-spacing:-0.640000pt;}
.ls3_c00337{letter-spacing:-0.560000pt;}
.ls4_c00337{letter-spacing:-0.336000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws1_c00337{word-spacing:-7.728000pt;}
.ws2_c00337{word-spacing:-5.766400pt;}
.ws3_c00337{word-spacing:0.000000pt;}
.ws6_c00337{word-spacing:0.336000pt;}
.ws4_c00337{word-spacing:6.272000pt;}
.ws5_c00337{word-spacing:50.400000pt;}
.ws0_c00337{word-spacing:1409.275733pt;}
._3_c00337{margin-left:-6.260267pt;}
._0_c00337{margin-left:-1.877333pt;}
._1_c00337{margin-left:-0.981333pt;}
._2_c00337{width:1.792000pt;}
._5_c00337{width:6.912000pt;}
._6_c00337{width:49.488000pt;}
._4_c00337{width:52.565333pt;}
.fs5_c00337{font-size:27.200000pt;}
.fs6_c00337{font-size:32.000000pt;}
.fs3_c00337{font-size:37.333333pt;}
.fs0_c00337{font-size:42.666667pt;}
.fs4_c00337{font-size:48.000000pt;}
.fs2_c00337{font-size:50.666667pt;}
.fs1_c00337{font-size:53.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y18_c00337{bottom:308.931067pt;}
.y17_c00337{bottom:320.931067pt;}
.y16_c00337{bottom:332.931067pt;}
.y15_c00337{bottom:356.490133pt;}
.y14_c00337{bottom:368.490133pt;}
.y13_c00337{bottom:380.490133pt;}
.y12_c00337{bottom:404.049200pt;}
.y11_c00337{bottom:416.049200pt;}
.y10_c00337{bottom:428.049200pt;}
.yf_c00337{bottom:447.828667pt;}
.ye_c00337{bottom:463.828667pt;}
.yd_c00337{bottom:487.387733pt;}
.yc_c00337{bottom:755.576533pt;}
.yb_c00337{bottom:767.576533pt;}
.ya_c00337{bottom:779.576533pt;}
.y9_c00337{bottom:803.135600pt;}
.y8_c00337{bottom:815.135600pt;}
.y7_c00337{bottom:838.694667pt;}
.y6_c00337{bottom:850.694667pt;}
.y5_c00337{bottom:862.694667pt;}
.y4_c00337{bottom:882.474267pt;}
.y3_c00337{bottom:898.474267pt;}
.y2_c00337{bottom:922.033333pt;}
.y19_c00337{bottom:924.710533pt;}
.y1_c00337{bottom:972.089733pt;}
.h7_c00337{height:22.400000pt;}
.h6_c00337{height:26.917333pt;}
.h4_c00337{height:30.293333pt;}
.h2_c00337{height:34.901333pt;}
.h3_c00337{height:38.453333pt;}
.h5_c00337{height:38.880000pt;}
.h1_c00337{height:1009.333333pt;}
.h0_c00337{height:1009.338800pt;}
.w0_c00337{width:794.622400pt;}
.w1_c00337{width:794.666667pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:68.980533pt;}
.x4_c00337{left:377.012000pt;}
.x2_c00337{left:532.917467pt;}
.x3_c00337{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00338;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;line-height:0.908000;font-style:normal;font-weight: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_c00338;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00338{font-family:ff7_c00338;line-height:1.067000;font-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_c00338{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls3_c00338{letter-spacing:-0.720000px;}
.ls4_c00338{letter-spacing:-0.630000px;}
.ls2_c00338{letter-spacing:-0.540000px;}
.ls5_c00338{letter-spacing:-0.270000px;}
.ls1_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00338{word-spacing:-0.048000px;}
.ws2_c00338{word-spacing:0.000000px;}
.ws5_c00338{word-spacing:0.270000px;}
.ws4_c00338{word-spacing:0.540000px;}
.ws3_c00338{word-spacing:7.056000px;}
._0_c00338{margin-left:-2755.276200px;}
._4_c00338{margin-left:-6.946800px;}
._6_c00338{margin-left:-3.510000px;}
._1_c00338{margin-left:-2.256000px;}
._3_c00338{margin-left:-1.200000px;}
._2_c00338{width:1.008000px;}
._8_c00338{width:7.776000px;}
._5_c00338{width:55.674000px;}
._7_c00338{width:59.136000px;}
.fc0_c00338{color:rgb(35,31,32);}
.fs3_c00338{font-size:42.000000px;}
.fs0_c00338{font-size:48.000000px;}
.fs4_c00338{font-size:54.000000px;}
.fs2_c00338{font-size:57.000000px;}
.fs1_c00338{font-size:60.000000px;}
.y0_c00338{bottom:0.000000px;}
.y1a_c00338{bottom:329.547450px;}
.y19_c00338{bottom:343.047450px;}
.y18_c00338{bottom:356.547450px;}
.y17_c00338{bottom:383.051400px;}
.y16_c00338{bottom:396.551400px;}
.y15_c00338{bottom:410.051400px;}
.y14_c00338{bottom:436.555350px;}
.y13_c00338{bottom:450.055350px;}
.y12_c00338{bottom:463.555350px;}
.y11_c00338{bottom:485.807250px;}
.y10_c00338{bottom:503.807250px;}
.yf_c00338{bottom:521.807250px;}
.ye_c00338{bottom:548.311200px;}
.yd_c00338{bottom:836.523600px;}
.yc_c00338{bottom:850.023600px;}
.yb_c00338{bottom:863.523600px;}
.ya_c00338{bottom:890.027550px;}
.y9_c00338{bottom:903.527550px;}
.y8_c00338{bottom:917.027550px;}
.y7_c00338{bottom:943.531500px;}
.y6_c00338{bottom:957.031500px;}
.y5_c00338{bottom:970.531500px;}
.y4_c00338{bottom:992.783550px;}
.y3_c00338{bottom:1010.783550px;}
.y2_c00338{bottom:1037.287500px;}
.y1_c00338{bottom:1093.600950px;}
.h7_c00338{height:30.282000px;}
.h5_c00338{height:34.080000px;}
.h2_c00338{height:39.264000px;}
.h3_c00338{height:39.984000px;}
.h4_c00338{height:43.260000px;}
.h6_c00338{height:43.740000px;}
.h1_c00338{height:1135.500000px;}
.h0_c00338{height:1135.506150px;}
.w0_c00338{width:893.950200px;}
.w1_c00338{width:894.000000px;}
.x0_c00338{left:0.000000px;}
.x4_c00338{left:128.626800px;}
.x5_c00338{left:141.382650px;}
.x6_c00338{left:145.634700px;}
.x2_c00338{left:188.061900px;}
.x3_c00338{left:190.513350px;}
.x1_c00338{left:800.165850px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls3_c00338{letter-spacing:-0.640000pt;}
.ls4_c00338{letter-spacing:-0.560000pt;}
.ls2_c00338{letter-spacing:-0.480000pt;}
.ls5_c00338{letter-spacing:-0.240000pt;}
.ls1_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:0.426667pt;}
.ws1_c00338{word-spacing:-7.728000pt;}
.ws0_c00338{word-spacing:-0.042667pt;}
.ws2_c00338{word-spacing:0.000000pt;}
.ws5_c00338{word-spacing:0.240000pt;}
.ws4_c00338{word-spacing:0.480000pt;}
.ws3_c00338{word-spacing:6.272000pt;}
._0_c00338{margin-left:-2449.134400pt;}
._4_c00338{margin-left:-6.174933pt;}
._6_c00338{margin-left:-3.120000pt;}
._1_c00338{margin-left:-2.005333pt;}
._3_c00338{margin-left:-1.066667pt;}
._2_c00338{width:0.896000pt;}
._8_c00338{width:6.912000pt;}
._5_c00338{width:49.488000pt;}
._7_c00338{width:52.565333pt;}
.fs3_c00338{font-size:37.333333pt;}
.fs0_c00338{font-size:42.666667pt;}
.fs4_c00338{font-size:48.000000pt;}
.fs2_c00338{font-size:50.666667pt;}
.fs1_c00338{font-size:53.333333pt;}
.y0_c00338{bottom:0.000000pt;}
.y1a_c00338{bottom:292.931067pt;}
.y19_c00338{bottom:304.931067pt;}
.y18_c00338{bottom:316.931067pt;}
.y17_c00338{bottom:340.490133pt;}
.y16_c00338{bottom:352.490133pt;}
.y15_c00338{bottom:364.490133pt;}
.y14_c00338{bottom:388.049200pt;}
.y13_c00338{bottom:400.049200pt;}
.y12_c00338{bottom:412.049200pt;}
.y11_c00338{bottom:431.828667pt;}
.y10_c00338{bottom:447.828667pt;}
.yf_c00338{bottom:463.828667pt;}
.ye_c00338{bottom:487.387733pt;}
.yd_c00338{bottom:743.576533pt;}
.yc_c00338{bottom:755.576533pt;}
.yb_c00338{bottom:767.576533pt;}
.ya_c00338{bottom:791.135600pt;}
.y9_c00338{bottom:803.135600pt;}
.y8_c00338{bottom:815.135600pt;}
.y7_c00338{bottom:838.694667pt;}
.y6_c00338{bottom:850.694667pt;}
.y5_c00338{bottom:862.694667pt;}
.y4_c00338{bottom:882.474267pt;}
.y3_c00338{bottom:898.474267pt;}
.y2_c00338{bottom:922.033333pt;}
.y1_c00338{bottom:972.089733pt;}
.h7_c00338{height:26.917333pt;}
.h5_c00338{height:30.293333pt;}
.h2_c00338{height:34.901333pt;}
.h3_c00338{height:35.541333pt;}
.h4_c00338{height:38.453333pt;}
.h6_c00338{height:38.880000pt;}
.h1_c00338{height:1009.333333pt;}
.h0_c00338{height:1009.338800pt;}
.w0_c00338{width:794.622400pt;}
.w1_c00338{width:794.666667pt;}
.x0_c00338{left:0.000000pt;}
.x4_c00338{left:114.334933pt;}
.x5_c00338{left:125.673467pt;}
.x6_c00338{left:129.453067pt;}
.x2_c00338{left:167.166133pt;}
.x3_c00338{left:169.345200pt;}
.x1_c00338{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00339;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00339{font-family:ff6_c00339;line-height:1.067000;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00339{font-family:ff7_c00339;line-height:0.710000;font-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_c00339{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls1_c00339{letter-spacing:-0.720000px;}
.ls2_c00339{letter-spacing:-0.630000px;}
.ls0_c00339{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00339{word-spacing:-8.694000px;}
.ws2_c00339{word-spacing:-6.487200px;}
.ws3_c00339{word-spacing:0.000000px;}
.ws4_c00339{word-spacing:7.056000px;}
.ws0_c00339{word-spacing:1585.435200px;}
._3_c00339{margin-left:-7.042800px;}
._0_c00339{margin-left:-2.112000px;}
._1_c00339{margin-left:-1.104000px;}
._2_c00339{width:2.016000px;}
._6_c00339{width:7.776000px;}
._4_c00339{width:55.674000px;}
._5_c00339{width:59.136000px;}
.fc0_c00339{color:rgb(35,31,32);}
.fs5_c00339{font-size:30.600000px;}
.fs6_c00339{font-size:36.000000px;}
.fs3_c00339{font-size:42.000000px;}
.fs0_c00339{font-size:48.000000px;}
.fs4_c00339{font-size:54.000000px;}
.fs2_c00339{font-size:57.000000px;}
.fs1_c00339{font-size:60.000000px;}
.y0_c00339{bottom:0.000000px;}
.y18_c00339{bottom:347.742900px;}
.y17_c00339{bottom:361.242900px;}
.y16_c00339{bottom:374.742900px;}
.y15_c00339{bottom:401.246850px;}
.y14_c00339{bottom:414.746850px;}
.y13_c00339{bottom:428.246850px;}
.y12_c00339{bottom:454.750800px;}
.y11_c00339{bottom:468.250800px;}
.y10_c00339{bottom:481.750800px;}
.yf_c00339{bottom:504.002700px;}
.ye_c00339{bottom:522.002700px;}
.yd_c00339{bottom:548.506650px;}
.yc_c00339{bottom:850.219200px;}
.yb_c00339{bottom:863.719200px;}
.ya_c00339{bottom:877.219200px;}
.y9_c00339{bottom:903.723150px;}
.y8_c00339{bottom:917.223150px;}
.y7_c00339{bottom:943.727100px;}
.y6_c00339{bottom:957.227100px;}
.y5_c00339{bottom:970.727100px;}
.y4_c00339{bottom:992.979000px;}
.y3_c00339{bottom:1010.979000px;}
.y2_c00339{bottom:1037.483100px;}
.y19_c00339{bottom:1040.494800px;}
.y1_c00339{bottom:1093.600950px;}
.h7_c00339{height:25.200000px;}
.h6_c00339{height:30.282000px;}
.h4_c00339{height:34.080000px;}
.h2_c00339{height:39.264000px;}
.h3_c00339{height:43.260000px;}
.h5_c00339{height:43.740000px;}
.h1_c00339{height:1135.500000px;}
.h0_c00339{height:1135.506150px;}
.w0_c00339{width:893.950200px;}
.w1_c00339{width:894.000000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:77.603100px;}
.x4_c00339{left:424.138500px;}
.x2_c00339{left:599.532150px;}
.x3_c00339{left:612.288150px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls1_c00339{letter-spacing:-0.640000pt;}
.ls2_c00339{letter-spacing:-0.560000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws1_c00339{word-spacing:-7.728000pt;}
.ws2_c00339{word-spacing:-5.766400pt;}
.ws3_c00339{word-spacing:0.000000pt;}
.ws4_c00339{word-spacing:6.272000pt;}
.ws0_c00339{word-spacing:1409.275733pt;}
._3_c00339{margin-left:-6.260267pt;}
._0_c00339{margin-left:-1.877333pt;}
._1_c00339{margin-left:-0.981333pt;}
._2_c00339{width:1.792000pt;}
._6_c00339{width:6.912000pt;}
._4_c00339{width:49.488000pt;}
._5_c00339{width:52.565333pt;}
.fs5_c00339{font-size:27.200000pt;}
.fs6_c00339{font-size:32.000000pt;}
.fs3_c00339{font-size:37.333333pt;}
.fs0_c00339{font-size:42.666667pt;}
.fs4_c00339{font-size:48.000000pt;}
.fs2_c00339{font-size:50.666667pt;}
.fs1_c00339{font-size:53.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y18_c00339{bottom:309.104800pt;}
.y17_c00339{bottom:321.104800pt;}
.y16_c00339{bottom:333.104800pt;}
.y15_c00339{bottom:356.663867pt;}
.y14_c00339{bottom:368.663867pt;}
.y13_c00339{bottom:380.663867pt;}
.y12_c00339{bottom:404.222933pt;}
.y11_c00339{bottom:416.222933pt;}
.y10_c00339{bottom:428.222933pt;}
.yf_c00339{bottom:448.002400pt;}
.ye_c00339{bottom:464.002400pt;}
.yd_c00339{bottom:487.561467pt;}
.yc_c00339{bottom:755.750400pt;}
.yb_c00339{bottom:767.750400pt;}
.ya_c00339{bottom:779.750400pt;}
.y9_c00339{bottom:803.309467pt;}
.y8_c00339{bottom:815.309467pt;}
.y7_c00339{bottom:838.868533pt;}
.y6_c00339{bottom:850.868533pt;}
.y5_c00339{bottom:862.868533pt;}
.y4_c00339{bottom:882.648000pt;}
.y3_c00339{bottom:898.648000pt;}
.y2_c00339{bottom:922.207200pt;}
.y19_c00339{bottom:924.884267pt;}
.y1_c00339{bottom:972.089733pt;}
.h7_c00339{height:22.400000pt;}
.h6_c00339{height:26.917333pt;}
.h4_c00339{height:30.293333pt;}
.h2_c00339{height:34.901333pt;}
.h3_c00339{height:38.453333pt;}
.h5_c00339{height:38.880000pt;}
.h1_c00339{height:1009.333333pt;}
.h0_c00339{height:1009.338800pt;}
.w0_c00339{width:794.622400pt;}
.w1_c00339{width:794.666667pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:68.980533pt;}
.x4_c00339{left:377.012000pt;}
.x2_c00339{left:532.917467pt;}
.x3_c00339{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00340;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00340{font-family:ff6_c00340;line-height:0.908000;font-style:normal;font-weight: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_c00340;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00340{font-family:ff7_c00340;line-height:1.067000;font-style:normal;font-weight: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_c00340;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00340{font-family:ff8_c00340;line-height:0.710000;font-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_c00340{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls3_c00340{letter-spacing:-0.720000px;}
.ls4_c00340{letter-spacing:-0.630000px;}
.ls2_c00340{letter-spacing:-0.216000px;}
.ls1_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00340{word-spacing:-6.487200px;}
.ws0_c00340{word-spacing:-0.048000px;}
.ws3_c00340{word-spacing:0.000000px;}
.ws5_c00340{word-spacing:0.216000px;}
.ws4_c00340{word-spacing:7.056000px;}
.ws6_c00340{word-spacing:55.674000px;}
._0_c00340{margin-left:-2755.276200px;}
._4_c00340{margin-left:-6.946800px;}
._1_c00340{margin-left:-2.256000px;}
._3_c00340{margin-left:-1.200000px;}
._2_c00340{width:1.008000px;}
._7_c00340{width:7.776000px;}
._5_c00340{width:55.674000px;}
._6_c00340{width:59.136000px;}
.fc0_c00340{color:rgb(35,31,32);}
.fs5_c00340{font-size:30.600000px;}
.fs6_c00340{font-size:36.000000px;}
.fs3_c00340{font-size:42.000000px;}
.fs0_c00340{font-size:48.000000px;}
.fs4_c00340{font-size:54.000000px;}
.fs2_c00340{font-size:57.000000px;}
.fs1_c00340{font-size:60.000000px;}
.y0_c00340{bottom:0.000000px;}
.y18_c00340{bottom:347.972700px;}
.y17_c00340{bottom:361.472700px;}
.y16_c00340{bottom:374.972550px;}
.y15_c00340{bottom:401.476500px;}
.y14_c00340{bottom:414.976500px;}
.y13_c00340{bottom:428.476500px;}
.y12_c00340{bottom:454.980450px;}
.y11_c00340{bottom:468.480450px;}
.y10_c00340{bottom:481.980450px;}
.yf_c00340{bottom:504.232500px;}
.ye_c00340{bottom:522.232500px;}
.yd_c00340{bottom:548.736450px;}
.yc_c00340{bottom:850.449000px;}
.yb_c00340{bottom:863.949000px;}
.ya_c00340{bottom:877.449000px;}
.y9_c00340{bottom:903.952950px;}
.y8_c00340{bottom:917.452950px;}
.y7_c00340{bottom:943.956900px;}
.y6_c00340{bottom:957.456900px;}
.y5_c00340{bottom:970.956900px;}
.y4_c00340{bottom:993.208800px;}
.y3_c00340{bottom:1011.208800px;}
.y2_c00340{bottom:1037.712750px;}
.y19_c00340{bottom:1040.299350px;}
.y1_c00340{bottom:1093.600950px;}
.h8_c00340{height:25.200000px;}
.h7_c00340{height:30.282000px;}
.h5_c00340{height:34.080000px;}
.h2_c00340{height:39.264000px;}
.h3_c00340{height:39.984000px;}
.h4_c00340{height:43.260000px;}
.h6_c00340{height:43.740000px;}
.h1_c00340{height:1135.500000px;}
.h0_c00340{height:1135.506150px;}
.w0_c00340{width:893.950200px;}
.w1_c00340{width:894.000000px;}
.x0_c00340{left:0.000000px;}
.x4_c00340{left:128.626800px;}
.x5_c00340{left:141.382650px;}
.x2_c00340{left:188.061900px;}
.x3_c00340{left:190.513350px;}
.x6_c00340{left:321.258000px;}
.x1_c00340{left:800.165850px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls3_c00340{letter-spacing:-0.640000pt;}
.ls4_c00340{letter-spacing:-0.560000pt;}
.ls2_c00340{letter-spacing:-0.192000pt;}
.ls1_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:0.426667pt;}
.ws1_c00340{word-spacing:-7.728000pt;}
.ws2_c00340{word-spacing:-5.766400pt;}
.ws0_c00340{word-spacing:-0.042667pt;}
.ws3_c00340{word-spacing:0.000000pt;}
.ws5_c00340{word-spacing:0.192000pt;}
.ws4_c00340{word-spacing:6.272000pt;}
.ws6_c00340{word-spacing:49.488000pt;}
._0_c00340{margin-left:-2449.134400pt;}
._4_c00340{margin-left:-6.174933pt;}
._1_c00340{margin-left:-2.005333pt;}
._3_c00340{margin-left:-1.066667pt;}
._2_c00340{width:0.896000pt;}
._7_c00340{width:6.912000pt;}
._5_c00340{width:49.488000pt;}
._6_c00340{width:52.565333pt;}
.fs5_c00340{font-size:27.200000pt;}
.fs6_c00340{font-size:32.000000pt;}
.fs3_c00340{font-size:37.333333pt;}
.fs0_c00340{font-size:42.666667pt;}
.fs4_c00340{font-size:48.000000pt;}
.fs2_c00340{font-size:50.666667pt;}
.fs1_c00340{font-size:53.333333pt;}
.y0_c00340{bottom:0.000000pt;}
.y18_c00340{bottom:309.309067pt;}
.y17_c00340{bottom:321.309067pt;}
.y16_c00340{bottom:333.308933pt;}
.y15_c00340{bottom:356.868000pt;}
.y14_c00340{bottom:368.868000pt;}
.y13_c00340{bottom:380.868000pt;}
.y12_c00340{bottom:404.427067pt;}
.y11_c00340{bottom:416.427067pt;}
.y10_c00340{bottom:428.427067pt;}
.yf_c00340{bottom:448.206667pt;}
.ye_c00340{bottom:464.206667pt;}
.yd_c00340{bottom:487.765733pt;}
.yc_c00340{bottom:755.954667pt;}
.yb_c00340{bottom:767.954667pt;}
.ya_c00340{bottom:779.954667pt;}
.y9_c00340{bottom:803.513733pt;}
.y8_c00340{bottom:815.513733pt;}
.y7_c00340{bottom:839.072800pt;}
.y6_c00340{bottom:851.072800pt;}
.y5_c00340{bottom:863.072800pt;}
.y4_c00340{bottom:882.852267pt;}
.y3_c00340{bottom:898.852267pt;}
.y2_c00340{bottom:922.411333pt;}
.y19_c00340{bottom:924.710533pt;}
.y1_c00340{bottom:972.089733pt;}
.h8_c00340{height:22.400000pt;}
.h7_c00340{height:26.917333pt;}
.h5_c00340{height:30.293333pt;}
.h2_c00340{height:34.901333pt;}
.h3_c00340{height:35.541333pt;}
.h4_c00340{height:38.453333pt;}
.h6_c00340{height:38.880000pt;}
.h1_c00340{height:1009.333333pt;}
.h0_c00340{height:1009.338800pt;}
.w0_c00340{width:794.622400pt;}
.w1_c00340{width:794.666667pt;}
.x0_c00340{left:0.000000pt;}
.x4_c00340{left:114.334933pt;}
.x5_c00340{left:125.673467pt;}
.x2_c00340{left:167.166133pt;}
.x3_c00340{left:169.345200pt;}
.x6_c00340{left:285.562667pt;}
.x1_c00340{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00341;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:1.067000;font-style:normal;font-weight: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_c00341;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00341{font-family:ff7_c00341;line-height:0.710000;font-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_c00341{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls2_c00341{letter-spacing:-0.720000px;}
.ls3_c00341{letter-spacing:-0.630000px;}
.ls4_c00341{letter-spacing:-0.378000px;}
.ls1_c00341{letter-spacing:-0.216000px;}
.ls0_c00341{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00341{word-spacing:-8.694000px;}
.ws2_c00341{word-spacing:-6.487200px;}
.ws3_c00341{word-spacing:0.000000px;}
.ws5_c00341{word-spacing:0.216000px;}
.ws4_c00341{word-spacing:7.056000px;}
.ws6_c00341{word-spacing:56.052000px;}
.ws0_c00341{word-spacing:1585.435200px;}
._3_c00341{margin-left:-7.042800px;}
._0_c00341{margin-left:-2.112000px;}
._1_c00341{margin-left:-1.104000px;}
._2_c00341{width:2.016000px;}
._6_c00341{width:7.776000px;}
._4_c00341{width:55.674000px;}
._5_c00341{width:59.136000px;}
.fc0_c00341{color:rgb(35,31,32);}
.fs5_c00341{font-size:30.600000px;}
.fs6_c00341{font-size:36.000000px;}
.fs3_c00341{font-size:42.000000px;}
.fs0_c00341{font-size:48.000000px;}
.fs4_c00341{font-size:54.000000px;}
.fs2_c00341{font-size:57.000000px;}
.fs1_c00341{font-size:60.000000px;}
.y0_c00341{bottom:0.000000px;}
.y18_c00341{bottom:361.889250px;}
.y17_c00341{bottom:375.389250px;}
.y16_c00341{bottom:388.889250px;}
.y15_c00341{bottom:415.393200px;}
.y14_c00341{bottom:428.893200px;}
.y13_c00341{bottom:455.397150px;}
.y12_c00341{bottom:468.897150px;}
.y11_c00341{bottom:482.397150px;}
.y10_c00341{bottom:504.649050px;}
.yf_c00341{bottom:522.649050px;}
.ye_c00341{bottom:549.153000px;}
.y19_c00341{bottom:550.897800px;}
.yd_c00341{bottom:837.365550px;}
.yc_c00341{bottom:850.865550px;}
.yb_c00341{bottom:864.365550px;}
.ya_c00341{bottom:890.869500px;}
.y9_c00341{bottom:904.369500px;}
.y8_c00341{bottom:917.869500px;}
.y7_c00341{bottom:944.373450px;}
.y6_c00341{bottom:957.873450px;}
.y5_c00341{bottom:971.373450px;}
.y4_c00341{bottom:993.625350px;}
.y3_c00341{bottom:1011.625350px;}
.y2_c00341{bottom:1038.129450px;}
.y1_c00341{bottom:1093.600950px;}
.h7_c00341{height:25.200000px;}
.h6_c00341{height:30.282000px;}
.h4_c00341{height:34.080000px;}
.h2_c00341{height:39.264000px;}
.h3_c00341{height:43.260000px;}
.h5_c00341{height:43.740000px;}
.h1_c00341{height:1135.500000px;}
.h0_c00341{height:1135.506150px;}
.w0_c00341{width:893.950200px;}
.w1_c00341{width:894.000000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:77.603100px;}
.x4_c00341{left:424.138500px;}
.x2_c00341{left:599.532150px;}
.x3_c00341{left:612.288150px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls2_c00341{letter-spacing:-0.640000pt;}
.ls3_c00341{letter-spacing:-0.560000pt;}
.ls4_c00341{letter-spacing:-0.336000pt;}
.ls1_c00341{letter-spacing:-0.192000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws1_c00341{word-spacing:-7.728000pt;}
.ws2_c00341{word-spacing:-5.766400pt;}
.ws3_c00341{word-spacing:0.000000pt;}
.ws5_c00341{word-spacing:0.192000pt;}
.ws4_c00341{word-spacing:6.272000pt;}
.ws6_c00341{word-spacing:49.824000pt;}
.ws0_c00341{word-spacing:1409.275733pt;}
._3_c00341{margin-left:-6.260267pt;}
._0_c00341{margin-left:-1.877333pt;}
._1_c00341{margin-left:-0.981333pt;}
._2_c00341{width:1.792000pt;}
._6_c00341{width:6.912000pt;}
._4_c00341{width:49.488000pt;}
._5_c00341{width:52.565333pt;}
.fs5_c00341{font-size:27.200000pt;}
.fs6_c00341{font-size:32.000000pt;}
.fs3_c00341{font-size:37.333333pt;}
.fs0_c00341{font-size:42.666667pt;}
.fs4_c00341{font-size:48.000000pt;}
.fs2_c00341{font-size:50.666667pt;}
.fs1_c00341{font-size:53.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y18_c00341{bottom:321.679333pt;}
.y17_c00341{bottom:333.679333pt;}
.y16_c00341{bottom:345.679333pt;}
.y15_c00341{bottom:369.238400pt;}
.y14_c00341{bottom:381.238400pt;}
.y13_c00341{bottom:404.797467pt;}
.y12_c00341{bottom:416.797467pt;}
.y11_c00341{bottom:428.797467pt;}
.y10_c00341{bottom:448.576933pt;}
.yf_c00341{bottom:464.576933pt;}
.ye_c00341{bottom:488.136000pt;}
.y19_c00341{bottom:489.686933pt;}
.yd_c00341{bottom:744.324933pt;}
.yc_c00341{bottom:756.324933pt;}
.yb_c00341{bottom:768.324933pt;}
.ya_c00341{bottom:791.884000pt;}
.y9_c00341{bottom:803.884000pt;}
.y8_c00341{bottom:815.884000pt;}
.y7_c00341{bottom:839.443067pt;}
.y6_c00341{bottom:851.443067pt;}
.y5_c00341{bottom:863.443067pt;}
.y4_c00341{bottom:883.222533pt;}
.y3_c00341{bottom:899.222533pt;}
.y2_c00341{bottom:922.781733pt;}
.y1_c00341{bottom:972.089733pt;}
.h7_c00341{height:22.400000pt;}
.h6_c00341{height:26.917333pt;}
.h4_c00341{height:30.293333pt;}
.h2_c00341{height:34.901333pt;}
.h3_c00341{height:38.453333pt;}
.h5_c00341{height:38.880000pt;}
.h1_c00341{height:1009.333333pt;}
.h0_c00341{height:1009.338800pt;}
.w0_c00341{width:794.622400pt;}
.w1_c00341{width:794.666667pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:68.980533pt;}
.x4_c00341{left:377.012000pt;}
.x2_c00341{left:532.917467pt;}
.x3_c00341{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00342;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00342{font-family:ff6_c00342;line-height:0.908000;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00342{font-family:ff7_c00342;line-height:1.067000;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00342{font-family:ff8_c00342;line-height:0.710000;font-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_c00342{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls3_c00342{letter-spacing:-0.720000px;}
.ls4_c00342{letter-spacing:-0.630000px;}
.ls5_c00342{letter-spacing:-0.540000px;}
.ls2_c00342{letter-spacing:-0.378000px;}
.ls1_c00342{letter-spacing:0.000000px;}
.ls0_c00342{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00342{word-spacing:-6.487200px;}
.ws0_c00342{word-spacing:-0.048000px;}
.ws3_c00342{word-spacing:0.000000px;}
.ws5_c00342{word-spacing:0.378000px;}
.ws6_c00342{word-spacing:0.540000px;}
.ws4_c00342{word-spacing:7.056000px;}
._0_c00342{margin-left:-2755.276200px;}
._4_c00342{margin-left:-6.946800px;}
._1_c00342{margin-left:-2.256000px;}
._3_c00342{margin-left:-1.200000px;}
._2_c00342{width:1.008000px;}
._7_c00342{width:7.776000px;}
._5_c00342{width:55.674000px;}
._6_c00342{width:59.136000px;}
.fc0_c00342{color:rgb(35,31,32);}
.fs5_c00342{font-size:30.600000px;}
.fs6_c00342{font-size:36.000000px;}
.fs3_c00342{font-size:42.000000px;}
.fs0_c00342{font-size:48.000000px;}
.fs4_c00342{font-size:54.000000px;}
.fs2_c00342{font-size:57.000000px;}
.fs1_c00342{font-size:60.000000px;}
.y0_c00342{bottom:0.000000px;}
.y19_c00342{bottom:329.972700px;}
.y18_c00342{bottom:343.472700px;}
.y17_c00342{bottom:356.972700px;}
.y16_c00342{bottom:383.476500px;}
.y15_c00342{bottom:396.976500px;}
.y14_c00342{bottom:410.476500px;}
.y13_c00342{bottom:436.980450px;}
.y12_c00342{bottom:450.480450px;}
.y11_c00342{bottom:463.980450px;}
.y10_c00342{bottom:486.232500px;}
.yf_c00342{bottom:504.232500px;}
.ye_c00342{bottom:522.232500px;}
.yd_c00342{bottom:548.736450px;}
.yc_c00342{bottom:850.449000px;}
.yb_c00342{bottom:863.949000px;}
.ya_c00342{bottom:877.449000px;}
.y9_c00342{bottom:903.952950px;}
.y8_c00342{bottom:917.452950px;}
.y7_c00342{bottom:943.956900px;}
.y6_c00342{bottom:957.456900px;}
.y5_c00342{bottom:970.956900px;}
.y4_c00342{bottom:993.208800px;}
.y3_c00342{bottom:1011.208800px;}
.y2_c00342{bottom:1037.712750px;}
.y1a_c00342{bottom:1040.299350px;}
.y1_c00342{bottom:1093.600950px;}
.h8_c00342{height:25.200000px;}
.h7_c00342{height:30.282000px;}
.h5_c00342{height:34.080000px;}
.h2_c00342{height:39.264000px;}
.h3_c00342{height:39.984000px;}
.h4_c00342{height:43.260000px;}
.h6_c00342{height:43.740000px;}
.h1_c00342{height:1135.500000px;}
.h0_c00342{height:1135.506150px;}
.w0_c00342{width:893.950200px;}
.w1_c00342{width:894.000000px;}
.x0_c00342{left:0.000000px;}
.x4_c00342{left:128.626800px;}
.x5_c00342{left:141.382650px;}
.x6_c00342{left:145.634700px;}
.x2_c00342{left:188.061900px;}
.x3_c00342{left:190.513350px;}
.x7_c00342{left:321.258000px;}
.x1_c00342{left:800.165850px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls3_c00342{letter-spacing:-0.640000pt;}
.ls4_c00342{letter-spacing:-0.560000pt;}
.ls5_c00342{letter-spacing:-0.480000pt;}
.ls2_c00342{letter-spacing:-0.336000pt;}
.ls1_c00342{letter-spacing:0.000000pt;}
.ls0_c00342{letter-spacing:0.426667pt;}
.ws1_c00342{word-spacing:-7.728000pt;}
.ws2_c00342{word-spacing:-5.766400pt;}
.ws0_c00342{word-spacing:-0.042667pt;}
.ws3_c00342{word-spacing:0.000000pt;}
.ws5_c00342{word-spacing:0.336000pt;}
.ws6_c00342{word-spacing:0.480000pt;}
.ws4_c00342{word-spacing:6.272000pt;}
._0_c00342{margin-left:-2449.134400pt;}
._4_c00342{margin-left:-6.174933pt;}
._1_c00342{margin-left:-2.005333pt;}
._3_c00342{margin-left:-1.066667pt;}
._2_c00342{width:0.896000pt;}
._7_c00342{width:6.912000pt;}
._5_c00342{width:49.488000pt;}
._6_c00342{width:52.565333pt;}
.fs5_c00342{font-size:27.200000pt;}
.fs6_c00342{font-size:32.000000pt;}
.fs3_c00342{font-size:37.333333pt;}
.fs0_c00342{font-size:42.666667pt;}
.fs4_c00342{font-size:48.000000pt;}
.fs2_c00342{font-size:50.666667pt;}
.fs1_c00342{font-size:53.333333pt;}
.y0_c00342{bottom:0.000000pt;}
.y19_c00342{bottom:293.309067pt;}
.y18_c00342{bottom:305.309067pt;}
.y17_c00342{bottom:317.309067pt;}
.y16_c00342{bottom:340.868000pt;}
.y15_c00342{bottom:352.868000pt;}
.y14_c00342{bottom:364.868000pt;}
.y13_c00342{bottom:388.427067pt;}
.y12_c00342{bottom:400.427067pt;}
.y11_c00342{bottom:412.427067pt;}
.y10_c00342{bottom:432.206667pt;}
.yf_c00342{bottom:448.206667pt;}
.ye_c00342{bottom:464.206667pt;}
.yd_c00342{bottom:487.765733pt;}
.yc_c00342{bottom:755.954667pt;}
.yb_c00342{bottom:767.954667pt;}
.ya_c00342{bottom:779.954667pt;}
.y9_c00342{bottom:803.513733pt;}
.y8_c00342{bottom:815.513733pt;}
.y7_c00342{bottom:839.072800pt;}
.y6_c00342{bottom:851.072800pt;}
.y5_c00342{bottom:863.072800pt;}
.y4_c00342{bottom:882.852267pt;}
.y3_c00342{bottom:898.852267pt;}
.y2_c00342{bottom:922.411333pt;}
.y1a_c00342{bottom:924.710533pt;}
.y1_c00342{bottom:972.089733pt;}
.h8_c00342{height:22.400000pt;}
.h7_c00342{height:26.917333pt;}
.h5_c00342{height:30.293333pt;}
.h2_c00342{height:34.901333pt;}
.h3_c00342{height:35.541333pt;}
.h4_c00342{height:38.453333pt;}
.h6_c00342{height:38.880000pt;}
.h1_c00342{height:1009.333333pt;}
.h0_c00342{height:1009.338800pt;}
.w0_c00342{width:794.622400pt;}
.w1_c00342{width:794.666667pt;}
.x0_c00342{left:0.000000pt;}
.x4_c00342{left:114.334933pt;}
.x5_c00342{left:125.673467pt;}
.x6_c00342{left:129.453067pt;}
.x2_c00342{left:167.166133pt;}
.x3_c00342{left:169.345200pt;}
.x7_c00342{left:285.562667pt;}
.x1_c00342{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00343;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00343{font-family:ff6_c00343;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls1_c00343{letter-spacing:-0.864000px;}
.ls2_c00343{letter-spacing:-0.720000px;}
.ls3_c00343{letter-spacing:-0.630000px;}
.ls0_c00343{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00343{word-spacing:-8.694000px;}
.ws2_c00343{word-spacing:0.000000px;}
.ws5_c00343{word-spacing:0.864000px;}
.ws3_c00343{word-spacing:7.056000px;}
.ws4_c00343{word-spacing:56.538000px;}
.ws0_c00343{word-spacing:1585.435200px;}
._3_c00343{margin-left:-7.042800px;}
._0_c00343{margin-left:-2.112000px;}
._1_c00343{margin-left:-1.104000px;}
._2_c00343{width:2.016000px;}
._5_c00343{width:7.776000px;}
._6_c00343{width:55.674000px;}
._4_c00343{width:59.136000px;}
.fc0_c00343{color:rgb(35,31,32);}
.fs3_c00343{font-size:42.000000px;}
.fs0_c00343{font-size:48.000000px;}
.fs4_c00343{font-size:54.000000px;}
.fs2_c00343{font-size:57.000000px;}
.fs1_c00343{font-size:60.000000px;}
.y0_c00343{bottom:0.000000px;}
.y19_c00343{bottom:347.964150px;}
.y18_c00343{bottom:361.464150px;}
.y17_c00343{bottom:374.964150px;}
.y16_c00343{bottom:401.467950px;}
.y15_c00343{bottom:414.967950px;}
.y14_c00343{bottom:428.467950px;}
.y13_c00343{bottom:454.971900px;}
.y12_c00343{bottom:468.471900px;}
.y11_c00343{bottom:481.971900px;}
.y10_c00343{bottom:504.223950px;}
.yf_c00343{bottom:522.223950px;}
.ye_c00343{bottom:548.727900px;}
.yd_c00343{bottom:836.940300px;}
.yc_c00343{bottom:850.440300px;}
.yb_c00343{bottom:863.940300px;}
.ya_c00343{bottom:890.444250px;}
.y9_c00343{bottom:903.944250px;}
.y8_c00343{bottom:917.444250px;}
.y7_c00343{bottom:943.948200px;}
.y6_c00343{bottom:957.448200px;}
.y5_c00343{bottom:970.948200px;}
.y4_c00343{bottom:993.200250px;}
.y3_c00343{bottom:1011.200250px;}
.y2_c00343{bottom:1037.704200px;}
.y1_c00343{bottom:1093.600950px;}
.h6_c00343{height:30.282000px;}
.h4_c00343{height:34.080000px;}
.h2_c00343{height:39.264000px;}
.h3_c00343{height:43.260000px;}
.h5_c00343{height:43.740000px;}
.h1_c00343{height:1135.500000px;}
.h0_c00343{height:1135.506150px;}
.w0_c00343{width:893.950200px;}
.w1_c00343{width:894.000000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:77.603100px;}
.x2_c00343{left:599.451450px;}
.x3_c00343{left:612.207300px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls1_c00343{letter-spacing:-0.768000pt;}
.ls2_c00343{letter-spacing:-0.640000pt;}
.ls3_c00343{letter-spacing:-0.560000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws1_c00343{word-spacing:-7.728000pt;}
.ws2_c00343{word-spacing:0.000000pt;}
.ws5_c00343{word-spacing:0.768000pt;}
.ws3_c00343{word-spacing:6.272000pt;}
.ws4_c00343{word-spacing:50.256000pt;}
.ws0_c00343{word-spacing:1409.275733pt;}
._3_c00343{margin-left:-6.260267pt;}
._0_c00343{margin-left:-1.877333pt;}
._1_c00343{margin-left:-0.981333pt;}
._2_c00343{width:1.792000pt;}
._5_c00343{width:6.912000pt;}
._6_c00343{width:49.488000pt;}
._4_c00343{width:52.565333pt;}
.fs3_c00343{font-size:37.333333pt;}
.fs0_c00343{font-size:42.666667pt;}
.fs4_c00343{font-size:48.000000pt;}
.fs2_c00343{font-size:50.666667pt;}
.fs1_c00343{font-size:53.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y19_c00343{bottom:309.301467pt;}
.y18_c00343{bottom:321.301467pt;}
.y17_c00343{bottom:333.301467pt;}
.y16_c00343{bottom:356.860400pt;}
.y15_c00343{bottom:368.860400pt;}
.y14_c00343{bottom:380.860400pt;}
.y13_c00343{bottom:404.419467pt;}
.y12_c00343{bottom:416.419467pt;}
.y11_c00343{bottom:428.419467pt;}
.y10_c00343{bottom:448.199067pt;}
.yf_c00343{bottom:464.199067pt;}
.ye_c00343{bottom:487.758133pt;}
.yd_c00343{bottom:743.946933pt;}
.yc_c00343{bottom:755.946933pt;}
.yb_c00343{bottom:767.946933pt;}
.ya_c00343{bottom:791.506000pt;}
.y9_c00343{bottom:803.506000pt;}
.y8_c00343{bottom:815.506000pt;}
.y7_c00343{bottom:839.065067pt;}
.y6_c00343{bottom:851.065067pt;}
.y5_c00343{bottom:863.065067pt;}
.y4_c00343{bottom:882.844667pt;}
.y3_c00343{bottom:898.844667pt;}
.y2_c00343{bottom:922.403733pt;}
.y1_c00343{bottom:972.089733pt;}
.h6_c00343{height:26.917333pt;}
.h4_c00343{height:30.293333pt;}
.h2_c00343{height:34.901333pt;}
.h3_c00343{height:38.453333pt;}
.h5_c00343{height:38.880000pt;}
.h1_c00343{height:1009.333333pt;}
.h0_c00343{height:1009.338800pt;}
.w0_c00343{width:794.622400pt;}
.w1_c00343{width:794.666667pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:68.980533pt;}
.x2_c00343{left:532.845733pt;}
.x3_c00343{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00344;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:0.908000;font-style:normal;font-weight: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_c00344;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00344{font-family:ff7_c00344;line-height:1.067000;font-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_c00344{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls2_c00344{letter-spacing:-0.720000px;}
.ls3_c00344{letter-spacing:-0.630000px;}
.ls1_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00344{word-spacing:-8.694000px;}
.ws0_c00344{word-spacing:-0.048000px;}
.ws2_c00344{word-spacing:0.000000px;}
.ws3_c00344{word-spacing:7.056000px;}
._0_c00344{margin-left:-2755.276200px;}
._4_c00344{margin-left:-6.947400px;}
._8_c00344{margin-left:-5.022000px;}
._1_c00344{margin-left:-2.256000px;}
._3_c00344{margin-left:-1.200000px;}
._2_c00344{width:1.008000px;}
._7_c00344{width:7.776000px;}
._5_c00344{width:55.674000px;}
._6_c00344{width:59.136000px;}
.fc0_c00344{color:rgb(35,31,32);}
.fs3_c00344{font-size:42.000000px;}
.fs0_c00344{font-size:48.000000px;}
.fs4_c00344{font-size:54.000000px;}
.fs2_c00344{font-size:57.000000px;}
.fs1_c00344{font-size:60.000000px;}
.y0_c00344{bottom:0.000000px;}
.y19_c00344{bottom:347.547450px;}
.y18_c00344{bottom:361.047450px;}
.y17_c00344{bottom:374.547450px;}
.y16_c00344{bottom:401.051400px;}
.y15_c00344{bottom:414.551400px;}
.y14_c00344{bottom:428.051400px;}
.y13_c00344{bottom:454.555350px;}
.y12_c00344{bottom:468.055350px;}
.y11_c00344{bottom:481.555350px;}
.y10_c00344{bottom:503.807250px;}
.yf_c00344{bottom:521.807250px;}
.ye_c00344{bottom:548.311200px;}
.yd_c00344{bottom:836.523600px;}
.yc_c00344{bottom:850.023600px;}
.yb_c00344{bottom:863.523600px;}
.ya_c00344{bottom:890.027550px;}
.y9_c00344{bottom:903.527550px;}
.y8_c00344{bottom:917.027550px;}
.y7_c00344{bottom:943.531500px;}
.y6_c00344{bottom:957.031500px;}
.y5_c00344{bottom:970.531500px;}
.y4_c00344{bottom:992.783550px;}
.y3_c00344{bottom:1010.783550px;}
.y2_c00344{bottom:1037.287500px;}
.y1_c00344{bottom:1093.600950px;}
.h7_c00344{height:30.282000px;}
.h5_c00344{height:34.080000px;}
.h2_c00344{height:39.264000px;}
.h3_c00344{height:39.984000px;}
.h4_c00344{height:43.260000px;}
.h6_c00344{height:43.740000px;}
.h1_c00344{height:1135.500000px;}
.h0_c00344{height:1135.506150px;}
.w0_c00344{width:893.950200px;}
.w1_c00344{width:894.000000px;}
.x0_c00344{left:0.000000px;}
.x4_c00344{left:128.545950px;}
.x5_c00344{left:141.301950px;}
.x2_c00344{left:188.061900px;}
.x3_c00344{left:190.513350px;}
.x1_c00344{left:800.165850px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls2_c00344{letter-spacing:-0.640000pt;}
.ls3_c00344{letter-spacing:-0.560000pt;}
.ls1_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:0.426667pt;}
.ws1_c00344{word-spacing:-7.728000pt;}
.ws0_c00344{word-spacing:-0.042667pt;}
.ws2_c00344{word-spacing:0.000000pt;}
.ws3_c00344{word-spacing:6.272000pt;}
._0_c00344{margin-left:-2449.134400pt;}
._4_c00344{margin-left:-6.175467pt;}
._8_c00344{margin-left:-4.464000pt;}
._1_c00344{margin-left:-2.005333pt;}
._3_c00344{margin-left:-1.066667pt;}
._2_c00344{width:0.896000pt;}
._7_c00344{width:6.912000pt;}
._5_c00344{width:49.488000pt;}
._6_c00344{width:52.565333pt;}
.fs3_c00344{font-size:37.333333pt;}
.fs0_c00344{font-size:42.666667pt;}
.fs4_c00344{font-size:48.000000pt;}
.fs2_c00344{font-size:50.666667pt;}
.fs1_c00344{font-size:53.333333pt;}
.y0_c00344{bottom:0.000000pt;}
.y19_c00344{bottom:308.931067pt;}
.y18_c00344{bottom:320.931067pt;}
.y17_c00344{bottom:332.931067pt;}
.y16_c00344{bottom:356.490133pt;}
.y15_c00344{bottom:368.490133pt;}
.y14_c00344{bottom:380.490133pt;}
.y13_c00344{bottom:404.049200pt;}
.y12_c00344{bottom:416.049200pt;}
.y11_c00344{bottom:428.049200pt;}
.y10_c00344{bottom:447.828667pt;}
.yf_c00344{bottom:463.828667pt;}
.ye_c00344{bottom:487.387733pt;}
.yd_c00344{bottom:743.576533pt;}
.yc_c00344{bottom:755.576533pt;}
.yb_c00344{bottom:767.576533pt;}
.ya_c00344{bottom:791.135600pt;}
.y9_c00344{bottom:803.135600pt;}
.y8_c00344{bottom:815.135600pt;}
.y7_c00344{bottom:838.694667pt;}
.y6_c00344{bottom:850.694667pt;}
.y5_c00344{bottom:862.694667pt;}
.y4_c00344{bottom:882.474267pt;}
.y3_c00344{bottom:898.474267pt;}
.y2_c00344{bottom:922.033333pt;}
.y1_c00344{bottom:972.089733pt;}
.h7_c00344{height:26.917333pt;}
.h5_c00344{height:30.293333pt;}
.h2_c00344{height:34.901333pt;}
.h3_c00344{height:35.541333pt;}
.h4_c00344{height:38.453333pt;}
.h6_c00344{height:38.880000pt;}
.h1_c00344{height:1009.333333pt;}
.h0_c00344{height:1009.338800pt;}
.w0_c00344{width:794.622400pt;}
.w1_c00344{width:794.666667pt;}
.x0_c00344{left:0.000000pt;}
.x4_c00344{left:114.263067pt;}
.x5_c00344{left:125.601733pt;}
.x2_c00344{left:167.166133pt;}
.x3_c00344{left:169.345200pt;}
.x1_c00344{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00345;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00345;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00345{font-family:ff7_c00345;line-height:0.710000;font-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_c00345{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls1_c00345{letter-spacing:-0.720000px;}
.ls2_c00345{letter-spacing:-0.630000px;}
.ls3_c00345{letter-spacing:-0.540000px;}
.ls0_c00345{letter-spacing:0.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-8.694000px;}
.ws2_c00345{word-spacing:-6.487200px;}
.ws3_c00345{word-spacing:0.000000px;}
.ws5_c00345{word-spacing:0.540000px;}
.ws4_c00345{word-spacing:7.056000px;}
.ws0_c00345{word-spacing:1585.435200px;}
._3_c00345{margin-left:-7.042800px;}
._0_c00345{margin-left:-2.112000px;}
._1_c00345{margin-left:-1.104000px;}
._2_c00345{width:2.016000px;}
._6_c00345{width:7.776000px;}
._4_c00345{width:55.674000px;}
._5_c00345{width:59.136000px;}
.fc0_c00345{color:rgb(35,31,32);}
.fs5_c00345{font-size:30.600000px;}
.fs6_c00345{font-size:36.000000px;}
.fs3_c00345{font-size:42.000000px;}
.fs0_c00345{font-size:48.000000px;}
.fs4_c00345{font-size:54.000000px;}
.fs2_c00345{font-size:57.000000px;}
.fs1_c00345{font-size:60.000000px;}
.y0_c00345{bottom:0.000000px;}
.y18_c00345{bottom:347.857800px;}
.y17_c00345{bottom:361.357800px;}
.y16_c00345{bottom:374.857800px;}
.y15_c00345{bottom:401.361750px;}
.y14_c00345{bottom:414.861750px;}
.y13_c00345{bottom:428.361750px;}
.y12_c00345{bottom:454.865700px;}
.y11_c00345{bottom:468.365700px;}
.y10_c00345{bottom:481.865700px;}
.yf_c00345{bottom:504.117600px;}
.ye_c00345{bottom:522.117600px;}
.yd_c00345{bottom:548.621550px;}
.yc_c00345{bottom:850.333950px;}
.yb_c00345{bottom:863.833950px;}
.ya_c00345{bottom:877.333950px;}
.y9_c00345{bottom:903.837900px;}
.y8_c00345{bottom:917.337900px;}
.y7_c00345{bottom:943.841850px;}
.y6_c00345{bottom:957.341850px;}
.y5_c00345{bottom:970.841850px;}
.y4_c00345{bottom:993.093900px;}
.y3_c00345{bottom:1011.093900px;}
.y2_c00345{bottom:1037.597850px;}
.y19_c00345{bottom:1039.767750px;}
.y1_c00345{bottom:1093.600950px;}
.h7_c00345{height:25.200000px;}
.h6_c00345{height:30.282000px;}
.h4_c00345{height:34.080000px;}
.h2_c00345{height:39.264000px;}
.h3_c00345{height:43.260000px;}
.h5_c00345{height:43.740000px;}
.h1_c00345{height:1135.500000px;}
.h0_c00345{height:1135.506150px;}
.w0_c00345{width:893.950200px;}
.w1_c00345{width:894.000000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:77.603100px;}
.x4_c00345{left:424.164000px;}
.x2_c00345{left:599.557650px;}
.x3_c00345{left:612.313650px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls1_c00345{letter-spacing:-0.640000pt;}
.ls2_c00345{letter-spacing:-0.560000pt;}
.ls3_c00345{letter-spacing:-0.480000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws1_c00345{word-spacing:-7.728000pt;}
.ws2_c00345{word-spacing:-5.766400pt;}
.ws3_c00345{word-spacing:0.000000pt;}
.ws5_c00345{word-spacing:0.480000pt;}
.ws4_c00345{word-spacing:6.272000pt;}
.ws0_c00345{word-spacing:1409.275733pt;}
._3_c00345{margin-left:-6.260267pt;}
._0_c00345{margin-left:-1.877333pt;}
._1_c00345{margin-left:-0.981333pt;}
._2_c00345{width:1.792000pt;}
._6_c00345{width:6.912000pt;}
._4_c00345{width:49.488000pt;}
._5_c00345{width:52.565333pt;}
.fs5_c00345{font-size:27.200000pt;}
.fs6_c00345{font-size:32.000000pt;}
.fs3_c00345{font-size:37.333333pt;}
.fs0_c00345{font-size:42.666667pt;}
.fs4_c00345{font-size:48.000000pt;}
.fs2_c00345{font-size:50.666667pt;}
.fs1_c00345{font-size:53.333333pt;}
.y0_c00345{bottom:0.000000pt;}
.y18_c00345{bottom:309.206933pt;}
.y17_c00345{bottom:321.206933pt;}
.y16_c00345{bottom:333.206933pt;}
.y15_c00345{bottom:356.766000pt;}
.y14_c00345{bottom:368.766000pt;}
.y13_c00345{bottom:380.766000pt;}
.y12_c00345{bottom:404.325067pt;}
.y11_c00345{bottom:416.325067pt;}
.y10_c00345{bottom:428.325067pt;}
.yf_c00345{bottom:448.104533pt;}
.ye_c00345{bottom:464.104533pt;}
.yd_c00345{bottom:487.663600pt;}
.yc_c00345{bottom:755.852400pt;}
.yb_c00345{bottom:767.852400pt;}
.ya_c00345{bottom:779.852400pt;}
.y9_c00345{bottom:803.411467pt;}
.y8_c00345{bottom:815.411467pt;}
.y7_c00345{bottom:838.970533pt;}
.y6_c00345{bottom:850.970533pt;}
.y5_c00345{bottom:862.970533pt;}
.y4_c00345{bottom:882.750133pt;}
.y3_c00345{bottom:898.750133pt;}
.y2_c00345{bottom:922.309200pt;}
.y19_c00345{bottom:924.238000pt;}
.y1_c00345{bottom:972.089733pt;}
.h7_c00345{height:22.400000pt;}
.h6_c00345{height:26.917333pt;}
.h4_c00345{height:30.293333pt;}
.h2_c00345{height:34.901333pt;}
.h3_c00345{height:38.453333pt;}
.h5_c00345{height:38.880000pt;}
.h1_c00345{height:1009.333333pt;}
.h0_c00345{height:1009.338800pt;}
.w0_c00345{width:794.622400pt;}
.w1_c00345{width:794.666667pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:68.980533pt;}
.x4_c00345{left:377.034667pt;}
.x2_c00345{left:532.940133pt;}
.x3_c00345{left:544.278800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00346;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00346{font-family:ff6_c00346;line-height:0.908000;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00346{font-family:ff7_c00346;line-height:1.067000;font-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_c00346{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls3_c00346{letter-spacing:-0.720000px;}
.ls4_c00346{letter-spacing:-0.630000px;}
.ls2_c00346{letter-spacing:-0.216000px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00346{word-spacing:-0.048000px;}
.ws2_c00346{word-spacing:0.000000px;}
.ws4_c00346{word-spacing:0.216000px;}
.ws3_c00346{word-spacing:7.056000px;}
._0_c00346{margin-left:-2755.276200px;}
._4_c00346{margin-left:-6.946800px;}
._1_c00346{margin-left:-2.256000px;}
._3_c00346{margin-left:-1.200000px;}
._2_c00346{width:1.008000px;}
._7_c00346{width:7.776000px;}
._5_c00346{width:55.674000px;}
._6_c00346{width:59.136000px;}
.fc0_c00346{color:rgb(35,31,32);}
.fs3_c00346{font-size:42.000000px;}
.fs0_c00346{font-size:48.000000px;}
.fs4_c00346{font-size:54.000000px;}
.fs2_c00346{font-size:57.000000px;}
.fs1_c00346{font-size:60.000000px;}
.y0_c00346{bottom:0.000000px;}
.y19_c00346{bottom:347.441250px;}
.y18_c00346{bottom:360.941250px;}
.y17_c00346{bottom:374.441100px;}
.y16_c00346{bottom:400.945050px;}
.y15_c00346{bottom:414.445050px;}
.y14_c00346{bottom:427.945050px;}
.y13_c00346{bottom:454.449000px;}
.y12_c00346{bottom:467.949000px;}
.y11_c00346{bottom:481.449000px;}
.y10_c00346{bottom:503.700900px;}
.yf_c00346{bottom:521.700900px;}
.ye_c00346{bottom:548.204850px;}
.yd_c00346{bottom:836.417400px;}
.yc_c00346{bottom:849.917400px;}
.yb_c00346{bottom:863.417400px;}
.ya_c00346{bottom:889.921350px;}
.y9_c00346{bottom:903.421350px;}
.y8_c00346{bottom:916.921350px;}
.y7_c00346{bottom:943.425300px;}
.y6_c00346{bottom:956.925300px;}
.y5_c00346{bottom:970.425300px;}
.y4_c00346{bottom:992.677350px;}
.y3_c00346{bottom:1010.677350px;}
.y2_c00346{bottom:1037.181300px;}
.y1_c00346{bottom:1093.600950px;}
.h7_c00346{height:30.282000px;}
.h5_c00346{height:34.080000px;}
.h2_c00346{height:39.264000px;}
.h3_c00346{height:39.984000px;}
.h4_c00346{height:43.260000px;}
.h6_c00346{height:43.740000px;}
.h1_c00346{height:1135.500000px;}
.h0_c00346{height:1135.506150px;}
.w0_c00346{width:893.950200px;}
.w1_c00346{width:894.000000px;}
.x0_c00346{left:0.000000px;}
.x4_c00346{left:128.652300px;}
.x5_c00346{left:141.408150px;}
.x2_c00346{left:188.061900px;}
.x3_c00346{left:190.513350px;}
.x1_c00346{left:800.165850px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls3_c00346{letter-spacing:-0.640000pt;}
.ls4_c00346{letter-spacing:-0.560000pt;}
.ls2_c00346{letter-spacing:-0.192000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:0.426667pt;}
.ws1_c00346{word-spacing:-7.728000pt;}
.ws0_c00346{word-spacing:-0.042667pt;}
.ws2_c00346{word-spacing:0.000000pt;}
.ws4_c00346{word-spacing:0.192000pt;}
.ws3_c00346{word-spacing:6.272000pt;}
._0_c00346{margin-left:-2449.134400pt;}
._4_c00346{margin-left:-6.174933pt;}
._1_c00346{margin-left:-2.005333pt;}
._3_c00346{margin-left:-1.066667pt;}
._2_c00346{width:0.896000pt;}
._7_c00346{width:6.912000pt;}
._5_c00346{width:49.488000pt;}
._6_c00346{width:52.565333pt;}
.fs3_c00346{font-size:37.333333pt;}
.fs0_c00346{font-size:42.666667pt;}
.fs4_c00346{font-size:48.000000pt;}
.fs2_c00346{font-size:50.666667pt;}
.fs1_c00346{font-size:53.333333pt;}
.y0_c00346{bottom:0.000000pt;}
.y19_c00346{bottom:308.836667pt;}
.y18_c00346{bottom:320.836667pt;}
.y17_c00346{bottom:332.836533pt;}
.y16_c00346{bottom:356.395600pt;}
.y15_c00346{bottom:368.395600pt;}
.y14_c00346{bottom:380.395600pt;}
.y13_c00346{bottom:403.954667pt;}
.y12_c00346{bottom:415.954667pt;}
.y11_c00346{bottom:427.954667pt;}
.y10_c00346{bottom:447.734133pt;}
.yf_c00346{bottom:463.734133pt;}
.ye_c00346{bottom:487.293200pt;}
.yd_c00346{bottom:743.482133pt;}
.yc_c00346{bottom:755.482133pt;}
.yb_c00346{bottom:767.482133pt;}
.ya_c00346{bottom:791.041200pt;}
.y9_c00346{bottom:803.041200pt;}
.y8_c00346{bottom:815.041200pt;}
.y7_c00346{bottom:838.600267pt;}
.y6_c00346{bottom:850.600267pt;}
.y5_c00346{bottom:862.600267pt;}
.y4_c00346{bottom:882.379867pt;}
.y3_c00346{bottom:898.379867pt;}
.y2_c00346{bottom:921.938933pt;}
.y1_c00346{bottom:972.089733pt;}
.h7_c00346{height:26.917333pt;}
.h5_c00346{height:30.293333pt;}
.h2_c00346{height:34.901333pt;}
.h3_c00346{height:35.541333pt;}
.h4_c00346{height:38.453333pt;}
.h6_c00346{height:38.880000pt;}
.h1_c00346{height:1009.333333pt;}
.h0_c00346{height:1009.338800pt;}
.w0_c00346{width:794.622400pt;}
.w1_c00346{width:794.666667pt;}
.x0_c00346{left:0.000000pt;}
.x4_c00346{left:114.357600pt;}
.x5_c00346{left:125.696133pt;}
.x2_c00346{left:167.166133pt;}
.x3_c00346{left:169.345200pt;}
.x1_c00346{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00347;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00347{font-family:ff6_c00347;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls3_c00347{letter-spacing:-1.566000px;}
.ls1_c00347{letter-spacing:-0.720000px;}
.ls2_c00347{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00347{word-spacing:-8.694000px;}
.ws2_c00347{word-spacing:0.000000px;}
.ws3_c00347{word-spacing:7.056000px;}
.ws4_c00347{word-spacing:57.240000px;}
.ws0_c00347{word-spacing:1585.435200px;}
._3_c00347{margin-left:-7.042800px;}
._0_c00347{margin-left:-2.112000px;}
._1_c00347{margin-left:-1.104000px;}
._2_c00347{width:2.016000px;}
._6_c00347{width:7.776000px;}
._4_c00347{width:55.674000px;}
._5_c00347{width:59.136000px;}
.fc0_c00347{color:rgb(35,31,32);}
.fs3_c00347{font-size:42.000000px;}
.fs0_c00347{font-size:48.000000px;}
.fs4_c00347{font-size:54.000000px;}
.fs2_c00347{font-size:57.000000px;}
.fs1_c00347{font-size:60.000000px;}
.y0_c00347{bottom:0.000000px;}
.y19_c00347{bottom:348.369900px;}
.y18_c00347{bottom:361.869750px;}
.y17_c00347{bottom:375.369750px;}
.y16_c00347{bottom:401.873700px;}
.y15_c00347{bottom:415.373700px;}
.y14_c00347{bottom:428.873700px;}
.y13_c00347{bottom:455.377650px;}
.y12_c00347{bottom:468.877650px;}
.y11_c00347{bottom:482.377650px;}
.y10_c00347{bottom:504.629550px;}
.yf_c00347{bottom:522.629550px;}
.ye_c00347{bottom:549.133500px;}
.yd_c00347{bottom:837.345900px;}
.yc_c00347{bottom:850.845900px;}
.yb_c00347{bottom:864.345900px;}
.ya_c00347{bottom:890.849850px;}
.y9_c00347{bottom:904.349850px;}
.y8_c00347{bottom:917.849850px;}
.y7_c00347{bottom:944.353800px;}
.y6_c00347{bottom:957.853800px;}
.y5_c00347{bottom:971.353800px;}
.y4_c00347{bottom:993.605850px;}
.y3_c00347{bottom:1011.605850px;}
.y2_c00347{bottom:1038.109800px;}
.y1_c00347{bottom:1093.600950px;}
.h6_c00347{height:30.282000px;}
.h4_c00347{height:34.080000px;}
.h2_c00347{height:39.264000px;}
.h3_c00347{height:43.260000px;}
.h5_c00347{height:43.740000px;}
.h1_c00347{height:1135.500000px;}
.h0_c00347{height:1135.506150px;}
.w0_c00347{width:893.950200px;}
.w1_c00347{width:894.000000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:77.603100px;}
.x2_c00347{left:599.451450px;}
.x3_c00347{left:612.207300px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls3_c00347{letter-spacing:-1.392000pt;}
.ls1_c00347{letter-spacing:-0.640000pt;}
.ls2_c00347{letter-spacing:-0.560000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws1_c00347{word-spacing:-7.728000pt;}
.ws2_c00347{word-spacing:0.000000pt;}
.ws3_c00347{word-spacing:6.272000pt;}
.ws4_c00347{word-spacing:50.880000pt;}
.ws0_c00347{word-spacing:1409.275733pt;}
._3_c00347{margin-left:-6.260267pt;}
._0_c00347{margin-left:-1.877333pt;}
._1_c00347{margin-left:-0.981333pt;}
._2_c00347{width:1.792000pt;}
._6_c00347{width:6.912000pt;}
._4_c00347{width:49.488000pt;}
._5_c00347{width:52.565333pt;}
.fs3_c00347{font-size:37.333333pt;}
.fs0_c00347{font-size:42.666667pt;}
.fs4_c00347{font-size:48.000000pt;}
.fs2_c00347{font-size:50.666667pt;}
.fs1_c00347{font-size:53.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y19_c00347{bottom:309.662133pt;}
.y18_c00347{bottom:321.662000pt;}
.y17_c00347{bottom:333.662000pt;}
.y16_c00347{bottom:357.221067pt;}
.y15_c00347{bottom:369.221067pt;}
.y14_c00347{bottom:381.221067pt;}
.y13_c00347{bottom:404.780133pt;}
.y12_c00347{bottom:416.780133pt;}
.y11_c00347{bottom:428.780133pt;}
.y10_c00347{bottom:448.559600pt;}
.yf_c00347{bottom:464.559600pt;}
.ye_c00347{bottom:488.118667pt;}
.yd_c00347{bottom:744.307467pt;}
.yc_c00347{bottom:756.307467pt;}
.yb_c00347{bottom:768.307467pt;}
.ya_c00347{bottom:791.866533pt;}
.y9_c00347{bottom:803.866533pt;}
.y8_c00347{bottom:815.866533pt;}
.y7_c00347{bottom:839.425600pt;}
.y6_c00347{bottom:851.425600pt;}
.y5_c00347{bottom:863.425600pt;}
.y4_c00347{bottom:883.205200pt;}
.y3_c00347{bottom:899.205200pt;}
.y2_c00347{bottom:922.764267pt;}
.y1_c00347{bottom:972.089733pt;}
.h6_c00347{height:26.917333pt;}
.h4_c00347{height:30.293333pt;}
.h2_c00347{height:34.901333pt;}
.h3_c00347{height:38.453333pt;}
.h5_c00347{height:38.880000pt;}
.h1_c00347{height:1009.333333pt;}
.h0_c00347{height:1009.338800pt;}
.w0_c00347{width:794.622400pt;}
.w1_c00347{width:794.666667pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:68.980533pt;}
.x2_c00347{left:532.845733pt;}
.x3_c00347{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00348;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:0.908000;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;line-height:1.067000;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00348{font-family:ff8_c00348;line-height:0.710000;font-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_c00348{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls3_c00348{letter-spacing:-0.720000px;}
.ls4_c00348{letter-spacing:-0.630000px;}
.ls2_c00348{letter-spacing:-0.216000px;}
.ls1_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.480000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00348{word-spacing:-8.694000px;}
.ws2_c00348{word-spacing:-6.487200px;}
.ws0_c00348{word-spacing:-0.048000px;}
.ws3_c00348{word-spacing:0.000000px;}
.ws5_c00348{word-spacing:0.216000px;}
.ws4_c00348{word-spacing:7.056000px;}
._0_c00348{margin-left:-2755.276200px;}
._4_c00348{margin-left:-6.947400px;}
._1_c00348{margin-left:-2.256000px;}
._3_c00348{margin-left:-1.200000px;}
._2_c00348{width:1.008000px;}
._7_c00348{width:7.776000px;}
._5_c00348{width:55.674000px;}
._6_c00348{width:59.136000px;}
.fc0_c00348{color:rgb(35,31,32);}
.fs5_c00348{font-size:30.600000px;}
.fs6_c00348{font-size:36.000000px;}
.fs3_c00348{font-size:42.000000px;}
.fs0_c00348{font-size:48.000000px;}
.fs4_c00348{font-size:54.000000px;}
.fs2_c00348{font-size:57.000000px;}
.fs1_c00348{font-size:60.000000px;}
.y0_c00348{bottom:0.000000px;}
.y18_c00348{bottom:361.453200px;}
.y17_c00348{bottom:374.953050px;}
.y16_c00348{bottom:388.453050px;}
.y15_c00348{bottom:414.957000px;}
.y14_c00348{bottom:428.457000px;}
.y13_c00348{bottom:454.960950px;}
.y12_c00348{bottom:468.460950px;}
.y11_c00348{bottom:481.960950px;}
.y10_c00348{bottom:504.213000px;}
.yf_c00348{bottom:522.213000px;}
.ye_c00348{bottom:548.716800px;}
.y19_c00348{bottom:551.323050px;}
.yd_c00348{bottom:836.929350px;}
.yc_c00348{bottom:850.429350px;}
.yb_c00348{bottom:863.929350px;}
.ya_c00348{bottom:890.433300px;}
.y9_c00348{bottom:903.933300px;}
.y8_c00348{bottom:917.433300px;}
.y7_c00348{bottom:943.937250px;}
.y6_c00348{bottom:957.437250px;}
.y5_c00348{bottom:970.937250px;}
.y4_c00348{bottom:993.189300px;}
.y3_c00348{bottom:1011.189300px;}
.y2_c00348{bottom:1037.693250px;}
.y1_c00348{bottom:1093.600950px;}
.h8_c00348{height:25.200000px;}
.h7_c00348{height:30.282000px;}
.h5_c00348{height:34.080000px;}
.h2_c00348{height:39.264000px;}
.h3_c00348{height:39.984000px;}
.h4_c00348{height:43.260000px;}
.h6_c00348{height:43.740000px;}
.h1_c00348{height:1135.500000px;}
.h0_c00348{height:1135.506150px;}
.w0_c00348{width:893.950200px;}
.w1_c00348{width:894.000000px;}
.x0_c00348{left:0.000000px;}
.x4_c00348{left:128.545950px;}
.x5_c00348{left:141.301950px;}
.x2_c00348{left:188.061900px;}
.x3_c00348{left:190.513350px;}
.x6_c00348{left:321.177150px;}
.x1_c00348{left:800.165850px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls3_c00348{letter-spacing:-0.640000pt;}
.ls4_c00348{letter-spacing:-0.560000pt;}
.ls2_c00348{letter-spacing:-0.192000pt;}
.ls1_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.426667pt;}
.ws1_c00348{word-spacing:-7.728000pt;}
.ws2_c00348{word-spacing:-5.766400pt;}
.ws0_c00348{word-spacing:-0.042667pt;}
.ws3_c00348{word-spacing:0.000000pt;}
.ws5_c00348{word-spacing:0.192000pt;}
.ws4_c00348{word-spacing:6.272000pt;}
._0_c00348{margin-left:-2449.134400pt;}
._4_c00348{margin-left:-6.175467pt;}
._1_c00348{margin-left:-2.005333pt;}
._3_c00348{margin-left:-1.066667pt;}
._2_c00348{width:0.896000pt;}
._7_c00348{width:6.912000pt;}
._5_c00348{width:49.488000pt;}
._6_c00348{width:52.565333pt;}
.fs5_c00348{font-size:27.200000pt;}
.fs6_c00348{font-size:32.000000pt;}
.fs3_c00348{font-size:37.333333pt;}
.fs0_c00348{font-size:42.666667pt;}
.fs4_c00348{font-size:48.000000pt;}
.fs2_c00348{font-size:50.666667pt;}
.fs1_c00348{font-size:53.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y18_c00348{bottom:321.291733pt;}
.y17_c00348{bottom:333.291600pt;}
.y16_c00348{bottom:345.291600pt;}
.y15_c00348{bottom:368.850667pt;}
.y14_c00348{bottom:380.850667pt;}
.y13_c00348{bottom:404.409733pt;}
.y12_c00348{bottom:416.409733pt;}
.y11_c00348{bottom:428.409733pt;}
.y10_c00348{bottom:448.189333pt;}
.yf_c00348{bottom:464.189333pt;}
.ye_c00348{bottom:487.748267pt;}
.y19_c00348{bottom:490.064933pt;}
.yd_c00348{bottom:743.937200pt;}
.yc_c00348{bottom:755.937200pt;}
.yb_c00348{bottom:767.937200pt;}
.ya_c00348{bottom:791.496267pt;}
.y9_c00348{bottom:803.496267pt;}
.y8_c00348{bottom:815.496267pt;}
.y7_c00348{bottom:839.055333pt;}
.y6_c00348{bottom:851.055333pt;}
.y5_c00348{bottom:863.055333pt;}
.y4_c00348{bottom:882.834933pt;}
.y3_c00348{bottom:898.834933pt;}
.y2_c00348{bottom:922.394000pt;}
.y1_c00348{bottom:972.089733pt;}
.h8_c00348{height:22.400000pt;}
.h7_c00348{height:26.917333pt;}
.h5_c00348{height:30.293333pt;}
.h2_c00348{height:34.901333pt;}
.h3_c00348{height:35.541333pt;}
.h4_c00348{height:38.453333pt;}
.h6_c00348{height:38.880000pt;}
.h1_c00348{height:1009.333333pt;}
.h0_c00348{height:1009.338800pt;}
.w0_c00348{width:794.622400pt;}
.w1_c00348{width:794.666667pt;}
.x0_c00348{left:0.000000pt;}
.x4_c00348{left:114.263067pt;}
.x5_c00348{left:125.601733pt;}
.x2_c00348{left:167.166133pt;}
.x3_c00348{left:169.345200pt;}
.x6_c00348{left:285.490800pt;}
.x1_c00348{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:1.067000;font-style:normal;font-weight: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_c00349;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00349{font-family:ff7_c00349;line-height:0.710000;font-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_c00349{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls1_c00349{letter-spacing:-0.864000px;}
.ls2_c00349{letter-spacing:-0.720000px;}
.ls3_c00349{letter-spacing:-0.630000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00349{word-spacing:-8.694000px;}
.ws2_c00349{word-spacing:-6.487200px;}
.ws3_c00349{word-spacing:0.000000px;}
.ws5_c00349{word-spacing:0.864000px;}
.ws4_c00349{word-spacing:7.056000px;}
.ws0_c00349{word-spacing:1585.435200px;}
._3_c00349{margin-left:-7.042800px;}
._0_c00349{margin-left:-2.112000px;}
._1_c00349{margin-left:-1.104000px;}
._2_c00349{width:2.016000px;}
._6_c00349{width:7.776000px;}
._4_c00349{width:55.674000px;}
._5_c00349{width:59.136000px;}
.fc0_c00349{color:rgb(35,31,32);}
.fs5_c00349{font-size:30.600000px;}
.fs6_c00349{font-size:36.000000px;}
.fs3_c00349{font-size:42.000000px;}
.fs0_c00349{font-size:48.000000px;}
.fs4_c00349{font-size:54.000000px;}
.fs2_c00349{font-size:57.000000px;}
.fs1_c00349{font-size:60.000000px;}
.y0_c00349{bottom:0.000000px;}
.y18_c00349{bottom:361.676700px;}
.y17_c00349{bottom:375.176700px;}
.y16_c00349{bottom:388.676700px;}
.y15_c00349{bottom:415.180650px;}
.y14_c00349{bottom:428.680650px;}
.y13_c00349{bottom:455.184450px;}
.y12_c00349{bottom:468.684450px;}
.y11_c00349{bottom:482.184450px;}
.y10_c00349{bottom:504.436500px;}
.yf_c00349{bottom:522.436500px;}
.ye_c00349{bottom:548.940450px;}
.y19_c00349{bottom:551.323050px;}
.yd_c00349{bottom:837.152850px;}
.yc_c00349{bottom:850.652850px;}
.yb_c00349{bottom:864.152850px;}
.ya_c00349{bottom:890.656950px;}
.y9_c00349{bottom:904.156950px;}
.y8_c00349{bottom:917.656950px;}
.y7_c00349{bottom:944.160900px;}
.y6_c00349{bottom:957.660900px;}
.y5_c00349{bottom:971.160900px;}
.y4_c00349{bottom:993.412800px;}
.y3_c00349{bottom:1011.412800px;}
.y2_c00349{bottom:1037.916750px;}
.y1_c00349{bottom:1093.600950px;}
.h7_c00349{height:25.200000px;}
.h6_c00349{height:30.282000px;}
.h4_c00349{height:34.080000px;}
.h2_c00349{height:39.264000px;}
.h3_c00349{height:43.260000px;}
.h5_c00349{height:43.740000px;}
.h1_c00349{height:1135.500000px;}
.h0_c00349{height:1135.506150px;}
.w0_c00349{width:893.950200px;}
.w1_c00349{width:894.000000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:77.603100px;}
.x4_c00349{left:424.185300px;}
.x2_c00349{left:599.578950px;}
.x3_c00349{left:612.334800px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls1_c00349{letter-spacing:-0.768000pt;}
.ls2_c00349{letter-spacing:-0.640000pt;}
.ls3_c00349{letter-spacing:-0.560000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws1_c00349{word-spacing:-7.728000pt;}
.ws2_c00349{word-spacing:-5.766400pt;}
.ws3_c00349{word-spacing:0.000000pt;}
.ws5_c00349{word-spacing:0.768000pt;}
.ws4_c00349{word-spacing:6.272000pt;}
.ws0_c00349{word-spacing:1409.275733pt;}
._3_c00349{margin-left:-6.260267pt;}
._0_c00349{margin-left:-1.877333pt;}
._1_c00349{margin-left:-0.981333pt;}
._2_c00349{width:1.792000pt;}
._6_c00349{width:6.912000pt;}
._4_c00349{width:49.488000pt;}
._5_c00349{width:52.565333pt;}
.fs5_c00349{font-size:27.200000pt;}
.fs6_c00349{font-size:32.000000pt;}
.fs3_c00349{font-size:37.333333pt;}
.fs0_c00349{font-size:42.666667pt;}
.fs4_c00349{font-size:48.000000pt;}
.fs2_c00349{font-size:50.666667pt;}
.fs1_c00349{font-size:53.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y18_c00349{bottom:321.490400pt;}
.y17_c00349{bottom:333.490400pt;}
.y16_c00349{bottom:345.490400pt;}
.y15_c00349{bottom:369.049467pt;}
.y14_c00349{bottom:381.049467pt;}
.y13_c00349{bottom:404.608400pt;}
.y12_c00349{bottom:416.608400pt;}
.y11_c00349{bottom:428.608400pt;}
.y10_c00349{bottom:448.388000pt;}
.yf_c00349{bottom:464.388000pt;}
.ye_c00349{bottom:487.947067pt;}
.y19_c00349{bottom:490.064933pt;}
.yd_c00349{bottom:744.135867pt;}
.yc_c00349{bottom:756.135867pt;}
.yb_c00349{bottom:768.135867pt;}
.ya_c00349{bottom:791.695067pt;}
.y9_c00349{bottom:803.695067pt;}
.y8_c00349{bottom:815.695067pt;}
.y7_c00349{bottom:839.254133pt;}
.y6_c00349{bottom:851.254133pt;}
.y5_c00349{bottom:863.254133pt;}
.y4_c00349{bottom:883.033600pt;}
.y3_c00349{bottom:899.033600pt;}
.y2_c00349{bottom:922.592667pt;}
.y1_c00349{bottom:972.089733pt;}
.h7_c00349{height:22.400000pt;}
.h6_c00349{height:26.917333pt;}
.h4_c00349{height:30.293333pt;}
.h2_c00349{height:34.901333pt;}
.h3_c00349{height:38.453333pt;}
.h5_c00349{height:38.880000pt;}
.h1_c00349{height:1009.333333pt;}
.h0_c00349{height:1009.338800pt;}
.w0_c00349{width:794.622400pt;}
.w1_c00349{width:794.666667pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:68.980533pt;}
.x4_c00349{left:377.053600pt;}
.x2_c00349{left:532.959067pt;}
.x3_c00349{left:544.297600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00350;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:0.908000;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00350{font-family:ff7_c00350;line-height:1.067000;font-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_c00350{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls4_c00350{letter-spacing:-0.864000px;}
.ls2_c00350{letter-spacing:-0.720000px;}
.ls3_c00350{letter-spacing:-0.630000px;}
.ls1_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00350{word-spacing:-8.694000px;}
.ws0_c00350{word-spacing:-0.048000px;}
.ws2_c00350{word-spacing:0.000000px;}
.ws3_c00350{word-spacing:7.056000px;}
.ws4_c00350{word-spacing:56.538000px;}
._0_c00350{margin-left:-2755.276200px;}
._4_c00350{margin-left:-6.946800px;}
._1_c00350{margin-left:-2.256000px;}
._3_c00350{margin-left:-1.200000px;}
._2_c00350{width:1.008000px;}
._7_c00350{width:7.776000px;}
._5_c00350{width:55.674000px;}
._6_c00350{width:59.136000px;}
.fc0_c00350{color:rgb(35,31,32);}
.fs3_c00350{font-size:42.000000px;}
.fs0_c00350{font-size:48.000000px;}
.fs4_c00350{font-size:54.000000px;}
.fs2_c00350{font-size:57.000000px;}
.fs1_c00350{font-size:60.000000px;}
.y0_c00350{bottom:0.000000px;}
.y19_c00350{bottom:347.760150px;}
.y18_c00350{bottom:361.260000px;}
.y17_c00350{bottom:374.760000px;}
.y16_c00350{bottom:401.263950px;}
.y15_c00350{bottom:414.763950px;}
.y14_c00350{bottom:428.263950px;}
.y13_c00350{bottom:454.767900px;}
.y12_c00350{bottom:468.267900px;}
.y11_c00350{bottom:481.767900px;}
.y10_c00350{bottom:504.019800px;}
.yf_c00350{bottom:522.019800px;}
.ye_c00350{bottom:548.523750px;}
.yd_c00350{bottom:836.736150px;}
.yc_c00350{bottom:850.236150px;}
.yb_c00350{bottom:863.736150px;}
.ya_c00350{bottom:890.240100px;}
.y9_c00350{bottom:903.740100px;}
.y8_c00350{bottom:917.240100px;}
.y7_c00350{bottom:943.744050px;}
.y6_c00350{bottom:957.244050px;}
.y5_c00350{bottom:970.744050px;}
.y4_c00350{bottom:992.996100px;}
.y3_c00350{bottom:1010.996100px;}
.y2_c00350{bottom:1037.500050px;}
.y1_c00350{bottom:1093.600950px;}
.h7_c00350{height:30.282000px;}
.h5_c00350{height:34.080000px;}
.h2_c00350{height:39.264000px;}
.h3_c00350{height:39.984000px;}
.h4_c00350{height:43.260000px;}
.h6_c00350{height:43.740000px;}
.h1_c00350{height:1135.500000px;}
.h0_c00350{height:1135.506150px;}
.w0_c00350{width:893.950200px;}
.w1_c00350{width:894.000000px;}
.x0_c00350{left:0.000000px;}
.x4_c00350{left:128.673450px;}
.x5_c00350{left:141.429450px;}
.x2_c00350{left:188.061900px;}
.x3_c00350{left:190.513350px;}
.x1_c00350{left:800.165850px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls4_c00350{letter-spacing:-0.768000pt;}
.ls2_c00350{letter-spacing:-0.640000pt;}
.ls3_c00350{letter-spacing:-0.560000pt;}
.ls1_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.426667pt;}
.ws1_c00350{word-spacing:-7.728000pt;}
.ws0_c00350{word-spacing:-0.042667pt;}
.ws2_c00350{word-spacing:0.000000pt;}
.ws3_c00350{word-spacing:6.272000pt;}
.ws4_c00350{word-spacing:50.256000pt;}
._0_c00350{margin-left:-2449.134400pt;}
._4_c00350{margin-left:-6.174933pt;}
._1_c00350{margin-left:-2.005333pt;}
._3_c00350{margin-left:-1.066667pt;}
._2_c00350{width:0.896000pt;}
._7_c00350{width:6.912000pt;}
._5_c00350{width:49.488000pt;}
._6_c00350{width:52.565333pt;}
.fs3_c00350{font-size:37.333333pt;}
.fs0_c00350{font-size:42.666667pt;}
.fs4_c00350{font-size:48.000000pt;}
.fs2_c00350{font-size:50.666667pt;}
.fs1_c00350{font-size:53.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y19_c00350{bottom:309.120133pt;}
.y18_c00350{bottom:321.120000pt;}
.y17_c00350{bottom:333.120000pt;}
.y16_c00350{bottom:356.679067pt;}
.y15_c00350{bottom:368.679067pt;}
.y14_c00350{bottom:380.679067pt;}
.y13_c00350{bottom:404.238133pt;}
.y12_c00350{bottom:416.238133pt;}
.y11_c00350{bottom:428.238133pt;}
.y10_c00350{bottom:448.017600pt;}
.yf_c00350{bottom:464.017600pt;}
.ye_c00350{bottom:487.576667pt;}
.yd_c00350{bottom:743.765467pt;}
.yc_c00350{bottom:755.765467pt;}
.yb_c00350{bottom:767.765467pt;}
.ya_c00350{bottom:791.324533pt;}
.y9_c00350{bottom:803.324533pt;}
.y8_c00350{bottom:815.324533pt;}
.y7_c00350{bottom:838.883600pt;}
.y6_c00350{bottom:850.883600pt;}
.y5_c00350{bottom:862.883600pt;}
.y4_c00350{bottom:882.663200pt;}
.y3_c00350{bottom:898.663200pt;}
.y2_c00350{bottom:922.222267pt;}
.y1_c00350{bottom:972.089733pt;}
.h7_c00350{height:26.917333pt;}
.h5_c00350{height:30.293333pt;}
.h2_c00350{height:34.901333pt;}
.h3_c00350{height:35.541333pt;}
.h4_c00350{height:38.453333pt;}
.h6_c00350{height:38.880000pt;}
.h1_c00350{height:1009.333333pt;}
.h0_c00350{height:1009.338800pt;}
.w0_c00350{width:794.622400pt;}
.w1_c00350{width:794.666667pt;}
.x0_c00350{left:0.000000pt;}
.x4_c00350{left:114.376400pt;}
.x5_c00350{left:125.715067pt;}
.x2_c00350{left:167.166133pt;}
.x3_c00350{left:169.345200pt;}
.x1_c00350{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls1_c00351{letter-spacing:-0.720000px;}
.ls2_c00351{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00351{word-spacing:-8.694000px;}
.ws2_c00351{word-spacing:0.000000px;}
.ws3_c00351{word-spacing:7.056000px;}
.ws0_c00351{word-spacing:1585.435200px;}
._3_c00351{margin-left:-7.042800px;}
._7_c00351{margin-left:-5.238000px;}
._0_c00351{margin-left:-2.112000px;}
._1_c00351{margin-left:-1.104000px;}
._2_c00351{width:2.016000px;}
._6_c00351{width:7.776000px;}
._4_c00351{width:55.674000px;}
._5_c00351{width:59.136000px;}
.fc0_c00351{color:rgb(35,31,32);}
.fs3_c00351{font-size:42.000000px;}
.fs0_c00351{font-size:48.000000px;}
.fs4_c00351{font-size:54.000000px;}
.fs2_c00351{font-size:57.000000px;}
.fs1_c00351{font-size:60.000000px;}
.y0_c00351{bottom:0.000000px;}
.y19_c00351{bottom:347.964150px;}
.y18_c00351{bottom:361.464150px;}
.y17_c00351{bottom:374.964150px;}
.y16_c00351{bottom:401.467950px;}
.y15_c00351{bottom:414.967950px;}
.y14_c00351{bottom:428.467950px;}
.y13_c00351{bottom:454.971900px;}
.y12_c00351{bottom:468.471900px;}
.y11_c00351{bottom:481.971900px;}
.y10_c00351{bottom:504.223950px;}
.yf_c00351{bottom:522.223950px;}
.ye_c00351{bottom:548.727900px;}
.yd_c00351{bottom:836.940300px;}
.yc_c00351{bottom:850.440300px;}
.yb_c00351{bottom:863.940300px;}
.ya_c00351{bottom:890.444250px;}
.y9_c00351{bottom:903.944250px;}
.y8_c00351{bottom:917.444250px;}
.y7_c00351{bottom:943.948200px;}
.y6_c00351{bottom:957.448200px;}
.y5_c00351{bottom:970.948200px;}
.y4_c00351{bottom:993.200250px;}
.y3_c00351{bottom:1011.200250px;}
.y2_c00351{bottom:1037.704200px;}
.y1_c00351{bottom:1093.600950px;}
.h6_c00351{height:30.282000px;}
.h4_c00351{height:34.080000px;}
.h2_c00351{height:39.264000px;}
.h3_c00351{height:43.260000px;}
.h5_c00351{height:43.740000px;}
.h1_c00351{height:1135.500000px;}
.h0_c00351{height:1135.506150px;}
.w0_c00351{width:893.950200px;}
.w1_c00351{width:894.000000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:77.603100px;}
.x2_c00351{left:599.656650px;}
.x3_c00351{left:612.412500px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls1_c00351{letter-spacing:-0.640000pt;}
.ls2_c00351{letter-spacing:-0.560000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws1_c00351{word-spacing:-7.728000pt;}
.ws2_c00351{word-spacing:0.000000pt;}
.ws3_c00351{word-spacing:6.272000pt;}
.ws0_c00351{word-spacing:1409.275733pt;}
._3_c00351{margin-left:-6.260267pt;}
._7_c00351{margin-left:-4.656000pt;}
._0_c00351{margin-left:-1.877333pt;}
._1_c00351{margin-left:-0.981333pt;}
._2_c00351{width:1.792000pt;}
._6_c00351{width:6.912000pt;}
._4_c00351{width:49.488000pt;}
._5_c00351{width:52.565333pt;}
.fs3_c00351{font-size:37.333333pt;}
.fs0_c00351{font-size:42.666667pt;}
.fs4_c00351{font-size:48.000000pt;}
.fs2_c00351{font-size:50.666667pt;}
.fs1_c00351{font-size:53.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y19_c00351{bottom:309.301467pt;}
.y18_c00351{bottom:321.301467pt;}
.y17_c00351{bottom:333.301467pt;}
.y16_c00351{bottom:356.860400pt;}
.y15_c00351{bottom:368.860400pt;}
.y14_c00351{bottom:380.860400pt;}
.y13_c00351{bottom:404.419467pt;}
.y12_c00351{bottom:416.419467pt;}
.y11_c00351{bottom:428.419467pt;}
.y10_c00351{bottom:448.199067pt;}
.yf_c00351{bottom:464.199067pt;}
.ye_c00351{bottom:487.758133pt;}
.yd_c00351{bottom:743.946933pt;}
.yc_c00351{bottom:755.946933pt;}
.yb_c00351{bottom:767.946933pt;}
.ya_c00351{bottom:791.506000pt;}
.y9_c00351{bottom:803.506000pt;}
.y8_c00351{bottom:815.506000pt;}
.y7_c00351{bottom:839.065067pt;}
.y6_c00351{bottom:851.065067pt;}
.y5_c00351{bottom:863.065067pt;}
.y4_c00351{bottom:882.844667pt;}
.y3_c00351{bottom:898.844667pt;}
.y2_c00351{bottom:922.403733pt;}
.y1_c00351{bottom:972.089733pt;}
.h6_c00351{height:26.917333pt;}
.h4_c00351{height:30.293333pt;}
.h2_c00351{height:34.901333pt;}
.h3_c00351{height:38.453333pt;}
.h5_c00351{height:38.880000pt;}
.h1_c00351{height:1009.333333pt;}
.h0_c00351{height:1009.338800pt;}
.w0_c00351{width:794.622400pt;}
.w1_c00351{width:794.666667pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:68.980533pt;}
.x2_c00351{left:533.028133pt;}
.x3_c00351{left:544.366667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00352;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00352{font-family:ff7_c00352;line-height:1.067000;font-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_c00352{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls3_c00352{letter-spacing:-0.720000px;}
.ls4_c00352{letter-spacing:-0.630000px;}
.ls5_c00352{letter-spacing:-0.540000px;}
.ls6_c00352{letter-spacing:-0.378000px;}
.ls2_c00352{letter-spacing:-0.216000px;}
.ls1_c00352{letter-spacing:0.000000px;}
.ls0_c00352{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00352{word-spacing:-8.694000px;}
.ws0_c00352{word-spacing:-0.048000px;}
.ws2_c00352{word-spacing:0.000000px;}
.ws4_c00352{word-spacing:0.216000px;}
.ws6_c00352{word-spacing:0.378000px;}
.ws5_c00352{word-spacing:0.540000px;}
.ws3_c00352{word-spacing:7.056000px;}
._0_c00352{margin-left:-2755.276200px;}
._4_c00352{margin-left:-6.946800px;}
._1_c00352{margin-left:-2.256000px;}
._3_c00352{margin-left:-1.200000px;}
._2_c00352{width:1.008000px;}
._7_c00352{width:7.776000px;}
._5_c00352{width:55.674000px;}
._6_c00352{width:59.136000px;}
.fc0_c00352{color:rgb(35,31,32);}
.fs3_c00352{font-size:42.000000px;}
.fs0_c00352{font-size:48.000000px;}
.fs4_c00352{font-size:54.000000px;}
.fs2_c00352{font-size:57.000000px;}
.fs1_c00352{font-size:60.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1a_c00352{bottom:329.547450px;}
.y19_c00352{bottom:343.047450px;}
.y18_c00352{bottom:356.547450px;}
.y17_c00352{bottom:383.051400px;}
.y16_c00352{bottom:396.551400px;}
.y15_c00352{bottom:410.051400px;}
.y14_c00352{bottom:436.555350px;}
.y13_c00352{bottom:450.055350px;}
.y12_c00352{bottom:463.555350px;}
.y11_c00352{bottom:485.807250px;}
.y10_c00352{bottom:503.807250px;}
.yf_c00352{bottom:521.807250px;}
.ye_c00352{bottom:548.311200px;}
.yd_c00352{bottom:836.523600px;}
.yc_c00352{bottom:850.023600px;}
.yb_c00352{bottom:863.523600px;}
.ya_c00352{bottom:890.027550px;}
.y9_c00352{bottom:903.527550px;}
.y8_c00352{bottom:917.027550px;}
.y7_c00352{bottom:943.531500px;}
.y6_c00352{bottom:957.031500px;}
.y5_c00352{bottom:970.531500px;}
.y4_c00352{bottom:992.783550px;}
.y3_c00352{bottom:1010.783550px;}
.y2_c00352{bottom:1037.287500px;}
.y1_c00352{bottom:1093.600950px;}
.h7_c00352{height:30.282000px;}
.h5_c00352{height:34.080000px;}
.h2_c00352{height:39.264000px;}
.h3_c00352{height:39.984000px;}
.h4_c00352{height:43.260000px;}
.h6_c00352{height:43.740000px;}
.h1_c00352{height:1135.500000px;}
.h0_c00352{height:1135.506150px;}
.w0_c00352{width:893.950200px;}
.w1_c00352{width:894.000000px;}
.x0_c00352{left:0.000000px;}
.x4_c00352{left:128.751150px;}
.x5_c00352{left:141.507000px;}
.x6_c00352{left:145.759050px;}
.x2_c00352{left:188.061900px;}
.x3_c00352{left:190.513350px;}
.x1_c00352{left:800.165850px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls3_c00352{letter-spacing:-0.640000pt;}
.ls4_c00352{letter-spacing:-0.560000pt;}
.ls5_c00352{letter-spacing:-0.480000pt;}
.ls6_c00352{letter-spacing:-0.336000pt;}
.ls2_c00352{letter-spacing:-0.192000pt;}
.ls1_c00352{letter-spacing:0.000000pt;}
.ls0_c00352{letter-spacing:0.426667pt;}
.ws1_c00352{word-spacing:-7.728000pt;}
.ws0_c00352{word-spacing:-0.042667pt;}
.ws2_c00352{word-spacing:0.000000pt;}
.ws4_c00352{word-spacing:0.192000pt;}
.ws6_c00352{word-spacing:0.336000pt;}
.ws5_c00352{word-spacing:0.480000pt;}
.ws3_c00352{word-spacing:6.272000pt;}
._0_c00352{margin-left:-2449.134400pt;}
._4_c00352{margin-left:-6.174933pt;}
._1_c00352{margin-left:-2.005333pt;}
._3_c00352{margin-left:-1.066667pt;}
._2_c00352{width:0.896000pt;}
._7_c00352{width:6.912000pt;}
._5_c00352{width:49.488000pt;}
._6_c00352{width:52.565333pt;}
.fs3_c00352{font-size:37.333333pt;}
.fs0_c00352{font-size:42.666667pt;}
.fs4_c00352{font-size:48.000000pt;}
.fs2_c00352{font-size:50.666667pt;}
.fs1_c00352{font-size:53.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y1a_c00352{bottom:292.931067pt;}
.y19_c00352{bottom:304.931067pt;}
.y18_c00352{bottom:316.931067pt;}
.y17_c00352{bottom:340.490133pt;}
.y16_c00352{bottom:352.490133pt;}
.y15_c00352{bottom:364.490133pt;}
.y14_c00352{bottom:388.049200pt;}
.y13_c00352{bottom:400.049200pt;}
.y12_c00352{bottom:412.049200pt;}
.y11_c00352{bottom:431.828667pt;}
.y10_c00352{bottom:447.828667pt;}
.yf_c00352{bottom:463.828667pt;}
.ye_c00352{bottom:487.387733pt;}
.yd_c00352{bottom:743.576533pt;}
.yc_c00352{bottom:755.576533pt;}
.yb_c00352{bottom:767.576533pt;}
.ya_c00352{bottom:791.135600pt;}
.y9_c00352{bottom:803.135600pt;}
.y8_c00352{bottom:815.135600pt;}
.y7_c00352{bottom:838.694667pt;}
.y6_c00352{bottom:850.694667pt;}
.y5_c00352{bottom:862.694667pt;}
.y4_c00352{bottom:882.474267pt;}
.y3_c00352{bottom:898.474267pt;}
.y2_c00352{bottom:922.033333pt;}
.y1_c00352{bottom:972.089733pt;}
.h7_c00352{height:26.917333pt;}
.h5_c00352{height:30.293333pt;}
.h2_c00352{height:34.901333pt;}
.h3_c00352{height:35.541333pt;}
.h4_c00352{height:38.453333pt;}
.h6_c00352{height:38.880000pt;}
.h1_c00352{height:1009.333333pt;}
.h0_c00352{height:1009.338800pt;}
.w0_c00352{width:794.622400pt;}
.w1_c00352{width:794.666667pt;}
.x0_c00352{left:0.000000pt;}
.x4_c00352{left:114.445467pt;}
.x5_c00352{left:125.784000pt;}
.x6_c00352{left:129.563600pt;}
.x2_c00352{left:167.166133pt;}
.x3_c00352{left:169.345200pt;}
.x1_c00352{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls3_c00353{letter-spacing:-1.026000px;}
.ls1_c00353{letter-spacing:-0.720000px;}
.ls2_c00353{letter-spacing:-0.630000px;}
.ls0_c00353{letter-spacing:0.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00353{word-spacing:-8.694000px;}
.ws2_c00353{word-spacing:0.000000px;}
.ws4_c00353{word-spacing:1.026000px;}
.ws3_c00353{word-spacing:7.056000px;}
.ws0_c00353{word-spacing:1585.435200px;}
._3_c00353{margin-left:-7.042800px;}
._0_c00353{margin-left:-2.112000px;}
._1_c00353{margin-left:-1.104000px;}
._7_c00353{width:1.008000px;}
._2_c00353{width:2.016000px;}
._6_c00353{width:7.776000px;}
._4_c00353{width:55.674000px;}
._5_c00353{width:59.136000px;}
.fc0_c00353{color:rgb(35,31,32);}
.fs3_c00353{font-size:42.000000px;}
.fs0_c00353{font-size:48.000000px;}
.fs4_c00353{font-size:54.000000px;}
.fs2_c00353{font-size:57.000000px;}
.fs1_c00353{font-size:60.000000px;}
.y0_c00353{bottom:0.000000px;}
.y19_c00353{bottom:348.176700px;}
.y18_c00353{bottom:361.676700px;}
.y17_c00353{bottom:375.176700px;}
.y16_c00353{bottom:401.680650px;}
.y15_c00353{bottom:415.180650px;}
.y14_c00353{bottom:428.680650px;}
.y13_c00353{bottom:455.184450px;}
.y12_c00353{bottom:468.684450px;}
.y11_c00353{bottom:482.184450px;}
.y10_c00353{bottom:504.436500px;}
.yf_c00353{bottom:522.436500px;}
.ye_c00353{bottom:548.940450px;}
.yd_c00353{bottom:837.152850px;}
.yc_c00353{bottom:850.652850px;}
.yb_c00353{bottom:864.152850px;}
.ya_c00353{bottom:890.656950px;}
.y9_c00353{bottom:904.156950px;}
.y8_c00353{bottom:917.656950px;}
.y7_c00353{bottom:944.160900px;}
.y6_c00353{bottom:957.660900px;}
.y5_c00353{bottom:971.160900px;}
.y4_c00353{bottom:993.412800px;}
.y3_c00353{bottom:1011.412800px;}
.y2_c00353{bottom:1037.916750px;}
.y1_c00353{bottom:1093.600950px;}
.h6_c00353{height:30.282000px;}
.h4_c00353{height:34.080000px;}
.h2_c00353{height:39.264000px;}
.h3_c00353{height:43.260000px;}
.h5_c00353{height:43.740000px;}
.h1_c00353{height:1135.500000px;}
.h0_c00353{height:1135.506150px;}
.w0_c00353{width:893.950200px;}
.w1_c00353{width:894.000000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:77.603100px;}
.x2_c00353{left:599.451450px;}
.x3_c00353{left:612.207300px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls3_c00353{letter-spacing:-0.912000pt;}
.ls1_c00353{letter-spacing:-0.640000pt;}
.ls2_c00353{letter-spacing:-0.560000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws1_c00353{word-spacing:-7.728000pt;}
.ws2_c00353{word-spacing:0.000000pt;}
.ws4_c00353{word-spacing:0.912000pt;}
.ws3_c00353{word-spacing:6.272000pt;}
.ws0_c00353{word-spacing:1409.275733pt;}
._3_c00353{margin-left:-6.260267pt;}
._0_c00353{margin-left:-1.877333pt;}
._1_c00353{margin-left:-0.981333pt;}
._7_c00353{width:0.896000pt;}
._2_c00353{width:1.792000pt;}
._6_c00353{width:6.912000pt;}
._4_c00353{width:49.488000pt;}
._5_c00353{width:52.565333pt;}
.fs3_c00353{font-size:37.333333pt;}
.fs0_c00353{font-size:42.666667pt;}
.fs4_c00353{font-size:48.000000pt;}
.fs2_c00353{font-size:50.666667pt;}
.fs1_c00353{font-size:53.333333pt;}
.y0_c00353{bottom:0.000000pt;}
.y19_c00353{bottom:309.490400pt;}
.y18_c00353{bottom:321.490400pt;}
.y17_c00353{bottom:333.490400pt;}
.y16_c00353{bottom:357.049467pt;}
.y15_c00353{bottom:369.049467pt;}
.y14_c00353{bottom:381.049467pt;}
.y13_c00353{bottom:404.608400pt;}
.y12_c00353{bottom:416.608400pt;}
.y11_c00353{bottom:428.608400pt;}
.y10_c00353{bottom:448.388000pt;}
.yf_c00353{bottom:464.388000pt;}
.ye_c00353{bottom:487.947067pt;}
.yd_c00353{bottom:744.135867pt;}
.yc_c00353{bottom:756.135867pt;}
.yb_c00353{bottom:768.135867pt;}
.ya_c00353{bottom:791.695067pt;}
.y9_c00353{bottom:803.695067pt;}
.y8_c00353{bottom:815.695067pt;}
.y7_c00353{bottom:839.254133pt;}
.y6_c00353{bottom:851.254133pt;}
.y5_c00353{bottom:863.254133pt;}
.y4_c00353{bottom:883.033600pt;}
.y3_c00353{bottom:899.033600pt;}
.y2_c00353{bottom:922.592667pt;}
.y1_c00353{bottom:972.089733pt;}
.h6_c00353{height:26.917333pt;}
.h4_c00353{height:30.293333pt;}
.h2_c00353{height:34.901333pt;}
.h3_c00353{height:38.453333pt;}
.h5_c00353{height:38.880000pt;}
.h1_c00353{height:1009.333333pt;}
.h0_c00353{height:1009.338800pt;}
.w0_c00353{width:794.622400pt;}
.w1_c00353{width:794.666667pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:68.980533pt;}
.x2_c00353{left:532.845733pt;}
.x3_c00353{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:0.908000;font-style:normal;font-weight: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_c00354;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00354{font-family:ff7_c00354;line-height:1.067000;font-style:normal;font-weight: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_c00354;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00354{font-family:ff8_c00354;line-height:0.710000;font-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_c00354{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls2_c00354{letter-spacing:-0.720000px;}
.ls3_c00354{letter-spacing:-0.630000px;}
.ls4_c00354{letter-spacing:-0.216000px;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00354{word-spacing:-8.694000px;}
.ws2_c00354{word-spacing:-6.487200px;}
.ws0_c00354{word-spacing:-0.048000px;}
.ws3_c00354{word-spacing:0.000000px;}
.ws5_c00354{word-spacing:0.216000px;}
.ws4_c00354{word-spacing:7.056000px;}
._0_c00354{margin-left:-2755.276200px;}
._4_c00354{margin-left:-6.947400px;}
._1_c00354{margin-left:-2.256000px;}
._3_c00354{margin-left:-1.200000px;}
._2_c00354{width:1.008000px;}
._7_c00354{width:7.776000px;}
._5_c00354{width:55.674000px;}
._6_c00354{width:59.136000px;}
.fc0_c00354{color:rgb(35,31,32);}
.fs5_c00354{font-size:30.600000px;}
.fs6_c00354{font-size:36.000000px;}
.fs3_c00354{font-size:42.000000px;}
.fs0_c00354{font-size:48.000000px;}
.fs4_c00354{font-size:54.000000px;}
.fs2_c00354{font-size:57.000000px;}
.fs1_c00354{font-size:60.000000px;}
.y0_c00354{bottom:0.000000px;}
.y18_c00354{bottom:347.760150px;}
.y17_c00354{bottom:361.260000px;}
.y16_c00354{bottom:374.760000px;}
.y15_c00354{bottom:401.263950px;}
.y14_c00354{bottom:414.763950px;}
.y13_c00354{bottom:428.263950px;}
.y12_c00354{bottom:454.767900px;}
.y11_c00354{bottom:468.267900px;}
.y10_c00354{bottom:481.767900px;}
.yf_c00354{bottom:504.019800px;}
.ye_c00354{bottom:522.019800px;}
.yd_c00354{bottom:548.523750px;}
.yc_c00354{bottom:850.236150px;}
.yb_c00354{bottom:863.736150px;}
.ya_c00354{bottom:877.236150px;}
.y9_c00354{bottom:903.740100px;}
.y8_c00354{bottom:917.240100px;}
.y7_c00354{bottom:943.744050px;}
.y6_c00354{bottom:957.244050px;}
.y5_c00354{bottom:970.744050px;}
.y4_c00354{bottom:992.996100px;}
.y3_c00354{bottom:1010.996100px;}
.y2_c00354{bottom:1037.500050px;}
.y19_c00354{bottom:1040.299350px;}
.y1_c00354{bottom:1093.600950px;}
.h8_c00354{height:25.200000px;}
.h7_c00354{height:30.282000px;}
.h5_c00354{height:34.080000px;}
.h2_c00354{height:39.264000px;}
.h3_c00354{height:39.984000px;}
.h4_c00354{height:43.260000px;}
.h6_c00354{height:43.740000px;}
.h1_c00354{height:1135.500000px;}
.h0_c00354{height:1135.506150px;}
.w0_c00354{width:893.950200px;}
.w1_c00354{width:894.000000px;}
.x0_c00354{left:0.000000px;}
.x4_c00354{left:128.545950px;}
.x5_c00354{left:141.301950px;}
.x2_c00354{left:188.061900px;}
.x3_c00354{left:190.513350px;}
.x6_c00354{left:321.177150px;}
.x1_c00354{left:800.165850px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls2_c00354{letter-spacing:-0.640000pt;}
.ls3_c00354{letter-spacing:-0.560000pt;}
.ls4_c00354{letter-spacing:-0.192000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.426667pt;}
.ws1_c00354{word-spacing:-7.728000pt;}
.ws2_c00354{word-spacing:-5.766400pt;}
.ws0_c00354{word-spacing:-0.042667pt;}
.ws3_c00354{word-spacing:0.000000pt;}
.ws5_c00354{word-spacing:0.192000pt;}
.ws4_c00354{word-spacing:6.272000pt;}
._0_c00354{margin-left:-2449.134400pt;}
._4_c00354{margin-left:-6.175467pt;}
._1_c00354{margin-left:-2.005333pt;}
._3_c00354{margin-left:-1.066667pt;}
._2_c00354{width:0.896000pt;}
._7_c00354{width:6.912000pt;}
._5_c00354{width:49.488000pt;}
._6_c00354{width:52.565333pt;}
.fs5_c00354{font-size:27.200000pt;}
.fs6_c00354{font-size:32.000000pt;}
.fs3_c00354{font-size:37.333333pt;}
.fs0_c00354{font-size:42.666667pt;}
.fs4_c00354{font-size:48.000000pt;}
.fs2_c00354{font-size:50.666667pt;}
.fs1_c00354{font-size:53.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y18_c00354{bottom:309.120133pt;}
.y17_c00354{bottom:321.120000pt;}
.y16_c00354{bottom:333.120000pt;}
.y15_c00354{bottom:356.679067pt;}
.y14_c00354{bottom:368.679067pt;}
.y13_c00354{bottom:380.679067pt;}
.y12_c00354{bottom:404.238133pt;}
.y11_c00354{bottom:416.238133pt;}
.y10_c00354{bottom:428.238133pt;}
.yf_c00354{bottom:448.017600pt;}
.ye_c00354{bottom:464.017600pt;}
.yd_c00354{bottom:487.576667pt;}
.yc_c00354{bottom:755.765467pt;}
.yb_c00354{bottom:767.765467pt;}
.ya_c00354{bottom:779.765467pt;}
.y9_c00354{bottom:803.324533pt;}
.y8_c00354{bottom:815.324533pt;}
.y7_c00354{bottom:838.883600pt;}
.y6_c00354{bottom:850.883600pt;}
.y5_c00354{bottom:862.883600pt;}
.y4_c00354{bottom:882.663200pt;}
.y3_c00354{bottom:898.663200pt;}
.y2_c00354{bottom:922.222267pt;}
.y19_c00354{bottom:924.710533pt;}
.y1_c00354{bottom:972.089733pt;}
.h8_c00354{height:22.400000pt;}
.h7_c00354{height:26.917333pt;}
.h5_c00354{height:30.293333pt;}
.h2_c00354{height:34.901333pt;}
.h3_c00354{height:35.541333pt;}
.h4_c00354{height:38.453333pt;}
.h6_c00354{height:38.880000pt;}
.h1_c00354{height:1009.333333pt;}
.h0_c00354{height:1009.338800pt;}
.w0_c00354{width:794.622400pt;}
.w1_c00354{width:794.666667pt;}
.x0_c00354{left:0.000000pt;}
.x4_c00354{left:114.263067pt;}
.x5_c00354{left:125.601733pt;}
.x2_c00354{left:167.166133pt;}
.x3_c00354{left:169.345200pt;}
.x6_c00354{left:285.490800pt;}
.x1_c00354{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00355;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls1_c00355{letter-spacing:-0.720000px;}
.ls2_c00355{letter-spacing:-0.630000px;}
.ls3_c00355{letter-spacing:-0.216000px;}
.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;}
}
.ws1_c00355{word-spacing:-8.694000px;}
.ws2_c00355{word-spacing:0.000000px;}
.ws4_c00355{word-spacing:0.216000px;}
.ws3_c00355{word-spacing:7.056000px;}
.ws0_c00355{word-spacing:1585.435200px;}
._3_c00355{margin-left:-7.042800px;}
._0_c00355{margin-left:-2.112000px;}
._1_c00355{margin-left:-1.104000px;}
._2_c00355{width:2.016000px;}
._6_c00355{width:7.776000px;}
._4_c00355{width:55.674000px;}
._5_c00355{width:59.136000px;}
.fc0_c00355{color:rgb(35,31,32);}
.fs3_c00355{font-size:42.000000px;}
.fs0_c00355{font-size:48.000000px;}
.fs4_c00355{font-size:54.000000px;}
.fs2_c00355{font-size:57.000000px;}
.fs1_c00355{font-size:60.000000px;}
.y0_c00355{bottom:0.000000px;}
.y19_c00355{bottom:347.712450px;}
.y18_c00355{bottom:361.212450px;}
.y17_c00355{bottom:374.712450px;}
.y16_c00355{bottom:401.216400px;}
.y15_c00355{bottom:414.716400px;}
.y14_c00355{bottom:428.216400px;}
.y13_c00355{bottom:454.720200px;}
.y12_c00355{bottom:468.220200px;}
.y11_c00355{bottom:481.720200px;}
.y10_c00355{bottom:503.972250px;}
.yf_c00355{bottom:521.972250px;}
.ye_c00355{bottom:548.476200px;}
.yd_c00355{bottom:836.688600px;}
.yc_c00355{bottom:850.188600px;}
.yb_c00355{bottom:863.688600px;}
.ya_c00355{bottom:890.192550px;}
.y9_c00355{bottom:903.692550px;}
.y8_c00355{bottom:917.192550px;}
.y7_c00355{bottom:943.696500px;}
.y6_c00355{bottom:957.196500px;}
.y5_c00355{bottom:970.696500px;}
.y4_c00355{bottom:992.948550px;}
.y3_c00355{bottom:1010.948550px;}
.y2_c00355{bottom:1037.452500px;}
.y1_c00355{bottom:1093.600950px;}
.h6_c00355{height:30.282000px;}
.h4_c00355{height:34.080000px;}
.h2_c00355{height:39.264000px;}
.h3_c00355{height:43.260000px;}
.h5_c00355{height:43.740000px;}
.h1_c00355{height:1135.500000px;}
.h0_c00355{height:1135.506150px;}
.w0_c00355{width:893.950200px;}
.w1_c00355{width:894.000000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:77.603100px;}
.x2_c00355{left:599.238900px;}
.x3_c00355{left:611.994750px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls1_c00355{letter-spacing:-0.640000pt;}
.ls2_c00355{letter-spacing:-0.560000pt;}
.ls3_c00355{letter-spacing:-0.192000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws1_c00355{word-spacing:-7.728000pt;}
.ws2_c00355{word-spacing:0.000000pt;}
.ws4_c00355{word-spacing:0.192000pt;}
.ws3_c00355{word-spacing:6.272000pt;}
.ws0_c00355{word-spacing:1409.275733pt;}
._3_c00355{margin-left:-6.260267pt;}
._0_c00355{margin-left:-1.877333pt;}
._1_c00355{margin-left:-0.981333pt;}
._2_c00355{width:1.792000pt;}
._6_c00355{width:6.912000pt;}
._4_c00355{width:49.488000pt;}
._5_c00355{width:52.565333pt;}
.fs3_c00355{font-size:37.333333pt;}
.fs0_c00355{font-size:42.666667pt;}
.fs4_c00355{font-size:48.000000pt;}
.fs2_c00355{font-size:50.666667pt;}
.fs1_c00355{font-size:53.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.y19_c00355{bottom:309.077733pt;}
.y18_c00355{bottom:321.077733pt;}
.y17_c00355{bottom:333.077733pt;}
.y16_c00355{bottom:356.636800pt;}
.y15_c00355{bottom:368.636800pt;}
.y14_c00355{bottom:380.636800pt;}
.y13_c00355{bottom:404.195733pt;}
.y12_c00355{bottom:416.195733pt;}
.y11_c00355{bottom:428.195733pt;}
.y10_c00355{bottom:447.975333pt;}
.yf_c00355{bottom:463.975333pt;}
.ye_c00355{bottom:487.534400pt;}
.yd_c00355{bottom:743.723200pt;}
.yc_c00355{bottom:755.723200pt;}
.yb_c00355{bottom:767.723200pt;}
.ya_c00355{bottom:791.282267pt;}
.y9_c00355{bottom:803.282267pt;}
.y8_c00355{bottom:815.282267pt;}
.y7_c00355{bottom:838.841333pt;}
.y6_c00355{bottom:850.841333pt;}
.y5_c00355{bottom:862.841333pt;}
.y4_c00355{bottom:882.620933pt;}
.y3_c00355{bottom:898.620933pt;}
.y2_c00355{bottom:922.180000pt;}
.y1_c00355{bottom:972.089733pt;}
.h6_c00355{height:26.917333pt;}
.h4_c00355{height:30.293333pt;}
.h2_c00355{height:34.901333pt;}
.h3_c00355{height:38.453333pt;}
.h5_c00355{height:38.880000pt;}
.h1_c00355{height:1009.333333pt;}
.h0_c00355{height:1009.338800pt;}
.w0_c00355{width:794.622400pt;}
.w1_c00355{width:794.666667pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:68.980533pt;}
.x2_c00355{left:532.656800pt;}
.x3_c00355{left:543.995333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00356;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00356{font-family:ff6_c00356;line-height:0.908000;font-style:normal;font-weight: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_c00356;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00356{font-family:ff7_c00356;line-height:1.067000;font-style:normal;font-weight: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_c00356;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00356{font-family:ff8_c00356;line-height:0.710000;font-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_c00356{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls5_c00356{letter-spacing:-1.620000px;}
.ls3_c00356{letter-spacing:-0.720000px;}
.ls2_c00356{letter-spacing:-0.702000px;}
.ls4_c00356{letter-spacing:-0.630000px;}
.ls1_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00356{word-spacing:-6.487200px;}
.ws0_c00356{word-spacing:-0.048000px;}
.ws3_c00356{word-spacing:0.000000px;}
.ws5_c00356{word-spacing:0.702000px;}
.ws6_c00356{word-spacing:1.620000px;}
.ws4_c00356{word-spacing:7.056000px;}
._0_c00356{margin-left:-2755.276200px;}
._4_c00356{margin-left:-6.946800px;}
._1_c00356{margin-left:-2.256000px;}
._3_c00356{margin-left:-1.200000px;}
._2_c00356{width:1.008000px;}
._8_c00356{width:2.394000px;}
._7_c00356{width:7.776000px;}
._5_c00356{width:55.674000px;}
._6_c00356{width:59.136000px;}
.fc0_c00356{color:rgb(35,31,32);}
.fs5_c00356{font-size:30.600000px;}
.fs6_c00356{font-size:36.000000px;}
.fs3_c00356{font-size:42.000000px;}
.fs0_c00356{font-size:48.000000px;}
.fs4_c00356{font-size:54.000000px;}
.fs2_c00356{font-size:57.000000px;}
.fs1_c00356{font-size:60.000000px;}
.y0_c00356{bottom:0.000000px;}
.y19_c00356{bottom:342.795750px;}
.y18_c00356{bottom:356.295750px;}
.y17_c00356{bottom:369.795750px;}
.y16_c00356{bottom:396.299700px;}
.y15_c00356{bottom:409.799700px;}
.y14_c00356{bottom:436.303650px;}
.y13_c00356{bottom:449.803650px;}
.y12_c00356{bottom:463.303650px;}
.y11_c00356{bottom:485.555700px;}
.y10_c00356{bottom:503.555700px;}
.yf_c00356{bottom:521.555700px;}
.ye_c00356{bottom:548.059500px;}
.y1b_c00356{bottom:551.323050px;}
.yd_c00356{bottom:831.772050px;}
.yc_c00356{bottom:845.272050px;}
.yb_c00356{bottom:858.772050px;}
.ya_c00356{bottom:885.276000px;}
.y9_c00356{bottom:898.776000px;}
.y8_c00356{bottom:925.279950px;}
.y7_c00356{bottom:938.779950px;}
.y6_c00356{bottom:952.279950px;}
.y5_c00356{bottom:974.531850px;}
.y4_c00356{bottom:992.531850px;}
.y3_c00356{bottom:1010.531850px;}
.y2_c00356{bottom:1037.035950px;}
.y1a_c00356{bottom:1039.834950px;}
.y1_c00356{bottom:1093.600950px;}
.h8_c00356{height:25.200000px;}
.h7_c00356{height:30.282000px;}
.h5_c00356{height:34.080000px;}
.h2_c00356{height:39.264000px;}
.h3_c00356{height:39.984000px;}
.h4_c00356{height:43.260000px;}
.h6_c00356{height:43.740000px;}
.h1_c00356{height:1135.500000px;}
.h0_c00356{height:1135.506150px;}
.w0_c00356{width:893.950200px;}
.w1_c00356{width:894.000000px;}
.x0_c00356{left:0.000000px;}
.x4_c00356{left:128.333400px;}
.x5_c00356{left:141.089250px;}
.x6_c00356{left:145.341300px;}
.x2_c00356{left:188.061900px;}
.x3_c00356{left:190.513350px;}
.x7_c00356{left:320.964600px;}
.x1_c00356{left:800.165850px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls5_c00356{letter-spacing:-1.440000pt;}
.ls3_c00356{letter-spacing:-0.640000pt;}
.ls2_c00356{letter-spacing:-0.624000pt;}
.ls4_c00356{letter-spacing:-0.560000pt;}
.ls1_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.426667pt;}
.ws1_c00356{word-spacing:-7.728000pt;}
.ws2_c00356{word-spacing:-5.766400pt;}
.ws0_c00356{word-spacing:-0.042667pt;}
.ws3_c00356{word-spacing:0.000000pt;}
.ws5_c00356{word-spacing:0.624000pt;}
.ws6_c00356{word-spacing:1.440000pt;}
.ws4_c00356{word-spacing:6.272000pt;}
._0_c00356{margin-left:-2449.134400pt;}
._4_c00356{margin-left:-6.174933pt;}
._1_c00356{margin-left:-2.005333pt;}
._3_c00356{margin-left:-1.066667pt;}
._2_c00356{width:0.896000pt;}
._8_c00356{width:2.128000pt;}
._7_c00356{width:6.912000pt;}
._5_c00356{width:49.488000pt;}
._6_c00356{width:52.565333pt;}
.fs5_c00356{font-size:27.200000pt;}
.fs6_c00356{font-size:32.000000pt;}
.fs3_c00356{font-size:37.333333pt;}
.fs0_c00356{font-size:42.666667pt;}
.fs4_c00356{font-size:48.000000pt;}
.fs2_c00356{font-size:50.666667pt;}
.fs1_c00356{font-size:53.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y19_c00356{bottom:304.707333pt;}
.y18_c00356{bottom:316.707333pt;}
.y17_c00356{bottom:328.707333pt;}
.y16_c00356{bottom:352.266400pt;}
.y15_c00356{bottom:364.266400pt;}
.y14_c00356{bottom:387.825467pt;}
.y13_c00356{bottom:399.825467pt;}
.y12_c00356{bottom:411.825467pt;}
.y11_c00356{bottom:431.605067pt;}
.y10_c00356{bottom:447.605067pt;}
.yf_c00356{bottom:463.605067pt;}
.ye_c00356{bottom:487.164000pt;}
.y1b_c00356{bottom:490.064933pt;}
.yd_c00356{bottom:739.352933pt;}
.yc_c00356{bottom:751.352933pt;}
.yb_c00356{bottom:763.352933pt;}
.ya_c00356{bottom:786.912000pt;}
.y9_c00356{bottom:798.912000pt;}
.y8_c00356{bottom:822.471067pt;}
.y7_c00356{bottom:834.471067pt;}
.y6_c00356{bottom:846.471067pt;}
.y5_c00356{bottom:866.250533pt;}
.y4_c00356{bottom:882.250533pt;}
.y3_c00356{bottom:898.250533pt;}
.y2_c00356{bottom:921.809733pt;}
.y1a_c00356{bottom:924.297733pt;}
.y1_c00356{bottom:972.089733pt;}
.h8_c00356{height:22.400000pt;}
.h7_c00356{height:26.917333pt;}
.h5_c00356{height:30.293333pt;}
.h2_c00356{height:34.901333pt;}
.h3_c00356{height:35.541333pt;}
.h4_c00356{height:38.453333pt;}
.h6_c00356{height:38.880000pt;}
.h1_c00356{height:1009.333333pt;}
.h0_c00356{height:1009.338800pt;}
.w0_c00356{width:794.622400pt;}
.w1_c00356{width:794.666667pt;}
.x0_c00356{left:0.000000pt;}
.x4_c00356{left:114.074133pt;}
.x5_c00356{left:125.412667pt;}
.x6_c00356{left:129.192267pt;}
.x2_c00356{left:167.166133pt;}
.x3_c00356{left:169.345200pt;}
.x7_c00356{left:285.301867pt;}
.x1_c00356{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00357;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00357;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00357;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00357{font-family:ff7_c00357;line-height:0.710000;font-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_c00357{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls1_c00357{letter-spacing:-0.720000px;}
.ls2_c00357{letter-spacing:-0.630000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00357{word-spacing:-8.694000px;}
.ws2_c00357{word-spacing:-6.487200px;}
.ws3_c00357{word-spacing:0.000000px;}
.ws4_c00357{word-spacing:7.056000px;}
.ws5_c00357{word-spacing:55.674000px;}
.ws0_c00357{word-spacing:1585.435200px;}
._3_c00357{margin-left:-7.042800px;}
._0_c00357{margin-left:-2.112000px;}
._1_c00357{margin-left:-1.104000px;}
._2_c00357{width:2.016000px;}
._6_c00357{width:7.776000px;}
._4_c00357{width:55.674000px;}
._5_c00357{width:59.136000px;}
.fc0_c00357{color:rgb(35,31,32);}
.fs5_c00357{font-size:30.600000px;}
.fs6_c00357{font-size:36.000000px;}
.fs3_c00357{font-size:42.000000px;}
.fs0_c00357{font-size:48.000000px;}
.fs4_c00357{font-size:54.000000px;}
.fs2_c00357{font-size:57.000000px;}
.fs1_c00357{font-size:60.000000px;}
.y0_c00357{bottom:0.000000px;}
.y18_c00357{bottom:348.137700px;}
.y17_c00357{bottom:361.637700px;}
.y16_c00357{bottom:375.137550px;}
.y15_c00357{bottom:401.641500px;}
.y14_c00357{bottom:415.141500px;}
.y13_c00357{bottom:428.641500px;}
.y12_c00357{bottom:455.145450px;}
.y11_c00357{bottom:468.645450px;}
.y10_c00357{bottom:482.145450px;}
.yf_c00357{bottom:504.397500px;}
.ye_c00357{bottom:522.397500px;}
.yd_c00357{bottom:548.901450px;}
.yc_c00357{bottom:850.613850px;}
.yb_c00357{bottom:864.113850px;}
.ya_c00357{bottom:877.613850px;}
.y9_c00357{bottom:904.117950px;}
.y8_c00357{bottom:917.617950px;}
.y7_c00357{bottom:944.121900px;}
.y6_c00357{bottom:957.621900px;}
.y5_c00357{bottom:971.121900px;}
.y4_c00357{bottom:993.373800px;}
.y3_c00357{bottom:1011.373800px;}
.y2_c00357{bottom:1037.877750px;}
.y19_c00357{bottom:1040.260350px;}
.y1_c00357{bottom:1093.600950px;}
.h7_c00357{height:25.200000px;}
.h6_c00357{height:30.282000px;}
.h4_c00357{height:34.080000px;}
.h2_c00357{height:39.264000px;}
.h3_c00357{height:43.260000px;}
.h5_c00357{height:43.740000px;}
.h1_c00357{height:1135.500000px;}
.h0_c00357{height:1135.506150px;}
.w0_c00357{width:893.950200px;}
.w1_c00357{width:894.000000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:77.603100px;}
.x4_c00357{left:424.057800px;}
.x2_c00357{left:599.451450px;}
.x3_c00357{left:612.207300px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls1_c00357{letter-spacing:-0.640000pt;}
.ls2_c00357{letter-spacing:-0.560000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws1_c00357{word-spacing:-7.728000pt;}
.ws2_c00357{word-spacing:-5.766400pt;}
.ws3_c00357{word-spacing:0.000000pt;}
.ws4_c00357{word-spacing:6.272000pt;}
.ws5_c00357{word-spacing:49.488000pt;}
.ws0_c00357{word-spacing:1409.275733pt;}
._3_c00357{margin-left:-6.260267pt;}
._0_c00357{margin-left:-1.877333pt;}
._1_c00357{margin-left:-0.981333pt;}
._2_c00357{width:1.792000pt;}
._6_c00357{width:6.912000pt;}
._4_c00357{width:49.488000pt;}
._5_c00357{width:52.565333pt;}
.fs5_c00357{font-size:27.200000pt;}
.fs6_c00357{font-size:32.000000pt;}
.fs3_c00357{font-size:37.333333pt;}
.fs0_c00357{font-size:42.666667pt;}
.fs4_c00357{font-size:48.000000pt;}
.fs2_c00357{font-size:50.666667pt;}
.fs1_c00357{font-size:53.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y18_c00357{bottom:309.455733pt;}
.y17_c00357{bottom:321.455733pt;}
.y16_c00357{bottom:333.455600pt;}
.y15_c00357{bottom:357.014667pt;}
.y14_c00357{bottom:369.014667pt;}
.y13_c00357{bottom:381.014667pt;}
.y12_c00357{bottom:404.573733pt;}
.y11_c00357{bottom:416.573733pt;}
.y10_c00357{bottom:428.573733pt;}
.yf_c00357{bottom:448.353333pt;}
.ye_c00357{bottom:464.353333pt;}
.yd_c00357{bottom:487.912400pt;}
.yc_c00357{bottom:756.101200pt;}
.yb_c00357{bottom:768.101200pt;}
.ya_c00357{bottom:780.101200pt;}
.y9_c00357{bottom:803.660400pt;}
.y8_c00357{bottom:815.660400pt;}
.y7_c00357{bottom:839.219467pt;}
.y6_c00357{bottom:851.219467pt;}
.y5_c00357{bottom:863.219467pt;}
.y4_c00357{bottom:882.998933pt;}
.y3_c00357{bottom:898.998933pt;}
.y2_c00357{bottom:922.558000pt;}
.y19_c00357{bottom:924.675867pt;}
.y1_c00357{bottom:972.089733pt;}
.h7_c00357{height:22.400000pt;}
.h6_c00357{height:26.917333pt;}
.h4_c00357{height:30.293333pt;}
.h2_c00357{height:34.901333pt;}
.h3_c00357{height:38.453333pt;}
.h5_c00357{height:38.880000pt;}
.h1_c00357{height:1009.333333pt;}
.h0_c00357{height:1009.338800pt;}
.w0_c00357{width:794.622400pt;}
.w1_c00357{width:794.666667pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:68.980533pt;}
.x4_c00357{left:376.940267pt;}
.x2_c00357{left:532.845733pt;}
.x3_c00357{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00358;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00358{font-family:ff6_c00358;line-height:0.908000;font-style:normal;font-weight: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_c00358;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00358{font-family:ff7_c00358;line-height:1.067000;font-style:normal;font-weight: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_c00358;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00358{font-family:ff8_c00358;line-height:0.710000;font-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_c00358{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls3_c00358{letter-spacing:-0.720000px;}
.ls4_c00358{letter-spacing:-0.630000px;}
.ls2_c00358{letter-spacing:-0.540000px;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:0.480000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-8.694000px;}
.ws2_c00358{word-spacing:-6.487200px;}
.ws0_c00358{word-spacing:-0.048000px;}
.ws3_c00358{word-spacing:0.000000px;}
.ws5_c00358{word-spacing:0.540000px;}
.ws4_c00358{word-spacing:7.056000px;}
._0_c00358{margin-left:-2755.276200px;}
._4_c00358{margin-left:-6.947400px;}
._1_c00358{margin-left:-2.256000px;}
._3_c00358{margin-left:-1.200000px;}
._2_c00358{width:1.008000px;}
._7_c00358{width:7.776000px;}
._5_c00358{width:55.674000px;}
._6_c00358{width:59.136000px;}
.fc0_c00358{color:rgb(35,31,32);}
.fs5_c00358{font-size:30.600000px;}
.fs6_c00358{font-size:36.000000px;}
.fs3_c00358{font-size:42.000000px;}
.fs0_c00358{font-size:48.000000px;}
.fs4_c00358{font-size:54.000000px;}
.fs2_c00358{font-size:57.000000px;}
.fs1_c00358{font-size:60.000000px;}
.y0_c00358{bottom:0.000000px;}
.y18_c00358{bottom:347.721000px;}
.y17_c00358{bottom:361.221000px;}
.y16_c00358{bottom:374.721000px;}
.y15_c00358{bottom:401.224950px;}
.y14_c00358{bottom:414.724950px;}
.y13_c00358{bottom:428.224950px;}
.y12_c00358{bottom:454.728750px;}
.y11_c00358{bottom:468.228750px;}
.y10_c00358{bottom:481.728750px;}
.yf_c00358{bottom:503.980800px;}
.ye_c00358{bottom:521.980800px;}
.yd_c00358{bottom:548.484750px;}
.yc_c00358{bottom:850.197150px;}
.yb_c00358{bottom:863.697150px;}
.ya_c00358{bottom:877.197150px;}
.y9_c00358{bottom:903.701100px;}
.y8_c00358{bottom:917.201100px;}
.y7_c00358{bottom:943.705050px;}
.y6_c00358{bottom:957.205050px;}
.y5_c00358{bottom:970.705050px;}
.y4_c00358{bottom:992.957100px;}
.y3_c00358{bottom:1010.957100px;}
.y2_c00358{bottom:1037.461050px;}
.y19_c00358{bottom:1040.260350px;}
.y1_c00358{bottom:1093.600950px;}
.h8_c00358{height:25.200000px;}
.h7_c00358{height:30.282000px;}
.h5_c00358{height:34.080000px;}
.h2_c00358{height:39.264000px;}
.h3_c00358{height:39.984000px;}
.h4_c00358{height:43.260000px;}
.h6_c00358{height:43.740000px;}
.h1_c00358{height:1135.500000px;}
.h0_c00358{height:1135.506150px;}
.w0_c00358{width:893.950200px;}
.w1_c00358{width:894.000000px;}
.x0_c00358{left:0.000000px;}
.x4_c00358{left:128.545950px;}
.x5_c00358{left:141.301950px;}
.x2_c00358{left:188.061900px;}
.x3_c00358{left:190.513350px;}
.x6_c00358{left:321.177150px;}
.x1_c00358{left:800.165850px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls3_c00358{letter-spacing:-0.640000pt;}
.ls4_c00358{letter-spacing:-0.560000pt;}
.ls2_c00358{letter-spacing:-0.480000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:0.426667pt;}
.ws1_c00358{word-spacing:-7.728000pt;}
.ws2_c00358{word-spacing:-5.766400pt;}
.ws0_c00358{word-spacing:-0.042667pt;}
.ws3_c00358{word-spacing:0.000000pt;}
.ws5_c00358{word-spacing:0.480000pt;}
.ws4_c00358{word-spacing:6.272000pt;}
._0_c00358{margin-left:-2449.134400pt;}
._4_c00358{margin-left:-6.175467pt;}
._1_c00358{margin-left:-2.005333pt;}
._3_c00358{margin-left:-1.066667pt;}
._2_c00358{width:0.896000pt;}
._7_c00358{width:6.912000pt;}
._5_c00358{width:49.488000pt;}
._6_c00358{width:52.565333pt;}
.fs5_c00358{font-size:27.200000pt;}
.fs6_c00358{font-size:32.000000pt;}
.fs3_c00358{font-size:37.333333pt;}
.fs0_c00358{font-size:42.666667pt;}
.fs4_c00358{font-size:48.000000pt;}
.fs2_c00358{font-size:50.666667pt;}
.fs1_c00358{font-size:53.333333pt;}
.y0_c00358{bottom:0.000000pt;}
.y18_c00358{bottom:309.085333pt;}
.y17_c00358{bottom:321.085333pt;}
.y16_c00358{bottom:333.085333pt;}
.y15_c00358{bottom:356.644400pt;}
.y14_c00358{bottom:368.644400pt;}
.y13_c00358{bottom:380.644400pt;}
.y12_c00358{bottom:404.203333pt;}
.y11_c00358{bottom:416.203333pt;}
.y10_c00358{bottom:428.203333pt;}
.yf_c00358{bottom:447.982933pt;}
.ye_c00358{bottom:463.982933pt;}
.yd_c00358{bottom:487.542000pt;}
.yc_c00358{bottom:755.730800pt;}
.yb_c00358{bottom:767.730800pt;}
.ya_c00358{bottom:779.730800pt;}
.y9_c00358{bottom:803.289867pt;}
.y8_c00358{bottom:815.289867pt;}
.y7_c00358{bottom:838.848933pt;}
.y6_c00358{bottom:850.848933pt;}
.y5_c00358{bottom:862.848933pt;}
.y4_c00358{bottom:882.628533pt;}
.y3_c00358{bottom:898.628533pt;}
.y2_c00358{bottom:922.187600pt;}
.y19_c00358{bottom:924.675867pt;}
.y1_c00358{bottom:972.089733pt;}
.h8_c00358{height:22.400000pt;}
.h7_c00358{height:26.917333pt;}
.h5_c00358{height:30.293333pt;}
.h2_c00358{height:34.901333pt;}
.h3_c00358{height:35.541333pt;}
.h4_c00358{height:38.453333pt;}
.h6_c00358{height:38.880000pt;}
.h1_c00358{height:1009.333333pt;}
.h0_c00358{height:1009.338800pt;}
.w0_c00358{width:794.622400pt;}
.w1_c00358{width:794.666667pt;}
.x0_c00358{left:0.000000pt;}
.x4_c00358{left:114.263067pt;}
.x5_c00358{left:125.601733pt;}
.x2_c00358{left:167.166133pt;}
.x3_c00358{left:169.345200pt;}
.x6_c00358{left:285.490800pt;}
.x1_c00358{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00359;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00359{font-family:ff6_c00359;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls4_c00359{letter-spacing:-0.864000px;}
.ls2_c00359{letter-spacing:-0.720000px;}
.ls3_c00359{letter-spacing:-0.630000px;}
.ls1_c00359{letter-spacing:-0.540000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.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:-11.502000px;}
.ws1_c00359{word-spacing:-8.694000px;}
.ws3_c00359{word-spacing:0.000000px;}
.ws5_c00359{word-spacing:0.540000px;}
.ws4_c00359{word-spacing:7.056000px;}
.ws0_c00359{word-spacing:1585.435200px;}
._3_c00359{margin-left:-7.042800px;}
._7_c00359{margin-left:-4.794000px;}
._0_c00359{margin-left:-2.112000px;}
._1_c00359{margin-left:-1.104000px;}
._2_c00359{width:2.016000px;}
._6_c00359{width:7.776000px;}
._4_c00359{width:55.674000px;}
._5_c00359{width:59.136000px;}
.fc0_c00359{color:rgb(35,31,32);}
.fs3_c00359{font-size:42.000000px;}
.fs0_c00359{font-size:48.000000px;}
.fs4_c00359{font-size:54.000000px;}
.fs2_c00359{font-size:57.000000px;}
.fs1_c00359{font-size:60.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1a_c00359{bottom:329.964000px;}
.y19_c00359{bottom:343.464000px;}
.y18_c00359{bottom:356.964000px;}
.y17_c00359{bottom:383.467950px;}
.y16_c00359{bottom:396.967950px;}
.y15_c00359{bottom:410.467950px;}
.y14_c00359{bottom:436.971900px;}
.y13_c00359{bottom:450.471900px;}
.y12_c00359{bottom:463.971900px;}
.y11_c00359{bottom:486.223950px;}
.y10_c00359{bottom:504.223950px;}
.yf_c00359{bottom:522.223950px;}
.ye_c00359{bottom:548.727900px;}
.yd_c00359{bottom:836.940300px;}
.yc_c00359{bottom:850.440300px;}
.yb_c00359{bottom:863.940300px;}
.ya_c00359{bottom:890.444250px;}
.y9_c00359{bottom:903.944250px;}
.y8_c00359{bottom:917.444250px;}
.y7_c00359{bottom:943.948200px;}
.y6_c00359{bottom:957.448200px;}
.y5_c00359{bottom:970.948200px;}
.y4_c00359{bottom:993.200250px;}
.y3_c00359{bottom:1011.200250px;}
.y2_c00359{bottom:1037.704200px;}
.y1_c00359{bottom:1093.600950px;}
.h6_c00359{height:30.282000px;}
.h4_c00359{height:34.080000px;}
.h2_c00359{height:39.264000px;}
.h3_c00359{height:43.260000px;}
.h5_c00359{height:43.740000px;}
.h1_c00359{height:1135.500000px;}
.h0_c00359{height:1135.506150px;}
.w0_c00359{width:893.950200px;}
.w1_c00359{width:894.000000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:77.603100px;}
.x2_c00359{left:599.664000px;}
.x3_c00359{left:612.419850px;}
.x4_c00359{left:616.671900px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls4_c00359{letter-spacing:-0.768000pt;}
.ls2_c00359{letter-spacing:-0.640000pt;}
.ls3_c00359{letter-spacing:-0.560000pt;}
.ls1_c00359{letter-spacing:-0.480000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws2_c00359{word-spacing:-10.224000pt;}
.ws1_c00359{word-spacing:-7.728000pt;}
.ws3_c00359{word-spacing:0.000000pt;}
.ws5_c00359{word-spacing:0.480000pt;}
.ws4_c00359{word-spacing:6.272000pt;}
.ws0_c00359{word-spacing:1409.275733pt;}
._3_c00359{margin-left:-6.260267pt;}
._7_c00359{margin-left:-4.261333pt;}
._0_c00359{margin-left:-1.877333pt;}
._1_c00359{margin-left:-0.981333pt;}
._2_c00359{width:1.792000pt;}
._6_c00359{width:6.912000pt;}
._4_c00359{width:49.488000pt;}
._5_c00359{width:52.565333pt;}
.fs3_c00359{font-size:37.333333pt;}
.fs0_c00359{font-size:42.666667pt;}
.fs4_c00359{font-size:48.000000pt;}
.fs2_c00359{font-size:50.666667pt;}
.fs1_c00359{font-size:53.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.y1a_c00359{bottom:293.301333pt;}
.y19_c00359{bottom:305.301333pt;}
.y18_c00359{bottom:317.301333pt;}
.y17_c00359{bottom:340.860400pt;}
.y16_c00359{bottom:352.860400pt;}
.y15_c00359{bottom:364.860400pt;}
.y14_c00359{bottom:388.419467pt;}
.y13_c00359{bottom:400.419467pt;}
.y12_c00359{bottom:412.419467pt;}
.y11_c00359{bottom:432.199067pt;}
.y10_c00359{bottom:448.199067pt;}
.yf_c00359{bottom:464.199067pt;}
.ye_c00359{bottom:487.758133pt;}
.yd_c00359{bottom:743.946933pt;}
.yc_c00359{bottom:755.946933pt;}
.yb_c00359{bottom:767.946933pt;}
.ya_c00359{bottom:791.506000pt;}
.y9_c00359{bottom:803.506000pt;}
.y8_c00359{bottom:815.506000pt;}
.y7_c00359{bottom:839.065067pt;}
.y6_c00359{bottom:851.065067pt;}
.y5_c00359{bottom:863.065067pt;}
.y4_c00359{bottom:882.844667pt;}
.y3_c00359{bottom:898.844667pt;}
.y2_c00359{bottom:922.403733pt;}
.y1_c00359{bottom:972.089733pt;}
.h6_c00359{height:26.917333pt;}
.h4_c00359{height:30.293333pt;}
.h2_c00359{height:34.901333pt;}
.h3_c00359{height:38.453333pt;}
.h5_c00359{height:38.880000pt;}
.h1_c00359{height:1009.333333pt;}
.h0_c00359{height:1009.338800pt;}
.w0_c00359{width:794.622400pt;}
.w1_c00359{width:794.666667pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:68.980533pt;}
.x2_c00359{left:533.034667pt;}
.x3_c00359{left:544.373200pt;}
.x4_c00359{left:548.152800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00360;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;line-height:0.908000;font-style:normal;font-weight: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_c00360;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00360{font-family:ff7_c00360;line-height:1.067000;font-style:normal;font-weight: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_c00360;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00360{font-family:ff8_c00360;line-height:0.710000;font-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_c00360{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls2_c00360{letter-spacing:-0.864000px;}
.ls3_c00360{letter-spacing:-0.720000px;}
.ls4_c00360{letter-spacing:-0.630000px;}
.ls1_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00360{word-spacing:-8.694000px;}
.ws2_c00360{word-spacing:-6.487200px;}
.ws0_c00360{word-spacing:-0.048000px;}
.ws3_c00360{word-spacing:0.000000px;}
.ws5_c00360{word-spacing:0.864000px;}
.ws4_c00360{word-spacing:7.056000px;}
._0_c00360{margin-left:-2755.276200px;}
._4_c00360{margin-left:-6.946800px;}
._1_c00360{margin-left:-2.256000px;}
._3_c00360{margin-left:-1.200000px;}
._2_c00360{width:1.008000px;}
._7_c00360{width:7.776000px;}
._5_c00360{width:55.674000px;}
._6_c00360{width:59.136000px;}
.fc0_c00360{color:rgb(35,31,32);}
.fs5_c00360{font-size:30.600000px;}
.fs6_c00360{font-size:36.000000px;}
.fs3_c00360{font-size:42.000000px;}
.fs0_c00360{font-size:48.000000px;}
.fs4_c00360{font-size:54.000000px;}
.fs2_c00360{font-size:57.000000px;}
.fs1_c00360{font-size:60.000000px;}
.y0_c00360{bottom:0.000000px;}
.y18_c00360{bottom:347.547450px;}
.y17_c00360{bottom:361.047450px;}
.y16_c00360{bottom:374.547450px;}
.y15_c00360{bottom:401.051400px;}
.y14_c00360{bottom:414.551400px;}
.y13_c00360{bottom:428.051400px;}
.y12_c00360{bottom:454.555350px;}
.y11_c00360{bottom:468.055350px;}
.y10_c00360{bottom:481.555350px;}
.yf_c00360{bottom:503.807250px;}
.ye_c00360{bottom:521.807250px;}
.yd_c00360{bottom:548.311200px;}
.yc_c00360{bottom:850.023600px;}
.yb_c00360{bottom:863.523600px;}
.ya_c00360{bottom:877.023600px;}
.y9_c00360{bottom:903.527550px;}
.y8_c00360{bottom:917.027550px;}
.y7_c00360{bottom:943.531500px;}
.y6_c00360{bottom:957.031500px;}
.y5_c00360{bottom:970.531500px;}
.y4_c00360{bottom:992.783550px;}
.y3_c00360{bottom:1010.783550px;}
.y2_c00360{bottom:1037.287500px;}
.y19_c00360{bottom:1040.086800px;}
.y1_c00360{bottom:1093.600950px;}
.h8_c00360{height:25.200000px;}
.h7_c00360{height:30.282000px;}
.h5_c00360{height:34.080000px;}
.h2_c00360{height:39.264000px;}
.h3_c00360{height:39.984000px;}
.h4_c00360{height:43.260000px;}
.h6_c00360{height:43.740000px;}
.h1_c00360{height:1135.500000px;}
.h0_c00360{height:1135.506150px;}
.w0_c00360{width:893.950200px;}
.w1_c00360{width:894.000000px;}
.x0_c00360{left:0.000000px;}
.x4_c00360{left:128.758500px;}
.x5_c00360{left:141.514500px;}
.x2_c00360{left:188.061900px;}
.x3_c00360{left:190.513350px;}
.x6_c00360{left:321.389700px;}
.x1_c00360{left:800.165850px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls2_c00360{letter-spacing:-0.768000pt;}
.ls3_c00360{letter-spacing:-0.640000pt;}
.ls4_c00360{letter-spacing:-0.560000pt;}
.ls1_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:0.426667pt;}
.ws1_c00360{word-spacing:-7.728000pt;}
.ws2_c00360{word-spacing:-5.766400pt;}
.ws0_c00360{word-spacing:-0.042667pt;}
.ws3_c00360{word-spacing:0.000000pt;}
.ws5_c00360{word-spacing:0.768000pt;}
.ws4_c00360{word-spacing:6.272000pt;}
._0_c00360{margin-left:-2449.134400pt;}
._4_c00360{margin-left:-6.174933pt;}
._1_c00360{margin-left:-2.005333pt;}
._3_c00360{margin-left:-1.066667pt;}
._2_c00360{width:0.896000pt;}
._7_c00360{width:6.912000pt;}
._5_c00360{width:49.488000pt;}
._6_c00360{width:52.565333pt;}
.fs5_c00360{font-size:27.200000pt;}
.fs6_c00360{font-size:32.000000pt;}
.fs3_c00360{font-size:37.333333pt;}
.fs0_c00360{font-size:42.666667pt;}
.fs4_c00360{font-size:48.000000pt;}
.fs2_c00360{font-size:50.666667pt;}
.fs1_c00360{font-size:53.333333pt;}
.y0_c00360{bottom:0.000000pt;}
.y18_c00360{bottom:308.931067pt;}
.y17_c00360{bottom:320.931067pt;}
.y16_c00360{bottom:332.931067pt;}
.y15_c00360{bottom:356.490133pt;}
.y14_c00360{bottom:368.490133pt;}
.y13_c00360{bottom:380.490133pt;}
.y12_c00360{bottom:404.049200pt;}
.y11_c00360{bottom:416.049200pt;}
.y10_c00360{bottom:428.049200pt;}
.yf_c00360{bottom:447.828667pt;}
.ye_c00360{bottom:463.828667pt;}
.yd_c00360{bottom:487.387733pt;}
.yc_c00360{bottom:755.576533pt;}
.yb_c00360{bottom:767.576533pt;}
.ya_c00360{bottom:779.576533pt;}
.y9_c00360{bottom:803.135600pt;}
.y8_c00360{bottom:815.135600pt;}
.y7_c00360{bottom:838.694667pt;}
.y6_c00360{bottom:850.694667pt;}
.y5_c00360{bottom:862.694667pt;}
.y4_c00360{bottom:882.474267pt;}
.y3_c00360{bottom:898.474267pt;}
.y2_c00360{bottom:922.033333pt;}
.y19_c00360{bottom:924.521600pt;}
.y1_c00360{bottom:972.089733pt;}
.h8_c00360{height:22.400000pt;}
.h7_c00360{height:26.917333pt;}
.h5_c00360{height:30.293333pt;}
.h2_c00360{height:34.901333pt;}
.h3_c00360{height:35.541333pt;}
.h4_c00360{height:38.453333pt;}
.h6_c00360{height:38.880000pt;}
.h1_c00360{height:1009.333333pt;}
.h0_c00360{height:1009.338800pt;}
.w0_c00360{width:794.622400pt;}
.w1_c00360{width:794.666667pt;}
.x0_c00360{left:0.000000pt;}
.x4_c00360{left:114.452000pt;}
.x5_c00360{left:125.790667pt;}
.x2_c00360{left:167.166133pt;}
.x3_c00360{left:169.345200pt;}
.x6_c00360{left:285.679733pt;}
.x1_c00360{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00361{font-family:ff6_c00361;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls2_c00361{letter-spacing:-0.720000px;}
.ls3_c00361{letter-spacing:-0.630000px;}
.ls1_c00361{letter-spacing:-0.378000px;}
.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;}
}
.ws1_c00361{word-spacing:-8.694000px;}
.ws2_c00361{word-spacing:0.000000px;}
.ws3_c00361{word-spacing:7.056000px;}
.ws4_c00361{word-spacing:56.052000px;}
.ws0_c00361{word-spacing:1585.435200px;}
._3_c00361{margin-left:-7.042800px;}
._0_c00361{margin-left:-2.112000px;}
._1_c00361{margin-left:-1.104000px;}
._2_c00361{width:2.016000px;}
._5_c00361{width:7.776000px;}
._6_c00361{width:55.674000px;}
._4_c00361{width:59.136000px;}
.fc0_c00361{color:rgb(35,31,32);}
.fs3_c00361{font-size:42.000000px;}
.fs0_c00361{font-size:48.000000px;}
.fs4_c00361{font-size:54.000000px;}
.fs2_c00361{font-size:57.000000px;}
.fs1_c00361{font-size:60.000000px;}
.y0_c00361{bottom:0.000000px;}
.y19_c00361{bottom:348.176700px;}
.y18_c00361{bottom:361.676700px;}
.y17_c00361{bottom:375.176700px;}
.y16_c00361{bottom:401.680650px;}
.y15_c00361{bottom:415.180650px;}
.y14_c00361{bottom:428.680650px;}
.y13_c00361{bottom:455.184450px;}
.y12_c00361{bottom:468.684450px;}
.y11_c00361{bottom:482.184450px;}
.y10_c00361{bottom:504.436500px;}
.yf_c00361{bottom:522.436500px;}
.ye_c00361{bottom:548.940450px;}
.yd_c00361{bottom:837.152850px;}
.yc_c00361{bottom:850.652850px;}
.yb_c00361{bottom:864.152850px;}
.ya_c00361{bottom:890.656950px;}
.y9_c00361{bottom:904.156950px;}
.y8_c00361{bottom:917.656950px;}
.y7_c00361{bottom:944.160900px;}
.y6_c00361{bottom:957.660900px;}
.y5_c00361{bottom:971.160900px;}
.y4_c00361{bottom:993.412800px;}
.y3_c00361{bottom:1011.412800px;}
.y2_c00361{bottom:1037.916750px;}
.y1_c00361{bottom:1093.600950px;}
.h6_c00361{height:30.282000px;}
.h4_c00361{height:34.080000px;}
.h2_c00361{height:39.264000px;}
.h3_c00361{height:43.260000px;}
.h5_c00361{height:43.740000px;}
.h1_c00361{height:1135.500000px;}
.h0_c00361{height:1135.506150px;}
.w0_c00361{width:893.950200px;}
.w1_c00361{width:894.000000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:77.603100px;}
.x2_c00361{left:599.238900px;}
.x3_c00361{left:611.994750px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls2_c00361{letter-spacing:-0.640000pt;}
.ls3_c00361{letter-spacing:-0.560000pt;}
.ls1_c00361{letter-spacing:-0.336000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws1_c00361{word-spacing:-7.728000pt;}
.ws2_c00361{word-spacing:0.000000pt;}
.ws3_c00361{word-spacing:6.272000pt;}
.ws4_c00361{word-spacing:49.824000pt;}
.ws0_c00361{word-spacing:1409.275733pt;}
._3_c00361{margin-left:-6.260267pt;}
._0_c00361{margin-left:-1.877333pt;}
._1_c00361{margin-left:-0.981333pt;}
._2_c00361{width:1.792000pt;}
._5_c00361{width:6.912000pt;}
._6_c00361{width:49.488000pt;}
._4_c00361{width:52.565333pt;}
.fs3_c00361{font-size:37.333333pt;}
.fs0_c00361{font-size:42.666667pt;}
.fs4_c00361{font-size:48.000000pt;}
.fs2_c00361{font-size:50.666667pt;}
.fs1_c00361{font-size:53.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y19_c00361{bottom:309.490400pt;}
.y18_c00361{bottom:321.490400pt;}
.y17_c00361{bottom:333.490400pt;}
.y16_c00361{bottom:357.049467pt;}
.y15_c00361{bottom:369.049467pt;}
.y14_c00361{bottom:381.049467pt;}
.y13_c00361{bottom:404.608400pt;}
.y12_c00361{bottom:416.608400pt;}
.y11_c00361{bottom:428.608400pt;}
.y10_c00361{bottom:448.388000pt;}
.yf_c00361{bottom:464.388000pt;}
.ye_c00361{bottom:487.947067pt;}
.yd_c00361{bottom:744.135867pt;}
.yc_c00361{bottom:756.135867pt;}
.yb_c00361{bottom:768.135867pt;}
.ya_c00361{bottom:791.695067pt;}
.y9_c00361{bottom:803.695067pt;}
.y8_c00361{bottom:815.695067pt;}
.y7_c00361{bottom:839.254133pt;}
.y6_c00361{bottom:851.254133pt;}
.y5_c00361{bottom:863.254133pt;}
.y4_c00361{bottom:883.033600pt;}
.y3_c00361{bottom:899.033600pt;}
.y2_c00361{bottom:922.592667pt;}
.y1_c00361{bottom:972.089733pt;}
.h6_c00361{height:26.917333pt;}
.h4_c00361{height:30.293333pt;}
.h2_c00361{height:34.901333pt;}
.h3_c00361{height:38.453333pt;}
.h5_c00361{height:38.880000pt;}
.h1_c00361{height:1009.333333pt;}
.h0_c00361{height:1009.338800pt;}
.w0_c00361{width:794.622400pt;}
.w1_c00361{width:794.666667pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:68.980533pt;}
.x2_c00361{left:532.656800pt;}
.x3_c00361{left:543.995333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00362;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00362;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:1.067000;font-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_c00362{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls2_c00362{letter-spacing:-0.720000px;}
.ls3_c00362{letter-spacing:-0.630000px;}
.ls1_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00362{word-spacing:-8.694000px;}
.ws0_c00362{word-spacing:-0.048000px;}
.ws2_c00362{word-spacing:0.000000px;}
.ws3_c00362{word-spacing:7.056000px;}
._0_c00362{margin-left:-2755.276200px;}
._4_c00362{margin-left:-6.946800px;}
._1_c00362{margin-left:-2.256000px;}
._3_c00362{margin-left:-1.200000px;}
._2_c00362{width:1.008000px;}
._7_c00362{width:7.776000px;}
._5_c00362{width:55.674000px;}
._6_c00362{width:59.136000px;}
.fc0_c00362{color:rgb(35,31,32);}
.fs3_c00362{font-size:42.000000px;}
.fs0_c00362{font-size:48.000000px;}
.fs4_c00362{font-size:54.000000px;}
.fs2_c00362{font-size:57.000000px;}
.fs1_c00362{font-size:60.000000px;}
.y0_c00362{bottom:0.000000px;}
.y19_c00362{bottom:347.760150px;}
.y18_c00362{bottom:361.260000px;}
.y17_c00362{bottom:374.760000px;}
.y16_c00362{bottom:401.263950px;}
.y15_c00362{bottom:414.763950px;}
.y14_c00362{bottom:428.263950px;}
.y13_c00362{bottom:454.767900px;}
.y12_c00362{bottom:468.267900px;}
.y11_c00362{bottom:481.767900px;}
.y10_c00362{bottom:504.019800px;}
.yf_c00362{bottom:522.019800px;}
.ye_c00362{bottom:548.523750px;}
.yd_c00362{bottom:836.736150px;}
.yc_c00362{bottom:850.236150px;}
.yb_c00362{bottom:863.736150px;}
.ya_c00362{bottom:890.240100px;}
.y9_c00362{bottom:903.740100px;}
.y8_c00362{bottom:917.240100px;}
.y7_c00362{bottom:943.744050px;}
.y6_c00362{bottom:957.244050px;}
.y5_c00362{bottom:970.744050px;}
.y4_c00362{bottom:992.996100px;}
.y3_c00362{bottom:1010.996100px;}
.y2_c00362{bottom:1037.500050px;}
.y1_c00362{bottom:1093.600950px;}
.h7_c00362{height:30.282000px;}
.h5_c00362{height:34.080000px;}
.h2_c00362{height:39.264000px;}
.h3_c00362{height:39.984000px;}
.h4_c00362{height:43.260000px;}
.h6_c00362{height:43.740000px;}
.h1_c00362{height:1135.500000px;}
.h0_c00362{height:1135.506150px;}
.w0_c00362{width:893.950200px;}
.w1_c00362{width:894.000000px;}
.x0_c00362{left:0.000000px;}
.x4_c00362{left:128.333400px;}
.x5_c00362{left:141.089250px;}
.x2_c00362{left:188.061900px;}
.x3_c00362{left:190.513350px;}
.x1_c00362{left:800.165850px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls2_c00362{letter-spacing:-0.640000pt;}
.ls3_c00362{letter-spacing:-0.560000pt;}
.ls1_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.426667pt;}
.ws1_c00362{word-spacing:-7.728000pt;}
.ws0_c00362{word-spacing:-0.042667pt;}
.ws2_c00362{word-spacing:0.000000pt;}
.ws3_c00362{word-spacing:6.272000pt;}
._0_c00362{margin-left:-2449.134400pt;}
._4_c00362{margin-left:-6.174933pt;}
._1_c00362{margin-left:-2.005333pt;}
._3_c00362{margin-left:-1.066667pt;}
._2_c00362{width:0.896000pt;}
._7_c00362{width:6.912000pt;}
._5_c00362{width:49.488000pt;}
._6_c00362{width:52.565333pt;}
.fs3_c00362{font-size:37.333333pt;}
.fs0_c00362{font-size:42.666667pt;}
.fs4_c00362{font-size:48.000000pt;}
.fs2_c00362{font-size:50.666667pt;}
.fs1_c00362{font-size:53.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y19_c00362{bottom:309.120133pt;}
.y18_c00362{bottom:321.120000pt;}
.y17_c00362{bottom:333.120000pt;}
.y16_c00362{bottom:356.679067pt;}
.y15_c00362{bottom:368.679067pt;}
.y14_c00362{bottom:380.679067pt;}
.y13_c00362{bottom:404.238133pt;}
.y12_c00362{bottom:416.238133pt;}
.y11_c00362{bottom:428.238133pt;}
.y10_c00362{bottom:448.017600pt;}
.yf_c00362{bottom:464.017600pt;}
.ye_c00362{bottom:487.576667pt;}
.yd_c00362{bottom:743.765467pt;}
.yc_c00362{bottom:755.765467pt;}
.yb_c00362{bottom:767.765467pt;}
.ya_c00362{bottom:791.324533pt;}
.y9_c00362{bottom:803.324533pt;}
.y8_c00362{bottom:815.324533pt;}
.y7_c00362{bottom:838.883600pt;}
.y6_c00362{bottom:850.883600pt;}
.y5_c00362{bottom:862.883600pt;}
.y4_c00362{bottom:882.663200pt;}
.y3_c00362{bottom:898.663200pt;}
.y2_c00362{bottom:922.222267pt;}
.y1_c00362{bottom:972.089733pt;}
.h7_c00362{height:26.917333pt;}
.h5_c00362{height:30.293333pt;}
.h2_c00362{height:34.901333pt;}
.h3_c00362{height:35.541333pt;}
.h4_c00362{height:38.453333pt;}
.h6_c00362{height:38.880000pt;}
.h1_c00362{height:1009.333333pt;}
.h0_c00362{height:1009.338800pt;}
.w0_c00362{width:794.622400pt;}
.w1_c00362{width:794.666667pt;}
.x0_c00362{left:0.000000pt;}
.x4_c00362{left:114.074133pt;}
.x5_c00362{left:125.412667pt;}
.x2_c00362{left:167.166133pt;}
.x3_c00362{left:169.345200pt;}
.x1_c00362{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:1.067000;font-style:normal;font-weight: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_c00363;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00363{font-family:ff7_c00363;line-height:0.710000;font-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_c00363{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls1_c00363{letter-spacing:-0.720000px;}
.ls2_c00363{letter-spacing:-0.630000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00363{word-spacing:-8.694000px;}
.ws2_c00363{word-spacing:-6.487200px;}
.ws3_c00363{word-spacing:0.000000px;}
.ws4_c00363{word-spacing:7.056000px;}
.ws0_c00363{word-spacing:1585.435200px;}
._3_c00363{margin-left:-7.042800px;}
._7_c00363{margin-left:-5.238000px;}
._0_c00363{margin-left:-2.112000px;}
._1_c00363{margin-left:-1.104000px;}
._2_c00363{width:2.016000px;}
._6_c00363{width:7.776000px;}
._4_c00363{width:55.674000px;}
._5_c00363{width:59.136000px;}
.fc0_c00363{color:rgb(35,31,32);}
.fs5_c00363{font-size:30.600000px;}
.fs6_c00363{font-size:36.000000px;}
.fs3_c00363{font-size:42.000000px;}
.fs0_c00363{font-size:48.000000px;}
.fs4_c00363{font-size:54.000000px;}
.fs2_c00363{font-size:57.000000px;}
.fs1_c00363{font-size:60.000000px;}
.y0_c00363{bottom:0.000000px;}
.y18_c00363{bottom:347.751450px;}
.y17_c00363{bottom:361.251450px;}
.y16_c00363{bottom:374.751450px;}
.y15_c00363{bottom:401.255400px;}
.y14_c00363{bottom:414.755400px;}
.y13_c00363{bottom:428.255400px;}
.y12_c00363{bottom:454.759350px;}
.y11_c00363{bottom:468.259350px;}
.y10_c00363{bottom:481.759350px;}
.yf_c00363{bottom:504.011250px;}
.ye_c00363{bottom:522.011250px;}
.yd_c00363{bottom:548.515200px;}
.yc_c00363{bottom:850.227750px;}
.yb_c00363{bottom:863.727750px;}
.ya_c00363{bottom:877.227750px;}
.y9_c00363{bottom:903.731700px;}
.y8_c00363{bottom:917.231700px;}
.y7_c00363{bottom:943.735650px;}
.y6_c00363{bottom:957.235650px;}
.y5_c00363{bottom:970.735650px;}
.y4_c00363{bottom:992.987550px;}
.y3_c00363{bottom:1010.987550px;}
.y2_c00363{bottom:1037.491500px;}
.y19_c00363{bottom:1040.299350px;}
.y1_c00363{bottom:1093.600950px;}
.h7_c00363{height:25.200000px;}
.h6_c00363{height:30.282000px;}
.h4_c00363{height:34.080000px;}
.h2_c00363{height:39.264000px;}
.h3_c00363{height:43.260000px;}
.h5_c00363{height:43.740000px;}
.h1_c00363{height:1135.500000px;}
.h0_c00363{height:1135.506150px;}
.w0_c00363{width:893.950200px;}
.w1_c00363{width:894.000000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:77.603100px;}
.x4_c00363{left:424.057800px;}
.x2_c00363{left:599.451450px;}
.x3_c00363{left:612.207300px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls1_c00363{letter-spacing:-0.640000pt;}
.ls2_c00363{letter-spacing:-0.560000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws1_c00363{word-spacing:-7.728000pt;}
.ws2_c00363{word-spacing:-5.766400pt;}
.ws3_c00363{word-spacing:0.000000pt;}
.ws4_c00363{word-spacing:6.272000pt;}
.ws0_c00363{word-spacing:1409.275733pt;}
._3_c00363{margin-left:-6.260267pt;}
._7_c00363{margin-left:-4.656000pt;}
._0_c00363{margin-left:-1.877333pt;}
._1_c00363{margin-left:-0.981333pt;}
._2_c00363{width:1.792000pt;}
._6_c00363{width:6.912000pt;}
._4_c00363{width:49.488000pt;}
._5_c00363{width:52.565333pt;}
.fs5_c00363{font-size:27.200000pt;}
.fs6_c00363{font-size:32.000000pt;}
.fs3_c00363{font-size:37.333333pt;}
.fs0_c00363{font-size:42.666667pt;}
.fs4_c00363{font-size:48.000000pt;}
.fs2_c00363{font-size:50.666667pt;}
.fs1_c00363{font-size:53.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.y18_c00363{bottom:309.112400pt;}
.y17_c00363{bottom:321.112400pt;}
.y16_c00363{bottom:333.112400pt;}
.y15_c00363{bottom:356.671467pt;}
.y14_c00363{bottom:368.671467pt;}
.y13_c00363{bottom:380.671467pt;}
.y12_c00363{bottom:404.230533pt;}
.y11_c00363{bottom:416.230533pt;}
.y10_c00363{bottom:428.230533pt;}
.yf_c00363{bottom:448.010000pt;}
.ye_c00363{bottom:464.010000pt;}
.yd_c00363{bottom:487.569067pt;}
.yc_c00363{bottom:755.758000pt;}
.yb_c00363{bottom:767.758000pt;}
.ya_c00363{bottom:779.758000pt;}
.y9_c00363{bottom:803.317067pt;}
.y8_c00363{bottom:815.317067pt;}
.y7_c00363{bottom:838.876133pt;}
.y6_c00363{bottom:850.876133pt;}
.y5_c00363{bottom:862.876133pt;}
.y4_c00363{bottom:882.655600pt;}
.y3_c00363{bottom:898.655600pt;}
.y2_c00363{bottom:922.214667pt;}
.y19_c00363{bottom:924.710533pt;}
.y1_c00363{bottom:972.089733pt;}
.h7_c00363{height:22.400000pt;}
.h6_c00363{height:26.917333pt;}
.h4_c00363{height:30.293333pt;}
.h2_c00363{height:34.901333pt;}
.h3_c00363{height:38.453333pt;}
.h5_c00363{height:38.880000pt;}
.h1_c00363{height:1009.333333pt;}
.h0_c00363{height:1009.338800pt;}
.w0_c00363{width:794.622400pt;}
.w1_c00363{width:794.666667pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:68.980533pt;}
.x4_c00363{left:376.940267pt;}
.x2_c00363{left:532.845733pt;}
.x3_c00363{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00364;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.067000;font-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_c00364{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls3_c00364{letter-spacing:-0.720000px;}
.ls4_c00364{letter-spacing:-0.630000px;}
.ls2_c00364{letter-spacing:-0.216000px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:0.480000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00364{word-spacing:-8.694000px;}
.ws0_c00364{word-spacing:-0.048000px;}
.ws2_c00364{word-spacing:0.000000px;}
.ws4_c00364{word-spacing:0.216000px;}
.ws3_c00364{word-spacing:7.056000px;}
._0_c00364{margin-left:-2755.276200px;}
._4_c00364{margin-left:-6.947400px;}
._1_c00364{margin-left:-2.256000px;}
._3_c00364{margin-left:-1.200000px;}
._2_c00364{width:1.008000px;}
._7_c00364{width:7.776000px;}
._5_c00364{width:55.674000px;}
._6_c00364{width:59.136000px;}
.fc0_c00364{color:rgb(35,31,32);}
.fs3_c00364{font-size:42.000000px;}
.fs0_c00364{font-size:48.000000px;}
.fs4_c00364{font-size:54.000000px;}
.fs2_c00364{font-size:57.000000px;}
.fs1_c00364{font-size:60.000000px;}
.y0_c00364{bottom:0.000000px;}
.y19_c00364{bottom:347.334900px;}
.y18_c00364{bottom:360.834900px;}
.y17_c00364{bottom:374.334900px;}
.y16_c00364{bottom:400.838700px;}
.y15_c00364{bottom:414.338700px;}
.y14_c00364{bottom:427.838700px;}
.y13_c00364{bottom:454.342650px;}
.y12_c00364{bottom:467.842650px;}
.y11_c00364{bottom:481.342650px;}
.y10_c00364{bottom:503.594700px;}
.yf_c00364{bottom:521.594700px;}
.ye_c00364{bottom:548.098650px;}
.yd_c00364{bottom:836.311050px;}
.yc_c00364{bottom:849.811050px;}
.yb_c00364{bottom:863.311050px;}
.ya_c00364{bottom:889.815000px;}
.y9_c00364{bottom:903.315000px;}
.y8_c00364{bottom:916.815000px;}
.y7_c00364{bottom:943.318950px;}
.y6_c00364{bottom:956.818950px;}
.y5_c00364{bottom:970.318950px;}
.y4_c00364{bottom:992.570850px;}
.y3_c00364{bottom:1010.570850px;}
.y2_c00364{bottom:1037.074950px;}
.y1_c00364{bottom:1093.600950px;}
.h7_c00364{height:30.282000px;}
.h5_c00364{height:34.080000px;}
.h2_c00364{height:39.264000px;}
.h3_c00364{height:39.984000px;}
.h4_c00364{height:43.260000px;}
.h6_c00364{height:43.740000px;}
.h1_c00364{height:1135.500000px;}
.h0_c00364{height:1135.506150px;}
.w0_c00364{width:893.950200px;}
.w1_c00364{width:894.000000px;}
.x0_c00364{left:0.000000px;}
.x4_c00364{left:128.545950px;}
.x5_c00364{left:141.301950px;}
.x2_c00364{left:188.061900px;}
.x3_c00364{left:190.513350px;}
.x1_c00364{left:800.165850px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls3_c00364{letter-spacing:-0.640000pt;}
.ls4_c00364{letter-spacing:-0.560000pt;}
.ls2_c00364{letter-spacing:-0.192000pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:0.426667pt;}
.ws1_c00364{word-spacing:-7.728000pt;}
.ws0_c00364{word-spacing:-0.042667pt;}
.ws2_c00364{word-spacing:0.000000pt;}
.ws4_c00364{word-spacing:0.192000pt;}
.ws3_c00364{word-spacing:6.272000pt;}
._0_c00364{margin-left:-2449.134400pt;}
._4_c00364{margin-left:-6.175467pt;}
._1_c00364{margin-left:-2.005333pt;}
._3_c00364{margin-left:-1.066667pt;}
._2_c00364{width:0.896000pt;}
._7_c00364{width:6.912000pt;}
._5_c00364{width:49.488000pt;}
._6_c00364{width:52.565333pt;}
.fs3_c00364{font-size:37.333333pt;}
.fs0_c00364{font-size:42.666667pt;}
.fs4_c00364{font-size:48.000000pt;}
.fs2_c00364{font-size:50.666667pt;}
.fs1_c00364{font-size:53.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y19_c00364{bottom:308.742133pt;}
.y18_c00364{bottom:320.742133pt;}
.y17_c00364{bottom:332.742133pt;}
.y16_c00364{bottom:356.301067pt;}
.y15_c00364{bottom:368.301067pt;}
.y14_c00364{bottom:380.301067pt;}
.y13_c00364{bottom:403.860133pt;}
.y12_c00364{bottom:415.860133pt;}
.y11_c00364{bottom:427.860133pt;}
.y10_c00364{bottom:447.639733pt;}
.yf_c00364{bottom:463.639733pt;}
.ye_c00364{bottom:487.198800pt;}
.yd_c00364{bottom:743.387600pt;}
.yc_c00364{bottom:755.387600pt;}
.yb_c00364{bottom:767.387600pt;}
.ya_c00364{bottom:790.946667pt;}
.y9_c00364{bottom:802.946667pt;}
.y8_c00364{bottom:814.946667pt;}
.y7_c00364{bottom:838.505733pt;}
.y6_c00364{bottom:850.505733pt;}
.y5_c00364{bottom:862.505733pt;}
.y4_c00364{bottom:882.285200pt;}
.y3_c00364{bottom:898.285200pt;}
.y2_c00364{bottom:921.844400pt;}
.y1_c00364{bottom:972.089733pt;}
.h7_c00364{height:26.917333pt;}
.h5_c00364{height:30.293333pt;}
.h2_c00364{height:34.901333pt;}
.h3_c00364{height:35.541333pt;}
.h4_c00364{height:38.453333pt;}
.h6_c00364{height:38.880000pt;}
.h1_c00364{height:1009.333333pt;}
.h0_c00364{height:1009.338800pt;}
.w0_c00364{width:794.622400pt;}
.w1_c00364{width:794.666667pt;}
.x0_c00364{left:0.000000pt;}
.x4_c00364{left:114.263067pt;}
.x5_c00364{left:125.601733pt;}
.x2_c00364{left:167.166133pt;}
.x3_c00364{left:169.345200pt;}
.x1_c00364{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00365;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00365{font-family:ff6_c00365;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls1_c00365{letter-spacing:-0.720000px;}
.ls2_c00365{letter-spacing:-0.630000px;}
.ls3_c00365{letter-spacing:-0.378000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00365{word-spacing:-8.694000px;}
.ws2_c00365{word-spacing:0.000000px;}
.ws4_c00365{word-spacing:0.378000px;}
.ws3_c00365{word-spacing:7.056000px;}
.ws0_c00365{word-spacing:1585.435200px;}
._3_c00365{margin-left:-7.042800px;}
._0_c00365{margin-left:-2.112000px;}
._1_c00365{margin-left:-1.104000px;}
._2_c00365{width:2.016000px;}
._6_c00365{width:7.776000px;}
._4_c00365{width:55.674000px;}
._5_c00365{width:59.136000px;}
.fc0_c00365{color:rgb(35,31,32);}
.fs3_c00365{font-size:42.000000px;}
.fs0_c00365{font-size:48.000000px;}
.fs4_c00365{font-size:54.000000px;}
.fs2_c00365{font-size:57.000000px;}
.fs1_c00365{font-size:60.000000px;}
.y0_c00365{bottom:0.000000px;}
.y19_c00365{bottom:347.712450px;}
.y18_c00365{bottom:361.212450px;}
.y17_c00365{bottom:374.712450px;}
.y16_c00365{bottom:401.216400px;}
.y15_c00365{bottom:414.716400px;}
.y14_c00365{bottom:428.216400px;}
.y13_c00365{bottom:454.720200px;}
.y12_c00365{bottom:468.220200px;}
.y11_c00365{bottom:481.720200px;}
.y10_c00365{bottom:503.972250px;}
.yf_c00365{bottom:521.972250px;}
.ye_c00365{bottom:548.476200px;}
.yd_c00365{bottom:836.688600px;}
.yc_c00365{bottom:850.188600px;}
.yb_c00365{bottom:863.688600px;}
.ya_c00365{bottom:890.192550px;}
.y9_c00365{bottom:903.692550px;}
.y8_c00365{bottom:917.192550px;}
.y7_c00365{bottom:943.696500px;}
.y6_c00365{bottom:957.196500px;}
.y5_c00365{bottom:970.696500px;}
.y4_c00365{bottom:992.948550px;}
.y3_c00365{bottom:1010.948550px;}
.y2_c00365{bottom:1037.452500px;}
.y1_c00365{bottom:1093.600950px;}
.h6_c00365{height:30.282000px;}
.h4_c00365{height:34.080000px;}
.h2_c00365{height:39.264000px;}
.h3_c00365{height:43.260000px;}
.h5_c00365{height:43.740000px;}
.h1_c00365{height:1135.500000px;}
.h0_c00365{height:1135.506150px;}
.w0_c00365{width:893.950200px;}
.w1_c00365{width:894.000000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:77.603100px;}
.x2_c00365{left:599.451450px;}
.x3_c00365{left:612.207300px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:-0.640000pt;}
.ls2_c00365{letter-spacing:-0.560000pt;}
.ls3_c00365{letter-spacing:-0.336000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws1_c00365{word-spacing:-7.728000pt;}
.ws2_c00365{word-spacing:0.000000pt;}
.ws4_c00365{word-spacing:0.336000pt;}
.ws3_c00365{word-spacing:6.272000pt;}
.ws0_c00365{word-spacing:1409.275733pt;}
._3_c00365{margin-left:-6.260267pt;}
._0_c00365{margin-left:-1.877333pt;}
._1_c00365{margin-left:-0.981333pt;}
._2_c00365{width:1.792000pt;}
._6_c00365{width:6.912000pt;}
._4_c00365{width:49.488000pt;}
._5_c00365{width:52.565333pt;}
.fs3_c00365{font-size:37.333333pt;}
.fs0_c00365{font-size:42.666667pt;}
.fs4_c00365{font-size:48.000000pt;}
.fs2_c00365{font-size:50.666667pt;}
.fs1_c00365{font-size:53.333333pt;}
.y0_c00365{bottom:0.000000pt;}
.y19_c00365{bottom:309.077733pt;}
.y18_c00365{bottom:321.077733pt;}
.y17_c00365{bottom:333.077733pt;}
.y16_c00365{bottom:356.636800pt;}
.y15_c00365{bottom:368.636800pt;}
.y14_c00365{bottom:380.636800pt;}
.y13_c00365{bottom:404.195733pt;}
.y12_c00365{bottom:416.195733pt;}
.y11_c00365{bottom:428.195733pt;}
.y10_c00365{bottom:447.975333pt;}
.yf_c00365{bottom:463.975333pt;}
.ye_c00365{bottom:487.534400pt;}
.yd_c00365{bottom:743.723200pt;}
.yc_c00365{bottom:755.723200pt;}
.yb_c00365{bottom:767.723200pt;}
.ya_c00365{bottom:791.282267pt;}
.y9_c00365{bottom:803.282267pt;}
.y8_c00365{bottom:815.282267pt;}
.y7_c00365{bottom:838.841333pt;}
.y6_c00365{bottom:850.841333pt;}
.y5_c00365{bottom:862.841333pt;}
.y4_c00365{bottom:882.620933pt;}
.y3_c00365{bottom:898.620933pt;}
.y2_c00365{bottom:922.180000pt;}
.y1_c00365{bottom:972.089733pt;}
.h6_c00365{height:26.917333pt;}
.h4_c00365{height:30.293333pt;}
.h2_c00365{height:34.901333pt;}
.h3_c00365{height:38.453333pt;}
.h5_c00365{height:38.880000pt;}
.h1_c00365{height:1009.333333pt;}
.h0_c00365{height:1009.338800pt;}
.w0_c00365{width:794.622400pt;}
.w1_c00365{width:794.666667pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:68.980533pt;}
.x2_c00365{left:532.845733pt;}
.x3_c00365{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00366;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00366;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00366{font-family:ff7_c00366;line-height:1.067000;font-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_c00366{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls2_c00366{letter-spacing:-1.026000px;}
.ls3_c00366{letter-spacing:-0.720000px;}
.ls4_c00366{letter-spacing:-0.630000px;}
.ls1_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:0.480000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00366{word-spacing:-11.340000px;}
.ws1_c00366{word-spacing:-8.694000px;}
.ws0_c00366{word-spacing:-0.048000px;}
.ws3_c00366{word-spacing:0.000000px;}
.ws4_c00366{word-spacing:7.056000px;}
._0_c00366{margin-left:-2755.276200px;}
._4_c00366{margin-left:-6.947400px;}
._1_c00366{margin-left:-2.256000px;}
._3_c00366{margin-left:-1.200000px;}
._2_c00366{width:1.008000px;}
._7_c00366{width:7.776000px;}
._5_c00366{width:55.674000px;}
._6_c00366{width:59.136000px;}
.fc0_c00366{color:rgb(35,31,32);}
.fs3_c00366{font-size:42.000000px;}
.fs0_c00366{font-size:48.000000px;}
.fs4_c00366{font-size:54.000000px;}
.fs2_c00366{font-size:57.000000px;}
.fs1_c00366{font-size:60.000000px;}
.y0_c00366{bottom:0.000000px;}
.y1a_c00366{bottom:347.295750px;}
.y19_c00366{bottom:360.795750px;}
.y18_c00366{bottom:374.295750px;}
.y17_c00366{bottom:400.799700px;}
.y16_c00366{bottom:414.299700px;}
.y15_c00366{bottom:427.799700px;}
.y14_c00366{bottom:454.303650px;}
.y13_c00366{bottom:467.803650px;}
.y12_c00366{bottom:481.303650px;}
.y11_c00366{bottom:503.555700px;}
.y10_c00366{bottom:521.555700px;}
.yf_c00366{bottom:548.059500px;}
.ye_c00366{bottom:818.272050px;}
.yd_c00366{bottom:831.772050px;}
.yc_c00366{bottom:845.272050px;}
.yb_c00366{bottom:871.776000px;}
.ya_c00366{bottom:885.276000px;}
.y9_c00366{bottom:898.776000px;}
.y8_c00366{bottom:925.279950px;}
.y7_c00366{bottom:938.779950px;}
.y6_c00366{bottom:952.279950px;}
.y5_c00366{bottom:974.531850px;}
.y4_c00366{bottom:992.531850px;}
.y3_c00366{bottom:1010.531850px;}
.y2_c00366{bottom:1037.035950px;}
.y1_c00366{bottom:1093.600950px;}
.h7_c00366{height:30.282000px;}
.h5_c00366{height:34.080000px;}
.h2_c00366{height:39.264000px;}
.h3_c00366{height:39.984000px;}
.h4_c00366{height:43.260000px;}
.h6_c00366{height:43.740000px;}
.h1_c00366{height:1135.500000px;}
.h0_c00366{height:1135.506150px;}
.w0_c00366{width:893.950200px;}
.w1_c00366{width:894.000000px;}
.x0_c00366{left:0.000000px;}
.x4_c00366{left:128.545950px;}
.x5_c00366{left:141.301950px;}
.x6_c00366{left:145.553850px;}
.x2_c00366{left:188.061900px;}
.x3_c00366{left:190.513350px;}
.x1_c00366{left:800.165850px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls2_c00366{letter-spacing:-0.912000pt;}
.ls3_c00366{letter-spacing:-0.640000pt;}
.ls4_c00366{letter-spacing:-0.560000pt;}
.ls1_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:0.426667pt;}
.ws2_c00366{word-spacing:-10.080000pt;}
.ws1_c00366{word-spacing:-7.728000pt;}
.ws0_c00366{word-spacing:-0.042667pt;}
.ws3_c00366{word-spacing:0.000000pt;}
.ws4_c00366{word-spacing:6.272000pt;}
._0_c00366{margin-left:-2449.134400pt;}
._4_c00366{margin-left:-6.175467pt;}
._1_c00366{margin-left:-2.005333pt;}
._3_c00366{margin-left:-1.066667pt;}
._2_c00366{width:0.896000pt;}
._7_c00366{width:6.912000pt;}
._5_c00366{width:49.488000pt;}
._6_c00366{width:52.565333pt;}
.fs3_c00366{font-size:37.333333pt;}
.fs0_c00366{font-size:42.666667pt;}
.fs4_c00366{font-size:48.000000pt;}
.fs2_c00366{font-size:50.666667pt;}
.fs1_c00366{font-size:53.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y1a_c00366{bottom:308.707333pt;}
.y19_c00366{bottom:320.707333pt;}
.y18_c00366{bottom:332.707333pt;}
.y17_c00366{bottom:356.266400pt;}
.y16_c00366{bottom:368.266400pt;}
.y15_c00366{bottom:380.266400pt;}
.y14_c00366{bottom:403.825467pt;}
.y13_c00366{bottom:415.825467pt;}
.y12_c00366{bottom:427.825467pt;}
.y11_c00366{bottom:447.605067pt;}
.y10_c00366{bottom:463.605067pt;}
.yf_c00366{bottom:487.164000pt;}
.ye_c00366{bottom:727.352933pt;}
.yd_c00366{bottom:739.352933pt;}
.yc_c00366{bottom:751.352933pt;}
.yb_c00366{bottom:774.912000pt;}
.ya_c00366{bottom:786.912000pt;}
.y9_c00366{bottom:798.912000pt;}
.y8_c00366{bottom:822.471067pt;}
.y7_c00366{bottom:834.471067pt;}
.y6_c00366{bottom:846.471067pt;}
.y5_c00366{bottom:866.250533pt;}
.y4_c00366{bottom:882.250533pt;}
.y3_c00366{bottom:898.250533pt;}
.y2_c00366{bottom:921.809733pt;}
.y1_c00366{bottom:972.089733pt;}
.h7_c00366{height:26.917333pt;}
.h5_c00366{height:30.293333pt;}
.h2_c00366{height:34.901333pt;}
.h3_c00366{height:35.541333pt;}
.h4_c00366{height:38.453333pt;}
.h6_c00366{height:38.880000pt;}
.h1_c00366{height:1009.333333pt;}
.h0_c00366{height:1009.338800pt;}
.w0_c00366{width:794.622400pt;}
.w1_c00366{width:794.666667pt;}
.x0_c00366{left:0.000000pt;}
.x4_c00366{left:114.263067pt;}
.x5_c00366{left:125.601733pt;}
.x6_c00366{left:129.381200pt;}
.x2_c00366{left:167.166133pt;}
.x3_c00366{left:169.345200pt;}
.x1_c00366{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00367;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls1_c00367{letter-spacing:-0.720000px;}
.ls3_c00367{letter-spacing:-0.702000px;}
.ls2_c00367{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00367{word-spacing:-8.694000px;}
.ws2_c00367{word-spacing:0.000000px;}
.ws4_c00367{word-spacing:0.702000px;}
.ws3_c00367{word-spacing:7.056000px;}
.ws0_c00367{word-spacing:1585.435200px;}
._3_c00367{margin-left:-7.042800px;}
._0_c00367{margin-left:-2.112000px;}
._1_c00367{margin-left:-1.104000px;}
._2_c00367{width:2.016000px;}
._6_c00367{width:7.776000px;}
._4_c00367{width:55.674000px;}
._5_c00367{width:59.136000px;}
.fc0_c00367{color:rgb(35,31,32);}
.fs3_c00367{font-size:42.000000px;}
.fs0_c00367{font-size:48.000000px;}
.fs4_c00367{font-size:54.000000px;}
.fs2_c00367{font-size:57.000000px;}
.fs1_c00367{font-size:60.000000px;}
.y0_c00367{bottom:0.000000px;}
.y19_c00367{bottom:348.176700px;}
.y18_c00367{bottom:361.676700px;}
.y17_c00367{bottom:375.176700px;}
.y16_c00367{bottom:401.680650px;}
.y15_c00367{bottom:415.180650px;}
.y14_c00367{bottom:428.680650px;}
.y13_c00367{bottom:455.184450px;}
.y12_c00367{bottom:468.684450px;}
.y11_c00367{bottom:482.184450px;}
.y10_c00367{bottom:504.436500px;}
.yf_c00367{bottom:522.436500px;}
.ye_c00367{bottom:548.940450px;}
.yd_c00367{bottom:837.152850px;}
.yc_c00367{bottom:850.652850px;}
.yb_c00367{bottom:864.152850px;}
.ya_c00367{bottom:890.656950px;}
.y9_c00367{bottom:904.156950px;}
.y8_c00367{bottom:917.656950px;}
.y7_c00367{bottom:944.160900px;}
.y6_c00367{bottom:957.660900px;}
.y5_c00367{bottom:971.160900px;}
.y4_c00367{bottom:993.412800px;}
.y3_c00367{bottom:1011.412800px;}
.y2_c00367{bottom:1037.916750px;}
.y1_c00367{bottom:1093.600950px;}
.h6_c00367{height:30.282000px;}
.h4_c00367{height:34.080000px;}
.h2_c00367{height:39.264000px;}
.h3_c00367{height:43.260000px;}
.h5_c00367{height:43.740000px;}
.h1_c00367{height:1135.500000px;}
.h0_c00367{height:1135.506150px;}
.w0_c00367{width:893.950200px;}
.w1_c00367{width:894.000000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:77.603100px;}
.x2_c00367{left:599.451450px;}
.x3_c00367{left:612.207300px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls1_c00367{letter-spacing:-0.640000pt;}
.ls3_c00367{letter-spacing:-0.624000pt;}
.ls2_c00367{letter-spacing:-0.560000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws1_c00367{word-spacing:-7.728000pt;}
.ws2_c00367{word-spacing:0.000000pt;}
.ws4_c00367{word-spacing:0.624000pt;}
.ws3_c00367{word-spacing:6.272000pt;}
.ws0_c00367{word-spacing:1409.275733pt;}
._3_c00367{margin-left:-6.260267pt;}
._0_c00367{margin-left:-1.877333pt;}
._1_c00367{margin-left:-0.981333pt;}
._2_c00367{width:1.792000pt;}
._6_c00367{width:6.912000pt;}
._4_c00367{width:49.488000pt;}
._5_c00367{width:52.565333pt;}
.fs3_c00367{font-size:37.333333pt;}
.fs0_c00367{font-size:42.666667pt;}
.fs4_c00367{font-size:48.000000pt;}
.fs2_c00367{font-size:50.666667pt;}
.fs1_c00367{font-size:53.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y19_c00367{bottom:309.490400pt;}
.y18_c00367{bottom:321.490400pt;}
.y17_c00367{bottom:333.490400pt;}
.y16_c00367{bottom:357.049467pt;}
.y15_c00367{bottom:369.049467pt;}
.y14_c00367{bottom:381.049467pt;}
.y13_c00367{bottom:404.608400pt;}
.y12_c00367{bottom:416.608400pt;}
.y11_c00367{bottom:428.608400pt;}
.y10_c00367{bottom:448.388000pt;}
.yf_c00367{bottom:464.388000pt;}
.ye_c00367{bottom:487.947067pt;}
.yd_c00367{bottom:744.135867pt;}
.yc_c00367{bottom:756.135867pt;}
.yb_c00367{bottom:768.135867pt;}
.ya_c00367{bottom:791.695067pt;}
.y9_c00367{bottom:803.695067pt;}
.y8_c00367{bottom:815.695067pt;}
.y7_c00367{bottom:839.254133pt;}
.y6_c00367{bottom:851.254133pt;}
.y5_c00367{bottom:863.254133pt;}
.y4_c00367{bottom:883.033600pt;}
.y3_c00367{bottom:899.033600pt;}
.y2_c00367{bottom:922.592667pt;}
.y1_c00367{bottom:972.089733pt;}
.h6_c00367{height:26.917333pt;}
.h4_c00367{height:30.293333pt;}
.h2_c00367{height:34.901333pt;}
.h3_c00367{height:38.453333pt;}
.h5_c00367{height:38.880000pt;}
.h1_c00367{height:1009.333333pt;}
.h0_c00367{height:1009.338800pt;}
.w0_c00367{width:794.622400pt;}
.w1_c00367{width:794.666667pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:68.980533pt;}
.x2_c00367{left:532.845733pt;}
.x3_c00367{left:544.184267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00368;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:0.908000;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00368{font-family:ff7_c00368;line-height:1.067000;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00368{font-family:ff8_c00368;line-height:0.710000;font-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_c00368{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls2_c00368{letter-spacing:-0.720000px;}
.ls3_c00368{letter-spacing:-0.630000px;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.480000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00368{word-spacing:-8.694000px;}
.ws2_c00368{word-spacing:-6.487200px;}
.ws0_c00368{word-spacing:-0.048000px;}
.ws3_c00368{word-spacing:0.000000px;}
.ws4_c00368{word-spacing:7.056000px;}
._0_c00368{margin-left:-2755.276200px;}
._4_c00368{margin-left:-6.947400px;}
._1_c00368{margin-left:-2.256000px;}
._3_c00368{margin-left:-1.200000px;}
._2_c00368{width:1.008000px;}
._7_c00368{width:7.776000px;}
._5_c00368{width:55.674000px;}
._6_c00368{width:59.136000px;}
.fc0_c00368{color:rgb(35,31,32);}
.fs5_c00368{font-size:30.600000px;}
.fs6_c00368{font-size:36.000000px;}
.fs3_c00368{font-size:42.000000px;}
.fs0_c00368{font-size:48.000000px;}
.fs4_c00368{font-size:54.000000px;}
.fs2_c00368{font-size:57.000000px;}
.fs1_c00368{font-size:60.000000px;}
.y0_c00368{bottom:0.000000px;}
.y17_c00368{bottom:347.760150px;}
.y16_c00368{bottom:361.260000px;}
.y15_c00368{bottom:374.760000px;}
.y14_c00368{bottom:401.263950px;}
.y13_c00368{bottom:414.763950px;}
.y12_c00368{bottom:428.263950px;}
.y11_c00368{bottom:454.767900px;}
.y10_c00368{bottom:468.267900px;}
.yf_c00368{bottom:481.767900px;}
.ye_c00368{bottom:504.019800px;}
.yd_c00368{bottom:522.019800px;}
.yc_c00368{bottom:548.523750px;}
.y19_c00368{bottom:806.955600px;}
.yb_c00368{bottom:863.736150px;}
.ya_c00368{bottom:877.236150px;}
.y9_c00368{bottom:903.740100px;}
.y8_c00368{bottom:917.240100px;}
.y7_c00368{bottom:943.744050px;}
.y6_c00368{bottom:957.244050px;}
.y5_c00368{bottom:970.744050px;}
.y4_c00368{bottom:992.996100px;}
.y3_c00368{bottom:1010.996100px;}
.y2_c00368{bottom:1037.500050px;}
.y18_c00368{bottom:1040.299350px;}
.y1_c00368{bottom:1093.600950px;}
.h8_c00368{height:25.200000px;}
.h7_c00368{height:30.282000px;}
.h5_c00368{height:34.080000px;}
.h2_c00368{height:39.264000px;}
.h3_c00368{height:39.984000px;}
.h4_c00368{height:43.260000px;}
.h6_c00368{height:43.740000px;}
.h1_c00368{height:1135.500000px;}
.h0_c00368{height:1135.506150px;}
.w0_c00368{width:893.950200px;}
.w1_c00368{width:894.000000px;}
.x0_c00368{left:0.000000px;}
.x4_c00368{left:128.545950px;}
.x5_c00368{left:141.301950px;}
.x2_c00368{left:188.061900px;}
.x3_c00368{left:190.513350px;}
.x6_c00368{left:321.177150px;}
.x1_c00368{left:800.165850px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls2_c00368{letter-spacing:-0.640000pt;}
.ls3_c00368{letter-spacing:-0.560000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.426667pt;}
.ws1_c00368{word-spacing:-7.728000pt;}
.ws2_c00368{word-spacing:-5.766400pt;}
.ws0_c00368{word-spacing:-0.042667pt;}
.ws3_c00368{word-spacing:0.000000pt;}
.ws4_c00368{word-spacing:6.272000pt;}
._0_c00368{margin-left:-2449.134400pt;}
._4_c00368{margin-left:-6.175467pt;}
._1_c00368{margin-left:-2.005333pt;}
._3_c00368{margin-left:-1.066667pt;}
._2_c00368{width:0.896000pt;}
._7_c00368{width:6.912000pt;}
._5_c00368{width:49.488000pt;}
._6_c00368{width:52.565333pt;}
.fs5_c00368{font-size:27.200000pt;}
.fs6_c00368{font-size:32.000000pt;}
.fs3_c00368{font-size:37.333333pt;}
.fs0_c00368{font-size:42.666667pt;}
.fs4_c00368{font-size:48.000000pt;}
.fs2_c00368{font-size:50.666667pt;}
.fs1_c00368{font-size:53.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y17_c00368{bottom:309.120133pt;}
.y16_c00368{bottom:321.120000pt;}
.y15_c00368{bottom:333.120000pt;}
.y14_c00368{bottom:356.679067pt;}
.y13_c00368{bottom:368.679067pt;}
.y12_c00368{bottom:380.679067pt;}
.y11_c00368{bottom:404.238133pt;}
.y10_c00368{bottom:416.238133pt;}
.yf_c00368{bottom:428.238133pt;}
.ye_c00368{bottom:448.017600pt;}
.yd_c00368{bottom:464.017600pt;}
.yc_c00368{bottom:487.576667pt;}
.y19_c00368{bottom:717.293867pt;}
.yb_c00368{bottom:767.765467pt;}
.ya_c00368{bottom:779.765467pt;}
.y9_c00368{bottom:803.324533pt;}
.y8_c00368{bottom:815.324533pt;}
.y7_c00368{bottom:838.883600pt;}
.y6_c00368{bottom:850.883600pt;}
.y5_c00368{bottom:862.883600pt;}
.y4_c00368{bottom:882.663200pt;}
.y3_c00368{bottom:898.663200pt;}
.y2_c00368{bottom:922.222267pt;}
.y18_c00368{bottom:924.710533pt;}
.y1_c00368{bottom:972.089733pt;}
.h8_c00368{height:22.400000pt;}
.h7_c00368{height:26.917333pt;}
.h5_c00368{height:30.293333pt;}
.h2_c00368{height:34.901333pt;}
.h3_c00368{height:35.541333pt;}
.h4_c00368{height:38.453333pt;}
.h6_c00368{height:38.880000pt;}
.h1_c00368{height:1009.333333pt;}
.h0_c00368{height:1009.338800pt;}
.w0_c00368{width:794.622400pt;}
.w1_c00368{width:794.666667pt;}
.x0_c00368{left:0.000000pt;}
.x4_c00368{left:114.263067pt;}
.x5_c00368{left:125.601733pt;}
.x2_c00368{left:167.166133pt;}
.x3_c00368{left:169.345200pt;}
.x6_c00368{left:285.490800pt;}
.x1_c00368{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00369;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00369{font-family:ff6_c00369;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls2_c00369{letter-spacing:-0.720000px;}
.ls3_c00369{letter-spacing:-0.630000px;}
.ls1_c00369{letter-spacing:-0.378000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00369{word-spacing:0.000000px;}
.ws4_c00369{word-spacing:0.378000px;}
.ws3_c00369{word-spacing:7.056000px;}
.ws0_c00369{word-spacing:1585.435200px;}
._3_c00369{margin-left:-7.042800px;}
._0_c00369{margin-left:-2.112000px;}
._1_c00369{margin-left:-1.104000px;}
._2_c00369{width:2.016000px;}
._6_c00369{width:7.776000px;}
._4_c00369{width:55.674000px;}
._5_c00369{width:59.136000px;}
.fc0_c00369{color:rgb(35,31,32);}
.fs3_c00369{font-size:42.000000px;}
.fs0_c00369{font-size:48.000000px;}
.fs4_c00369{font-size:54.000000px;}
.fs2_c00369{font-size:57.000000px;}
.fs1_c00369{font-size:60.000000px;}
.y0_c00369{bottom:0.000000px;}
.y19_c00369{bottom:348.168150px;}
.y18_c00369{bottom:361.668150px;}
.y17_c00369{bottom:375.168000px;}
.y16_c00369{bottom:401.672100px;}
.y15_c00369{bottom:415.172100px;}
.y14_c00369{bottom:428.672100px;}
.y13_c00369{bottom:455.175900px;}
.y12_c00369{bottom:468.675900px;}
.y11_c00369{bottom:482.175900px;}
.y10_c00369{bottom:504.427950px;}
.yf_c00369{bottom:522.427950px;}
.ye_c00369{bottom:548.931900px;}
.yd_c00369{bottom:837.144300px;}
.yc_c00369{bottom:850.644300px;}
.yb_c00369{bottom:864.144300px;}
.ya_c00369{bottom:890.648250px;}
.y9_c00369{bottom:904.148250px;}
.y8_c00369{bottom:917.648250px;}
.y7_c00369{bottom:944.152200px;}
.y6_c00369{bottom:957.652200px;}
.y5_c00369{bottom:971.152200px;}
.y4_c00369{bottom:993.404250px;}
.y3_c00369{bottom:1011.404250px;}
.y2_c00369{bottom:1037.908200px;}
.y1_c00369{bottom:1093.600950px;}
.h6_c00369{height:30.282000px;}
.h4_c00369{height:34.080000px;}
.h2_c00369{height:39.264000px;}
.h3_c00369{height:43.260000px;}
.h5_c00369{height:43.740000px;}
.h1_c00369{height:1135.500000px;}
.h0_c00369{height:1135.506150px;}
.w0_c00369{width:893.950200px;}
.w1_c00369{width:894.000000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:77.603100px;}
.x2_c00369{left:599.532150px;}
.x3_c00369{left:612.288150px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls2_c00369{letter-spacing:-0.640000pt;}
.ls3_c00369{letter-spacing:-0.560000pt;}
.ls1_c00369{letter-spacing:-0.336000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws1_c00369{word-spacing:-7.728000pt;}
.ws2_c00369{word-spacing:0.000000pt;}
.ws4_c00369{word-spacing:0.336000pt;}
.ws3_c00369{word-spacing:6.272000pt;}
.ws0_c00369{word-spacing:1409.275733pt;}
._3_c00369{margin-left:-6.260267pt;}
._0_c00369{margin-left:-1.877333pt;}
._1_c00369{margin-left:-0.981333pt;}
._2_c00369{width:1.792000pt;}
._6_c00369{width:6.912000pt;}
._4_c00369{width:49.488000pt;}
._5_c00369{width:52.565333pt;}
.fs3_c00369{font-size:37.333333pt;}
.fs0_c00369{font-size:42.666667pt;}
.fs4_c00369{font-size:48.000000pt;}
.fs2_c00369{font-size:50.666667pt;}
.fs1_c00369{font-size:53.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y19_c00369{bottom:309.482800pt;}
.y18_c00369{bottom:321.482800pt;}
.y17_c00369{bottom:333.482667pt;}
.y16_c00369{bottom:357.041867pt;}
.y15_c00369{bottom:369.041867pt;}
.y14_c00369{bottom:381.041867pt;}
.y13_c00369{bottom:404.600800pt;}
.y12_c00369{bottom:416.600800pt;}
.y11_c00369{bottom:428.600800pt;}
.y10_c00369{bottom:448.380400pt;}
.yf_c00369{bottom:464.380400pt;}
.ye_c00369{bottom:487.939467pt;}
.yd_c00369{bottom:744.128267pt;}
.yc_c00369{bottom:756.128267pt;}
.yb_c00369{bottom:768.128267pt;}
.ya_c00369{bottom:791.687333pt;}
.y9_c00369{bottom:803.687333pt;}
.y8_c00369{bottom:815.687333pt;}
.y7_c00369{bottom:839.246400pt;}
.y6_c00369{bottom:851.246400pt;}
.y5_c00369{bottom:863.246400pt;}
.y4_c00369{bottom:883.026000pt;}
.y3_c00369{bottom:899.026000pt;}
.y2_c00369{bottom:922.585067pt;}
.y1_c00369{bottom:972.089733pt;}
.h6_c00369{height:26.917333pt;}
.h4_c00369{height:30.293333pt;}
.h2_c00369{height:34.901333pt;}
.h3_c00369{height:38.453333pt;}
.h5_c00369{height:38.880000pt;}
.h1_c00369{height:1009.333333pt;}
.h0_c00369{height:1009.338800pt;}
.w0_c00369{width:794.622400pt;}
.w1_c00369{width:794.666667pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:68.980533pt;}
.x2_c00369{left:532.917467pt;}
.x3_c00369{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00370;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00370;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.067000;font-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_c00370{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls5_c00370{letter-spacing:-1.026000px;}
.ls3_c00370{letter-spacing:-0.720000px;}
.ls4_c00370{letter-spacing:-0.630000px;}
.ls2_c00370{letter-spacing:-0.378000px;}
.ls1_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00370{word-spacing:-8.694000px;}
.ws0_c00370{word-spacing:-0.048000px;}
.ws2_c00370{word-spacing:0.000000px;}
.ws4_c00370{word-spacing:0.378000px;}
.ws3_c00370{word-spacing:7.056000px;}
.ws5_c00370{word-spacing:56.700000px;}
._0_c00370{margin-left:-2755.276200px;}
._4_c00370{margin-left:-6.946800px;}
._1_c00370{margin-left:-2.256000px;}
._3_c00370{margin-left:-1.200000px;}
._2_c00370{width:1.008000px;}
._7_c00370{width:7.776000px;}
._5_c00370{width:55.674000px;}
._6_c00370{width:59.136000px;}
.fc0_c00370{color:rgb(35,31,32);}
.fs3_c00370{font-size:42.000000px;}
.fs0_c00370{font-size:48.000000px;}
.fs4_c00370{font-size:54.000000px;}
.fs2_c00370{font-size:57.000000px;}
.fs1_c00370{font-size:60.000000px;}
.y0_c00370{bottom:0.000000px;}
.y19_c00370{bottom:347.751450px;}
.y18_c00370{bottom:361.251450px;}
.y17_c00370{bottom:374.751450px;}
.y16_c00370{bottom:401.255400px;}
.y15_c00370{bottom:414.755400px;}
.y14_c00370{bottom:428.255400px;}
.y13_c00370{bottom:454.759350px;}
.y12_c00370{bottom:468.259350px;}
.y11_c00370{bottom:481.759350px;}
.y10_c00370{bottom:504.011250px;}
.yf_c00370{bottom:522.011250px;}
.ye_c00370{bottom:548.515200px;}
.yd_c00370{bottom:836.727750px;}
.yc_c00370{bottom:850.227750px;}
.yb_c00370{bottom:863.727750px;}
.ya_c00370{bottom:890.231700px;}
.y9_c00370{bottom:903.731700px;}
.y8_c00370{bottom:917.231700px;}
.y7_c00370{bottom:943.735650px;}
.y6_c00370{bottom:957.235650px;}
.y5_c00370{bottom:970.735650px;}
.y4_c00370{bottom:992.987550px;}
.y3_c00370{bottom:1010.987550px;}
.y2_c00370{bottom:1037.491500px;}
.y1_c00370{bottom:1093.600950px;}
.h7_c00370{height:30.282000px;}
.h5_c00370{height:34.080000px;}
.h2_c00370{height:39.264000px;}
.h3_c00370{height:39.984000px;}
.h4_c00370{height:43.260000px;}
.h6_c00370{height:43.740000px;}
.h1_c00370{height:1135.500000px;}
.h0_c00370{height:1135.506150px;}
.w0_c00370{width:893.950200px;}
.w1_c00370{width:894.000000px;}
.x0_c00370{left:0.000000px;}
.x4_c00370{left:128.626800px;}
.x5_c00370{left:141.382650px;}
.x2_c00370{left:188.061900px;}
.x3_c00370{left:190.513350px;}
.x1_c00370{left:800.165850px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls5_c00370{letter-spacing:-0.912000pt;}
.ls3_c00370{letter-spacing:-0.640000pt;}
.ls4_c00370{letter-spacing:-0.560000pt;}
.ls2_c00370{letter-spacing:-0.336000pt;}
.ls1_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.426667pt;}
.ws1_c00370{word-spacing:-7.728000pt;}
.ws0_c00370{word-spacing:-0.042667pt;}
.ws2_c00370{word-spacing:0.000000pt;}
.ws4_c00370{word-spacing:0.336000pt;}
.ws3_c00370{word-spacing:6.272000pt;}
.ws5_c00370{word-spacing:50.400000pt;}
._0_c00370{margin-left:-2449.134400pt;}
._4_c00370{margin-left:-6.174933pt;}
._1_c00370{margin-left:-2.005333pt;}
._3_c00370{margin-left:-1.066667pt;}
._2_c00370{width:0.896000pt;}
._7_c00370{width:6.912000pt;}
._5_c00370{width:49.488000pt;}
._6_c00370{width:52.565333pt;}
.fs3_c00370{font-size:37.333333pt;}
.fs0_c00370{font-size:42.666667pt;}
.fs4_c00370{font-size:48.000000pt;}
.fs2_c00370{font-size:50.666667pt;}
.fs1_c00370{font-size:53.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y19_c00370{bottom:309.112400pt;}
.y18_c00370{bottom:321.112400pt;}
.y17_c00370{bottom:333.112400pt;}
.y16_c00370{bottom:356.671467pt;}
.y15_c00370{bottom:368.671467pt;}
.y14_c00370{bottom:380.671467pt;}
.y13_c00370{bottom:404.230533pt;}
.y12_c00370{bottom:416.230533pt;}
.y11_c00370{bottom:428.230533pt;}
.y10_c00370{bottom:448.010000pt;}
.yf_c00370{bottom:464.010000pt;}
.ye_c00370{bottom:487.569067pt;}
.yd_c00370{bottom:743.758000pt;}
.yc_c00370{bottom:755.758000pt;}
.yb_c00370{bottom:767.758000pt;}
.ya_c00370{bottom:791.317067pt;}
.y9_c00370{bottom:803.317067pt;}
.y8_c00370{bottom:815.317067pt;}
.y7_c00370{bottom:838.876133pt;}
.y6_c00370{bottom:850.876133pt;}
.y5_c00370{bottom:862.876133pt;}
.y4_c00370{bottom:882.655600pt;}
.y3_c00370{bottom:898.655600pt;}
.y2_c00370{bottom:922.214667pt;}
.y1_c00370{bottom:972.089733pt;}
.h7_c00370{height:26.917333pt;}
.h5_c00370{height:30.293333pt;}
.h2_c00370{height:34.901333pt;}
.h3_c00370{height:35.541333pt;}
.h4_c00370{height:38.453333pt;}
.h6_c00370{height:38.880000pt;}
.h1_c00370{height:1009.333333pt;}
.h0_c00370{height:1009.338800pt;}
.w0_c00370{width:794.622400pt;}
.w1_c00370{width:794.666667pt;}
.x0_c00370{left:0.000000pt;}
.x4_c00370{left:114.334933pt;}
.x5_c00370{left:125.673467pt;}
.x2_c00370{left:167.166133pt;}
.x3_c00370{left:169.345200pt;}
.x1_c00370{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00371;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00371;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00371{font-family:ff7_c00371;line-height:0.710000;font-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_c00371{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls2_c00371{letter-spacing:-0.720000px;}
.ls3_c00371{letter-spacing:-0.630000px;}
.ls1_c00371{letter-spacing:-0.216000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00371{word-spacing:-8.694000px;}
.ws2_c00371{word-spacing:-6.487200px;}
.ws3_c00371{word-spacing:0.000000px;}
.ws5_c00371{word-spacing:0.216000px;}
.ws4_c00371{word-spacing:7.056000px;}
.ws0_c00371{word-spacing:1585.435200px;}
._3_c00371{margin-left:-7.042800px;}
._0_c00371{margin-left:-2.112000px;}
._1_c00371{margin-left:-1.104000px;}
._2_c00371{width:2.016000px;}
._6_c00371{width:7.776000px;}
._4_c00371{width:55.674000px;}
._5_c00371{width:59.136000px;}
.fc0_c00371{color:rgb(35,31,32);}
.fs5_c00371{font-size:30.600000px;}
.fs6_c00371{font-size:36.000000px;}
.fs3_c00371{font-size:42.000000px;}
.fs0_c00371{font-size:48.000000px;}
.fs4_c00371{font-size:54.000000px;}
.fs2_c00371{font-size:57.000000px;}
.fs1_c00371{font-size:60.000000px;}
.y0_c00371{bottom:0.000000px;}
.y18_c00371{bottom:347.955600px;}
.y17_c00371{bottom:361.455600px;}
.y16_c00371{bottom:374.955450px;}
.y15_c00371{bottom:401.459400px;}
.y14_c00371{bottom:414.959400px;}
.y13_c00371{bottom:428.459400px;}
.y12_c00371{bottom:454.963350px;}
.y11_c00371{bottom:468.463350px;}
.y10_c00371{bottom:481.963350px;}
.yf_c00371{bottom:504.215400px;}
.ye_c00371{bottom:522.215400px;}
.yd_c00371{bottom:548.719350px;}
.yc_c00371{bottom:850.431750px;}
.yb_c00371{bottom:863.931750px;}
.ya_c00371{bottom:877.431750px;}
.y9_c00371{bottom:903.935700px;}
.y8_c00371{bottom:917.435700px;}
.y7_c00371{bottom:943.939650px;}
.y6_c00371{bottom:957.439650px;}
.y5_c00371{bottom:970.939650px;}
.y4_c00371{bottom:993.191700px;}
.y3_c00371{bottom:1011.191700px;}
.y2_c00371{bottom:1037.695650px;}
.y19_c00371{bottom:1040.299350px;}
.y1_c00371{bottom:1093.600950px;}
.h7_c00371{height:25.200000px;}
.h6_c00371{height:30.282000px;}
.h4_c00371{height:34.080000px;}
.h2_c00371{height:39.264000px;}
.h3_c00371{height:43.260000px;}
.h5_c00371{height:43.740000px;}
.h1_c00371{height:1135.500000px;}
.h0_c00371{height:1135.506150px;}
.w0_c00371{width:893.950200px;}
.w1_c00371{width:894.000000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:77.603100px;}
.x4_c00371{left:424.138500px;}
.x2_c00371{left:599.532150px;}
.x3_c00371{left:612.288150px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls2_c00371{letter-spacing:-0.640000pt;}
.ls3_c00371{letter-spacing:-0.560000pt;}
.ls1_c00371{letter-spacing:-0.192000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws1_c00371{word-spacing:-7.728000pt;}
.ws2_c00371{word-spacing:-5.766400pt;}
.ws3_c00371{word-spacing:0.000000pt;}
.ws5_c00371{word-spacing:0.192000pt;}
.ws4_c00371{word-spacing:6.272000pt;}
.ws0_c00371{word-spacing:1409.275733pt;}
._3_c00371{margin-left:-6.260267pt;}
._0_c00371{margin-left:-1.877333pt;}
._1_c00371{margin-left:-0.981333pt;}
._2_c00371{width:1.792000pt;}
._6_c00371{width:6.912000pt;}
._4_c00371{width:49.488000pt;}
._5_c00371{width:52.565333pt;}
.fs5_c00371{font-size:27.200000pt;}
.fs6_c00371{font-size:32.000000pt;}
.fs3_c00371{font-size:37.333333pt;}
.fs0_c00371{font-size:42.666667pt;}
.fs4_c00371{font-size:48.000000pt;}
.fs2_c00371{font-size:50.666667pt;}
.fs1_c00371{font-size:53.333333pt;}
.y0_c00371{bottom:0.000000pt;}
.y18_c00371{bottom:309.293867pt;}
.y17_c00371{bottom:321.293867pt;}
.y16_c00371{bottom:333.293733pt;}
.y15_c00371{bottom:356.852800pt;}
.y14_c00371{bottom:368.852800pt;}
.y13_c00371{bottom:380.852800pt;}
.y12_c00371{bottom:404.411867pt;}
.y11_c00371{bottom:416.411867pt;}
.y10_c00371{bottom:428.411867pt;}
.yf_c00371{bottom:448.191467pt;}
.ye_c00371{bottom:464.191467pt;}
.yd_c00371{bottom:487.750533pt;}
.yc_c00371{bottom:755.939333pt;}
.yb_c00371{bottom:767.939333pt;}
.ya_c00371{bottom:779.939333pt;}
.y9_c00371{bottom:803.498400pt;}
.y8_c00371{bottom:815.498400pt;}
.y7_c00371{bottom:839.057467pt;}
.y6_c00371{bottom:851.057467pt;}
.y5_c00371{bottom:863.057467pt;}
.y4_c00371{bottom:882.837067pt;}
.y3_c00371{bottom:898.837067pt;}
.y2_c00371{bottom:922.396133pt;}
.y19_c00371{bottom:924.710533pt;}
.y1_c00371{bottom:972.089733pt;}
.h7_c00371{height:22.400000pt;}
.h6_c00371{height:26.917333pt;}
.h4_c00371{height:30.293333pt;}
.h2_c00371{height:34.901333pt;}
.h3_c00371{height:38.453333pt;}
.h5_c00371{height:38.880000pt;}
.h1_c00371{height:1009.333333pt;}
.h0_c00371{height:1009.338800pt;}
.w0_c00371{width:794.622400pt;}
.w1_c00371{width:794.666667pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:68.980533pt;}
.x4_c00371{left:377.012000pt;}
.x2_c00371{left:532.917467pt;}
.x3_c00371{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00372;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00372;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00372{font-family:ff7_c00372;line-height:1.067000;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00372{font-family:ff8_c00372;line-height:0.710000;font-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_c00372{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls2_c00372{letter-spacing:-0.864000px;}
.ls3_c00372{letter-spacing:-0.720000px;}
.ls4_c00372{letter-spacing:-0.630000px;}
.ls5_c00372{letter-spacing:-0.540000px;}
.ls1_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.480000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-8.694000px;}
.ws2_c00372{word-spacing:-6.487200px;}
.ws0_c00372{word-spacing:-0.048000px;}
.ws3_c00372{word-spacing:0.000000px;}
.ws5_c00372{word-spacing:0.864000px;}
.ws4_c00372{word-spacing:7.056000px;}
.ws6_c00372{word-spacing:56.214000px;}
._0_c00372{margin-left:-2755.276200px;}
._4_c00372{margin-left:-6.946800px;}
._1_c00372{margin-left:-2.256000px;}
._3_c00372{margin-left:-1.200000px;}
._2_c00372{width:1.008000px;}
._7_c00372{width:7.776000px;}
._5_c00372{width:55.674000px;}
._6_c00372{width:59.136000px;}
.fc0_c00372{color:rgb(35,31,32);}
.fs5_c00372{font-size:30.600000px;}
.fs6_c00372{font-size:36.000000px;}
.fs3_c00372{font-size:42.000000px;}
.fs0_c00372{font-size:48.000000px;}
.fs4_c00372{font-size:54.000000px;}
.fs2_c00372{font-size:57.000000px;}
.fs1_c00372{font-size:60.000000px;}
.y0_c00372{bottom:0.000000px;}
.y18_c00372{bottom:361.038900px;}
.y17_c00372{bottom:374.538900px;}
.y16_c00372{bottom:388.038900px;}
.y15_c00372{bottom:414.542850px;}
.y14_c00372{bottom:428.042850px;}
.y13_c00372{bottom:454.546650px;}
.y12_c00372{bottom:468.046650px;}
.y11_c00372{bottom:481.546650px;}
.y10_c00372{bottom:503.798700px;}
.yf_c00372{bottom:521.798700px;}
.ye_c00372{bottom:548.302650px;}
.y19_c00372{bottom:551.323050px;}
.yd_c00372{bottom:836.515200px;}
.yc_c00372{bottom:850.015200px;}
.yb_c00372{bottom:863.515200px;}
.ya_c00372{bottom:890.019150px;}
.y9_c00372{bottom:903.519150px;}
.y8_c00372{bottom:917.019150px;}
.y7_c00372{bottom:943.523100px;}
.y6_c00372{bottom:957.023100px;}
.y5_c00372{bottom:970.523100px;}
.y4_c00372{bottom:992.775000px;}
.y3_c00372{bottom:1010.775000px;}
.y2_c00372{bottom:1037.278950px;}
.y1_c00372{bottom:1093.600950px;}
.h8_c00372{height:25.200000px;}
.h7_c00372{height:30.282000px;}
.h5_c00372{height:34.080000px;}
.h2_c00372{height:39.264000px;}
.h3_c00372{height:39.984000px;}
.h4_c00372{height:43.260000px;}
.h6_c00372{height:43.740000px;}
.h1_c00372{height:1135.500000px;}
.h0_c00372{height:1135.506150px;}
.w0_c00372{width:893.950200px;}
.w1_c00372{width:894.000000px;}
.x0_c00372{left:0.000000px;}
.x4_c00372{left:128.626800px;}
.x5_c00372{left:141.382650px;}
.x2_c00372{left:188.061900px;}
.x3_c00372{left:190.513350px;}
.x6_c00372{left:321.257850px;}
.x1_c00372{left:800.165850px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls2_c00372{letter-spacing:-0.768000pt;}
.ls3_c00372{letter-spacing:-0.640000pt;}
.ls4_c00372{letter-spacing:-0.560000pt;}
.ls5_c00372{letter-spacing:-0.480000pt;}
.ls1_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.426667pt;}
.ws1_c00372{word-spacing:-7.728000pt;}
.ws2_c00372{word-spacing:-5.766400pt;}
.ws0_c00372{word-spacing:-0.042667pt;}
.ws3_c00372{word-spacing:0.000000pt;}
.ws5_c00372{word-spacing:0.768000pt;}
.ws4_c00372{word-spacing:6.272000pt;}
.ws6_c00372{word-spacing:49.968000pt;}
._0_c00372{margin-left:-2449.134400pt;}
._4_c00372{margin-left:-6.174933pt;}
._1_c00372{margin-left:-2.005333pt;}
._3_c00372{margin-left:-1.066667pt;}
._2_c00372{width:0.896000pt;}
._7_c00372{width:6.912000pt;}
._5_c00372{width:49.488000pt;}
._6_c00372{width:52.565333pt;}
.fs5_c00372{font-size:27.200000pt;}
.fs6_c00372{font-size:32.000000pt;}
.fs3_c00372{font-size:37.333333pt;}
.fs0_c00372{font-size:42.666667pt;}
.fs4_c00372{font-size:48.000000pt;}
.fs2_c00372{font-size:50.666667pt;}
.fs1_c00372{font-size:53.333333pt;}
.y0_c00372{bottom:0.000000pt;}
.y18_c00372{bottom:320.923467pt;}
.y17_c00372{bottom:332.923467pt;}
.y16_c00372{bottom:344.923467pt;}
.y15_c00372{bottom:368.482533pt;}
.y14_c00372{bottom:380.482533pt;}
.y13_c00372{bottom:404.041467pt;}
.y12_c00372{bottom:416.041467pt;}
.y11_c00372{bottom:428.041467pt;}
.y10_c00372{bottom:447.821067pt;}
.yf_c00372{bottom:463.821067pt;}
.ye_c00372{bottom:487.380133pt;}
.y19_c00372{bottom:490.064933pt;}
.yd_c00372{bottom:743.569067pt;}
.yc_c00372{bottom:755.569067pt;}
.yb_c00372{bottom:767.569067pt;}
.ya_c00372{bottom:791.128133pt;}
.y9_c00372{bottom:803.128133pt;}
.y8_c00372{bottom:815.128133pt;}
.y7_c00372{bottom:838.687200pt;}
.y6_c00372{bottom:850.687200pt;}
.y5_c00372{bottom:862.687200pt;}
.y4_c00372{bottom:882.466667pt;}
.y3_c00372{bottom:898.466667pt;}
.y2_c00372{bottom:922.025733pt;}
.y1_c00372{bottom:972.089733pt;}
.h8_c00372{height:22.400000pt;}
.h7_c00372{height:26.917333pt;}
.h5_c00372{height:30.293333pt;}
.h2_c00372{height:34.901333pt;}
.h3_c00372{height:35.541333pt;}
.h4_c00372{height:38.453333pt;}
.h6_c00372{height:38.880000pt;}
.h1_c00372{height:1009.333333pt;}
.h0_c00372{height:1009.338800pt;}
.w0_c00372{width:794.622400pt;}
.w1_c00372{width:794.666667pt;}
.x0_c00372{left:0.000000pt;}
.x4_c00372{left:114.334933pt;}
.x5_c00372{left:125.673467pt;}
.x2_c00372{left:167.166133pt;}
.x3_c00372{left:169.345200pt;}
.x6_c00372{left:285.562533pt;}
.x1_c00372{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00373;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls1_c00373{letter-spacing:-0.720000px;}
.ls2_c00373{letter-spacing:-0.630000px;}
.ls0_c00373{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00373{word-spacing:-8.694000px;}
.ws2_c00373{word-spacing:0.000000px;}
.ws3_c00373{word-spacing:7.056000px;}
.ws0_c00373{word-spacing:1585.435200px;}
._3_c00373{margin-left:-7.042800px;}
._0_c00373{margin-left:-2.112000px;}
._1_c00373{margin-left:-1.104000px;}
._2_c00373{width:2.016000px;}
._6_c00373{width:7.776000px;}
._4_c00373{width:55.674000px;}
._5_c00373{width:59.136000px;}
.fc0_c00373{color:rgb(35,31,32);}
.fs3_c00373{font-size:42.000000px;}
.fs0_c00373{font-size:48.000000px;}
.fs4_c00373{font-size:54.000000px;}
.fs2_c00373{font-size:57.000000px;}
.fs1_c00373{font-size:60.000000px;}
.y0_c00373{bottom:0.000000px;}
.y19_c00373{bottom:347.955600px;}
.y18_c00373{bottom:361.455600px;}
.y17_c00373{bottom:374.955450px;}
.y16_c00373{bottom:401.459400px;}
.y15_c00373{bottom:414.959400px;}
.y14_c00373{bottom:428.459400px;}
.y13_c00373{bottom:454.963350px;}
.y12_c00373{bottom:468.463350px;}
.y11_c00373{bottom:481.963350px;}
.y10_c00373{bottom:504.215400px;}
.yf_c00373{bottom:522.215400px;}
.ye_c00373{bottom:548.719350px;}
.yd_c00373{bottom:836.931750px;}
.yc_c00373{bottom:850.431750px;}
.yb_c00373{bottom:863.931750px;}
.ya_c00373{bottom:890.435700px;}
.y9_c00373{bottom:903.935700px;}
.y8_c00373{bottom:917.435700px;}
.y7_c00373{bottom:943.939650px;}
.y6_c00373{bottom:957.439650px;}
.y5_c00373{bottom:970.939650px;}
.y4_c00373{bottom:993.191700px;}
.y3_c00373{bottom:1011.191700px;}
.y2_c00373{bottom:1037.695650px;}
.y1_c00373{bottom:1093.600950px;}
.h6_c00373{height:30.282000px;}
.h4_c00373{height:34.080000px;}
.h2_c00373{height:39.264000px;}
.h3_c00373{height:43.260000px;}
.h5_c00373{height:43.740000px;}
.h1_c00373{height:1135.500000px;}
.h0_c00373{height:1135.506150px;}
.w0_c00373{width:893.950200px;}
.w1_c00373{width:894.000000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:77.603100px;}
.x2_c00373{left:599.532150px;}
.x3_c00373{left:612.288150px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls1_c00373{letter-spacing:-0.640000pt;}
.ls2_c00373{letter-spacing:-0.560000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws1_c00373{word-spacing:-7.728000pt;}
.ws2_c00373{word-spacing:0.000000pt;}
.ws3_c00373{word-spacing:6.272000pt;}
.ws0_c00373{word-spacing:1409.275733pt;}
._3_c00373{margin-left:-6.260267pt;}
._0_c00373{margin-left:-1.877333pt;}
._1_c00373{margin-left:-0.981333pt;}
._2_c00373{width:1.792000pt;}
._6_c00373{width:6.912000pt;}
._4_c00373{width:49.488000pt;}
._5_c00373{width:52.565333pt;}
.fs3_c00373{font-size:37.333333pt;}
.fs0_c00373{font-size:42.666667pt;}
.fs4_c00373{font-size:48.000000pt;}
.fs2_c00373{font-size:50.666667pt;}
.fs1_c00373{font-size:53.333333pt;}
.y0_c00373{bottom:0.000000pt;}
.y19_c00373{bottom:309.293867pt;}
.y18_c00373{bottom:321.293867pt;}
.y17_c00373{bottom:333.293733pt;}
.y16_c00373{bottom:356.852800pt;}
.y15_c00373{bottom:368.852800pt;}
.y14_c00373{bottom:380.852800pt;}
.y13_c00373{bottom:404.411867pt;}
.y12_c00373{bottom:416.411867pt;}
.y11_c00373{bottom:428.411867pt;}
.y10_c00373{bottom:448.191467pt;}
.yf_c00373{bottom:464.191467pt;}
.ye_c00373{bottom:487.750533pt;}
.yd_c00373{bottom:743.939333pt;}
.yc_c00373{bottom:755.939333pt;}
.yb_c00373{bottom:767.939333pt;}
.ya_c00373{bottom:791.498400pt;}
.y9_c00373{bottom:803.498400pt;}
.y8_c00373{bottom:815.498400pt;}
.y7_c00373{bottom:839.057467pt;}
.y6_c00373{bottom:851.057467pt;}
.y5_c00373{bottom:863.057467pt;}
.y4_c00373{bottom:882.837067pt;}
.y3_c00373{bottom:898.837067pt;}
.y2_c00373{bottom:922.396133pt;}
.y1_c00373{bottom:972.089733pt;}
.h6_c00373{height:26.917333pt;}
.h4_c00373{height:30.293333pt;}
.h2_c00373{height:34.901333pt;}
.h3_c00373{height:38.453333pt;}
.h5_c00373{height:38.880000pt;}
.h1_c00373{height:1009.333333pt;}
.h0_c00373{height:1009.338800pt;}
.w0_c00373{width:794.622400pt;}
.w1_c00373{width:794.666667pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:68.980533pt;}
.x2_c00373{left:532.917467pt;}
.x3_c00373{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00374{font-family:ff6_c00374;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00374;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00374{font-family:ff7_c00374;line-height:1.067000;font-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_c00374{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls3_c00374{letter-spacing:-0.720000px;}
.ls4_c00374{letter-spacing:-0.630000px;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls2_c00374{letter-spacing:0.162000px;}
.ls0_c00374{letter-spacing:0.480000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00374{word-spacing:-8.694000px;}
.ws4_c00374{word-spacing:-0.162000px;}
.ws0_c00374{word-spacing:-0.048000px;}
.ws2_c00374{word-spacing:0.000000px;}
.ws3_c00374{word-spacing:7.056000px;}
._0_c00374{margin-left:-2755.276200px;}
._4_c00374{margin-left:-6.946800px;}
._1_c00374{margin-left:-2.256000px;}
._3_c00374{margin-left:-1.200000px;}
._2_c00374{width:1.008000px;}
._7_c00374{width:7.776000px;}
._5_c00374{width:55.674000px;}
._6_c00374{width:59.136000px;}
.fc0_c00374{color:rgb(35,31,32);}
.fs3_c00374{font-size:42.000000px;}
.fs0_c00374{font-size:48.000000px;}
.fs4_c00374{font-size:54.000000px;}
.fs2_c00374{font-size:57.000000px;}
.fs1_c00374{font-size:60.000000px;}
.y0_c00374{bottom:0.000000px;}
.y19_c00374{bottom:348.185250px;}
.y18_c00374{bottom:361.685250px;}
.y17_c00374{bottom:375.185250px;}
.y16_c00374{bottom:401.689200px;}
.y15_c00374{bottom:415.189200px;}
.y14_c00374{bottom:428.689200px;}
.y13_c00374{bottom:455.193150px;}
.y12_c00374{bottom:468.693150px;}
.y11_c00374{bottom:482.193150px;}
.y10_c00374{bottom:504.445050px;}
.yf_c00374{bottom:522.445050px;}
.ye_c00374{bottom:548.949000px;}
.yd_c00374{bottom:836.515200px;}
.yc_c00374{bottom:850.015200px;}
.yb_c00374{bottom:863.515200px;}
.ya_c00374{bottom:890.019150px;}
.y9_c00374{bottom:903.519150px;}
.y8_c00374{bottom:917.019150px;}
.y7_c00374{bottom:943.523100px;}
.y6_c00374{bottom:957.023100px;}
.y5_c00374{bottom:970.523100px;}
.y4_c00374{bottom:992.775000px;}
.y3_c00374{bottom:1010.775000px;}
.y2_c00374{bottom:1037.278950px;}
.y1_c00374{bottom:1093.600950px;}
.h7_c00374{height:30.282000px;}
.h5_c00374{height:34.080000px;}
.h2_c00374{height:39.264000px;}
.h3_c00374{height:39.984000px;}
.h4_c00374{height:43.260000px;}
.h6_c00374{height:43.740000px;}
.h1_c00374{height:1135.500000px;}
.h0_c00374{height:1135.506150px;}
.w0_c00374{width:893.950200px;}
.w1_c00374{width:894.000000px;}
.x0_c00374{left:0.000000px;}
.x4_c00374{left:128.626800px;}
.x5_c00374{left:141.382650px;}
.x2_c00374{left:188.061900px;}
.x3_c00374{left:190.513350px;}
.x1_c00374{left:800.165850px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls3_c00374{letter-spacing:-0.640000pt;}
.ls4_c00374{letter-spacing:-0.560000pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls2_c00374{letter-spacing:0.144000pt;}
.ls0_c00374{letter-spacing:0.426667pt;}
.ws1_c00374{word-spacing:-7.728000pt;}
.ws4_c00374{word-spacing:-0.144000pt;}
.ws0_c00374{word-spacing:-0.042667pt;}
.ws2_c00374{word-spacing:0.000000pt;}
.ws3_c00374{word-spacing:6.272000pt;}
._0_c00374{margin-left:-2449.134400pt;}
._4_c00374{margin-left:-6.174933pt;}
._1_c00374{margin-left:-2.005333pt;}
._3_c00374{margin-left:-1.066667pt;}
._2_c00374{width:0.896000pt;}
._7_c00374{width:6.912000pt;}
._5_c00374{width:49.488000pt;}
._6_c00374{width:52.565333pt;}
.fs3_c00374{font-size:37.333333pt;}
.fs0_c00374{font-size:42.666667pt;}
.fs4_c00374{font-size:48.000000pt;}
.fs2_c00374{font-size:50.666667pt;}
.fs1_c00374{font-size:53.333333pt;}
.y0_c00374{bottom:0.000000pt;}
.y19_c00374{bottom:309.498000pt;}
.y18_c00374{bottom:321.498000pt;}
.y17_c00374{bottom:333.498000pt;}
.y16_c00374{bottom:357.057067pt;}
.y15_c00374{bottom:369.057067pt;}
.y14_c00374{bottom:381.057067pt;}
.y13_c00374{bottom:404.616133pt;}
.y12_c00374{bottom:416.616133pt;}
.y11_c00374{bottom:428.616133pt;}
.y10_c00374{bottom:448.395600pt;}
.yf_c00374{bottom:464.395600pt;}
.ye_c00374{bottom:487.954667pt;}
.yd_c00374{bottom:743.569067pt;}
.yc_c00374{bottom:755.569067pt;}
.yb_c00374{bottom:767.569067pt;}
.ya_c00374{bottom:791.128133pt;}
.y9_c00374{bottom:803.128133pt;}
.y8_c00374{bottom:815.128133pt;}
.y7_c00374{bottom:838.687200pt;}
.y6_c00374{bottom:850.687200pt;}
.y5_c00374{bottom:862.687200pt;}
.y4_c00374{bottom:882.466667pt;}
.y3_c00374{bottom:898.466667pt;}
.y2_c00374{bottom:922.025733pt;}
.y1_c00374{bottom:972.089733pt;}
.h7_c00374{height:26.917333pt;}
.h5_c00374{height:30.293333pt;}
.h2_c00374{height:34.901333pt;}
.h3_c00374{height:35.541333pt;}
.h4_c00374{height:38.453333pt;}
.h6_c00374{height:38.880000pt;}
.h1_c00374{height:1009.333333pt;}
.h0_c00374{height:1009.338800pt;}
.w0_c00374{width:794.622400pt;}
.w1_c00374{width:794.666667pt;}
.x0_c00374{left:0.000000pt;}
.x4_c00374{left:114.334933pt;}
.x5_c00374{left:125.673467pt;}
.x2_c00374{left:167.166133pt;}
.x3_c00374{left:169.345200pt;}
.x1_c00374{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00375;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00375;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00375{font-family:ff6_c00375;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls2_c00375{letter-spacing:-0.720000px;}
.ls3_c00375{letter-spacing:-0.630000px;}
.ls1_c00375{letter-spacing:-0.378000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00375{word-spacing:-8.694000px;}
.ws2_c00375{word-spacing:0.000000px;}
.ws4_c00375{word-spacing:0.378000px;}
.ws3_c00375{word-spacing:7.056000px;}
.ws0_c00375{word-spacing:1585.435200px;}
._3_c00375{margin-left:-7.042800px;}
._0_c00375{margin-left:-2.112000px;}
._1_c00375{margin-left:-1.104000px;}
._2_c00375{width:2.016000px;}
._6_c00375{width:7.776000px;}
._4_c00375{width:55.674000px;}
._5_c00375{width:59.136000px;}
.fc0_c00375{color:rgb(35,31,32);}
.fs3_c00375{font-size:42.000000px;}
.fs0_c00375{font-size:48.000000px;}
.fs4_c00375{font-size:54.000000px;}
.fs2_c00375{font-size:57.000000px;}
.fs1_c00375{font-size:60.000000px;}
.y0_c00375{bottom:0.000000px;}
.y19_c00375{bottom:348.083100px;}
.y18_c00375{bottom:361.583100px;}
.y17_c00375{bottom:375.082950px;}
.y16_c00375{bottom:401.587050px;}
.y15_c00375{bottom:415.087050px;}
.y14_c00375{bottom:428.587050px;}
.y13_c00375{bottom:455.090850px;}
.y12_c00375{bottom:468.590850px;}
.y11_c00375{bottom:482.090850px;}
.y10_c00375{bottom:504.342900px;}
.yf_c00375{bottom:522.342900px;}
.ye_c00375{bottom:548.846850px;}
.yd_c00375{bottom:837.059400px;}
.yc_c00375{bottom:850.559400px;}
.yb_c00375{bottom:864.059400px;}
.ya_c00375{bottom:890.563350px;}
.y9_c00375{bottom:904.063350px;}
.y8_c00375{bottom:917.563350px;}
.y7_c00375{bottom:944.067300px;}
.y6_c00375{bottom:957.567300px;}
.y5_c00375{bottom:971.067300px;}
.y4_c00375{bottom:993.319200px;}
.y3_c00375{bottom:1011.319200px;}
.y2_c00375{bottom:1037.823150px;}
.y1_c00375{bottom:1093.600950px;}
.h6_c00375{height:30.282000px;}
.h4_c00375{height:34.080000px;}
.h2_c00375{height:39.264000px;}
.h3_c00375{height:43.260000px;}
.h5_c00375{height:43.740000px;}
.h1_c00375{height:1135.500000px;}
.h0_c00375{height:1135.506150px;}
.w0_c00375{width:893.950200px;}
.w1_c00375{width:894.000000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:77.603100px;}
.x2_c00375{left:599.489700px;}
.x3_c00375{left:612.245550px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls2_c00375{letter-spacing:-0.640000pt;}
.ls3_c00375{letter-spacing:-0.560000pt;}
.ls1_c00375{letter-spacing:-0.336000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws1_c00375{word-spacing:-7.728000pt;}
.ws2_c00375{word-spacing:0.000000pt;}
.ws4_c00375{word-spacing:0.336000pt;}
.ws3_c00375{word-spacing:6.272000pt;}
.ws0_c00375{word-spacing:1409.275733pt;}
._3_c00375{margin-left:-6.260267pt;}
._0_c00375{margin-left:-1.877333pt;}
._1_c00375{margin-left:-0.981333pt;}
._2_c00375{width:1.792000pt;}
._6_c00375{width:6.912000pt;}
._4_c00375{width:49.488000pt;}
._5_c00375{width:52.565333pt;}
.fs3_c00375{font-size:37.333333pt;}
.fs0_c00375{font-size:42.666667pt;}
.fs4_c00375{font-size:48.000000pt;}
.fs2_c00375{font-size:50.666667pt;}
.fs1_c00375{font-size:53.333333pt;}
.y0_c00375{bottom:0.000000pt;}
.y19_c00375{bottom:309.407200pt;}
.y18_c00375{bottom:321.407200pt;}
.y17_c00375{bottom:333.407067pt;}
.y16_c00375{bottom:356.966267pt;}
.y15_c00375{bottom:368.966267pt;}
.y14_c00375{bottom:380.966267pt;}
.y13_c00375{bottom:404.525200pt;}
.y12_c00375{bottom:416.525200pt;}
.y11_c00375{bottom:428.525200pt;}
.y10_c00375{bottom:448.304800pt;}
.yf_c00375{bottom:464.304800pt;}
.ye_c00375{bottom:487.863867pt;}
.yd_c00375{bottom:744.052800pt;}
.yc_c00375{bottom:756.052800pt;}
.yb_c00375{bottom:768.052800pt;}
.ya_c00375{bottom:791.611867pt;}
.y9_c00375{bottom:803.611867pt;}
.y8_c00375{bottom:815.611867pt;}
.y7_c00375{bottom:839.170933pt;}
.y6_c00375{bottom:851.170933pt;}
.y5_c00375{bottom:863.170933pt;}
.y4_c00375{bottom:882.950400pt;}
.y3_c00375{bottom:898.950400pt;}
.y2_c00375{bottom:922.509467pt;}
.y1_c00375{bottom:972.089733pt;}
.h6_c00375{height:26.917333pt;}
.h4_c00375{height:30.293333pt;}
.h2_c00375{height:34.901333pt;}
.h3_c00375{height:38.453333pt;}
.h5_c00375{height:38.880000pt;}
.h1_c00375{height:1009.333333pt;}
.h0_c00375{height:1009.338800pt;}
.w0_c00375{width:794.622400pt;}
.w1_c00375{width:794.666667pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:68.980533pt;}
.x2_c00375{left:532.879733pt;}
.x3_c00375{left:544.218267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00376;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00376{font-family:ff6_c00376;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00376;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00376{font-family:ff7_c00376;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00376;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00376{font-family:ff8_c00376;line-height:0.710000;font-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_c00376{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls2_c00376{letter-spacing:-1.026000px;}
.ls3_c00376{letter-spacing:-0.720000px;}
.ls4_c00376{letter-spacing:-0.630000px;}
.ls5_c00376{letter-spacing:-0.216000px;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00376{word-spacing:-8.694000px;}
.ws2_c00376{word-spacing:-6.487200px;}
.ws0_c00376{word-spacing:-0.048000px;}
.ws3_c00376{word-spacing:0.000000px;}
.ws6_c00376{word-spacing:0.216000px;}
.ws4_c00376{word-spacing:7.056000px;}
.ws5_c00376{word-spacing:56.700000px;}
._0_c00376{margin-left:-2755.276200px;}
._4_c00376{margin-left:-6.946800px;}
._1_c00376{margin-left:-2.256000px;}
._3_c00376{margin-left:-1.200000px;}
._2_c00376{width:1.008000px;}
._5_c00376{width:2.790600px;}
._7_c00376{width:7.776000px;}
._8_c00376{width:55.674000px;}
._6_c00376{width:59.136000px;}
.fc0_c00376{color:rgb(35,31,32);}
.fs5_c00376{font-size:30.600000px;}
.fs6_c00376{font-size:36.000000px;}
.fs3_c00376{font-size:42.000000px;}
.fs0_c00376{font-size:48.000000px;}
.fs4_c00376{font-size:54.000000px;}
.fs2_c00376{font-size:57.000000px;}
.fs1_c00376{font-size:60.000000px;}
.y0_c00376{bottom:0.000000px;}
.y19_c00376{bottom:348.312900px;}
.y18_c00376{bottom:361.812900px;}
.y17_c00376{bottom:375.312750px;}
.y16_c00376{bottom:401.816700px;}
.y15_c00376{bottom:415.316700px;}
.y14_c00376{bottom:428.816700px;}
.y13_c00376{bottom:455.320650px;}
.y12_c00376{bottom:468.820650px;}
.y11_c00376{bottom:482.320650px;}
.y10_c00376{bottom:504.572700px;}
.yf_c00376{bottom:522.572700px;}
.ye_c00376{bottom:549.076500px;}
.yc_c00376{bottom:850.142550px;}
.yb_c00376{bottom:863.642550px;}
.ya_c00376{bottom:877.142550px;}
.y9_c00376{bottom:903.646500px;}
.y8_c00376{bottom:917.146500px;}
.y7_c00376{bottom:943.650600px;}
.y6_c00376{bottom:957.150600px;}
.y5_c00376{bottom:970.650600px;}
.y4_c00376{bottom:992.902500px;}
.y3_c00376{bottom:1010.902500px;}
.y2_c00376{bottom:1037.406450px;}
.yd_c00376{bottom:1040.299350px;}
.y1_c00376{bottom:1093.600950px;}
.h8_c00376{height:25.200000px;}
.h7_c00376{height:30.282000px;}
.h5_c00376{height:34.080000px;}
.h2_c00376{height:39.264000px;}
.h3_c00376{height:39.984000px;}
.h4_c00376{height:43.260000px;}
.h6_c00376{height:43.740000px;}
.h1_c00376{height:1135.500000px;}
.h0_c00376{height:1135.506150px;}
.w0_c00376{width:893.950200px;}
.w1_c00376{width:894.000000px;}
.x0_c00376{left:0.000000px;}
.x4_c00376{left:128.584200px;}
.x5_c00376{left:141.340200px;}
.x2_c00376{left:188.061900px;}
.x3_c00376{left:190.513350px;}
.x6_c00376{left:321.801150px;}
.x1_c00376{left:800.165850px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls2_c00376{letter-spacing:-0.912000pt;}
.ls3_c00376{letter-spacing:-0.640000pt;}
.ls4_c00376{letter-spacing:-0.560000pt;}
.ls5_c00376{letter-spacing:-0.192000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.426667pt;}
.ws1_c00376{word-spacing:-7.728000pt;}
.ws2_c00376{word-spacing:-5.766400pt;}
.ws0_c00376{word-spacing:-0.042667pt;}
.ws3_c00376{word-spacing:0.000000pt;}
.ws6_c00376{word-spacing:0.192000pt;}
.ws4_c00376{word-spacing:6.272000pt;}
.ws5_c00376{word-spacing:50.400000pt;}
._0_c00376{margin-left:-2449.134400pt;}
._4_c00376{margin-left:-6.174933pt;}
._1_c00376{margin-left:-2.005333pt;}
._3_c00376{margin-left:-1.066667pt;}
._2_c00376{width:0.896000pt;}
._5_c00376{width:2.480533pt;}
._7_c00376{width:6.912000pt;}
._8_c00376{width:49.488000pt;}
._6_c00376{width:52.565333pt;}
.fs5_c00376{font-size:27.200000pt;}
.fs6_c00376{font-size:32.000000pt;}
.fs3_c00376{font-size:37.333333pt;}
.fs0_c00376{font-size:42.666667pt;}
.fs4_c00376{font-size:48.000000pt;}
.fs2_c00376{font-size:50.666667pt;}
.fs1_c00376{font-size:53.333333pt;}
.y0_c00376{bottom:0.000000pt;}
.y19_c00376{bottom:309.611467pt;}
.y18_c00376{bottom:321.611467pt;}
.y17_c00376{bottom:333.611333pt;}
.y16_c00376{bottom:357.170400pt;}
.y15_c00376{bottom:369.170400pt;}
.y14_c00376{bottom:381.170400pt;}
.y13_c00376{bottom:404.729467pt;}
.y12_c00376{bottom:416.729467pt;}
.y11_c00376{bottom:428.729467pt;}
.y10_c00376{bottom:448.509067pt;}
.yf_c00376{bottom:464.509067pt;}
.ye_c00376{bottom:488.068000pt;}
.yc_c00376{bottom:755.682267pt;}
.yb_c00376{bottom:767.682267pt;}
.ya_c00376{bottom:779.682267pt;}
.y9_c00376{bottom:803.241333pt;}
.y8_c00376{bottom:815.241333pt;}
.y7_c00376{bottom:838.800533pt;}
.y6_c00376{bottom:850.800533pt;}
.y5_c00376{bottom:862.800533pt;}
.y4_c00376{bottom:882.580000pt;}
.y3_c00376{bottom:898.580000pt;}
.y2_c00376{bottom:922.139067pt;}
.yd_c00376{bottom:924.710533pt;}
.y1_c00376{bottom:972.089733pt;}
.h8_c00376{height:22.400000pt;}
.h7_c00376{height:26.917333pt;}
.h5_c00376{height:30.293333pt;}
.h2_c00376{height:34.901333pt;}
.h3_c00376{height:35.541333pt;}
.h4_c00376{height:38.453333pt;}
.h6_c00376{height:38.880000pt;}
.h1_c00376{height:1009.333333pt;}
.h0_c00376{height:1009.338800pt;}
.w0_c00376{width:794.622400pt;}
.w1_c00376{width:794.666667pt;}
.x0_c00376{left:0.000000pt;}
.x4_c00376{left:114.297067pt;}
.x5_c00376{left:125.635733pt;}
.x2_c00376{left:167.166133pt;}
.x3_c00376{left:169.345200pt;}
.x6_c00376{left:286.045467pt;}
.x1_c00376{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00377;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00377{font-family:ff7_c00377;line-height:0.710000;font-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_c00377{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls1_c00377{letter-spacing:-0.720000px;}
.ls2_c00377{letter-spacing:-0.630000px;}
.ls3_c00377{letter-spacing:-0.378000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00377{word-spacing:-6.487200px;}
.ws3_c00377{word-spacing:0.000000px;}
.ws5_c00377{word-spacing:0.378000px;}
.ws4_c00377{word-spacing:7.056000px;}
.ws0_c00377{word-spacing:1585.435200px;}
._3_c00377{margin-left:-7.042800px;}
._0_c00377{margin-left:-2.112000px;}
._1_c00377{margin-left:-1.104000px;}
._2_c00377{width:2.016000px;}
._6_c00377{width:7.776000px;}
._4_c00377{width:55.674000px;}
._5_c00377{width:59.136000px;}
.fc0_c00377{color:rgb(35,31,32);}
.fs5_c00377{font-size:30.600000px;}
.fs6_c00377{font-size:36.000000px;}
.fs3_c00377{font-size:42.000000px;}
.fs0_c00377{font-size:48.000000px;}
.fs4_c00377{font-size:54.000000px;}
.fs2_c00377{font-size:57.000000px;}
.fs1_c00377{font-size:60.000000px;}
.y0_c00377{bottom:0.000000px;}
.y18_c00377{bottom:361.455600px;}
.y17_c00377{bottom:374.955450px;}
.y16_c00377{bottom:388.455450px;}
.y15_c00377{bottom:414.959400px;}
.y14_c00377{bottom:428.459400px;}
.y13_c00377{bottom:454.963350px;}
.y12_c00377{bottom:468.463350px;}
.y11_c00377{bottom:481.963350px;}
.y10_c00377{bottom:504.215400px;}
.yf_c00377{bottom:522.215400px;}
.ye_c00377{bottom:548.719350px;}
.y19_c00377{bottom:551.323050px;}
.yd_c00377{bottom:836.931750px;}
.yc_c00377{bottom:850.431750px;}
.yb_c00377{bottom:863.931750px;}
.ya_c00377{bottom:890.435700px;}
.y9_c00377{bottom:903.935700px;}
.y8_c00377{bottom:917.435700px;}
.y7_c00377{bottom:943.939650px;}
.y6_c00377{bottom:957.439650px;}
.y5_c00377{bottom:970.939650px;}
.y4_c00377{bottom:993.191700px;}
.y3_c00377{bottom:1011.191700px;}
.y2_c00377{bottom:1037.695650px;}
.y1_c00377{bottom:1093.600950px;}
.h7_c00377{height:25.200000px;}
.h6_c00377{height:30.282000px;}
.h4_c00377{height:34.080000px;}
.h2_c00377{height:39.264000px;}
.h3_c00377{height:43.260000px;}
.h5_c00377{height:43.740000px;}
.h1_c00377{height:1135.500000px;}
.h0_c00377{height:1135.506150px;}
.w0_c00377{width:893.950200px;}
.w1_c00377{width:894.000000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:77.603100px;}
.x4_c00377{left:424.181100px;}
.x2_c00377{left:599.532150px;}
.x3_c00377{left:612.288150px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls1_c00377{letter-spacing:-0.640000pt;}
.ls2_c00377{letter-spacing:-0.560000pt;}
.ls3_c00377{letter-spacing:-0.336000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws1_c00377{word-spacing:-7.728000pt;}
.ws2_c00377{word-spacing:-5.766400pt;}
.ws3_c00377{word-spacing:0.000000pt;}
.ws5_c00377{word-spacing:0.336000pt;}
.ws4_c00377{word-spacing:6.272000pt;}
.ws0_c00377{word-spacing:1409.275733pt;}
._3_c00377{margin-left:-6.260267pt;}
._0_c00377{margin-left:-1.877333pt;}
._1_c00377{margin-left:-0.981333pt;}
._2_c00377{width:1.792000pt;}
._6_c00377{width:6.912000pt;}
._4_c00377{width:49.488000pt;}
._5_c00377{width:52.565333pt;}
.fs5_c00377{font-size:27.200000pt;}
.fs6_c00377{font-size:32.000000pt;}
.fs3_c00377{font-size:37.333333pt;}
.fs0_c00377{font-size:42.666667pt;}
.fs4_c00377{font-size:48.000000pt;}
.fs2_c00377{font-size:50.666667pt;}
.fs1_c00377{font-size:53.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y18_c00377{bottom:321.293867pt;}
.y17_c00377{bottom:333.293733pt;}
.y16_c00377{bottom:345.293733pt;}
.y15_c00377{bottom:368.852800pt;}
.y14_c00377{bottom:380.852800pt;}
.y13_c00377{bottom:404.411867pt;}
.y12_c00377{bottom:416.411867pt;}
.y11_c00377{bottom:428.411867pt;}
.y10_c00377{bottom:448.191467pt;}
.yf_c00377{bottom:464.191467pt;}
.ye_c00377{bottom:487.750533pt;}
.y19_c00377{bottom:490.064933pt;}
.yd_c00377{bottom:743.939333pt;}
.yc_c00377{bottom:755.939333pt;}
.yb_c00377{bottom:767.939333pt;}
.ya_c00377{bottom:791.498400pt;}
.y9_c00377{bottom:803.498400pt;}
.y8_c00377{bottom:815.498400pt;}
.y7_c00377{bottom:839.057467pt;}
.y6_c00377{bottom:851.057467pt;}
.y5_c00377{bottom:863.057467pt;}
.y4_c00377{bottom:882.837067pt;}
.y3_c00377{bottom:898.837067pt;}
.y2_c00377{bottom:922.396133pt;}
.y1_c00377{bottom:972.089733pt;}
.h7_c00377{height:22.400000pt;}
.h6_c00377{height:26.917333pt;}
.h4_c00377{height:30.293333pt;}
.h2_c00377{height:34.901333pt;}
.h3_c00377{height:38.453333pt;}
.h5_c00377{height:38.880000pt;}
.h1_c00377{height:1009.333333pt;}
.h0_c00377{height:1009.338800pt;}
.w0_c00377{width:794.622400pt;}
.w1_c00377{width:794.666667pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:68.980533pt;}
.x4_c00377{left:377.049867pt;}
.x2_c00377{left:532.917467pt;}
.x3_c00377{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00378{font-family:ff5_c00378;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00378;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00378{font-family:ff6_c00378;line-height:0.908000;font-style:normal;font-weight: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_c00378;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00378{font-family:ff7_c00378;line-height:1.067000;font-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_c00378{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls4_c00378{letter-spacing:-1.188000px;}
.ls2_c00378{letter-spacing:-0.720000px;}
.ls3_c00378{letter-spacing:-0.630000px;}
.ls1_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00378{word-spacing:-11.178000px;}
.ws1_c00378{word-spacing:-8.694000px;}
.ws0_c00378{word-spacing:-0.048000px;}
.ws3_c00378{word-spacing:0.000000px;}
.ws4_c00378{word-spacing:7.056000px;}
._0_c00378{margin-left:-2755.276200px;}
._4_c00378{margin-left:-6.946800px;}
._1_c00378{margin-left:-2.256000px;}
._3_c00378{margin-left:-1.200000px;}
._2_c00378{width:1.008000px;}
._8_c00378{width:2.160000px;}
._7_c00378{width:7.776000px;}
._5_c00378{width:55.674000px;}
._6_c00378{width:59.136000px;}
.fc0_c00378{color:rgb(35,31,32);}
.fs3_c00378{font-size:42.000000px;}
.fs0_c00378{font-size:48.000000px;}
.fs4_c00378{font-size:54.000000px;}
.fs2_c00378{font-size:57.000000px;}
.fs1_c00378{font-size:60.000000px;}
.y0_c00378{bottom:0.000000px;}
.y1a_c00378{bottom:330.185250px;}
.y19_c00378{bottom:343.685250px;}
.y18_c00378{bottom:357.185250px;}
.y17_c00378{bottom:383.689200px;}
.y16_c00378{bottom:397.189200px;}
.y15_c00378{bottom:410.689200px;}
.y14_c00378{bottom:437.193150px;}
.y13_c00378{bottom:450.693150px;}
.y12_c00378{bottom:464.193150px;}
.y11_c00378{bottom:486.445050px;}
.y10_c00378{bottom:504.445050px;}
.yf_c00378{bottom:522.445050px;}
.ye_c00378{bottom:548.949000px;}
.yd_c00378{bottom:836.515200px;}
.yc_c00378{bottom:850.015200px;}
.yb_c00378{bottom:863.515200px;}
.ya_c00378{bottom:890.019150px;}
.y9_c00378{bottom:903.519150px;}
.y8_c00378{bottom:917.019150px;}
.y7_c00378{bottom:943.523100px;}
.y6_c00378{bottom:957.023100px;}
.y5_c00378{bottom:970.523100px;}
.y4_c00378{bottom:992.775000px;}
.y3_c00378{bottom:1010.775000px;}
.y2_c00378{bottom:1037.278950px;}
.y1_c00378{bottom:1093.600950px;}
.h7_c00378{height:30.282000px;}
.h5_c00378{height:34.080000px;}
.h2_c00378{height:39.264000px;}
.h3_c00378{height:39.984000px;}
.h4_c00378{height:43.260000px;}
.h6_c00378{height:43.740000px;}
.h1_c00378{height:1135.500000px;}
.h0_c00378{height:1135.506150px;}
.w0_c00378{width:893.950200px;}
.w1_c00378{width:894.000000px;}
.x0_c00378{left:0.000000px;}
.x4_c00378{left:128.626800px;}
.x5_c00378{left:141.382650px;}
.x6_c00378{left:145.752600px;}
.x2_c00378{left:188.061900px;}
.x3_c00378{left:190.513350px;}
.x1_c00378{left:800.165850px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls4_c00378{letter-spacing:-1.056000pt;}
.ls2_c00378{letter-spacing:-0.640000pt;}
.ls3_c00378{letter-spacing:-0.560000pt;}
.ls1_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.426667pt;}
.ws2_c00378{word-spacing:-9.936000pt;}
.ws1_c00378{word-spacing:-7.728000pt;}
.ws0_c00378{word-spacing:-0.042667pt;}
.ws3_c00378{word-spacing:0.000000pt;}
.ws4_c00378{word-spacing:6.272000pt;}
._0_c00378{margin-left:-2449.134400pt;}
._4_c00378{margin-left:-6.174933pt;}
._1_c00378{margin-left:-2.005333pt;}
._3_c00378{margin-left:-1.066667pt;}
._2_c00378{width:0.896000pt;}
._8_c00378{width:1.920000pt;}
._7_c00378{width:6.912000pt;}
._5_c00378{width:49.488000pt;}
._6_c00378{width:52.565333pt;}
.fs3_c00378{font-size:37.333333pt;}
.fs0_c00378{font-size:42.666667pt;}
.fs4_c00378{font-size:48.000000pt;}
.fs2_c00378{font-size:50.666667pt;}
.fs1_c00378{font-size:53.333333pt;}
.y0_c00378{bottom:0.000000pt;}
.y1a_c00378{bottom:293.498000pt;}
.y19_c00378{bottom:305.498000pt;}
.y18_c00378{bottom:317.498000pt;}
.y17_c00378{bottom:341.057067pt;}
.y16_c00378{bottom:353.057067pt;}
.y15_c00378{bottom:365.057067pt;}
.y14_c00378{bottom:388.616133pt;}
.y13_c00378{bottom:400.616133pt;}
.y12_c00378{bottom:412.616133pt;}
.y11_c00378{bottom:432.395600pt;}
.y10_c00378{bottom:448.395600pt;}
.yf_c00378{bottom:464.395600pt;}
.ye_c00378{bottom:487.954667pt;}
.yd_c00378{bottom:743.569067pt;}
.yc_c00378{bottom:755.569067pt;}
.yb_c00378{bottom:767.569067pt;}
.ya_c00378{bottom:791.128133pt;}
.y9_c00378{bottom:803.128133pt;}
.y8_c00378{bottom:815.128133pt;}
.y7_c00378{bottom:838.687200pt;}
.y6_c00378{bottom:850.687200pt;}
.y5_c00378{bottom:862.687200pt;}
.y4_c00378{bottom:882.466667pt;}
.y3_c00378{bottom:898.466667pt;}
.y2_c00378{bottom:922.025733pt;}
.y1_c00378{bottom:972.089733pt;}
.h7_c00378{height:26.917333pt;}
.h5_c00378{height:30.293333pt;}
.h2_c00378{height:34.901333pt;}
.h3_c00378{height:35.541333pt;}
.h4_c00378{height:38.453333pt;}
.h6_c00378{height:38.880000pt;}
.h1_c00378{height:1009.333333pt;}
.h0_c00378{height:1009.338800pt;}
.w0_c00378{width:794.622400pt;}
.w1_c00378{width:794.666667pt;}
.x0_c00378{left:0.000000pt;}
.x4_c00378{left:114.334933pt;}
.x5_c00378{left:125.673467pt;}
.x6_c00378{left:129.557867pt;}
.x2_c00378{left:167.166133pt;}
.x3_c00378{left:169.345200pt;}
.x1_c00378{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00379;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00379{font-family:ff7_c00379;line-height:0.710000;font-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_c00379{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls1_c00379{letter-spacing:-1.674000px;}
.ls2_c00379{letter-spacing:-0.720000px;}
.ls3_c00379{letter-spacing:-0.630000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00379{word-spacing:-8.694000px;}
.ws2_c00379{word-spacing:-6.487200px;}
.ws3_c00379{word-spacing:0.000000px;}
.ws4_c00379{word-spacing:7.056000px;}
.ws5_c00379{word-spacing:57.348000px;}
.ws0_c00379{word-spacing:1585.435200px;}
._3_c00379{margin-left:-7.042800px;}
._0_c00379{margin-left:-2.112000px;}
._1_c00379{margin-left:-1.104000px;}
._4_c00379{width:1.007400px;}
._2_c00379{width:2.016000px;}
._6_c00379{width:7.776000px;}
._7_c00379{width:55.674000px;}
._5_c00379{width:59.136000px;}
.fc0_c00379{color:rgb(35,31,32);}
.fs5_c00379{font-size:30.600000px;}
.fs6_c00379{font-size:36.000000px;}
.fs3_c00379{font-size:42.000000px;}
.fs0_c00379{font-size:48.000000px;}
.fs4_c00379{font-size:54.000000px;}
.fs2_c00379{font-size:57.000000px;}
.fs1_c00379{font-size:60.000000px;}
.y0_c00379{bottom:0.000000px;}
.y18_c00379{bottom:361.668150px;}
.y17_c00379{bottom:375.168000px;}
.y16_c00379{bottom:388.668000px;}
.y15_c00379{bottom:415.172100px;}
.y14_c00379{bottom:428.672100px;}
.y13_c00379{bottom:455.175900px;}
.y12_c00379{bottom:468.675900px;}
.y11_c00379{bottom:482.175900px;}
.y10_c00379{bottom:504.427950px;}
.yf_c00379{bottom:522.427950px;}
.ye_c00379{bottom:548.931900px;}
.y19_c00379{bottom:551.535600px;}
.yd_c00379{bottom:837.144300px;}
.yc_c00379{bottom:850.644300px;}
.yb_c00379{bottom:864.144300px;}
.ya_c00379{bottom:890.648250px;}
.y9_c00379{bottom:904.148250px;}
.y8_c00379{bottom:917.648250px;}
.y7_c00379{bottom:944.152200px;}
.y6_c00379{bottom:957.652200px;}
.y5_c00379{bottom:971.152200px;}
.y4_c00379{bottom:993.404250px;}
.y3_c00379{bottom:1011.404250px;}
.y2_c00379{bottom:1037.908200px;}
.y1_c00379{bottom:1093.600950px;}
.h7_c00379{height:25.200000px;}
.h6_c00379{height:30.282000px;}
.h4_c00379{height:34.080000px;}
.h2_c00379{height:39.264000px;}
.h3_c00379{height:43.260000px;}
.h5_c00379{height:43.740000px;}
.h1_c00379{height:1135.500000px;}
.h0_c00379{height:1135.506150px;}
.w0_c00379{width:893.950200px;}
.w1_c00379{width:894.000000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:77.603100px;}
.x4_c00379{left:424.181100px;}
.x2_c00379{left:599.532150px;}
.x3_c00379{left:612.288150px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls1_c00379{letter-spacing:-1.488000pt;}
.ls2_c00379{letter-spacing:-0.640000pt;}
.ls3_c00379{letter-spacing:-0.560000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws1_c00379{word-spacing:-7.728000pt;}
.ws2_c00379{word-spacing:-5.766400pt;}
.ws3_c00379{word-spacing:0.000000pt;}
.ws4_c00379{word-spacing:6.272000pt;}
.ws5_c00379{word-spacing:50.976000pt;}
.ws0_c00379{word-spacing:1409.275733pt;}
._3_c00379{margin-left:-6.260267pt;}
._0_c00379{margin-left:-1.877333pt;}
._1_c00379{margin-left:-0.981333pt;}
._4_c00379{width:0.895467pt;}
._2_c00379{width:1.792000pt;}
._6_c00379{width:6.912000pt;}
._7_c00379{width:49.488000pt;}
._5_c00379{width:52.565333pt;}
.fs5_c00379{font-size:27.200000pt;}
.fs6_c00379{font-size:32.000000pt;}
.fs3_c00379{font-size:37.333333pt;}
.fs0_c00379{font-size:42.666667pt;}
.fs4_c00379{font-size:48.000000pt;}
.fs2_c00379{font-size:50.666667pt;}
.fs1_c00379{font-size:53.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y18_c00379{bottom:321.482800pt;}
.y17_c00379{bottom:333.482667pt;}
.y16_c00379{bottom:345.482667pt;}
.y15_c00379{bottom:369.041867pt;}
.y14_c00379{bottom:381.041867pt;}
.y13_c00379{bottom:404.600800pt;}
.y12_c00379{bottom:416.600800pt;}
.y11_c00379{bottom:428.600800pt;}
.y10_c00379{bottom:448.380400pt;}
.yf_c00379{bottom:464.380400pt;}
.ye_c00379{bottom:487.939467pt;}
.y19_c00379{bottom:490.253867pt;}
.yd_c00379{bottom:744.128267pt;}
.yc_c00379{bottom:756.128267pt;}
.yb_c00379{bottom:768.128267pt;}
.ya_c00379{bottom:791.687333pt;}
.y9_c00379{bottom:803.687333pt;}
.y8_c00379{bottom:815.687333pt;}
.y7_c00379{bottom:839.246400pt;}
.y6_c00379{bottom:851.246400pt;}
.y5_c00379{bottom:863.246400pt;}
.y4_c00379{bottom:883.026000pt;}
.y3_c00379{bottom:899.026000pt;}
.y2_c00379{bottom:922.585067pt;}
.y1_c00379{bottom:972.089733pt;}
.h7_c00379{height:22.400000pt;}
.h6_c00379{height:26.917333pt;}
.h4_c00379{height:30.293333pt;}
.h2_c00379{height:34.901333pt;}
.h3_c00379{height:38.453333pt;}
.h5_c00379{height:38.880000pt;}
.h1_c00379{height:1009.333333pt;}
.h0_c00379{height:1009.338800pt;}
.w0_c00379{width:794.622400pt;}
.w1_c00379{width:794.666667pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:68.980533pt;}
.x4_c00379{left:377.049867pt;}
.x2_c00379{left:532.917467pt;}
.x3_c00379{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:0.908000;font-style:normal;font-weight: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_c00380;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00380{font-family:ff7_c00380;line-height:1.067000;font-style:normal;font-weight: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_c00380;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00380{font-family:ff8_c00380;line-height:0.710000;font-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_c00380{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls3_c00380{letter-spacing:-0.720000px;}
.ls2_c00380{letter-spacing:-0.702000px;}
.ls4_c00380{letter-spacing:-0.630000px;}
.ls1_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.480000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00380{word-spacing:-11.664000px;}
.ws1_c00380{word-spacing:-8.694000px;}
.ws3_c00380{word-spacing:-6.487200px;}
.ws0_c00380{word-spacing:-0.048000px;}
.ws4_c00380{word-spacing:0.000000px;}
.ws5_c00380{word-spacing:7.056000px;}
._0_c00380{margin-left:-2755.276200px;}
._4_c00380{margin-left:-6.946800px;}
._1_c00380{margin-left:-2.256000px;}
._3_c00380{margin-left:-1.200000px;}
._2_c00380{width:1.008000px;}
._7_c00380{width:7.776000px;}
._5_c00380{width:55.674000px;}
._6_c00380{width:59.136000px;}
.fc0_c00380{color:rgb(35,31,32);}
.fs5_c00380{font-size:30.600000px;}
.fs6_c00380{font-size:36.000000px;}
.fs3_c00380{font-size:42.000000px;}
.fs0_c00380{font-size:48.000000px;}
.fs4_c00380{font-size:54.000000px;}
.fs2_c00380{font-size:57.000000px;}
.fs1_c00380{font-size:60.000000px;}
.y0_c00380{bottom:0.000000px;}
.y1a_c00380{bottom:348.397800px;}
.y19_c00380{bottom:361.897800px;}
.y18_c00380{bottom:375.397800px;}
.y17_c00380{bottom:401.901750px;}
.y16_c00380{bottom:415.401750px;}
.y15_c00380{bottom:428.901750px;}
.y14_c00380{bottom:455.405700px;}
.y13_c00380{bottom:468.905700px;}
.y12_c00380{bottom:482.405700px;}
.y11_c00380{bottom:504.657600px;}
.y10_c00380{bottom:522.657600px;}
.yf_c00380{bottom:549.161550px;}
.yd_c00380{bottom:832.227750px;}
.yc_c00380{bottom:845.727750px;}
.yb_c00380{bottom:859.227750px;}
.ya_c00380{bottom:885.731700px;}
.y9_c00380{bottom:899.231700px;}
.y8_c00380{bottom:925.735650px;}
.y7_c00380{bottom:939.235650px;}
.y6_c00380{bottom:952.735650px;}
.y5_c00380{bottom:974.987550px;}
.y4_c00380{bottom:992.987550px;}
.y3_c00380{bottom:1010.987550px;}
.y2_c00380{bottom:1037.491500px;}
.ye_c00380{bottom:1040.299350px;}
.y1_c00380{bottom:1093.600950px;}
.h8_c00380{height:25.200000px;}
.h7_c00380{height:30.282000px;}
.h5_c00380{height:34.080000px;}
.h2_c00380{height:39.264000px;}
.h3_c00380{height:39.984000px;}
.h4_c00380{height:43.260000px;}
.h6_c00380{height:43.740000px;}
.h1_c00380{height:1135.500000px;}
.h0_c00380{height:1135.506150px;}
.w0_c00380{width:893.950200px;}
.w1_c00380{width:894.000000px;}
.x0_c00380{left:0.000000px;}
.x4_c00380{left:128.626800px;}
.x5_c00380{left:141.382650px;}
.x6_c00380{left:145.634700px;}
.x2_c00380{left:188.061900px;}
.x3_c00380{left:190.513350px;}
.x7_c00380{left:321.801150px;}
.x1_c00380{left:800.165850px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls3_c00380{letter-spacing:-0.640000pt;}
.ls2_c00380{letter-spacing:-0.624000pt;}
.ls4_c00380{letter-spacing:-0.560000pt;}
.ls1_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.426667pt;}
.ws2_c00380{word-spacing:-10.368000pt;}
.ws1_c00380{word-spacing:-7.728000pt;}
.ws3_c00380{word-spacing:-5.766400pt;}
.ws0_c00380{word-spacing:-0.042667pt;}
.ws4_c00380{word-spacing:0.000000pt;}
.ws5_c00380{word-spacing:6.272000pt;}
._0_c00380{margin-left:-2449.134400pt;}
._4_c00380{margin-left:-6.174933pt;}
._1_c00380{margin-left:-2.005333pt;}
._3_c00380{margin-left:-1.066667pt;}
._2_c00380{width:0.896000pt;}
._7_c00380{width:6.912000pt;}
._5_c00380{width:49.488000pt;}
._6_c00380{width:52.565333pt;}
.fs5_c00380{font-size:27.200000pt;}
.fs6_c00380{font-size:32.000000pt;}
.fs3_c00380{font-size:37.333333pt;}
.fs0_c00380{font-size:42.666667pt;}
.fs4_c00380{font-size:48.000000pt;}
.fs2_c00380{font-size:50.666667pt;}
.fs1_c00380{font-size:53.333333pt;}
.y0_c00380{bottom:0.000000pt;}
.y1a_c00380{bottom:309.686933pt;}
.y19_c00380{bottom:321.686933pt;}
.y18_c00380{bottom:333.686933pt;}
.y17_c00380{bottom:357.246000pt;}
.y16_c00380{bottom:369.246000pt;}
.y15_c00380{bottom:381.246000pt;}
.y14_c00380{bottom:404.805067pt;}
.y13_c00380{bottom:416.805067pt;}
.y12_c00380{bottom:428.805067pt;}
.y11_c00380{bottom:448.584533pt;}
.y10_c00380{bottom:464.584533pt;}
.yf_c00380{bottom:488.143600pt;}
.yd_c00380{bottom:739.758000pt;}
.yc_c00380{bottom:751.758000pt;}
.yb_c00380{bottom:763.758000pt;}
.ya_c00380{bottom:787.317067pt;}
.y9_c00380{bottom:799.317067pt;}
.y8_c00380{bottom:822.876133pt;}
.y7_c00380{bottom:834.876133pt;}
.y6_c00380{bottom:846.876133pt;}
.y5_c00380{bottom:866.655600pt;}
.y4_c00380{bottom:882.655600pt;}
.y3_c00380{bottom:898.655600pt;}
.y2_c00380{bottom:922.214667pt;}
.ye_c00380{bottom:924.710533pt;}
.y1_c00380{bottom:972.089733pt;}
.h8_c00380{height:22.400000pt;}
.h7_c00380{height:26.917333pt;}
.h5_c00380{height:30.293333pt;}
.h2_c00380{height:34.901333pt;}
.h3_c00380{height:35.541333pt;}
.h4_c00380{height:38.453333pt;}
.h6_c00380{height:38.880000pt;}
.h1_c00380{height:1009.333333pt;}
.h0_c00380{height:1009.338800pt;}
.w0_c00380{width:794.622400pt;}
.w1_c00380{width:794.666667pt;}
.x0_c00380{left:0.000000pt;}
.x4_c00380{left:114.334933pt;}
.x5_c00380{left:125.673467pt;}
.x6_c00380{left:129.453067pt;}
.x2_c00380{left:167.166133pt;}
.x3_c00380{left:169.345200pt;}
.x7_c00380{left:286.045467pt;}
.x1_c00380{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:0.908000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls1_c00381{letter-spacing:-0.720000px;}
.ls2_c00381{letter-spacing:-0.630000px;}
.ls3_c00381{letter-spacing:-0.540000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00381{word-spacing:-8.694000px;}
.ws2_c00381{word-spacing:0.000000px;}
.ws4_c00381{word-spacing:0.540000px;}
.ws3_c00381{word-spacing:7.056000px;}
.ws0_c00381{word-spacing:1585.435200px;}
._3_c00381{margin-left:-7.042800px;}
._0_c00381{margin-left:-2.112000px;}
._1_c00381{margin-left:-1.104000px;}
._2_c00381{width:2.016000px;}
._6_c00381{width:7.776000px;}
._4_c00381{width:55.674000px;}
._5_c00381{width:59.136000px;}
.fc0_c00381{color:rgb(35,31,32);}
.fs3_c00381{font-size:42.000000px;}
.fs0_c00381{font-size:48.000000px;}
.fs4_c00381{font-size:54.000000px;}
.fs2_c00381{font-size:57.000000px;}
.fs1_c00381{font-size:60.000000px;}
.y0_c00381{bottom:0.000000px;}
.y19_c00381{bottom:347.955600px;}
.y18_c00381{bottom:361.455600px;}
.y17_c00381{bottom:374.955450px;}
.y16_c00381{bottom:401.459400px;}
.y15_c00381{bottom:414.959400px;}
.y14_c00381{bottom:428.459400px;}
.y13_c00381{bottom:454.963350px;}
.y12_c00381{bottom:468.463350px;}
.y11_c00381{bottom:481.963350px;}
.y10_c00381{bottom:504.215400px;}
.yf_c00381{bottom:522.215400px;}
.ye_c00381{bottom:548.719350px;}
.yd_c00381{bottom:836.931750px;}
.yc_c00381{bottom:850.431750px;}
.yb_c00381{bottom:863.931750px;}
.ya_c00381{bottom:890.435700px;}
.y9_c00381{bottom:903.935700px;}
.y8_c00381{bottom:917.435700px;}
.y7_c00381{bottom:943.939650px;}
.y6_c00381{bottom:957.439650px;}
.y5_c00381{bottom:970.939650px;}
.y4_c00381{bottom:993.191700px;}
.y3_c00381{bottom:1011.191700px;}
.y2_c00381{bottom:1037.695650px;}
.y1_c00381{bottom:1093.600950px;}
.h6_c00381{height:30.282000px;}
.h4_c00381{height:34.080000px;}
.h2_c00381{height:39.264000px;}
.h3_c00381{height:43.260000px;}
.h5_c00381{height:43.740000px;}
.h1_c00381{height:1135.500000px;}
.h0_c00381{height:1135.506150px;}
.w0_c00381{width:893.950200px;}
.w1_c00381{width:894.000000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:77.603100px;}
.x2_c00381{left:599.532150px;}
.x3_c00381{left:612.288150px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls1_c00381{letter-spacing:-0.640000pt;}
.ls2_c00381{letter-spacing:-0.560000pt;}
.ls3_c00381{letter-spacing:-0.480000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws1_c00381{word-spacing:-7.728000pt;}
.ws2_c00381{word-spacing:0.000000pt;}
.ws4_c00381{word-spacing:0.480000pt;}
.ws3_c00381{word-spacing:6.272000pt;}
.ws0_c00381{word-spacing:1409.275733pt;}
._3_c00381{margin-left:-6.260267pt;}
._0_c00381{margin-left:-1.877333pt;}
._1_c00381{margin-left:-0.981333pt;}
._2_c00381{width:1.792000pt;}
._6_c00381{width:6.912000pt;}
._4_c00381{width:49.488000pt;}
._5_c00381{width:52.565333pt;}
.fs3_c00381{font-size:37.333333pt;}
.fs0_c00381{font-size:42.666667pt;}
.fs4_c00381{font-size:48.000000pt;}
.fs2_c00381{font-size:50.666667pt;}
.fs1_c00381{font-size:53.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y19_c00381{bottom:309.293867pt;}
.y18_c00381{bottom:321.293867pt;}
.y17_c00381{bottom:333.293733pt;}
.y16_c00381{bottom:356.852800pt;}
.y15_c00381{bottom:368.852800pt;}
.y14_c00381{bottom:380.852800pt;}
.y13_c00381{bottom:404.411867pt;}
.y12_c00381{bottom:416.411867pt;}
.y11_c00381{bottom:428.411867pt;}
.y10_c00381{bottom:448.191467pt;}
.yf_c00381{bottom:464.191467pt;}
.ye_c00381{bottom:487.750533pt;}
.yd_c00381{bottom:743.939333pt;}
.yc_c00381{bottom:755.939333pt;}
.yb_c00381{bottom:767.939333pt;}
.ya_c00381{bottom:791.498400pt;}
.y9_c00381{bottom:803.498400pt;}
.y8_c00381{bottom:815.498400pt;}
.y7_c00381{bottom:839.057467pt;}
.y6_c00381{bottom:851.057467pt;}
.y5_c00381{bottom:863.057467pt;}
.y4_c00381{bottom:882.837067pt;}
.y3_c00381{bottom:898.837067pt;}
.y2_c00381{bottom:922.396133pt;}
.y1_c00381{bottom:972.089733pt;}
.h6_c00381{height:26.917333pt;}
.h4_c00381{height:30.293333pt;}
.h2_c00381{height:34.901333pt;}
.h3_c00381{height:38.453333pt;}
.h5_c00381{height:38.880000pt;}
.h1_c00381{height:1009.333333pt;}
.h0_c00381{height:1009.338800pt;}
.w0_c00381{width:794.622400pt;}
.w1_c00381{width:794.666667pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:68.980533pt;}
.x2_c00381{left:532.917467pt;}
.x3_c00381{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:0.908000;font-style:normal;font-weight: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_c00382;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00382{font-family:ff7_c00382;line-height:1.067000;font-style:normal;font-weight: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_c00382;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00382{font-family:ff8_c00382;line-height:0.710000;font-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_c00382{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls2_c00382{letter-spacing:-2.700000px;}
.ls4_c00382{letter-spacing:-1.242000px;}
.ls3_c00382{letter-spacing:-0.720000px;}
.ls5_c00382{letter-spacing:-0.630000px;}
.ls1_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00382{word-spacing:-9.666000px;}
.ws1_c00382{word-spacing:-8.694000px;}
.ws3_c00382{word-spacing:-6.487200px;}
.ws0_c00382{word-spacing:-0.048000px;}
.ws4_c00382{word-spacing:0.000000px;}
.ws6_c00382{word-spacing:1.242000px;}
.ws5_c00382{word-spacing:7.056000px;}
._0_c00382{margin-left:-2755.276200px;}
._4_c00382{margin-left:-6.946800px;}
._1_c00382{margin-left:-2.256000px;}
._3_c00382{margin-left:-1.200000px;}
._2_c00382{width:1.008000px;}
._6_c00382{width:3.312000px;}
._8_c00382{width:7.776000px;}
._5_c00382{width:55.674000px;}
._7_c00382{width:59.136000px;}
.fc0_c00382{color:rgb(35,31,32);}
.fs5_c00382{font-size:30.600000px;}
.fs6_c00382{font-size:36.000000px;}
.fs3_c00382{font-size:42.000000px;}
.fs0_c00382{font-size:48.000000px;}
.fs4_c00382{font-size:54.000000px;}
.fs2_c00382{font-size:57.000000px;}
.fs1_c00382{font-size:60.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1a_c00382{bottom:348.185250px;}
.y19_c00382{bottom:361.685250px;}
.y18_c00382{bottom:375.185250px;}
.y17_c00382{bottom:401.689200px;}
.y16_c00382{bottom:415.189200px;}
.y15_c00382{bottom:428.689200px;}
.y14_c00382{bottom:455.193150px;}
.y13_c00382{bottom:468.693150px;}
.y12_c00382{bottom:482.193150px;}
.y11_c00382{bottom:504.445050px;}
.y10_c00382{bottom:522.445050px;}
.yf_c00382{bottom:548.949000px;}
.ye_c00382{bottom:806.654400px;}
.yd_c00382{bottom:832.015200px;}
.yc_c00382{bottom:845.515200px;}
.yb_c00382{bottom:872.019150px;}
.ya_c00382{bottom:885.519150px;}
.y9_c00382{bottom:899.019150px;}
.y8_c00382{bottom:925.523100px;}
.y7_c00382{bottom:939.023100px;}
.y6_c00382{bottom:952.523100px;}
.y5_c00382{bottom:974.775000px;}
.y4_c00382{bottom:992.775000px;}
.y3_c00382{bottom:1010.775000px;}
.y2_c00382{bottom:1037.278950px;}
.y1_c00382{bottom:1093.600950px;}
.h8_c00382{height:25.200000px;}
.h7_c00382{height:30.282000px;}
.h5_c00382{height:34.080000px;}
.h2_c00382{height:39.264000px;}
.h3_c00382{height:39.984000px;}
.h4_c00382{height:43.260000px;}
.h6_c00382{height:43.740000px;}
.h1_c00382{height:1135.500000px;}
.h0_c00382{height:1135.506150px;}
.w0_c00382{width:893.950200px;}
.w1_c00382{width:894.000000px;}
.x0_c00382{left:0.000000px;}
.x4_c00382{left:128.626800px;}
.x5_c00382{left:141.382650px;}
.x6_c00382{left:145.634700px;}
.x2_c00382{left:188.061900px;}
.x3_c00382{left:190.513350px;}
.x7_c00382{left:321.801150px;}
.x1_c00382{left:800.165850px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls2_c00382{letter-spacing:-2.400000pt;}
.ls4_c00382{letter-spacing:-1.104000pt;}
.ls3_c00382{letter-spacing:-0.640000pt;}
.ls5_c00382{letter-spacing:-0.560000pt;}
.ls1_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.426667pt;}
.ws2_c00382{word-spacing:-8.592000pt;}
.ws1_c00382{word-spacing:-7.728000pt;}
.ws3_c00382{word-spacing:-5.766400pt;}
.ws0_c00382{word-spacing:-0.042667pt;}
.ws4_c00382{word-spacing:0.000000pt;}
.ws6_c00382{word-spacing:1.104000pt;}
.ws5_c00382{word-spacing:6.272000pt;}
._0_c00382{margin-left:-2449.134400pt;}
._4_c00382{margin-left:-6.174933pt;}
._1_c00382{margin-left:-2.005333pt;}
._3_c00382{margin-left:-1.066667pt;}
._2_c00382{width:0.896000pt;}
._6_c00382{width:2.944000pt;}
._8_c00382{width:6.912000pt;}
._5_c00382{width:49.488000pt;}
._7_c00382{width:52.565333pt;}
.fs5_c00382{font-size:27.200000pt;}
.fs6_c00382{font-size:32.000000pt;}
.fs3_c00382{font-size:37.333333pt;}
.fs0_c00382{font-size:42.666667pt;}
.fs4_c00382{font-size:48.000000pt;}
.fs2_c00382{font-size:50.666667pt;}
.fs1_c00382{font-size:53.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y1a_c00382{bottom:309.498000pt;}
.y19_c00382{bottom:321.498000pt;}
.y18_c00382{bottom:333.498000pt;}
.y17_c00382{bottom:357.057067pt;}
.y16_c00382{bottom:369.057067pt;}
.y15_c00382{bottom:381.057067pt;}
.y14_c00382{bottom:404.616133pt;}
.y13_c00382{bottom:416.616133pt;}
.y12_c00382{bottom:428.616133pt;}
.y11_c00382{bottom:448.395600pt;}
.y10_c00382{bottom:464.395600pt;}
.yf_c00382{bottom:487.954667pt;}
.ye_c00382{bottom:717.026133pt;}
.yd_c00382{bottom:739.569067pt;}
.yc_c00382{bottom:751.569067pt;}
.yb_c00382{bottom:775.128133pt;}
.ya_c00382{bottom:787.128133pt;}
.y9_c00382{bottom:799.128133pt;}
.y8_c00382{bottom:822.687200pt;}
.y7_c00382{bottom:834.687200pt;}
.y6_c00382{bottom:846.687200pt;}
.y5_c00382{bottom:866.466667pt;}
.y4_c00382{bottom:882.466667pt;}
.y3_c00382{bottom:898.466667pt;}
.y2_c00382{bottom:922.025733pt;}
.y1_c00382{bottom:972.089733pt;}
.h8_c00382{height:22.400000pt;}
.h7_c00382{height:26.917333pt;}
.h5_c00382{height:30.293333pt;}
.h2_c00382{height:34.901333pt;}
.h3_c00382{height:35.541333pt;}
.h4_c00382{height:38.453333pt;}
.h6_c00382{height:38.880000pt;}
.h1_c00382{height:1009.333333pt;}
.h0_c00382{height:1009.338800pt;}
.w0_c00382{width:794.622400pt;}
.w1_c00382{width:794.666667pt;}
.x0_c00382{left:0.000000pt;}
.x4_c00382{left:114.334933pt;}
.x5_c00382{left:125.673467pt;}
.x6_c00382{left:129.453067pt;}
.x2_c00382{left:167.166133pt;}
.x3_c00382{left:169.345200pt;}
.x7_c00382{left:286.045467pt;}
.x1_c00382{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00383;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00383{font-family:ff6_c00383;line-height:1.067000;font-style:normal;font-weight: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_c00383;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00383{font-family:ff7_c00383;line-height:0.710000;font-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_c00383{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls1_c00383{letter-spacing:-0.720000px;}
.ls2_c00383{letter-spacing:-0.630000px;}
.ls3_c00383{letter-spacing:-0.216000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:-8.694000px;}
.ws2_c00383{word-spacing:-6.487200px;}
.ws3_c00383{word-spacing:0.000000px;}
.ws5_c00383{word-spacing:0.216000px;}
.ws4_c00383{word-spacing:7.056000px;}
.ws0_c00383{word-spacing:1585.435200px;}
._3_c00383{margin-left:-7.042800px;}
._7_c00383{margin-left:-3.294000px;}
._0_c00383{margin-left:-2.112000px;}
._1_c00383{margin-left:-1.104000px;}
._2_c00383{width:2.016000px;}
._6_c00383{width:7.776000px;}
._4_c00383{width:55.674000px;}
._5_c00383{width:59.136000px;}
.fc0_c00383{color:rgb(35,31,32);}
.fs5_c00383{font-size:30.600000px;}
.fs6_c00383{font-size:36.000000px;}
.fs3_c00383{font-size:42.000000px;}
.fs0_c00383{font-size:48.000000px;}
.fs4_c00383{font-size:54.000000px;}
.fs2_c00383{font-size:57.000000px;}
.fs1_c00383{font-size:60.000000px;}
.y0_c00383{bottom:0.000000px;}
.y19_c00383{bottom:343.455600px;}
.y18_c00383{bottom:356.955600px;}
.y17_c00383{bottom:370.455450px;}
.y16_c00383{bottom:396.959400px;}
.y15_c00383{bottom:410.459400px;}
.y14_c00383{bottom:436.963350px;}
.y13_c00383{bottom:450.463350px;}
.y12_c00383{bottom:463.963350px;}
.y11_c00383{bottom:486.215400px;}
.y10_c00383{bottom:504.215400px;}
.yf_c00383{bottom:522.215400px;}
.ye_c00383{bottom:548.719350px;}
.y1a_c00383{bottom:551.323050px;}
.yd_c00383{bottom:836.931750px;}
.yc_c00383{bottom:850.431750px;}
.yb_c00383{bottom:863.931750px;}
.ya_c00383{bottom:890.435700px;}
.y9_c00383{bottom:903.935700px;}
.y8_c00383{bottom:917.435700px;}
.y7_c00383{bottom:943.939650px;}
.y6_c00383{bottom:957.439650px;}
.y5_c00383{bottom:970.939650px;}
.y4_c00383{bottom:993.191700px;}
.y3_c00383{bottom:1011.191700px;}
.y2_c00383{bottom:1037.695650px;}
.y1_c00383{bottom:1093.600950px;}
.h7_c00383{height:25.200000px;}
.h6_c00383{height:30.282000px;}
.h4_c00383{height:34.080000px;}
.h2_c00383{height:39.264000px;}
.h3_c00383{height:43.260000px;}
.h5_c00383{height:43.740000px;}
.h1_c00383{height:1135.500000px;}
.h0_c00383{height:1135.506150px;}
.w0_c00383{width:893.950200px;}
.w1_c00383{width:894.000000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:77.603100px;}
.x5_c00383{left:424.138500px;}
.x2_c00383{left:599.532150px;}
.x3_c00383{left:612.288150px;}
.x4_c00383{left:616.540050px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls1_c00383{letter-spacing:-0.640000pt;}
.ls2_c00383{letter-spacing:-0.560000pt;}
.ls3_c00383{letter-spacing:-0.192000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws1_c00383{word-spacing:-7.728000pt;}
.ws2_c00383{word-spacing:-5.766400pt;}
.ws3_c00383{word-spacing:0.000000pt;}
.ws5_c00383{word-spacing:0.192000pt;}
.ws4_c00383{word-spacing:6.272000pt;}
.ws0_c00383{word-spacing:1409.275733pt;}
._3_c00383{margin-left:-6.260267pt;}
._7_c00383{margin-left:-2.928000pt;}
._0_c00383{margin-left:-1.877333pt;}
._1_c00383{margin-left:-0.981333pt;}
._2_c00383{width:1.792000pt;}
._6_c00383{width:6.912000pt;}
._4_c00383{width:49.488000pt;}
._5_c00383{width:52.565333pt;}
.fs5_c00383{font-size:27.200000pt;}
.fs6_c00383{font-size:32.000000pt;}
.fs3_c00383{font-size:37.333333pt;}
.fs0_c00383{font-size:42.666667pt;}
.fs4_c00383{font-size:48.000000pt;}
.fs2_c00383{font-size:50.666667pt;}
.fs1_c00383{font-size:53.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y19_c00383{bottom:305.293867pt;}
.y18_c00383{bottom:317.293867pt;}
.y17_c00383{bottom:329.293733pt;}
.y16_c00383{bottom:352.852800pt;}
.y15_c00383{bottom:364.852800pt;}
.y14_c00383{bottom:388.411867pt;}
.y13_c00383{bottom:400.411867pt;}
.y12_c00383{bottom:412.411867pt;}
.y11_c00383{bottom:432.191467pt;}
.y10_c00383{bottom:448.191467pt;}
.yf_c00383{bottom:464.191467pt;}
.ye_c00383{bottom:487.750533pt;}
.y1a_c00383{bottom:490.064933pt;}
.yd_c00383{bottom:743.939333pt;}
.yc_c00383{bottom:755.939333pt;}
.yb_c00383{bottom:767.939333pt;}
.ya_c00383{bottom:791.498400pt;}
.y9_c00383{bottom:803.498400pt;}
.y8_c00383{bottom:815.498400pt;}
.y7_c00383{bottom:839.057467pt;}
.y6_c00383{bottom:851.057467pt;}
.y5_c00383{bottom:863.057467pt;}
.y4_c00383{bottom:882.837067pt;}
.y3_c00383{bottom:898.837067pt;}
.y2_c00383{bottom:922.396133pt;}
.y1_c00383{bottom:972.089733pt;}
.h7_c00383{height:22.400000pt;}
.h6_c00383{height:26.917333pt;}
.h4_c00383{height:30.293333pt;}
.h2_c00383{height:34.901333pt;}
.h3_c00383{height:38.453333pt;}
.h5_c00383{height:38.880000pt;}
.h1_c00383{height:1009.333333pt;}
.h0_c00383{height:1009.338800pt;}
.w0_c00383{width:794.622400pt;}
.w1_c00383{width:794.666667pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:68.980533pt;}
.x5_c00383{left:377.012000pt;}
.x2_c00383{left:532.917467pt;}
.x3_c00383{left:544.256133pt;}
.x4_c00383{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00384;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.067000;font-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_c00384{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls2_c00384{letter-spacing:-0.720000px;}
.ls3_c00384{letter-spacing:-0.630000px;}
.ls1_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00384{word-spacing:-0.048000px;}
.ws2_c00384{word-spacing:0.000000px;}
.ws3_c00384{word-spacing:7.056000px;}
._0_c00384{margin-left:-2755.276200px;}
._4_c00384{margin-left:-6.946800px;}
._1_c00384{margin-left:-2.256000px;}
._3_c00384{margin-left:-1.200000px;}
._2_c00384{width:1.008000px;}
._7_c00384{width:7.776000px;}
._5_c00384{width:55.674000px;}
._6_c00384{width:59.136000px;}
.fc0_c00384{color:rgb(35,31,32);}
.fs3_c00384{font-size:42.000000px;}
.fs0_c00384{font-size:48.000000px;}
.fs4_c00384{font-size:54.000000px;}
.fs2_c00384{font-size:57.000000px;}
.fs1_c00384{font-size:60.000000px;}
.y0_c00384{bottom:0.000000px;}
.y19_c00384{bottom:348.185250px;}
.y18_c00384{bottom:361.685250px;}
.y17_c00384{bottom:375.185250px;}
.y16_c00384{bottom:401.689200px;}
.y15_c00384{bottom:415.189200px;}
.y14_c00384{bottom:428.689200px;}
.y13_c00384{bottom:455.193150px;}
.y12_c00384{bottom:468.693150px;}
.y11_c00384{bottom:482.193150px;}
.y10_c00384{bottom:504.445050px;}
.yf_c00384{bottom:522.445050px;}
.ye_c00384{bottom:548.949000px;}
.yd_c00384{bottom:836.515200px;}
.yc_c00384{bottom:850.015200px;}
.yb_c00384{bottom:863.515200px;}
.ya_c00384{bottom:890.019150px;}
.y9_c00384{bottom:903.519150px;}
.y8_c00384{bottom:917.019150px;}
.y7_c00384{bottom:943.523100px;}
.y6_c00384{bottom:957.023100px;}
.y5_c00384{bottom:970.523100px;}
.y4_c00384{bottom:992.775000px;}
.y3_c00384{bottom:1010.775000px;}
.y2_c00384{bottom:1037.278950px;}
.y1_c00384{bottom:1093.600950px;}
.h7_c00384{height:30.282000px;}
.h5_c00384{height:34.080000px;}
.h2_c00384{height:39.264000px;}
.h3_c00384{height:39.984000px;}
.h4_c00384{height:43.260000px;}
.h6_c00384{height:43.740000px;}
.h1_c00384{height:1135.500000px;}
.h0_c00384{height:1135.506150px;}
.w0_c00384{width:893.950200px;}
.w1_c00384{width:894.000000px;}
.x0_c00384{left:0.000000px;}
.x4_c00384{left:128.626800px;}
.x5_c00384{left:141.382650px;}
.x2_c00384{left:188.061900px;}
.x3_c00384{left:190.513350px;}
.x1_c00384{left:800.165850px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls2_c00384{letter-spacing:-0.640000pt;}
.ls3_c00384{letter-spacing:-0.560000pt;}
.ls1_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:0.426667pt;}
.ws1_c00384{word-spacing:-7.728000pt;}
.ws0_c00384{word-spacing:-0.042667pt;}
.ws2_c00384{word-spacing:0.000000pt;}
.ws3_c00384{word-spacing:6.272000pt;}
._0_c00384{margin-left:-2449.134400pt;}
._4_c00384{margin-left:-6.174933pt;}
._1_c00384{margin-left:-2.005333pt;}
._3_c00384{margin-left:-1.066667pt;}
._2_c00384{width:0.896000pt;}
._7_c00384{width:6.912000pt;}
._5_c00384{width:49.488000pt;}
._6_c00384{width:52.565333pt;}
.fs3_c00384{font-size:37.333333pt;}
.fs0_c00384{font-size:42.666667pt;}
.fs4_c00384{font-size:48.000000pt;}
.fs2_c00384{font-size:50.666667pt;}
.fs1_c00384{font-size:53.333333pt;}
.y0_c00384{bottom:0.000000pt;}
.y19_c00384{bottom:309.498000pt;}
.y18_c00384{bottom:321.498000pt;}
.y17_c00384{bottom:333.498000pt;}
.y16_c00384{bottom:357.057067pt;}
.y15_c00384{bottom:369.057067pt;}
.y14_c00384{bottom:381.057067pt;}
.y13_c00384{bottom:404.616133pt;}
.y12_c00384{bottom:416.616133pt;}
.y11_c00384{bottom:428.616133pt;}
.y10_c00384{bottom:448.395600pt;}
.yf_c00384{bottom:464.395600pt;}
.ye_c00384{bottom:487.954667pt;}
.yd_c00384{bottom:743.569067pt;}
.yc_c00384{bottom:755.569067pt;}
.yb_c00384{bottom:767.569067pt;}
.ya_c00384{bottom:791.128133pt;}
.y9_c00384{bottom:803.128133pt;}
.y8_c00384{bottom:815.128133pt;}
.y7_c00384{bottom:838.687200pt;}
.y6_c00384{bottom:850.687200pt;}
.y5_c00384{bottom:862.687200pt;}
.y4_c00384{bottom:882.466667pt;}
.y3_c00384{bottom:898.466667pt;}
.y2_c00384{bottom:922.025733pt;}
.y1_c00384{bottom:972.089733pt;}
.h7_c00384{height:26.917333pt;}
.h5_c00384{height:30.293333pt;}
.h2_c00384{height:34.901333pt;}
.h3_c00384{height:35.541333pt;}
.h4_c00384{height:38.453333pt;}
.h6_c00384{height:38.880000pt;}
.h1_c00384{height:1009.333333pt;}
.h0_c00384{height:1009.338800pt;}
.w0_c00384{width:794.622400pt;}
.w1_c00384{width:794.666667pt;}
.x0_c00384{left:0.000000pt;}
.x4_c00384{left:114.334933pt;}
.x5_c00384{left:125.673467pt;}
.x2_c00384{left:167.166133pt;}
.x3_c00384{left:169.345200pt;}
.x1_c00384{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;line-height:1.067000;font-style:normal;font-weight: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_c00385;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00385{font-family:ff7_c00385;line-height:0.710000;font-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_c00385{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls5_c00385{letter-spacing:-1.512000px;}
.ls3_c00385{letter-spacing:-0.720000px;}
.ls4_c00385{letter-spacing:-0.630000px;}
.ls2_c00385{letter-spacing:-0.540000px;}
.ls1_c00385{letter-spacing:-0.216000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00385{word-spacing:-11.826000px;}
.ws1_c00385{word-spacing:-8.694000px;}
.ws3_c00385{word-spacing:-6.487200px;}
.ws4_c00385{word-spacing:0.000000px;}
.ws6_c00385{word-spacing:0.216000px;}
.ws7_c00385{word-spacing:1.512000px;}
.ws5_c00385{word-spacing:7.056000px;}
.ws0_c00385{word-spacing:1585.435200px;}
._3_c00385{margin-left:-7.042800px;}
._0_c00385{margin-left:-2.112000px;}
._1_c00385{margin-left:-1.104000px;}
._2_c00385{width:2.016000px;}
._6_c00385{width:7.776000px;}
._4_c00385{width:55.674000px;}
._5_c00385{width:59.136000px;}
.fc0_c00385{color:rgb(35,31,32);}
.fs5_c00385{font-size:30.600000px;}
.fs6_c00385{font-size:36.000000px;}
.fs3_c00385{font-size:42.000000px;}
.fs0_c00385{font-size:48.000000px;}
.fs4_c00385{font-size:54.000000px;}
.fs2_c00385{font-size:57.000000px;}
.fs1_c00385{font-size:60.000000px;}
.y0_c00385{bottom:0.000000px;}
.y1a_c00385{bottom:348.168150px;}
.y19_c00385{bottom:361.668150px;}
.y18_c00385{bottom:375.168000px;}
.y17_c00385{bottom:401.672100px;}
.y16_c00385{bottom:415.172100px;}
.y15_c00385{bottom:428.672100px;}
.y14_c00385{bottom:455.175900px;}
.y13_c00385{bottom:468.675900px;}
.y12_c00385{bottom:482.175900px;}
.y11_c00385{bottom:504.427950px;}
.y10_c00385{bottom:522.427950px;}
.yf_c00385{bottom:548.931900px;}
.ye_c00385{bottom:814.644300px;}
.yd_c00385{bottom:828.144300px;}
.yc_c00385{bottom:841.644300px;}
.yb_c00385{bottom:868.148250px;}
.ya_c00385{bottom:881.648250px;}
.y9_c00385{bottom:908.152200px;}
.y8_c00385{bottom:921.652200px;}
.y7_c00385{bottom:935.152200px;}
.y6_c00385{bottom:957.408750px;}
.y5_c00385{bottom:975.404250px;}
.y4_c00385{bottom:993.404250px;}
.y3_c00385{bottom:1011.404250px;}
.y2_c00385{bottom:1037.908200px;}
.y1b_c00385{bottom:1040.299350px;}
.y1_c00385{bottom:1093.600950px;}
.h7_c00385{height:25.200000px;}
.h6_c00385{height:30.282000px;}
.h4_c00385{height:34.080000px;}
.h2_c00385{height:39.264000px;}
.h3_c00385{height:43.260000px;}
.h5_c00385{height:43.740000px;}
.h1_c00385{height:1135.500000px;}
.h0_c00385{height:1135.506150px;}
.w0_c00385{width:893.950200px;}
.w1_c00385{width:894.000000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:77.603100px;}
.x5_c00385{left:424.138500px;}
.x2_c00385{left:599.532150px;}
.x3_c00385{left:612.288150px;}
.x4_c00385{left:616.540050px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls5_c00385{letter-spacing:-1.344000pt;}
.ls3_c00385{letter-spacing:-0.640000pt;}
.ls4_c00385{letter-spacing:-0.560000pt;}
.ls2_c00385{letter-spacing:-0.480000pt;}
.ls1_c00385{letter-spacing:-0.192000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws2_c00385{word-spacing:-10.512000pt;}
.ws1_c00385{word-spacing:-7.728000pt;}
.ws3_c00385{word-spacing:-5.766400pt;}
.ws4_c00385{word-spacing:0.000000pt;}
.ws6_c00385{word-spacing:0.192000pt;}
.ws7_c00385{word-spacing:1.344000pt;}
.ws5_c00385{word-spacing:6.272000pt;}
.ws0_c00385{word-spacing:1409.275733pt;}
._3_c00385{margin-left:-6.260267pt;}
._0_c00385{margin-left:-1.877333pt;}
._1_c00385{margin-left:-0.981333pt;}
._2_c00385{width:1.792000pt;}
._6_c00385{width:6.912000pt;}
._4_c00385{width:49.488000pt;}
._5_c00385{width:52.565333pt;}
.fs5_c00385{font-size:27.200000pt;}
.fs6_c00385{font-size:32.000000pt;}
.fs3_c00385{font-size:37.333333pt;}
.fs0_c00385{font-size:42.666667pt;}
.fs4_c00385{font-size:48.000000pt;}
.fs2_c00385{font-size:50.666667pt;}
.fs1_c00385{font-size:53.333333pt;}
.y0_c00385{bottom:0.000000pt;}
.y1a_c00385{bottom:309.482800pt;}
.y19_c00385{bottom:321.482800pt;}
.y18_c00385{bottom:333.482667pt;}
.y17_c00385{bottom:357.041867pt;}
.y16_c00385{bottom:369.041867pt;}
.y15_c00385{bottom:381.041867pt;}
.y14_c00385{bottom:404.600800pt;}
.y13_c00385{bottom:416.600800pt;}
.y12_c00385{bottom:428.600800pt;}
.y11_c00385{bottom:448.380400pt;}
.y10_c00385{bottom:464.380400pt;}
.yf_c00385{bottom:487.939467pt;}
.ye_c00385{bottom:724.128267pt;}
.yd_c00385{bottom:736.128267pt;}
.yc_c00385{bottom:748.128267pt;}
.yb_c00385{bottom:771.687333pt;}
.ya_c00385{bottom:783.687333pt;}
.y9_c00385{bottom:807.246400pt;}
.y8_c00385{bottom:819.246400pt;}
.y7_c00385{bottom:831.246400pt;}
.y6_c00385{bottom:851.030000pt;}
.y5_c00385{bottom:867.026000pt;}
.y4_c00385{bottom:883.026000pt;}
.y3_c00385{bottom:899.026000pt;}
.y2_c00385{bottom:922.585067pt;}
.y1b_c00385{bottom:924.710533pt;}
.y1_c00385{bottom:972.089733pt;}
.h7_c00385{height:22.400000pt;}
.h6_c00385{height:26.917333pt;}
.h4_c00385{height:30.293333pt;}
.h2_c00385{height:34.901333pt;}
.h3_c00385{height:38.453333pt;}
.h5_c00385{height:38.880000pt;}
.h1_c00385{height:1009.333333pt;}
.h0_c00385{height:1009.338800pt;}
.w0_c00385{width:794.622400pt;}
.w1_c00385{width:794.666667pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:68.980533pt;}
.x5_c00385{left:377.012000pt;}
.x2_c00385{left:532.917467pt;}
.x3_c00385{left:544.256133pt;}
.x4_c00385{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00386;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00386;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00386{font-family:ff7_c00386;line-height:1.067000;font-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_c00386{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls3_c00386{letter-spacing:-0.720000px;}
.ls4_c00386{letter-spacing:-0.630000px;}
.ls2_c00386{letter-spacing:-0.540000px;}
.ls5_c00386{letter-spacing:-0.216000px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00386{word-spacing:-0.048000px;}
.ws2_c00386{word-spacing:0.000000px;}
.ws5_c00386{word-spacing:0.216000px;}
.ws4_c00386{word-spacing:0.540000px;}
.ws3_c00386{word-spacing:7.056000px;}
._0_c00386{margin-left:-2755.276200px;}
._4_c00386{margin-left:-6.946800px;}
._8_c00386{margin-left:-5.022000px;}
._1_c00386{margin-left:-2.256000px;}
._3_c00386{margin-left:-1.200000px;}
._2_c00386{width:1.008000px;}
._7_c00386{width:7.776000px;}
._5_c00386{width:55.674000px;}
._6_c00386{width:59.136000px;}
.fc0_c00386{color:rgb(35,31,32);}
.fs3_c00386{font-size:42.000000px;}
.fs0_c00386{font-size:48.000000px;}
.fs4_c00386{font-size:54.000000px;}
.fs2_c00386{font-size:57.000000px;}
.fs1_c00386{font-size:60.000000px;}
.y0_c00386{bottom:0.000000px;}
.y19_c00386{bottom:348.397800px;}
.y18_c00386{bottom:361.897800px;}
.y17_c00386{bottom:375.397800px;}
.y16_c00386{bottom:401.901750px;}
.y15_c00386{bottom:415.401750px;}
.y14_c00386{bottom:428.901750px;}
.y13_c00386{bottom:455.405700px;}
.y12_c00386{bottom:468.905700px;}
.y11_c00386{bottom:482.405700px;}
.y10_c00386{bottom:504.657600px;}
.yf_c00386{bottom:522.657600px;}
.ye_c00386{bottom:549.161550px;}
.yd_c00386{bottom:836.727750px;}
.yc_c00386{bottom:850.227750px;}
.yb_c00386{bottom:863.727750px;}
.ya_c00386{bottom:890.231700px;}
.y9_c00386{bottom:903.731700px;}
.y8_c00386{bottom:917.231700px;}
.y7_c00386{bottom:943.735650px;}
.y6_c00386{bottom:957.235650px;}
.y5_c00386{bottom:970.735650px;}
.y4_c00386{bottom:992.987550px;}
.y3_c00386{bottom:1010.987550px;}
.y2_c00386{bottom:1037.491500px;}
.y1_c00386{bottom:1093.600950px;}
.h7_c00386{height:30.282000px;}
.h5_c00386{height:34.080000px;}
.h2_c00386{height:39.264000px;}
.h3_c00386{height:39.984000px;}
.h4_c00386{height:43.260000px;}
.h6_c00386{height:43.740000px;}
.h1_c00386{height:1135.500000px;}
.h0_c00386{height:1135.506150px;}
.w0_c00386{width:893.950200px;}
.w1_c00386{width:894.000000px;}
.x0_c00386{left:0.000000px;}
.x4_c00386{left:128.626800px;}
.x5_c00386{left:141.382650px;}
.x2_c00386{left:188.061900px;}
.x3_c00386{left:190.513350px;}
.x1_c00386{left:800.165850px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls3_c00386{letter-spacing:-0.640000pt;}
.ls4_c00386{letter-spacing:-0.560000pt;}
.ls2_c00386{letter-spacing:-0.480000pt;}
.ls5_c00386{letter-spacing:-0.192000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.426667pt;}
.ws1_c00386{word-spacing:-7.728000pt;}
.ws0_c00386{word-spacing:-0.042667pt;}
.ws2_c00386{word-spacing:0.000000pt;}
.ws5_c00386{word-spacing:0.192000pt;}
.ws4_c00386{word-spacing:0.480000pt;}
.ws3_c00386{word-spacing:6.272000pt;}
._0_c00386{margin-left:-2449.134400pt;}
._4_c00386{margin-left:-6.174933pt;}
._8_c00386{margin-left:-4.464000pt;}
._1_c00386{margin-left:-2.005333pt;}
._3_c00386{margin-left:-1.066667pt;}
._2_c00386{width:0.896000pt;}
._7_c00386{width:6.912000pt;}
._5_c00386{width:49.488000pt;}
._6_c00386{width:52.565333pt;}
.fs3_c00386{font-size:37.333333pt;}
.fs0_c00386{font-size:42.666667pt;}
.fs4_c00386{font-size:48.000000pt;}
.fs2_c00386{font-size:50.666667pt;}
.fs1_c00386{font-size:53.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y19_c00386{bottom:309.686933pt;}
.y18_c00386{bottom:321.686933pt;}
.y17_c00386{bottom:333.686933pt;}
.y16_c00386{bottom:357.246000pt;}
.y15_c00386{bottom:369.246000pt;}
.y14_c00386{bottom:381.246000pt;}
.y13_c00386{bottom:404.805067pt;}
.y12_c00386{bottom:416.805067pt;}
.y11_c00386{bottom:428.805067pt;}
.y10_c00386{bottom:448.584533pt;}
.yf_c00386{bottom:464.584533pt;}
.ye_c00386{bottom:488.143600pt;}
.yd_c00386{bottom:743.758000pt;}
.yc_c00386{bottom:755.758000pt;}
.yb_c00386{bottom:767.758000pt;}
.ya_c00386{bottom:791.317067pt;}
.y9_c00386{bottom:803.317067pt;}
.y8_c00386{bottom:815.317067pt;}
.y7_c00386{bottom:838.876133pt;}
.y6_c00386{bottom:850.876133pt;}
.y5_c00386{bottom:862.876133pt;}
.y4_c00386{bottom:882.655600pt;}
.y3_c00386{bottom:898.655600pt;}
.y2_c00386{bottom:922.214667pt;}
.y1_c00386{bottom:972.089733pt;}
.h7_c00386{height:26.917333pt;}
.h5_c00386{height:30.293333pt;}
.h2_c00386{height:34.901333pt;}
.h3_c00386{height:35.541333pt;}
.h4_c00386{height:38.453333pt;}
.h6_c00386{height:38.880000pt;}
.h1_c00386{height:1009.333333pt;}
.h0_c00386{height:1009.338800pt;}
.w0_c00386{width:794.622400pt;}
.w1_c00386{width:794.666667pt;}
.x0_c00386{left:0.000000pt;}
.x4_c00386{left:114.334933pt;}
.x5_c00386{left:125.673467pt;}
.x2_c00386{left:167.166133pt;}
.x3_c00386{left:169.345200pt;}
.x1_c00386{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00387;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00387{font-family:ff6_c00387;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls2_c00387{letter-spacing:-0.720000px;}
.ls3_c00387{letter-spacing:-0.630000px;}
.ls1_c00387{letter-spacing:-0.216000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00387{word-spacing:0.000000px;}
.ws4_c00387{word-spacing:0.216000px;}
.ws3_c00387{word-spacing:7.056000px;}
.ws0_c00387{word-spacing:1585.435200px;}
._3_c00387{margin-left:-7.042800px;}
._0_c00387{margin-left:-2.112000px;}
._1_c00387{margin-left:-1.104000px;}
._2_c00387{width:2.016000px;}
._6_c00387{width:7.776000px;}
._4_c00387{width:55.674000px;}
._5_c00387{width:59.136000px;}
.fc0_c00387{color:rgb(35,31,32);}
.fs3_c00387{font-size:42.000000px;}
.fs0_c00387{font-size:48.000000px;}
.fs4_c00387{font-size:54.000000px;}
.fs2_c00387{font-size:57.000000px;}
.fs1_c00387{font-size:60.000000px;}
.y0_c00387{bottom:0.000000px;}
.y1a_c00387{bottom:348.168150px;}
.y19_c00387{bottom:361.668150px;}
.y18_c00387{bottom:375.168000px;}
.y17_c00387{bottom:401.672100px;}
.y16_c00387{bottom:415.172100px;}
.y15_c00387{bottom:428.672100px;}
.y14_c00387{bottom:455.175900px;}
.y13_c00387{bottom:468.675900px;}
.y12_c00387{bottom:482.175900px;}
.y11_c00387{bottom:504.427950px;}
.y10_c00387{bottom:522.427950px;}
.yf_c00387{bottom:548.931900px;}
.ye_c00387{bottom:819.144300px;}
.yd_c00387{bottom:832.644300px;}
.yc_c00387{bottom:846.144300px;}
.yb_c00387{bottom:872.648250px;}
.ya_c00387{bottom:886.148250px;}
.y9_c00387{bottom:899.648250px;}
.y8_c00387{bottom:926.152200px;}
.y7_c00387{bottom:939.652200px;}
.y6_c00387{bottom:953.152200px;}
.y5_c00387{bottom:975.404250px;}
.y4_c00387{bottom:993.404250px;}
.y3_c00387{bottom:1011.404250px;}
.y2_c00387{bottom:1037.908200px;}
.y1_c00387{bottom:1093.600950px;}
.h6_c00387{height:30.282000px;}
.h4_c00387{height:34.080000px;}
.h2_c00387{height:39.264000px;}
.h3_c00387{height:43.260000px;}
.h5_c00387{height:43.740000px;}
.h1_c00387{height:1135.500000px;}
.h0_c00387{height:1135.506150px;}
.w0_c00387{width:893.950200px;}
.w1_c00387{width:894.000000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:77.603100px;}
.x2_c00387{left:599.532150px;}
.x3_c00387{left:612.288150px;}
.x4_c00387{left:616.540050px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls2_c00387{letter-spacing:-0.640000pt;}
.ls3_c00387{letter-spacing:-0.560000pt;}
.ls1_c00387{letter-spacing:-0.192000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws1_c00387{word-spacing:-7.728000pt;}
.ws2_c00387{word-spacing:0.000000pt;}
.ws4_c00387{word-spacing:0.192000pt;}
.ws3_c00387{word-spacing:6.272000pt;}
.ws0_c00387{word-spacing:1409.275733pt;}
._3_c00387{margin-left:-6.260267pt;}
._0_c00387{margin-left:-1.877333pt;}
._1_c00387{margin-left:-0.981333pt;}
._2_c00387{width:1.792000pt;}
._6_c00387{width:6.912000pt;}
._4_c00387{width:49.488000pt;}
._5_c00387{width:52.565333pt;}
.fs3_c00387{font-size:37.333333pt;}
.fs0_c00387{font-size:42.666667pt;}
.fs4_c00387{font-size:48.000000pt;}
.fs2_c00387{font-size:50.666667pt;}
.fs1_c00387{font-size:53.333333pt;}
.y0_c00387{bottom:0.000000pt;}
.y1a_c00387{bottom:309.482800pt;}
.y19_c00387{bottom:321.482800pt;}
.y18_c00387{bottom:333.482667pt;}
.y17_c00387{bottom:357.041867pt;}
.y16_c00387{bottom:369.041867pt;}
.y15_c00387{bottom:381.041867pt;}
.y14_c00387{bottom:404.600800pt;}
.y13_c00387{bottom:416.600800pt;}
.y12_c00387{bottom:428.600800pt;}
.y11_c00387{bottom:448.380400pt;}
.y10_c00387{bottom:464.380400pt;}
.yf_c00387{bottom:487.939467pt;}
.ye_c00387{bottom:728.128267pt;}
.yd_c00387{bottom:740.128267pt;}
.yc_c00387{bottom:752.128267pt;}
.yb_c00387{bottom:775.687333pt;}
.ya_c00387{bottom:787.687333pt;}
.y9_c00387{bottom:799.687333pt;}
.y8_c00387{bottom:823.246400pt;}
.y7_c00387{bottom:835.246400pt;}
.y6_c00387{bottom:847.246400pt;}
.y5_c00387{bottom:867.026000pt;}
.y4_c00387{bottom:883.026000pt;}
.y3_c00387{bottom:899.026000pt;}
.y2_c00387{bottom:922.585067pt;}
.y1_c00387{bottom:972.089733pt;}
.h6_c00387{height:26.917333pt;}
.h4_c00387{height:30.293333pt;}
.h2_c00387{height:34.901333pt;}
.h3_c00387{height:38.453333pt;}
.h5_c00387{height:38.880000pt;}
.h1_c00387{height:1009.333333pt;}
.h0_c00387{height:1009.338800pt;}
.w0_c00387{width:794.622400pt;}
.w1_c00387{width:794.666667pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:68.980533pt;}
.x2_c00387{left:532.917467pt;}
.x3_c00387{left:544.256133pt;}
.x4_c00387{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00388;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:0.908000;font-style:normal;font-weight: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_c00388;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00388{font-family:ff7_c00388;line-height:1.067000;font-style:normal;font-weight: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_c00388;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00388{font-family:ff8_c00388;line-height:0.710000;font-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_c00388{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls3_c00388{letter-spacing:-0.720000px;}
.ls5_c00388{letter-spacing:-0.630000px;}
.ls4_c00388{letter-spacing:-0.270000px;}
.ls2_c00388{letter-spacing:-0.216000px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:0.480000px;}
.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;}
}
.ws3_c00388{word-spacing:-12.096000px;}
.ws1_c00388{word-spacing:-8.694000px;}
.ws2_c00388{word-spacing:-6.487200px;}
.ws0_c00388{word-spacing:-0.048000px;}
.ws4_c00388{word-spacing:0.000000px;}
.ws6_c00388{word-spacing:0.216000px;}
.ws5_c00388{word-spacing:7.056000px;}
._0_c00388{margin-left:-2755.276200px;}
._4_c00388{margin-left:-6.946800px;}
._1_c00388{margin-left:-2.256000px;}
._3_c00388{margin-left:-1.200000px;}
._2_c00388{width:1.008000px;}
._7_c00388{width:7.776000px;}
._5_c00388{width:55.674000px;}
._6_c00388{width:59.136000px;}
.fc0_c00388{color:rgb(35,31,32);}
.fs5_c00388{font-size:30.600000px;}
.fs6_c00388{font-size:36.000000px;}
.fs3_c00388{font-size:42.000000px;}
.fs0_c00388{font-size:48.000000px;}
.fs4_c00388{font-size:54.000000px;}
.fs2_c00388{font-size:57.000000px;}
.fs1_c00388{font-size:60.000000px;}
.y0_c00388{bottom:0.000000px;}
.y19_c00388{bottom:330.397800px;}
.y18_c00388{bottom:343.897800px;}
.y17_c00388{bottom:357.397800px;}
.y16_c00388{bottom:383.901750px;}
.y15_c00388{bottom:397.401750px;}
.y14_c00388{bottom:410.901750px;}
.y13_c00388{bottom:437.405700px;}
.y12_c00388{bottom:450.905700px;}
.y11_c00388{bottom:464.405700px;}
.y10_c00388{bottom:486.657600px;}
.yf_c00388{bottom:504.657600px;}
.ye_c00388{bottom:522.657600px;}
.yd_c00388{bottom:549.161550px;}
.y1a_c00388{bottom:806.654400px;}
.yb_c00388{bottom:863.727750px;}
.ya_c00388{bottom:877.227750px;}
.y9_c00388{bottom:903.731700px;}
.y8_c00388{bottom:917.231700px;}
.y7_c00388{bottom:943.735650px;}
.y6_c00388{bottom:957.235650px;}
.y5_c00388{bottom:970.735650px;}
.y4_c00388{bottom:992.987550px;}
.y3_c00388{bottom:1010.987550px;}
.y2_c00388{bottom:1037.491500px;}
.yc_c00388{bottom:1040.299350px;}
.y1_c00388{bottom:1093.600950px;}
.h8_c00388{height:25.200000px;}
.h7_c00388{height:30.282000px;}
.h5_c00388{height:34.080000px;}
.h2_c00388{height:39.264000px;}
.h3_c00388{height:39.984000px;}
.h4_c00388{height:43.260000px;}
.h6_c00388{height:43.740000px;}
.h1_c00388{height:1135.500000px;}
.h0_c00388{height:1135.506150px;}
.w0_c00388{width:893.950200px;}
.w1_c00388{width:894.000000px;}
.x0_c00388{left:0.000000px;}
.x4_c00388{left:128.626800px;}
.x5_c00388{left:141.382650px;}
.x7_c00388{left:145.752600px;}
.x2_c00388{left:188.061900px;}
.x3_c00388{left:190.513350px;}
.x6_c00388{left:321.801150px;}
.x1_c00388{left:800.165850px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls3_c00388{letter-spacing:-0.640000pt;}
.ls5_c00388{letter-spacing:-0.560000pt;}
.ls4_c00388{letter-spacing:-0.240000pt;}
.ls2_c00388{letter-spacing:-0.192000pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.426667pt;}
.ws3_c00388{word-spacing:-10.752000pt;}
.ws1_c00388{word-spacing:-7.728000pt;}
.ws2_c00388{word-spacing:-5.766400pt;}
.ws0_c00388{word-spacing:-0.042667pt;}
.ws4_c00388{word-spacing:0.000000pt;}
.ws6_c00388{word-spacing:0.192000pt;}
.ws5_c00388{word-spacing:6.272000pt;}
._0_c00388{margin-left:-2449.134400pt;}
._4_c00388{margin-left:-6.174933pt;}
._1_c00388{margin-left:-2.005333pt;}
._3_c00388{margin-left:-1.066667pt;}
._2_c00388{width:0.896000pt;}
._7_c00388{width:6.912000pt;}
._5_c00388{width:49.488000pt;}
._6_c00388{width:52.565333pt;}
.fs5_c00388{font-size:27.200000pt;}
.fs6_c00388{font-size:32.000000pt;}
.fs3_c00388{font-size:37.333333pt;}
.fs0_c00388{font-size:42.666667pt;}
.fs4_c00388{font-size:48.000000pt;}
.fs2_c00388{font-size:50.666667pt;}
.fs1_c00388{font-size:53.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y19_c00388{bottom:293.686933pt;}
.y18_c00388{bottom:305.686933pt;}
.y17_c00388{bottom:317.686933pt;}
.y16_c00388{bottom:341.246000pt;}
.y15_c00388{bottom:353.246000pt;}
.y14_c00388{bottom:365.246000pt;}
.y13_c00388{bottom:388.805067pt;}
.y12_c00388{bottom:400.805067pt;}
.y11_c00388{bottom:412.805067pt;}
.y10_c00388{bottom:432.584533pt;}
.yf_c00388{bottom:448.584533pt;}
.ye_c00388{bottom:464.584533pt;}
.yd_c00388{bottom:488.143600pt;}
.y1a_c00388{bottom:717.026133pt;}
.yb_c00388{bottom:767.758000pt;}
.ya_c00388{bottom:779.758000pt;}
.y9_c00388{bottom:803.317067pt;}
.y8_c00388{bottom:815.317067pt;}
.y7_c00388{bottom:838.876133pt;}
.y6_c00388{bottom:850.876133pt;}
.y5_c00388{bottom:862.876133pt;}
.y4_c00388{bottom:882.655600pt;}
.y3_c00388{bottom:898.655600pt;}
.y2_c00388{bottom:922.214667pt;}
.yc_c00388{bottom:924.710533pt;}
.y1_c00388{bottom:972.089733pt;}
.h8_c00388{height:22.400000pt;}
.h7_c00388{height:26.917333pt;}
.h5_c00388{height:30.293333pt;}
.h2_c00388{height:34.901333pt;}
.h3_c00388{height:35.541333pt;}
.h4_c00388{height:38.453333pt;}
.h6_c00388{height:38.880000pt;}
.h1_c00388{height:1009.333333pt;}
.h0_c00388{height:1009.338800pt;}
.w0_c00388{width:794.622400pt;}
.w1_c00388{width:794.666667pt;}
.x0_c00388{left:0.000000pt;}
.x4_c00388{left:114.334933pt;}
.x5_c00388{left:125.673467pt;}
.x7_c00388{left:129.557867pt;}
.x2_c00388{left:167.166133pt;}
.x3_c00388{left:169.345200pt;}
.x6_c00388{left:286.045467pt;}
.x1_c00388{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00389;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00389{font-family:ff6_c00389;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls2_c00389{letter-spacing:-0.720000px;}
.ls3_c00389{letter-spacing:-0.630000px;}
.ls1_c00389{letter-spacing:-0.216000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00389{word-spacing:0.000000px;}
.ws4_c00389{word-spacing:0.216000px;}
.ws3_c00389{word-spacing:7.056000px;}
.ws0_c00389{word-spacing:1585.435200px;}
._3_c00389{margin-left:-7.042800px;}
._0_c00389{margin-left:-2.112000px;}
._1_c00389{margin-left:-1.104000px;}
._2_c00389{width:2.016000px;}
._6_c00389{width:7.776000px;}
._4_c00389{width:55.674000px;}
._5_c00389{width:59.136000px;}
.fc0_c00389{color:rgb(35,31,32);}
.fs3_c00389{font-size:42.000000px;}
.fs0_c00389{font-size:48.000000px;}
.fs4_c00389{font-size:54.000000px;}
.fs2_c00389{font-size:57.000000px;}
.fs1_c00389{font-size:60.000000px;}
.y0_c00389{bottom:0.000000px;}
.y19_c00389{bottom:348.168150px;}
.y18_c00389{bottom:361.668150px;}
.y17_c00389{bottom:375.168000px;}
.y16_c00389{bottom:401.672100px;}
.y15_c00389{bottom:415.172100px;}
.y14_c00389{bottom:428.672100px;}
.y13_c00389{bottom:455.175900px;}
.y12_c00389{bottom:468.675900px;}
.y11_c00389{bottom:482.175900px;}
.y10_c00389{bottom:504.427950px;}
.yf_c00389{bottom:522.427950px;}
.ye_c00389{bottom:548.931900px;}
.yd_c00389{bottom:837.144300px;}
.yc_c00389{bottom:850.644300px;}
.yb_c00389{bottom:864.144300px;}
.ya_c00389{bottom:890.648250px;}
.y9_c00389{bottom:904.148250px;}
.y8_c00389{bottom:917.648250px;}
.y7_c00389{bottom:944.152200px;}
.y6_c00389{bottom:957.652200px;}
.y5_c00389{bottom:971.152200px;}
.y4_c00389{bottom:993.404250px;}
.y3_c00389{bottom:1011.404250px;}
.y2_c00389{bottom:1037.908200px;}
.y1_c00389{bottom:1093.600950px;}
.h6_c00389{height:30.282000px;}
.h4_c00389{height:34.080000px;}
.h2_c00389{height:39.264000px;}
.h3_c00389{height:43.260000px;}
.h5_c00389{height:43.740000px;}
.h1_c00389{height:1135.500000px;}
.h0_c00389{height:1135.506150px;}
.w0_c00389{width:893.950200px;}
.w1_c00389{width:894.000000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:77.603100px;}
.x2_c00389{left:599.532150px;}
.x3_c00389{left:612.288150px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls2_c00389{letter-spacing:-0.640000pt;}
.ls3_c00389{letter-spacing:-0.560000pt;}
.ls1_c00389{letter-spacing:-0.192000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws1_c00389{word-spacing:-7.728000pt;}
.ws2_c00389{word-spacing:0.000000pt;}
.ws4_c00389{word-spacing:0.192000pt;}
.ws3_c00389{word-spacing:6.272000pt;}
.ws0_c00389{word-spacing:1409.275733pt;}
._3_c00389{margin-left:-6.260267pt;}
._0_c00389{margin-left:-1.877333pt;}
._1_c00389{margin-left:-0.981333pt;}
._2_c00389{width:1.792000pt;}
._6_c00389{width:6.912000pt;}
._4_c00389{width:49.488000pt;}
._5_c00389{width:52.565333pt;}
.fs3_c00389{font-size:37.333333pt;}
.fs0_c00389{font-size:42.666667pt;}
.fs4_c00389{font-size:48.000000pt;}
.fs2_c00389{font-size:50.666667pt;}
.fs1_c00389{font-size:53.333333pt;}
.y0_c00389{bottom:0.000000pt;}
.y19_c00389{bottom:309.482800pt;}
.y18_c00389{bottom:321.482800pt;}
.y17_c00389{bottom:333.482667pt;}
.y16_c00389{bottom:357.041867pt;}
.y15_c00389{bottom:369.041867pt;}
.y14_c00389{bottom:381.041867pt;}
.y13_c00389{bottom:404.600800pt;}
.y12_c00389{bottom:416.600800pt;}
.y11_c00389{bottom:428.600800pt;}
.y10_c00389{bottom:448.380400pt;}
.yf_c00389{bottom:464.380400pt;}
.ye_c00389{bottom:487.939467pt;}
.yd_c00389{bottom:744.128267pt;}
.yc_c00389{bottom:756.128267pt;}
.yb_c00389{bottom:768.128267pt;}
.ya_c00389{bottom:791.687333pt;}
.y9_c00389{bottom:803.687333pt;}
.y8_c00389{bottom:815.687333pt;}
.y7_c00389{bottom:839.246400pt;}
.y6_c00389{bottom:851.246400pt;}
.y5_c00389{bottom:863.246400pt;}
.y4_c00389{bottom:883.026000pt;}
.y3_c00389{bottom:899.026000pt;}
.y2_c00389{bottom:922.585067pt;}
.y1_c00389{bottom:972.089733pt;}
.h6_c00389{height:26.917333pt;}
.h4_c00389{height:30.293333pt;}
.h2_c00389{height:34.901333pt;}
.h3_c00389{height:38.453333pt;}
.h5_c00389{height:38.880000pt;}
.h1_c00389{height:1009.333333pt;}
.h0_c00389{height:1009.338800pt;}
.w0_c00389{width:794.622400pt;}
.w1_c00389{width:794.666667pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:68.980533pt;}
.x2_c00389{left:532.917467pt;}
.x3_c00389{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:0.908000;font-style:normal;font-weight: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_c00390;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00390{font-family:ff7_c00390;line-height:1.067000;font-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_c00390{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls2_c00390{letter-spacing:-0.720000px;}
.ls3_c00390{letter-spacing:-0.630000px;}
.ls1_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00390{word-spacing:-0.048000px;}
.ws2_c00390{word-spacing:0.000000px;}
.ws3_c00390{word-spacing:7.056000px;}
._0_c00390{margin-left:-2755.276200px;}
._4_c00390{margin-left:-6.946800px;}
._1_c00390{margin-left:-2.256000px;}
._3_c00390{margin-left:-1.200000px;}
._2_c00390{width:1.008000px;}
._7_c00390{width:7.776000px;}
._5_c00390{width:55.674000px;}
._6_c00390{width:59.136000px;}
.fc0_c00390{color:rgb(35,31,32);}
.fs3_c00390{font-size:42.000000px;}
.fs0_c00390{font-size:48.000000px;}
.fs4_c00390{font-size:54.000000px;}
.fs2_c00390{font-size:57.000000px;}
.fs1_c00390{font-size:60.000000px;}
.y0_c00390{bottom:0.000000px;}
.y19_c00390{bottom:348.397800px;}
.y18_c00390{bottom:361.897800px;}
.y17_c00390{bottom:375.397800px;}
.y16_c00390{bottom:401.901750px;}
.y15_c00390{bottom:415.401750px;}
.y14_c00390{bottom:428.901750px;}
.y13_c00390{bottom:455.405700px;}
.y12_c00390{bottom:468.905700px;}
.y11_c00390{bottom:482.405700px;}
.y10_c00390{bottom:504.657600px;}
.yf_c00390{bottom:522.657600px;}
.ye_c00390{bottom:549.161550px;}
.yd_c00390{bottom:836.727750px;}
.yc_c00390{bottom:850.227750px;}
.yb_c00390{bottom:863.727750px;}
.ya_c00390{bottom:890.231700px;}
.y9_c00390{bottom:903.731700px;}
.y8_c00390{bottom:917.231700px;}
.y7_c00390{bottom:943.735650px;}
.y6_c00390{bottom:957.235650px;}
.y5_c00390{bottom:970.735650px;}
.y4_c00390{bottom:992.987550px;}
.y3_c00390{bottom:1010.987550px;}
.y2_c00390{bottom:1037.491500px;}
.y1_c00390{bottom:1093.600950px;}
.h7_c00390{height:30.282000px;}
.h5_c00390{height:34.080000px;}
.h2_c00390{height:39.264000px;}
.h3_c00390{height:39.984000px;}
.h4_c00390{height:43.260000px;}
.h6_c00390{height:43.740000px;}
.h1_c00390{height:1135.500000px;}
.h0_c00390{height:1135.506150px;}
.w0_c00390{width:893.950200px;}
.w1_c00390{width:894.000000px;}
.x0_c00390{left:0.000000px;}
.x4_c00390{left:128.626800px;}
.x5_c00390{left:141.382650px;}
.x2_c00390{left:188.061900px;}
.x3_c00390{left:190.513350px;}
.x1_c00390{left:800.165850px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls2_c00390{letter-spacing:-0.640000pt;}
.ls3_c00390{letter-spacing:-0.560000pt;}
.ls1_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.426667pt;}
.ws1_c00390{word-spacing:-7.728000pt;}
.ws0_c00390{word-spacing:-0.042667pt;}
.ws2_c00390{word-spacing:0.000000pt;}
.ws3_c00390{word-spacing:6.272000pt;}
._0_c00390{margin-left:-2449.134400pt;}
._4_c00390{margin-left:-6.174933pt;}
._1_c00390{margin-left:-2.005333pt;}
._3_c00390{margin-left:-1.066667pt;}
._2_c00390{width:0.896000pt;}
._7_c00390{width:6.912000pt;}
._5_c00390{width:49.488000pt;}
._6_c00390{width:52.565333pt;}
.fs3_c00390{font-size:37.333333pt;}
.fs0_c00390{font-size:42.666667pt;}
.fs4_c00390{font-size:48.000000pt;}
.fs2_c00390{font-size:50.666667pt;}
.fs1_c00390{font-size:53.333333pt;}
.y0_c00390{bottom:0.000000pt;}
.y19_c00390{bottom:309.686933pt;}
.y18_c00390{bottom:321.686933pt;}
.y17_c00390{bottom:333.686933pt;}
.y16_c00390{bottom:357.246000pt;}
.y15_c00390{bottom:369.246000pt;}
.y14_c00390{bottom:381.246000pt;}
.y13_c00390{bottom:404.805067pt;}
.y12_c00390{bottom:416.805067pt;}
.y11_c00390{bottom:428.805067pt;}
.y10_c00390{bottom:448.584533pt;}
.yf_c00390{bottom:464.584533pt;}
.ye_c00390{bottom:488.143600pt;}
.yd_c00390{bottom:743.758000pt;}
.yc_c00390{bottom:755.758000pt;}
.yb_c00390{bottom:767.758000pt;}
.ya_c00390{bottom:791.317067pt;}
.y9_c00390{bottom:803.317067pt;}
.y8_c00390{bottom:815.317067pt;}
.y7_c00390{bottom:838.876133pt;}
.y6_c00390{bottom:850.876133pt;}
.y5_c00390{bottom:862.876133pt;}
.y4_c00390{bottom:882.655600pt;}
.y3_c00390{bottom:898.655600pt;}
.y2_c00390{bottom:922.214667pt;}
.y1_c00390{bottom:972.089733pt;}
.h7_c00390{height:26.917333pt;}
.h5_c00390{height:30.293333pt;}
.h2_c00390{height:34.901333pt;}
.h3_c00390{height:35.541333pt;}
.h4_c00390{height:38.453333pt;}
.h6_c00390{height:38.880000pt;}
.h1_c00390{height:1009.333333pt;}
.h0_c00390{height:1009.338800pt;}
.w0_c00390{width:794.622400pt;}
.w1_c00390{width:794.666667pt;}
.x0_c00390{left:0.000000pt;}
.x4_c00390{left:114.334933pt;}
.x5_c00390{left:125.673467pt;}
.x2_c00390{left:167.166133pt;}
.x3_c00390{left:169.345200pt;}
.x1_c00390{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00391;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls3_c00391{letter-spacing:-1.188000px;}
.ls1_c00391{letter-spacing:-0.720000px;}
.ls2_c00391{letter-spacing:-0.630000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00391{word-spacing:0.000000px;}
.ws4_c00391{word-spacing:1.188000px;}
.ws3_c00391{word-spacing:7.056000px;}
.ws0_c00391{word-spacing:1585.435200px;}
._3_c00391{margin-left:-7.042800px;}
._0_c00391{margin-left:-2.112000px;}
._1_c00391{margin-left:-1.104000px;}
._2_c00391{width:2.016000px;}
._6_c00391{width:7.776000px;}
._4_c00391{width:55.674000px;}
._5_c00391{width:59.136000px;}
.fc0_c00391{color:rgb(35,31,32);}
.fs3_c00391{font-size:42.000000px;}
.fs0_c00391{font-size:48.000000px;}
.fs4_c00391{font-size:54.000000px;}
.fs2_c00391{font-size:57.000000px;}
.fs1_c00391{font-size:60.000000px;}
.y0_c00391{bottom:0.000000px;}
.y19_c00391{bottom:347.955600px;}
.y18_c00391{bottom:361.455600px;}
.y17_c00391{bottom:374.955450px;}
.y16_c00391{bottom:401.459400px;}
.y15_c00391{bottom:414.959400px;}
.y14_c00391{bottom:428.459400px;}
.y13_c00391{bottom:454.963350px;}
.y12_c00391{bottom:468.463350px;}
.y11_c00391{bottom:481.963350px;}
.y10_c00391{bottom:504.215400px;}
.yf_c00391{bottom:522.215400px;}
.ye_c00391{bottom:548.719350px;}
.yd_c00391{bottom:836.931750px;}
.yc_c00391{bottom:850.431750px;}
.yb_c00391{bottom:863.931750px;}
.ya_c00391{bottom:890.435700px;}
.y9_c00391{bottom:903.935700px;}
.y8_c00391{bottom:917.435700px;}
.y7_c00391{bottom:943.939650px;}
.y6_c00391{bottom:957.439650px;}
.y5_c00391{bottom:970.939650px;}
.y4_c00391{bottom:993.191700px;}
.y3_c00391{bottom:1011.191700px;}
.y2_c00391{bottom:1037.695650px;}
.y1_c00391{bottom:1093.600950px;}
.h6_c00391{height:30.282000px;}
.h4_c00391{height:34.080000px;}
.h2_c00391{height:39.264000px;}
.h3_c00391{height:43.260000px;}
.h5_c00391{height:43.740000px;}
.h1_c00391{height:1135.500000px;}
.h0_c00391{height:1135.506150px;}
.w0_c00391{width:893.950200px;}
.w1_c00391{width:894.000000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:77.603100px;}
.x2_c00391{left:599.532150px;}
.x3_c00391{left:612.288150px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls3_c00391{letter-spacing:-1.056000pt;}
.ls1_c00391{letter-spacing:-0.640000pt;}
.ls2_c00391{letter-spacing:-0.560000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws1_c00391{word-spacing:-7.728000pt;}
.ws2_c00391{word-spacing:0.000000pt;}
.ws4_c00391{word-spacing:1.056000pt;}
.ws3_c00391{word-spacing:6.272000pt;}
.ws0_c00391{word-spacing:1409.275733pt;}
._3_c00391{margin-left:-6.260267pt;}
._0_c00391{margin-left:-1.877333pt;}
._1_c00391{margin-left:-0.981333pt;}
._2_c00391{width:1.792000pt;}
._6_c00391{width:6.912000pt;}
._4_c00391{width:49.488000pt;}
._5_c00391{width:52.565333pt;}
.fs3_c00391{font-size:37.333333pt;}
.fs0_c00391{font-size:42.666667pt;}
.fs4_c00391{font-size:48.000000pt;}
.fs2_c00391{font-size:50.666667pt;}
.fs1_c00391{font-size:53.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y19_c00391{bottom:309.293867pt;}
.y18_c00391{bottom:321.293867pt;}
.y17_c00391{bottom:333.293733pt;}
.y16_c00391{bottom:356.852800pt;}
.y15_c00391{bottom:368.852800pt;}
.y14_c00391{bottom:380.852800pt;}
.y13_c00391{bottom:404.411867pt;}
.y12_c00391{bottom:416.411867pt;}
.y11_c00391{bottom:428.411867pt;}
.y10_c00391{bottom:448.191467pt;}
.yf_c00391{bottom:464.191467pt;}
.ye_c00391{bottom:487.750533pt;}
.yd_c00391{bottom:743.939333pt;}
.yc_c00391{bottom:755.939333pt;}
.yb_c00391{bottom:767.939333pt;}
.ya_c00391{bottom:791.498400pt;}
.y9_c00391{bottom:803.498400pt;}
.y8_c00391{bottom:815.498400pt;}
.y7_c00391{bottom:839.057467pt;}
.y6_c00391{bottom:851.057467pt;}
.y5_c00391{bottom:863.057467pt;}
.y4_c00391{bottom:882.837067pt;}
.y3_c00391{bottom:898.837067pt;}
.y2_c00391{bottom:922.396133pt;}
.y1_c00391{bottom:972.089733pt;}
.h6_c00391{height:26.917333pt;}
.h4_c00391{height:30.293333pt;}
.h2_c00391{height:34.901333pt;}
.h3_c00391{height:38.453333pt;}
.h5_c00391{height:38.880000pt;}
.h1_c00391{height:1009.333333pt;}
.h0_c00391{height:1009.338800pt;}
.w0_c00391{width:794.622400pt;}
.w1_c00391{width:794.666667pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:68.980533pt;}
.x2_c00391{left:532.917467pt;}
.x3_c00391{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00392;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:0.908000;font-style:normal;font-weight: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_c00392;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.067000;font-style:normal;font-weight: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_c00392;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00392{font-family:ff8_c00392;line-height:0.710000;font-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_c00392{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls5_c00392{letter-spacing:-2.106000px;}
.ls3_c00392{letter-spacing:-0.720000px;}
.ls4_c00392{letter-spacing:-0.630000px;}
.ls2_c00392{letter-spacing:-0.216000px;}
.ls1_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:0.480000px;}
.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;}
}
.ws3_c00392{word-spacing:-10.260000px;}
.ws1_c00392{word-spacing:-8.694000px;}
.ws2_c00392{word-spacing:-6.487200px;}
.ws0_c00392{word-spacing:-0.048000px;}
.ws4_c00392{word-spacing:0.000000px;}
.ws6_c00392{word-spacing:0.216000px;}
.ws5_c00392{word-spacing:7.056000px;}
._0_c00392{margin-left:-2755.276200px;}
._4_c00392{margin-left:-6.946800px;}
._8_c00392{margin-left:-5.022000px;}
._1_c00392{margin-left:-2.256000px;}
._3_c00392{margin-left:-1.200000px;}
._2_c00392{width:1.008000px;}
._9_c00392{width:2.988000px;}
._7_c00392{width:7.776000px;}
._5_c00392{width:55.674000px;}
._6_c00392{width:59.136000px;}
.fc0_c00392{color:rgb(35,31,32);}
.fs5_c00392{font-size:30.600000px;}
.fs6_c00392{font-size:36.000000px;}
.fs3_c00392{font-size:42.000000px;}
.fs0_c00392{font-size:48.000000px;}
.fs4_c00392{font-size:54.000000px;}
.fs2_c00392{font-size:57.000000px;}
.fs1_c00392{font-size:60.000000px;}
.y0_c00392{bottom:0.000000px;}
.y1a_c00392{bottom:343.685250px;}
.y19_c00392{bottom:357.185250px;}
.y18_c00392{bottom:370.685250px;}
.y17_c00392{bottom:397.189200px;}
.y16_c00392{bottom:410.689200px;}
.y15_c00392{bottom:437.193150px;}
.y14_c00392{bottom:450.693150px;}
.y13_c00392{bottom:464.193150px;}
.y12_c00392{bottom:486.445050px;}
.y11_c00392{bottom:504.445050px;}
.y10_c00392{bottom:522.445050px;}
.yf_c00392{bottom:548.949000px;}
.ye_c00392{bottom:551.323050px;}
.yc_c00392{bottom:850.015200px;}
.yb_c00392{bottom:863.515200px;}
.ya_c00392{bottom:877.015200px;}
.y9_c00392{bottom:903.519150px;}
.y8_c00392{bottom:917.019150px;}
.y7_c00392{bottom:943.523100px;}
.y6_c00392{bottom:957.023100px;}
.y5_c00392{bottom:970.523100px;}
.y4_c00392{bottom:992.775000px;}
.y3_c00392{bottom:1010.775000px;}
.y2_c00392{bottom:1037.278950px;}
.yd_c00392{bottom:1040.086800px;}
.y1_c00392{bottom:1093.600950px;}
.h8_c00392{height:25.200000px;}
.h7_c00392{height:30.282000px;}
.h5_c00392{height:34.080000px;}
.h2_c00392{height:39.264000px;}
.h3_c00392{height:39.984000px;}
.h4_c00392{height:43.260000px;}
.h6_c00392{height:43.740000px;}
.h1_c00392{height:1135.500000px;}
.h0_c00392{height:1135.506150px;}
.w0_c00392{width:893.950200px;}
.w1_c00392{width:894.000000px;}
.x0_c00392{left:0.000000px;}
.x4_c00392{left:128.626800px;}
.x5_c00392{left:141.382650px;}
.x7_c00392{left:145.752600px;}
.x2_c00392{left:188.061900px;}
.x3_c00392{left:190.513350px;}
.x6_c00392{left:321.801150px;}
.x1_c00392{left:800.165850px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls5_c00392{letter-spacing:-1.872000pt;}
.ls3_c00392{letter-spacing:-0.640000pt;}
.ls4_c00392{letter-spacing:-0.560000pt;}
.ls2_c00392{letter-spacing:-0.192000pt;}
.ls1_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:0.426667pt;}
.ws3_c00392{word-spacing:-9.120000pt;}
.ws1_c00392{word-spacing:-7.728000pt;}
.ws2_c00392{word-spacing:-5.766400pt;}
.ws0_c00392{word-spacing:-0.042667pt;}
.ws4_c00392{word-spacing:0.000000pt;}
.ws6_c00392{word-spacing:0.192000pt;}
.ws5_c00392{word-spacing:6.272000pt;}
._0_c00392{margin-left:-2449.134400pt;}
._4_c00392{margin-left:-6.174933pt;}
._8_c00392{margin-left:-4.464000pt;}
._1_c00392{margin-left:-2.005333pt;}
._3_c00392{margin-left:-1.066667pt;}
._2_c00392{width:0.896000pt;}
._9_c00392{width:2.656000pt;}
._7_c00392{width:6.912000pt;}
._5_c00392{width:49.488000pt;}
._6_c00392{width:52.565333pt;}
.fs5_c00392{font-size:27.200000pt;}
.fs6_c00392{font-size:32.000000pt;}
.fs3_c00392{font-size:37.333333pt;}
.fs0_c00392{font-size:42.666667pt;}
.fs4_c00392{font-size:48.000000pt;}
.fs2_c00392{font-size:50.666667pt;}
.fs1_c00392{font-size:53.333333pt;}
.y0_c00392{bottom:0.000000pt;}
.y1a_c00392{bottom:305.498000pt;}
.y19_c00392{bottom:317.498000pt;}
.y18_c00392{bottom:329.498000pt;}
.y17_c00392{bottom:353.057067pt;}
.y16_c00392{bottom:365.057067pt;}
.y15_c00392{bottom:388.616133pt;}
.y14_c00392{bottom:400.616133pt;}
.y13_c00392{bottom:412.616133pt;}
.y12_c00392{bottom:432.395600pt;}
.y11_c00392{bottom:448.395600pt;}
.y10_c00392{bottom:464.395600pt;}
.yf_c00392{bottom:487.954667pt;}
.ye_c00392{bottom:490.064933pt;}
.yc_c00392{bottom:755.569067pt;}
.yb_c00392{bottom:767.569067pt;}
.ya_c00392{bottom:779.569067pt;}
.y9_c00392{bottom:803.128133pt;}
.y8_c00392{bottom:815.128133pt;}
.y7_c00392{bottom:838.687200pt;}
.y6_c00392{bottom:850.687200pt;}
.y5_c00392{bottom:862.687200pt;}
.y4_c00392{bottom:882.466667pt;}
.y3_c00392{bottom:898.466667pt;}
.y2_c00392{bottom:922.025733pt;}
.yd_c00392{bottom:924.521600pt;}
.y1_c00392{bottom:972.089733pt;}
.h8_c00392{height:22.400000pt;}
.h7_c00392{height:26.917333pt;}
.h5_c00392{height:30.293333pt;}
.h2_c00392{height:34.901333pt;}
.h3_c00392{height:35.541333pt;}
.h4_c00392{height:38.453333pt;}
.h6_c00392{height:38.880000pt;}
.h1_c00392{height:1009.333333pt;}
.h0_c00392{height:1009.338800pt;}
.w0_c00392{width:794.622400pt;}
.w1_c00392{width:794.666667pt;}
.x0_c00392{left:0.000000pt;}
.x4_c00392{left:114.334933pt;}
.x5_c00392{left:125.673467pt;}
.x7_c00392{left:129.557867pt;}
.x2_c00392{left:167.166133pt;}
.x3_c00392{left:169.345200pt;}
.x6_c00392{left:286.045467pt;}
.x1_c00392{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00393;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.067000;font-style:normal;font-weight: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_c00393;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00393{font-family:ff7_c00393;line-height:0.710000;font-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_c00393{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls2_c00393{letter-spacing:-0.720000px;}
.ls3_c00393{letter-spacing:-0.630000px;}
.ls1_c00393{letter-spacing:-0.216000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00393{word-spacing:-6.487200px;}
.ws3_c00393{word-spacing:0.000000px;}
.ws5_c00393{word-spacing:0.216000px;}
.ws4_c00393{word-spacing:7.056000px;}
.ws0_c00393{word-spacing:1585.435200px;}
._3_c00393{margin-left:-7.042800px;}
._0_c00393{margin-left:-2.112000px;}
._1_c00393{margin-left:-1.104000px;}
._2_c00393{width:2.016000px;}
._6_c00393{width:7.776000px;}
._4_c00393{width:55.674000px;}
._5_c00393{width:59.136000px;}
.fc0_c00393{color:rgb(35,31,32);}
.fs5_c00393{font-size:30.600000px;}
.fs6_c00393{font-size:36.000000px;}
.fs3_c00393{font-size:42.000000px;}
.fs0_c00393{font-size:48.000000px;}
.fs4_c00393{font-size:54.000000px;}
.fs2_c00393{font-size:57.000000px;}
.fs1_c00393{font-size:60.000000px;}
.y0_c00393{bottom:0.000000px;}
.y18_c00393{bottom:347.955600px;}
.y17_c00393{bottom:361.455600px;}
.y16_c00393{bottom:374.955450px;}
.y15_c00393{bottom:401.459400px;}
.y14_c00393{bottom:414.959400px;}
.y13_c00393{bottom:428.459400px;}
.y12_c00393{bottom:454.963350px;}
.y11_c00393{bottom:468.463350px;}
.y10_c00393{bottom:481.963350px;}
.yf_c00393{bottom:504.215400px;}
.ye_c00393{bottom:522.215400px;}
.yd_c00393{bottom:548.719350px;}
.y19_c00393{bottom:806.530350px;}
.yc_c00393{bottom:850.431750px;}
.yb_c00393{bottom:863.931750px;}
.ya_c00393{bottom:890.435700px;}
.y9_c00393{bottom:903.935700px;}
.y8_c00393{bottom:917.435700px;}
.y7_c00393{bottom:943.939650px;}
.y6_c00393{bottom:957.439650px;}
.y5_c00393{bottom:970.939650px;}
.y4_c00393{bottom:993.191700px;}
.y3_c00393{bottom:1011.191700px;}
.y2_c00393{bottom:1037.695650px;}
.y1_c00393{bottom:1093.600950px;}
.h7_c00393{height:25.200000px;}
.h6_c00393{height:30.282000px;}
.h4_c00393{height:34.080000px;}
.h2_c00393{height:39.264000px;}
.h3_c00393{height:43.260000px;}
.h5_c00393{height:43.740000px;}
.h1_c00393{height:1135.500000px;}
.h0_c00393{height:1135.506150px;}
.w0_c00393{width:893.950200px;}
.w1_c00393{width:894.000000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:77.603100px;}
.x4_c00393{left:424.181100px;}
.x2_c00393{left:599.532150px;}
.x3_c00393{left:612.288150px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls2_c00393{letter-spacing:-0.640000pt;}
.ls3_c00393{letter-spacing:-0.560000pt;}
.ls1_c00393{letter-spacing:-0.192000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws1_c00393{word-spacing:-7.728000pt;}
.ws2_c00393{word-spacing:-5.766400pt;}
.ws3_c00393{word-spacing:0.000000pt;}
.ws5_c00393{word-spacing:0.192000pt;}
.ws4_c00393{word-spacing:6.272000pt;}
.ws0_c00393{word-spacing:1409.275733pt;}
._3_c00393{margin-left:-6.260267pt;}
._0_c00393{margin-left:-1.877333pt;}
._1_c00393{margin-left:-0.981333pt;}
._2_c00393{width:1.792000pt;}
._6_c00393{width:6.912000pt;}
._4_c00393{width:49.488000pt;}
._5_c00393{width:52.565333pt;}
.fs5_c00393{font-size:27.200000pt;}
.fs6_c00393{font-size:32.000000pt;}
.fs3_c00393{font-size:37.333333pt;}
.fs0_c00393{font-size:42.666667pt;}
.fs4_c00393{font-size:48.000000pt;}
.fs2_c00393{font-size:50.666667pt;}
.fs1_c00393{font-size:53.333333pt;}
.y0_c00393{bottom:0.000000pt;}
.y18_c00393{bottom:309.293867pt;}
.y17_c00393{bottom:321.293867pt;}
.y16_c00393{bottom:333.293733pt;}
.y15_c00393{bottom:356.852800pt;}
.y14_c00393{bottom:368.852800pt;}
.y13_c00393{bottom:380.852800pt;}
.y12_c00393{bottom:404.411867pt;}
.y11_c00393{bottom:416.411867pt;}
.y10_c00393{bottom:428.411867pt;}
.yf_c00393{bottom:448.191467pt;}
.ye_c00393{bottom:464.191467pt;}
.yd_c00393{bottom:487.750533pt;}
.y19_c00393{bottom:716.915867pt;}
.yc_c00393{bottom:755.939333pt;}
.yb_c00393{bottom:767.939333pt;}
.ya_c00393{bottom:791.498400pt;}
.y9_c00393{bottom:803.498400pt;}
.y8_c00393{bottom:815.498400pt;}
.y7_c00393{bottom:839.057467pt;}
.y6_c00393{bottom:851.057467pt;}
.y5_c00393{bottom:863.057467pt;}
.y4_c00393{bottom:882.837067pt;}
.y3_c00393{bottom:898.837067pt;}
.y2_c00393{bottom:922.396133pt;}
.y1_c00393{bottom:972.089733pt;}
.h7_c00393{height:22.400000pt;}
.h6_c00393{height:26.917333pt;}
.h4_c00393{height:30.293333pt;}
.h2_c00393{height:34.901333pt;}
.h3_c00393{height:38.453333pt;}
.h5_c00393{height:38.880000pt;}
.h1_c00393{height:1009.333333pt;}
.h0_c00393{height:1009.338800pt;}
.w0_c00393{width:794.622400pt;}
.w1_c00393{width:794.666667pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:68.980533pt;}
.x4_c00393{left:377.049867pt;}
.x2_c00393{left:532.917467pt;}
.x3_c00393{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:0.908000;font-style:normal;font-weight: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_c00394;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00394{font-family:ff7_c00394;line-height:1.067000;font-style:normal;font-weight: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_c00394;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00394{font-family:ff8_c00394;line-height:0.710000;font-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_c00394{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls2_c00394{letter-spacing:-0.864000px;}
.ls3_c00394{letter-spacing:-0.720000px;}
.ls4_c00394{letter-spacing:-0.630000px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00394{word-spacing:-11.502000px;}
.ws1_c00394{word-spacing:-8.694000px;}
.ws3_c00394{word-spacing:-6.487200px;}
.ws0_c00394{word-spacing:-0.048000px;}
.ws4_c00394{word-spacing:0.000000px;}
.ws5_c00394{word-spacing:7.056000px;}
._0_c00394{margin-left:-2755.276200px;}
._4_c00394{margin-left:-6.946800px;}
._1_c00394{margin-left:-2.256000px;}
._3_c00394{margin-left:-1.200000px;}
._2_c00394{width:1.008000px;}
._7_c00394{width:7.776000px;}
._5_c00394{width:55.674000px;}
._6_c00394{width:59.136000px;}
.fc0_c00394{color:rgb(35,31,32);}
.fs5_c00394{font-size:30.600000px;}
.fs6_c00394{font-size:36.000000px;}
.fs3_c00394{font-size:42.000000px;}
.fs0_c00394{font-size:48.000000px;}
.fs4_c00394{font-size:54.000000px;}
.fs2_c00394{font-size:57.000000px;}
.fs1_c00394{font-size:60.000000px;}
.y0_c00394{bottom:0.000000px;}
.y1a_c00394{bottom:361.685250px;}
.y19_c00394{bottom:375.185250px;}
.y18_c00394{bottom:388.685250px;}
.y17_c00394{bottom:415.189200px;}
.y16_c00394{bottom:428.689200px;}
.y15_c00394{bottom:455.193150px;}
.y14_c00394{bottom:468.693150px;}
.y13_c00394{bottom:482.193150px;}
.y12_c00394{bottom:504.445050px;}
.y11_c00394{bottom:522.445050px;}
.y10_c00394{bottom:548.949000px;}
.yf_c00394{bottom:551.323050px;}
.ye_c00394{bottom:818.515200px;}
.yd_c00394{bottom:832.015200px;}
.yc_c00394{bottom:845.515200px;}
.yb_c00394{bottom:872.019150px;}
.ya_c00394{bottom:885.519150px;}
.y9_c00394{bottom:899.019150px;}
.y8_c00394{bottom:925.523100px;}
.y7_c00394{bottom:939.023100px;}
.y6_c00394{bottom:952.523100px;}
.y5_c00394{bottom:974.775000px;}
.y4_c00394{bottom:992.775000px;}
.y3_c00394{bottom:1010.775000px;}
.y2_c00394{bottom:1037.278950px;}
.y1_c00394{bottom:1093.600950px;}
.h8_c00394{height:25.200000px;}
.h7_c00394{height:30.282000px;}
.h5_c00394{height:34.080000px;}
.h2_c00394{height:39.264000px;}
.h3_c00394{height:39.984000px;}
.h4_c00394{height:43.260000px;}
.h6_c00394{height:43.740000px;}
.h1_c00394{height:1135.500000px;}
.h0_c00394{height:1135.506150px;}
.w0_c00394{width:893.950200px;}
.w1_c00394{width:894.000000px;}
.x0_c00394{left:0.000000px;}
.x4_c00394{left:128.626800px;}
.x5_c00394{left:141.382650px;}
.x6_c00394{left:145.634700px;}
.x2_c00394{left:188.061900px;}
.x3_c00394{left:190.513350px;}
.x7_c00394{left:321.919050px;}
.x1_c00394{left:800.165850px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls2_c00394{letter-spacing:-0.768000pt;}
.ls3_c00394{letter-spacing:-0.640000pt;}
.ls4_c00394{letter-spacing:-0.560000pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.426667pt;}
.ws2_c00394{word-spacing:-10.224000pt;}
.ws1_c00394{word-spacing:-7.728000pt;}
.ws3_c00394{word-spacing:-5.766400pt;}
.ws0_c00394{word-spacing:-0.042667pt;}
.ws4_c00394{word-spacing:0.000000pt;}
.ws5_c00394{word-spacing:6.272000pt;}
._0_c00394{margin-left:-2449.134400pt;}
._4_c00394{margin-left:-6.174933pt;}
._1_c00394{margin-left:-2.005333pt;}
._3_c00394{margin-left:-1.066667pt;}
._2_c00394{width:0.896000pt;}
._7_c00394{width:6.912000pt;}
._5_c00394{width:49.488000pt;}
._6_c00394{width:52.565333pt;}
.fs5_c00394{font-size:27.200000pt;}
.fs6_c00394{font-size:32.000000pt;}
.fs3_c00394{font-size:37.333333pt;}
.fs0_c00394{font-size:42.666667pt;}
.fs4_c00394{font-size:48.000000pt;}
.fs2_c00394{font-size:50.666667pt;}
.fs1_c00394{font-size:53.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y1a_c00394{bottom:321.498000pt;}
.y19_c00394{bottom:333.498000pt;}
.y18_c00394{bottom:345.498000pt;}
.y17_c00394{bottom:369.057067pt;}
.y16_c00394{bottom:381.057067pt;}
.y15_c00394{bottom:404.616133pt;}
.y14_c00394{bottom:416.616133pt;}
.y13_c00394{bottom:428.616133pt;}
.y12_c00394{bottom:448.395600pt;}
.y11_c00394{bottom:464.395600pt;}
.y10_c00394{bottom:487.954667pt;}
.yf_c00394{bottom:490.064933pt;}
.ye_c00394{bottom:727.569067pt;}
.yd_c00394{bottom:739.569067pt;}
.yc_c00394{bottom:751.569067pt;}
.yb_c00394{bottom:775.128133pt;}
.ya_c00394{bottom:787.128133pt;}
.y9_c00394{bottom:799.128133pt;}
.y8_c00394{bottom:822.687200pt;}
.y7_c00394{bottom:834.687200pt;}
.y6_c00394{bottom:846.687200pt;}
.y5_c00394{bottom:866.466667pt;}
.y4_c00394{bottom:882.466667pt;}
.y3_c00394{bottom:898.466667pt;}
.y2_c00394{bottom:922.025733pt;}
.y1_c00394{bottom:972.089733pt;}
.h8_c00394{height:22.400000pt;}
.h7_c00394{height:26.917333pt;}
.h5_c00394{height:30.293333pt;}
.h2_c00394{height:34.901333pt;}
.h3_c00394{height:35.541333pt;}
.h4_c00394{height:38.453333pt;}
.h6_c00394{height:38.880000pt;}
.h1_c00394{height:1009.333333pt;}
.h0_c00394{height:1009.338800pt;}
.w0_c00394{width:794.622400pt;}
.w1_c00394{width:794.666667pt;}
.x0_c00394{left:0.000000pt;}
.x4_c00394{left:114.334933pt;}
.x5_c00394{left:125.673467pt;}
.x6_c00394{left:129.453067pt;}
.x2_c00394{left:167.166133pt;}
.x3_c00394{left:169.345200pt;}
.x7_c00394{left:286.150267pt;}
.x1_c00394{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00395;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls1_c00395{letter-spacing:-0.720000px;}
.ls2_c00395{letter-spacing:-0.630000px;}
.ls3_c00395{letter-spacing:-0.216000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00395{word-spacing:-8.694000px;}
.ws2_c00395{word-spacing:0.000000px;}
.ws4_c00395{word-spacing:0.216000px;}
.ws3_c00395{word-spacing:7.056000px;}
.ws0_c00395{word-spacing:1585.435200px;}
._3_c00395{margin-left:-7.042800px;}
._0_c00395{margin-left:-2.112000px;}
._1_c00395{margin-left:-1.104000px;}
._2_c00395{width:2.016000px;}
._6_c00395{width:7.776000px;}
._4_c00395{width:55.674000px;}
._5_c00395{width:59.136000px;}
.fc0_c00395{color:rgb(35,31,32);}
.fs3_c00395{font-size:42.000000px;}
.fs0_c00395{font-size:48.000000px;}
.fs4_c00395{font-size:54.000000px;}
.fs2_c00395{font-size:57.000000px;}
.fs1_c00395{font-size:60.000000px;}
.y0_c00395{bottom:0.000000px;}
.y19_c00395{bottom:348.168150px;}
.y18_c00395{bottom:361.668150px;}
.y17_c00395{bottom:375.168000px;}
.y16_c00395{bottom:401.672100px;}
.y15_c00395{bottom:415.172100px;}
.y14_c00395{bottom:428.672100px;}
.y13_c00395{bottom:455.175900px;}
.y12_c00395{bottom:468.675900px;}
.y11_c00395{bottom:482.175900px;}
.y10_c00395{bottom:504.427950px;}
.yf_c00395{bottom:522.427950px;}
.ye_c00395{bottom:548.931900px;}
.yd_c00395{bottom:837.144300px;}
.yc_c00395{bottom:850.644300px;}
.yb_c00395{bottom:864.144300px;}
.ya_c00395{bottom:890.648250px;}
.y9_c00395{bottom:904.148250px;}
.y8_c00395{bottom:917.648250px;}
.y7_c00395{bottom:944.152200px;}
.y6_c00395{bottom:957.652200px;}
.y5_c00395{bottom:971.152200px;}
.y4_c00395{bottom:993.404250px;}
.y3_c00395{bottom:1011.404250px;}
.y2_c00395{bottom:1037.908200px;}
.y1_c00395{bottom:1093.600950px;}
.h6_c00395{height:30.282000px;}
.h4_c00395{height:34.080000px;}
.h2_c00395{height:39.264000px;}
.h3_c00395{height:43.260000px;}
.h5_c00395{height:43.740000px;}
.h1_c00395{height:1135.500000px;}
.h0_c00395{height:1135.506150px;}
.w0_c00395{width:893.950200px;}
.w1_c00395{width:894.000000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:77.603100px;}
.x2_c00395{left:599.532150px;}
.x3_c00395{left:612.288150px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls1_c00395{letter-spacing:-0.640000pt;}
.ls2_c00395{letter-spacing:-0.560000pt;}
.ls3_c00395{letter-spacing:-0.192000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws1_c00395{word-spacing:-7.728000pt;}
.ws2_c00395{word-spacing:0.000000pt;}
.ws4_c00395{word-spacing:0.192000pt;}
.ws3_c00395{word-spacing:6.272000pt;}
.ws0_c00395{word-spacing:1409.275733pt;}
._3_c00395{margin-left:-6.260267pt;}
._0_c00395{margin-left:-1.877333pt;}
._1_c00395{margin-left:-0.981333pt;}
._2_c00395{width:1.792000pt;}
._6_c00395{width:6.912000pt;}
._4_c00395{width:49.488000pt;}
._5_c00395{width:52.565333pt;}
.fs3_c00395{font-size:37.333333pt;}
.fs0_c00395{font-size:42.666667pt;}
.fs4_c00395{font-size:48.000000pt;}
.fs2_c00395{font-size:50.666667pt;}
.fs1_c00395{font-size:53.333333pt;}
.y0_c00395{bottom:0.000000pt;}
.y19_c00395{bottom:309.482800pt;}
.y18_c00395{bottom:321.482800pt;}
.y17_c00395{bottom:333.482667pt;}
.y16_c00395{bottom:357.041867pt;}
.y15_c00395{bottom:369.041867pt;}
.y14_c00395{bottom:381.041867pt;}
.y13_c00395{bottom:404.600800pt;}
.y12_c00395{bottom:416.600800pt;}
.y11_c00395{bottom:428.600800pt;}
.y10_c00395{bottom:448.380400pt;}
.yf_c00395{bottom:464.380400pt;}
.ye_c00395{bottom:487.939467pt;}
.yd_c00395{bottom:744.128267pt;}
.yc_c00395{bottom:756.128267pt;}
.yb_c00395{bottom:768.128267pt;}
.ya_c00395{bottom:791.687333pt;}
.y9_c00395{bottom:803.687333pt;}
.y8_c00395{bottom:815.687333pt;}
.y7_c00395{bottom:839.246400pt;}
.y6_c00395{bottom:851.246400pt;}
.y5_c00395{bottom:863.246400pt;}
.y4_c00395{bottom:883.026000pt;}
.y3_c00395{bottom:899.026000pt;}
.y2_c00395{bottom:922.585067pt;}
.y1_c00395{bottom:972.089733pt;}
.h6_c00395{height:26.917333pt;}
.h4_c00395{height:30.293333pt;}
.h2_c00395{height:34.901333pt;}
.h3_c00395{height:38.453333pt;}
.h5_c00395{height:38.880000pt;}
.h1_c00395{height:1009.333333pt;}
.h0_c00395{height:1009.338800pt;}
.w0_c00395{width:794.622400pt;}
.w1_c00395{width:794.666667pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:68.980533pt;}
.x2_c00395{left:532.917467pt;}
.x3_c00395{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00396;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00396;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00396{font-family:ff7_c00396;line-height:1.067000;font-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_c00396{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls2_c00396{letter-spacing:-0.720000px;}
.ls3_c00396{letter-spacing:-0.630000px;}
.ls4_c00396{letter-spacing:-0.216000px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00396{word-spacing:-0.048000px;}
.ws2_c00396{word-spacing:0.000000px;}
.ws4_c00396{word-spacing:0.216000px;}
.ws3_c00396{word-spacing:7.056000px;}
._0_c00396{margin-left:-2755.276200px;}
._4_c00396{margin-left:-6.946800px;}
._1_c00396{margin-left:-2.256000px;}
._3_c00396{margin-left:-1.200000px;}
._2_c00396{width:1.008000px;}
._7_c00396{width:7.776000px;}
._5_c00396{width:55.674000px;}
._6_c00396{width:59.136000px;}
.fc0_c00396{color:rgb(35,31,32);}
.fs3_c00396{font-size:42.000000px;}
.fs0_c00396{font-size:48.000000px;}
.fs4_c00396{font-size:54.000000px;}
.fs2_c00396{font-size:57.000000px;}
.fs1_c00396{font-size:60.000000px;}
.y0_c00396{bottom:0.000000px;}
.y19_c00396{bottom:348.397800px;}
.y18_c00396{bottom:361.897800px;}
.y17_c00396{bottom:375.397800px;}
.y16_c00396{bottom:401.901750px;}
.y15_c00396{bottom:415.401750px;}
.y14_c00396{bottom:428.901750px;}
.y13_c00396{bottom:455.405700px;}
.y12_c00396{bottom:468.905700px;}
.y11_c00396{bottom:482.405700px;}
.y10_c00396{bottom:504.657600px;}
.yf_c00396{bottom:522.657600px;}
.ye_c00396{bottom:549.161550px;}
.yd_c00396{bottom:836.727750px;}
.yc_c00396{bottom:850.227750px;}
.yb_c00396{bottom:863.727750px;}
.ya_c00396{bottom:890.231700px;}
.y9_c00396{bottom:903.731700px;}
.y8_c00396{bottom:917.231700px;}
.y7_c00396{bottom:943.735650px;}
.y6_c00396{bottom:957.235650px;}
.y5_c00396{bottom:970.735650px;}
.y4_c00396{bottom:992.987550px;}
.y3_c00396{bottom:1010.987550px;}
.y2_c00396{bottom:1037.491500px;}
.y1_c00396{bottom:1093.600950px;}
.h7_c00396{height:30.282000px;}
.h5_c00396{height:34.080000px;}
.h2_c00396{height:39.264000px;}
.h3_c00396{height:39.984000px;}
.h4_c00396{height:43.260000px;}
.h6_c00396{height:43.740000px;}
.h1_c00396{height:1135.500000px;}
.h0_c00396{height:1135.506150px;}
.w0_c00396{width:893.950200px;}
.w1_c00396{width:894.000000px;}
.x0_c00396{left:0.000000px;}
.x4_c00396{left:128.626800px;}
.x5_c00396{left:141.382650px;}
.x2_c00396{left:188.061900px;}
.x3_c00396{left:190.513350px;}
.x1_c00396{left:800.165850px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls2_c00396{letter-spacing:-0.640000pt;}
.ls3_c00396{letter-spacing:-0.560000pt;}
.ls4_c00396{letter-spacing:-0.192000pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.426667pt;}
.ws1_c00396{word-spacing:-7.728000pt;}
.ws0_c00396{word-spacing:-0.042667pt;}
.ws2_c00396{word-spacing:0.000000pt;}
.ws4_c00396{word-spacing:0.192000pt;}
.ws3_c00396{word-spacing:6.272000pt;}
._0_c00396{margin-left:-2449.134400pt;}
._4_c00396{margin-left:-6.174933pt;}
._1_c00396{margin-left:-2.005333pt;}
._3_c00396{margin-left:-1.066667pt;}
._2_c00396{width:0.896000pt;}
._7_c00396{width:6.912000pt;}
._5_c00396{width:49.488000pt;}
._6_c00396{width:52.565333pt;}
.fs3_c00396{font-size:37.333333pt;}
.fs0_c00396{font-size:42.666667pt;}
.fs4_c00396{font-size:48.000000pt;}
.fs2_c00396{font-size:50.666667pt;}
.fs1_c00396{font-size:53.333333pt;}
.y0_c00396{bottom:0.000000pt;}
.y19_c00396{bottom:309.686933pt;}
.y18_c00396{bottom:321.686933pt;}
.y17_c00396{bottom:333.686933pt;}
.y16_c00396{bottom:357.246000pt;}
.y15_c00396{bottom:369.246000pt;}
.y14_c00396{bottom:381.246000pt;}
.y13_c00396{bottom:404.805067pt;}
.y12_c00396{bottom:416.805067pt;}
.y11_c00396{bottom:428.805067pt;}
.y10_c00396{bottom:448.584533pt;}
.yf_c00396{bottom:464.584533pt;}
.ye_c00396{bottom:488.143600pt;}
.yd_c00396{bottom:743.758000pt;}
.yc_c00396{bottom:755.758000pt;}
.yb_c00396{bottom:767.758000pt;}
.ya_c00396{bottom:791.317067pt;}
.y9_c00396{bottom:803.317067pt;}
.y8_c00396{bottom:815.317067pt;}
.y7_c00396{bottom:838.876133pt;}
.y6_c00396{bottom:850.876133pt;}
.y5_c00396{bottom:862.876133pt;}
.y4_c00396{bottom:882.655600pt;}
.y3_c00396{bottom:898.655600pt;}
.y2_c00396{bottom:922.214667pt;}
.y1_c00396{bottom:972.089733pt;}
.h7_c00396{height:26.917333pt;}
.h5_c00396{height:30.293333pt;}
.h2_c00396{height:34.901333pt;}
.h3_c00396{height:35.541333pt;}
.h4_c00396{height:38.453333pt;}
.h6_c00396{height:38.880000pt;}
.h1_c00396{height:1009.333333pt;}
.h0_c00396{height:1009.338800pt;}
.w0_c00396{width:794.622400pt;}
.w1_c00396{width:794.666667pt;}
.x0_c00396{left:0.000000pt;}
.x4_c00396{left:114.334933pt;}
.x5_c00396{left:125.673467pt;}
.x2_c00396{left:167.166133pt;}
.x3_c00396{left:169.345200pt;}
.x1_c00396{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00397;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00397{font-family:ff7_c00397;line-height:0.710000;font-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_c00397{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls2_c00397{letter-spacing:-0.720000px;}
.ls3_c00397{letter-spacing:-0.630000px;}
.ls1_c00397{letter-spacing:-0.216000px;}
.ls0_c00397{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00397{word-spacing:-6.487200px;}
.ws3_c00397{word-spacing:0.000000px;}
.ws4_c00397{word-spacing:7.056000px;}
.ws5_c00397{word-spacing:55.890000px;}
.ws0_c00397{word-spacing:1585.435200px;}
._3_c00397{margin-left:-7.042800px;}
._0_c00397{margin-left:-2.112000px;}
._1_c00397{margin-left:-1.104000px;}
._2_c00397{width:2.016000px;}
._5_c00397{width:7.776000px;}
._6_c00397{width:55.674000px;}
._4_c00397{width:59.136000px;}
.fc0_c00397{color:rgb(35,31,32);}
.fs5_c00397{font-size:30.600000px;}
.fs6_c00397{font-size:36.000000px;}
.fs3_c00397{font-size:42.000000px;}
.fs0_c00397{font-size:48.000000px;}
.fs4_c00397{font-size:54.000000px;}
.fs2_c00397{font-size:57.000000px;}
.fs1_c00397{font-size:60.000000px;}
.y0_c00397{bottom:0.000000px;}
.y18_c00397{bottom:348.168150px;}
.y17_c00397{bottom:361.668150px;}
.y16_c00397{bottom:375.168000px;}
.y15_c00397{bottom:401.672100px;}
.y14_c00397{bottom:415.172100px;}
.y13_c00397{bottom:428.672100px;}
.y12_c00397{bottom:455.175900px;}
.y11_c00397{bottom:468.675900px;}
.y10_c00397{bottom:482.175900px;}
.yf_c00397{bottom:504.427950px;}
.ye_c00397{bottom:522.427950px;}
.yd_c00397{bottom:548.931900px;}
.yc_c00397{bottom:850.644300px;}
.yb_c00397{bottom:864.144300px;}
.ya_c00397{bottom:877.644300px;}
.y9_c00397{bottom:904.148250px;}
.y8_c00397{bottom:917.648250px;}
.y7_c00397{bottom:944.152200px;}
.y6_c00397{bottom:957.652200px;}
.y5_c00397{bottom:971.152200px;}
.y4_c00397{bottom:993.404250px;}
.y3_c00397{bottom:1011.404250px;}
.y2_c00397{bottom:1037.908200px;}
.y19_c00397{bottom:1040.243100px;}
.y1_c00397{bottom:1093.600950px;}
.h7_c00397{height:25.200000px;}
.h6_c00397{height:30.282000px;}
.h4_c00397{height:34.080000px;}
.h2_c00397{height:39.264000px;}
.h3_c00397{height:43.260000px;}
.h5_c00397{height:43.740000px;}
.h1_c00397{height:1135.500000px;}
.h0_c00397{height:1135.506150px;}
.w0_c00397{width:893.950200px;}
.w1_c00397{width:894.000000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:77.603100px;}
.x4_c00397{left:424.138500px;}
.x2_c00397{left:599.532150px;}
.x3_c00397{left:612.288150px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls2_c00397{letter-spacing:-0.640000pt;}
.ls3_c00397{letter-spacing:-0.560000pt;}
.ls1_c00397{letter-spacing:-0.192000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws1_c00397{word-spacing:-7.728000pt;}
.ws2_c00397{word-spacing:-5.766400pt;}
.ws3_c00397{word-spacing:0.000000pt;}
.ws4_c00397{word-spacing:6.272000pt;}
.ws5_c00397{word-spacing:49.680000pt;}
.ws0_c00397{word-spacing:1409.275733pt;}
._3_c00397{margin-left:-6.260267pt;}
._0_c00397{margin-left:-1.877333pt;}
._1_c00397{margin-left:-0.981333pt;}
._2_c00397{width:1.792000pt;}
._5_c00397{width:6.912000pt;}
._6_c00397{width:49.488000pt;}
._4_c00397{width:52.565333pt;}
.fs5_c00397{font-size:27.200000pt;}
.fs6_c00397{font-size:32.000000pt;}
.fs3_c00397{font-size:37.333333pt;}
.fs0_c00397{font-size:42.666667pt;}
.fs4_c00397{font-size:48.000000pt;}
.fs2_c00397{font-size:50.666667pt;}
.fs1_c00397{font-size:53.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y18_c00397{bottom:309.482800pt;}
.y17_c00397{bottom:321.482800pt;}
.y16_c00397{bottom:333.482667pt;}
.y15_c00397{bottom:357.041867pt;}
.y14_c00397{bottom:369.041867pt;}
.y13_c00397{bottom:381.041867pt;}
.y12_c00397{bottom:404.600800pt;}
.y11_c00397{bottom:416.600800pt;}
.y10_c00397{bottom:428.600800pt;}
.yf_c00397{bottom:448.380400pt;}
.ye_c00397{bottom:464.380400pt;}
.yd_c00397{bottom:487.939467pt;}
.yc_c00397{bottom:756.128267pt;}
.yb_c00397{bottom:768.128267pt;}
.ya_c00397{bottom:780.128267pt;}
.y9_c00397{bottom:803.687333pt;}
.y8_c00397{bottom:815.687333pt;}
.y7_c00397{bottom:839.246400pt;}
.y6_c00397{bottom:851.246400pt;}
.y5_c00397{bottom:863.246400pt;}
.y4_c00397{bottom:883.026000pt;}
.y3_c00397{bottom:899.026000pt;}
.y2_c00397{bottom:922.585067pt;}
.y19_c00397{bottom:924.660533pt;}
.y1_c00397{bottom:972.089733pt;}
.h7_c00397{height:22.400000pt;}
.h6_c00397{height:26.917333pt;}
.h4_c00397{height:30.293333pt;}
.h2_c00397{height:34.901333pt;}
.h3_c00397{height:38.453333pt;}
.h5_c00397{height:38.880000pt;}
.h1_c00397{height:1009.333333pt;}
.h0_c00397{height:1009.338800pt;}
.w0_c00397{width:794.622400pt;}
.w1_c00397{width:794.666667pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:68.980533pt;}
.x4_c00397{left:377.012000pt;}
.x2_c00397{left:532.917467pt;}
.x3_c00397{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00398;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00398;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00398{font-family:ff7_c00398;line-height:1.067000;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00398{font-family:ff8_c00398;line-height:0.710000;font-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_c00398{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls3_c00398{letter-spacing:-0.720000px;}
.ls4_c00398{letter-spacing:-0.630000px;}
.ls2_c00398{letter-spacing:-0.216000px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00398{word-spacing:-6.487200px;}
.ws0_c00398{word-spacing:-0.048000px;}
.ws3_c00398{word-spacing:0.000000px;}
.ws5_c00398{word-spacing:0.216000px;}
.ws4_c00398{word-spacing:7.056000px;}
._0_c00398{margin-left:-2755.276200px;}
._4_c00398{margin-left:-6.946800px;}
._1_c00398{margin-left:-2.256000px;}
._3_c00398{margin-left:-1.200000px;}
._2_c00398{width:1.008000px;}
._7_c00398{width:7.776000px;}
._5_c00398{width:55.674000px;}
._6_c00398{width:59.136000px;}
.fc0_c00398{color:rgb(35,31,32);}
.fs5_c00398{font-size:30.600000px;}
.fs6_c00398{font-size:36.000000px;}
.fs3_c00398{font-size:42.000000px;}
.fs0_c00398{font-size:48.000000px;}
.fs4_c00398{font-size:54.000000px;}
.fs2_c00398{font-size:57.000000px;}
.fs1_c00398{font-size:60.000000px;}
.y0_c00398{bottom:0.000000px;}
.yf_c00398{bottom:317.979150px;}
.y1a_c00398{bottom:357.397800px;}
.y19_c00398{bottom:370.897800px;}
.y18_c00398{bottom:397.401750px;}
.y17_c00398{bottom:410.901750px;}
.y16_c00398{bottom:437.405700px;}
.y15_c00398{bottom:450.905700px;}
.y14_c00398{bottom:464.405700px;}
.y13_c00398{bottom:486.657600px;}
.y12_c00398{bottom:504.657600px;}
.y11_c00398{bottom:522.657600px;}
.y10_c00398{bottom:549.161550px;}
.ye_c00398{bottom:551.535600px;}
.yc_c00398{bottom:850.227750px;}
.yb_c00398{bottom:863.727750px;}
.ya_c00398{bottom:877.227750px;}
.y9_c00398{bottom:903.731700px;}
.y8_c00398{bottom:917.231700px;}
.y7_c00398{bottom:943.735650px;}
.y6_c00398{bottom:957.235650px;}
.y5_c00398{bottom:970.735650px;}
.y4_c00398{bottom:992.987550px;}
.y3_c00398{bottom:1010.987550px;}
.y2_c00398{bottom:1037.491500px;}
.yd_c00398{bottom:1040.299350px;}
.y1_c00398{bottom:1093.600950px;}
.h8_c00398{height:25.200000px;}
.h7_c00398{height:30.282000px;}
.h5_c00398{height:34.080000px;}
.h2_c00398{height:39.264000px;}
.h3_c00398{height:39.984000px;}
.h4_c00398{height:43.260000px;}
.h6_c00398{height:43.740000px;}
.h1_c00398{height:1135.500000px;}
.h0_c00398{height:1135.506150px;}
.w0_c00398{width:893.950200px;}
.w1_c00398{width:894.000000px;}
.x0_c00398{left:0.000000px;}
.x4_c00398{left:128.626800px;}
.x5_c00398{left:141.382650px;}
.x7_c00398{left:145.752600px;}
.x2_c00398{left:188.061900px;}
.x3_c00398{left:190.513350px;}
.x6_c00398{left:321.801150px;}
.x1_c00398{left:800.165850px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls3_c00398{letter-spacing:-0.640000pt;}
.ls4_c00398{letter-spacing:-0.560000pt;}
.ls2_c00398{letter-spacing:-0.192000pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:0.426667pt;}
.ws1_c00398{word-spacing:-7.728000pt;}
.ws2_c00398{word-spacing:-5.766400pt;}
.ws0_c00398{word-spacing:-0.042667pt;}
.ws3_c00398{word-spacing:0.000000pt;}
.ws5_c00398{word-spacing:0.192000pt;}
.ws4_c00398{word-spacing:6.272000pt;}
._0_c00398{margin-left:-2449.134400pt;}
._4_c00398{margin-left:-6.174933pt;}
._1_c00398{margin-left:-2.005333pt;}
._3_c00398{margin-left:-1.066667pt;}
._2_c00398{width:0.896000pt;}
._7_c00398{width:6.912000pt;}
._5_c00398{width:49.488000pt;}
._6_c00398{width:52.565333pt;}
.fs5_c00398{font-size:27.200000pt;}
.fs6_c00398{font-size:32.000000pt;}
.fs3_c00398{font-size:37.333333pt;}
.fs0_c00398{font-size:42.666667pt;}
.fs4_c00398{font-size:48.000000pt;}
.fs2_c00398{font-size:50.666667pt;}
.fs1_c00398{font-size:53.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.yf_c00398{bottom:282.648133pt;}
.y1a_c00398{bottom:317.686933pt;}
.y19_c00398{bottom:329.686933pt;}
.y18_c00398{bottom:353.246000pt;}
.y17_c00398{bottom:365.246000pt;}
.y16_c00398{bottom:388.805067pt;}
.y15_c00398{bottom:400.805067pt;}
.y14_c00398{bottom:412.805067pt;}
.y13_c00398{bottom:432.584533pt;}
.y12_c00398{bottom:448.584533pt;}
.y11_c00398{bottom:464.584533pt;}
.y10_c00398{bottom:488.143600pt;}
.ye_c00398{bottom:490.253867pt;}
.yc_c00398{bottom:755.758000pt;}
.yb_c00398{bottom:767.758000pt;}
.ya_c00398{bottom:779.758000pt;}
.y9_c00398{bottom:803.317067pt;}
.y8_c00398{bottom:815.317067pt;}
.y7_c00398{bottom:838.876133pt;}
.y6_c00398{bottom:850.876133pt;}
.y5_c00398{bottom:862.876133pt;}
.y4_c00398{bottom:882.655600pt;}
.y3_c00398{bottom:898.655600pt;}
.y2_c00398{bottom:922.214667pt;}
.yd_c00398{bottom:924.710533pt;}
.y1_c00398{bottom:972.089733pt;}
.h8_c00398{height:22.400000pt;}
.h7_c00398{height:26.917333pt;}
.h5_c00398{height:30.293333pt;}
.h2_c00398{height:34.901333pt;}
.h3_c00398{height:35.541333pt;}
.h4_c00398{height:38.453333pt;}
.h6_c00398{height:38.880000pt;}
.h1_c00398{height:1009.333333pt;}
.h0_c00398{height:1009.338800pt;}
.w0_c00398{width:794.622400pt;}
.w1_c00398{width:794.666667pt;}
.x0_c00398{left:0.000000pt;}
.x4_c00398{left:114.334933pt;}
.x5_c00398{left:125.673467pt;}
.x7_c00398{left:129.557867pt;}
.x2_c00398{left:167.166133pt;}
.x3_c00398{left:169.345200pt;}
.x6_c00398{left:286.045467pt;}
.x1_c00398{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00399;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00399;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00399{font-family:ff7_c00399;line-height:0.710000;font-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_c00399{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls2_c00399{letter-spacing:-0.720000px;}
.ls3_c00399{letter-spacing:-0.630000px;}
.ls1_c00399{letter-spacing:-0.540000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-8.694000px;}
.ws2_c00399{word-spacing:-6.487200px;}
.ws3_c00399{word-spacing:0.000000px;}
.ws5_c00399{word-spacing:0.540000px;}
.ws4_c00399{word-spacing:7.056000px;}
.ws0_c00399{word-spacing:1585.435200px;}
._3_c00399{margin-left:-7.042800px;}
._0_c00399{margin-left:-2.112000px;}
._1_c00399{margin-left:-1.104000px;}
._2_c00399{width:2.016000px;}
._6_c00399{width:7.776000px;}
._4_c00399{width:55.674000px;}
._5_c00399{width:59.136000px;}
.fc0_c00399{color:rgb(35,31,32);}
.fs5_c00399{font-size:30.600000px;}
.fs6_c00399{font-size:36.000000px;}
.fs3_c00399{font-size:42.000000px;}
.fs0_c00399{font-size:48.000000px;}
.fs4_c00399{font-size:54.000000px;}
.fs2_c00399{font-size:57.000000px;}
.fs1_c00399{font-size:60.000000px;}
.y0_c00399{bottom:0.000000px;}
.y18_c00399{bottom:348.168150px;}
.y17_c00399{bottom:361.668150px;}
.y16_c00399{bottom:375.168000px;}
.y15_c00399{bottom:401.672100px;}
.y14_c00399{bottom:415.172100px;}
.y13_c00399{bottom:428.672100px;}
.y12_c00399{bottom:455.175900px;}
.y11_c00399{bottom:468.675900px;}
.y10_c00399{bottom:482.175900px;}
.yf_c00399{bottom:504.427950px;}
.ye_c00399{bottom:522.427950px;}
.yd_c00399{bottom:548.931900px;}
.yc_c00399{bottom:850.644300px;}
.yb_c00399{bottom:864.144300px;}
.ya_c00399{bottom:877.644300px;}
.y9_c00399{bottom:904.148250px;}
.y8_c00399{bottom:917.648250px;}
.y7_c00399{bottom:944.152200px;}
.y6_c00399{bottom:957.652200px;}
.y5_c00399{bottom:971.152200px;}
.y4_c00399{bottom:993.404250px;}
.y3_c00399{bottom:1011.404250px;}
.y2_c00399{bottom:1037.908200px;}
.y19_c00399{bottom:1040.243100px;}
.y1_c00399{bottom:1093.600950px;}
.h7_c00399{height:25.200000px;}
.h6_c00399{height:30.282000px;}
.h4_c00399{height:34.080000px;}
.h2_c00399{height:39.264000px;}
.h3_c00399{height:43.260000px;}
.h5_c00399{height:43.740000px;}
.h1_c00399{height:1135.500000px;}
.h0_c00399{height:1135.506150px;}
.w0_c00399{width:893.950200px;}
.w1_c00399{width:894.000000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:77.603100px;}
.x4_c00399{left:424.138500px;}
.x2_c00399{left:599.532150px;}
.x3_c00399{left:612.288150px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls2_c00399{letter-spacing:-0.640000pt;}
.ls3_c00399{letter-spacing:-0.560000pt;}
.ls1_c00399{letter-spacing:-0.480000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws1_c00399{word-spacing:-7.728000pt;}
.ws2_c00399{word-spacing:-5.766400pt;}
.ws3_c00399{word-spacing:0.000000pt;}
.ws5_c00399{word-spacing:0.480000pt;}
.ws4_c00399{word-spacing:6.272000pt;}
.ws0_c00399{word-spacing:1409.275733pt;}
._3_c00399{margin-left:-6.260267pt;}
._0_c00399{margin-left:-1.877333pt;}
._1_c00399{margin-left:-0.981333pt;}
._2_c00399{width:1.792000pt;}
._6_c00399{width:6.912000pt;}
._4_c00399{width:49.488000pt;}
._5_c00399{width:52.565333pt;}
.fs5_c00399{font-size:27.200000pt;}
.fs6_c00399{font-size:32.000000pt;}
.fs3_c00399{font-size:37.333333pt;}
.fs0_c00399{font-size:42.666667pt;}
.fs4_c00399{font-size:48.000000pt;}
.fs2_c00399{font-size:50.666667pt;}
.fs1_c00399{font-size:53.333333pt;}
.y0_c00399{bottom:0.000000pt;}
.y18_c00399{bottom:309.482800pt;}
.y17_c00399{bottom:321.482800pt;}
.y16_c00399{bottom:333.482667pt;}
.y15_c00399{bottom:357.041867pt;}
.y14_c00399{bottom:369.041867pt;}
.y13_c00399{bottom:381.041867pt;}
.y12_c00399{bottom:404.600800pt;}
.y11_c00399{bottom:416.600800pt;}
.y10_c00399{bottom:428.600800pt;}
.yf_c00399{bottom:448.380400pt;}
.ye_c00399{bottom:464.380400pt;}
.yd_c00399{bottom:487.939467pt;}
.yc_c00399{bottom:756.128267pt;}
.yb_c00399{bottom:768.128267pt;}
.ya_c00399{bottom:780.128267pt;}
.y9_c00399{bottom:803.687333pt;}
.y8_c00399{bottom:815.687333pt;}
.y7_c00399{bottom:839.246400pt;}
.y6_c00399{bottom:851.246400pt;}
.y5_c00399{bottom:863.246400pt;}
.y4_c00399{bottom:883.026000pt;}
.y3_c00399{bottom:899.026000pt;}
.y2_c00399{bottom:922.585067pt;}
.y19_c00399{bottom:924.660533pt;}
.y1_c00399{bottom:972.089733pt;}
.h7_c00399{height:22.400000pt;}
.h6_c00399{height:26.917333pt;}
.h4_c00399{height:30.293333pt;}
.h2_c00399{height:34.901333pt;}
.h3_c00399{height:38.453333pt;}
.h5_c00399{height:38.880000pt;}
.h1_c00399{height:1009.333333pt;}
.h0_c00399{height:1009.338800pt;}
.w0_c00399{width:794.622400pt;}
.w1_c00399{width:794.666667pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:68.980533pt;}
.x4_c00399{left:377.012000pt;}
.x2_c00399{left:532.917467pt;}
.x3_c00399{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00400;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:1.067000;font-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_c00400{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls2_c00400{letter-spacing:-0.720000px;}
.ls3_c00400{letter-spacing:-0.630000px;}
.ls1_c00400{letter-spacing:0.000000px;}
.ls0_c00400{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00400{word-spacing:-8.694000px;}
.ws0_c00400{word-spacing:-0.048000px;}
.ws2_c00400{word-spacing:0.000000px;}
.ws3_c00400{word-spacing:7.056000px;}
._0_c00400{margin-left:-2755.276200px;}
._4_c00400{margin-left:-6.946800px;}
._1_c00400{margin-left:-2.256000px;}
._3_c00400{margin-left:-1.200000px;}
._2_c00400{width:1.008000px;}
._7_c00400{width:7.776000px;}
._5_c00400{width:55.674000px;}
._6_c00400{width:59.136000px;}
.fc0_c00400{color:rgb(35,31,32);}
.fs3_c00400{font-size:42.000000px;}
.fs0_c00400{font-size:48.000000px;}
.fs4_c00400{font-size:54.000000px;}
.fs2_c00400{font-size:57.000000px;}
.fs1_c00400{font-size:60.000000px;}
.y0_c00400{bottom:0.000000px;}
.y19_c00400{bottom:348.397800px;}
.y18_c00400{bottom:361.897800px;}
.y17_c00400{bottom:375.397800px;}
.y16_c00400{bottom:401.901750px;}
.y15_c00400{bottom:415.401750px;}
.y14_c00400{bottom:428.901750px;}
.y13_c00400{bottom:455.405700px;}
.y12_c00400{bottom:468.905700px;}
.y11_c00400{bottom:482.405700px;}
.y10_c00400{bottom:504.657600px;}
.yf_c00400{bottom:522.657600px;}
.ye_c00400{bottom:549.161550px;}
.yd_c00400{bottom:836.727750px;}
.yc_c00400{bottom:850.227750px;}
.yb_c00400{bottom:863.727750px;}
.ya_c00400{bottom:890.231700px;}
.y9_c00400{bottom:903.731700px;}
.y8_c00400{bottom:917.231700px;}
.y7_c00400{bottom:943.735650px;}
.y6_c00400{bottom:957.235650px;}
.y5_c00400{bottom:970.735650px;}
.y4_c00400{bottom:992.987550px;}
.y3_c00400{bottom:1010.987550px;}
.y2_c00400{bottom:1037.491500px;}
.y1_c00400{bottom:1093.600950px;}
.h7_c00400{height:30.282000px;}
.h5_c00400{height:34.080000px;}
.h2_c00400{height:39.264000px;}
.h3_c00400{height:39.984000px;}
.h4_c00400{height:43.260000px;}
.h6_c00400{height:43.740000px;}
.h1_c00400{height:1135.500000px;}
.h0_c00400{height:1135.506150px;}
.w0_c00400{width:893.950200px;}
.w1_c00400{width:894.000000px;}
.x0_c00400{left:0.000000px;}
.x4_c00400{left:128.626800px;}
.x5_c00400{left:141.382650px;}
.x2_c00400{left:188.061900px;}
.x3_c00400{left:190.513350px;}
.x1_c00400{left:800.165850px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls2_c00400{letter-spacing:-0.640000pt;}
.ls3_c00400{letter-spacing:-0.560000pt;}
.ls1_c00400{letter-spacing:0.000000pt;}
.ls0_c00400{letter-spacing:0.426667pt;}
.ws1_c00400{word-spacing:-7.728000pt;}
.ws0_c00400{word-spacing:-0.042667pt;}
.ws2_c00400{word-spacing:0.000000pt;}
.ws3_c00400{word-spacing:6.272000pt;}
._0_c00400{margin-left:-2449.134400pt;}
._4_c00400{margin-left:-6.174933pt;}
._1_c00400{margin-left:-2.005333pt;}
._3_c00400{margin-left:-1.066667pt;}
._2_c00400{width:0.896000pt;}
._7_c00400{width:6.912000pt;}
._5_c00400{width:49.488000pt;}
._6_c00400{width:52.565333pt;}
.fs3_c00400{font-size:37.333333pt;}
.fs0_c00400{font-size:42.666667pt;}
.fs4_c00400{font-size:48.000000pt;}
.fs2_c00400{font-size:50.666667pt;}
.fs1_c00400{font-size:53.333333pt;}
.y0_c00400{bottom:0.000000pt;}
.y19_c00400{bottom:309.686933pt;}
.y18_c00400{bottom:321.686933pt;}
.y17_c00400{bottom:333.686933pt;}
.y16_c00400{bottom:357.246000pt;}
.y15_c00400{bottom:369.246000pt;}
.y14_c00400{bottom:381.246000pt;}
.y13_c00400{bottom:404.805067pt;}
.y12_c00400{bottom:416.805067pt;}
.y11_c00400{bottom:428.805067pt;}
.y10_c00400{bottom:448.584533pt;}
.yf_c00400{bottom:464.584533pt;}
.ye_c00400{bottom:488.143600pt;}
.yd_c00400{bottom:743.758000pt;}
.yc_c00400{bottom:755.758000pt;}
.yb_c00400{bottom:767.758000pt;}
.ya_c00400{bottom:791.317067pt;}
.y9_c00400{bottom:803.317067pt;}
.y8_c00400{bottom:815.317067pt;}
.y7_c00400{bottom:838.876133pt;}
.y6_c00400{bottom:850.876133pt;}
.y5_c00400{bottom:862.876133pt;}
.y4_c00400{bottom:882.655600pt;}
.y3_c00400{bottom:898.655600pt;}
.y2_c00400{bottom:922.214667pt;}
.y1_c00400{bottom:972.089733pt;}
.h7_c00400{height:26.917333pt;}
.h5_c00400{height:30.293333pt;}
.h2_c00400{height:34.901333pt;}
.h3_c00400{height:35.541333pt;}
.h4_c00400{height:38.453333pt;}
.h6_c00400{height:38.880000pt;}
.h1_c00400{height:1009.333333pt;}
.h0_c00400{height:1009.338800pt;}
.w0_c00400{width:794.622400pt;}
.w1_c00400{width:794.666667pt;}
.x0_c00400{left:0.000000pt;}
.x4_c00400{left:114.334933pt;}
.x5_c00400{left:125.673467pt;}
.x2_c00400{left:167.166133pt;}
.x3_c00400{left:169.345200pt;}
.x1_c00400{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00401;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00401{font-family:ff6_c00401;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00401;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00401{font-family:ff7_c00401;line-height:0.710000;font-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_c00401{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls2_c00401{letter-spacing:-1.674000px;}
.ls3_c00401{letter-spacing:-0.720000px;}
.ls4_c00401{letter-spacing:-0.630000px;}
.ls1_c00401{letter-spacing:-0.216000px;}
.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;}
}
.ws2_c00401{word-spacing:-10.692000px;}
.ws1_c00401{word-spacing:-8.694000px;}
.ws3_c00401{word-spacing:-6.487200px;}
.ws4_c00401{word-spacing:0.000000px;}
.ws6_c00401{word-spacing:0.216000px;}
.ws5_c00401{word-spacing:7.056000px;}
.ws0_c00401{word-spacing:1585.435200px;}
._3_c00401{margin-left:-7.042800px;}
._0_c00401{margin-left:-2.112000px;}
._1_c00401{margin-left:-1.104000px;}
._2_c00401{width:2.016000px;}
._6_c00401{width:7.776000px;}
._4_c00401{width:55.674000px;}
._5_c00401{width:59.136000px;}
.fc0_c00401{color:rgb(35,31,32);}
.fs5_c00401{font-size:30.600000px;}
.fs6_c00401{font-size:36.000000px;}
.fs3_c00401{font-size:42.000000px;}
.fs0_c00401{font-size:48.000000px;}
.fs4_c00401{font-size:54.000000px;}
.fs2_c00401{font-size:57.000000px;}
.fs1_c00401{font-size:60.000000px;}
.y0_c00401{bottom:0.000000px;}
.y19_c00401{bottom:361.668150px;}
.y18_c00401{bottom:375.168000px;}
.y17_c00401{bottom:388.668000px;}
.y16_c00401{bottom:415.172100px;}
.y15_c00401{bottom:428.672100px;}
.y14_c00401{bottom:455.175900px;}
.y13_c00401{bottom:468.675900px;}
.y12_c00401{bottom:482.175900px;}
.y11_c00401{bottom:504.427950px;}
.y10_c00401{bottom:522.427950px;}
.yf_c00401{bottom:548.931900px;}
.y1a_c00401{bottom:551.323050px;}
.ye_c00401{bottom:819.144300px;}
.yd_c00401{bottom:832.644300px;}
.yc_c00401{bottom:846.144300px;}
.yb_c00401{bottom:872.648250px;}
.ya_c00401{bottom:886.148250px;}
.y9_c00401{bottom:899.648250px;}
.y8_c00401{bottom:926.152200px;}
.y7_c00401{bottom:939.652200px;}
.y6_c00401{bottom:953.152200px;}
.y5_c00401{bottom:975.404250px;}
.y4_c00401{bottom:993.404250px;}
.y3_c00401{bottom:1011.404250px;}
.y2_c00401{bottom:1037.908200px;}
.y1_c00401{bottom:1093.600950px;}
.h7_c00401{height:25.200000px;}
.h6_c00401{height:30.282000px;}
.h4_c00401{height:34.080000px;}
.h2_c00401{height:39.264000px;}
.h3_c00401{height:43.260000px;}
.h5_c00401{height:43.740000px;}
.h1_c00401{height:1135.500000px;}
.h0_c00401{height:1135.506150px;}
.w0_c00401{width:893.950200px;}
.w1_c00401{width:894.000000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:77.603100px;}
.x5_c00401{left:424.138500px;}
.x2_c00401{left:599.532150px;}
.x3_c00401{left:612.288150px;}
.x4_c00401{left:616.540050px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls2_c00401{letter-spacing:-1.488000pt;}
.ls3_c00401{letter-spacing:-0.640000pt;}
.ls4_c00401{letter-spacing:-0.560000pt;}
.ls1_c00401{letter-spacing:-0.192000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws2_c00401{word-spacing:-9.504000pt;}
.ws1_c00401{word-spacing:-7.728000pt;}
.ws3_c00401{word-spacing:-5.766400pt;}
.ws4_c00401{word-spacing:0.000000pt;}
.ws6_c00401{word-spacing:0.192000pt;}
.ws5_c00401{word-spacing:6.272000pt;}
.ws0_c00401{word-spacing:1409.275733pt;}
._3_c00401{margin-left:-6.260267pt;}
._0_c00401{margin-left:-1.877333pt;}
._1_c00401{margin-left:-0.981333pt;}
._2_c00401{width:1.792000pt;}
._6_c00401{width:6.912000pt;}
._4_c00401{width:49.488000pt;}
._5_c00401{width:52.565333pt;}
.fs5_c00401{font-size:27.200000pt;}
.fs6_c00401{font-size:32.000000pt;}
.fs3_c00401{font-size:37.333333pt;}
.fs0_c00401{font-size:42.666667pt;}
.fs4_c00401{font-size:48.000000pt;}
.fs2_c00401{font-size:50.666667pt;}
.fs1_c00401{font-size:53.333333pt;}
.y0_c00401{bottom:0.000000pt;}
.y19_c00401{bottom:321.482800pt;}
.y18_c00401{bottom:333.482667pt;}
.y17_c00401{bottom:345.482667pt;}
.y16_c00401{bottom:369.041867pt;}
.y15_c00401{bottom:381.041867pt;}
.y14_c00401{bottom:404.600800pt;}
.y13_c00401{bottom:416.600800pt;}
.y12_c00401{bottom:428.600800pt;}
.y11_c00401{bottom:448.380400pt;}
.y10_c00401{bottom:464.380400pt;}
.yf_c00401{bottom:487.939467pt;}
.y1a_c00401{bottom:490.064933pt;}
.ye_c00401{bottom:728.128267pt;}
.yd_c00401{bottom:740.128267pt;}
.yc_c00401{bottom:752.128267pt;}
.yb_c00401{bottom:775.687333pt;}
.ya_c00401{bottom:787.687333pt;}
.y9_c00401{bottom:799.687333pt;}
.y8_c00401{bottom:823.246400pt;}
.y7_c00401{bottom:835.246400pt;}
.y6_c00401{bottom:847.246400pt;}
.y5_c00401{bottom:867.026000pt;}
.y4_c00401{bottom:883.026000pt;}
.y3_c00401{bottom:899.026000pt;}
.y2_c00401{bottom:922.585067pt;}
.y1_c00401{bottom:972.089733pt;}
.h7_c00401{height:22.400000pt;}
.h6_c00401{height:26.917333pt;}
.h4_c00401{height:30.293333pt;}
.h2_c00401{height:34.901333pt;}
.h3_c00401{height:38.453333pt;}
.h5_c00401{height:38.880000pt;}
.h1_c00401{height:1009.333333pt;}
.h0_c00401{height:1009.338800pt;}
.w0_c00401{width:794.622400pt;}
.w1_c00401{width:794.666667pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:68.980533pt;}
.x5_c00401{left:377.012000pt;}
.x2_c00401{left:532.917467pt;}
.x3_c00401{left:544.256133pt;}
.x4_c00401{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00402;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:0.908000;font-style:normal;font-weight: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_c00402;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00402{font-family:ff7_c00402;line-height:1.067000;font-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_c00402{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls2_c00402{letter-spacing:-0.720000px;}
.ls3_c00402{letter-spacing:-0.630000px;}
.ls4_c00402{letter-spacing:-0.432000px;}
.ls1_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00402{word-spacing:-8.694000px;}
.ws0_c00402{word-spacing:-0.048000px;}
.ws2_c00402{word-spacing:0.000000px;}
.ws4_c00402{word-spacing:0.432000px;}
.ws3_c00402{word-spacing:7.056000px;}
._0_c00402{margin-left:-2755.276200px;}
._4_c00402{margin-left:-6.946800px;}
._8_c00402{margin-left:-4.590000px;}
._1_c00402{margin-left:-2.256000px;}
._3_c00402{margin-left:-1.200000px;}
._2_c00402{width:1.008000px;}
._7_c00402{width:7.776000px;}
._5_c00402{width:55.674000px;}
._6_c00402{width:59.136000px;}
.fc0_c00402{color:rgb(35,31,32);}
.fs3_c00402{font-size:42.000000px;}
.fs0_c00402{font-size:48.000000px;}
.fs4_c00402{font-size:54.000000px;}
.fs2_c00402{font-size:57.000000px;}
.fs1_c00402{font-size:60.000000px;}
.y0_c00402{bottom:0.000000px;}
.y1a_c00402{bottom:330.397800px;}
.y19_c00402{bottom:343.897800px;}
.y18_c00402{bottom:357.397800px;}
.y17_c00402{bottom:383.901750px;}
.y16_c00402{bottom:397.401750px;}
.y15_c00402{bottom:410.901750px;}
.y14_c00402{bottom:437.405700px;}
.y13_c00402{bottom:450.905700px;}
.y12_c00402{bottom:464.405700px;}
.y11_c00402{bottom:486.657600px;}
.y10_c00402{bottom:504.657600px;}
.yf_c00402{bottom:522.657600px;}
.ye_c00402{bottom:549.161550px;}
.yd_c00402{bottom:836.727750px;}
.yc_c00402{bottom:850.227750px;}
.yb_c00402{bottom:863.727750px;}
.ya_c00402{bottom:890.231700px;}
.y9_c00402{bottom:903.731700px;}
.y8_c00402{bottom:917.231700px;}
.y7_c00402{bottom:943.735650px;}
.y6_c00402{bottom:957.235650px;}
.y5_c00402{bottom:970.735650px;}
.y4_c00402{bottom:992.987550px;}
.y3_c00402{bottom:1010.987550px;}
.y2_c00402{bottom:1037.491500px;}
.y1_c00402{bottom:1093.600950px;}
.h7_c00402{height:30.282000px;}
.h5_c00402{height:34.080000px;}
.h2_c00402{height:39.264000px;}
.h3_c00402{height:39.984000px;}
.h4_c00402{height:43.260000px;}
.h6_c00402{height:43.740000px;}
.h1_c00402{height:1135.500000px;}
.h0_c00402{height:1135.506150px;}
.w0_c00402{width:893.950200px;}
.w1_c00402{width:894.000000px;}
.x0_c00402{left:0.000000px;}
.x4_c00402{left:128.626800px;}
.x5_c00402{left:141.382650px;}
.x6_c00402{left:145.752600px;}
.x2_c00402{left:188.061900px;}
.x3_c00402{left:190.513350px;}
.x1_c00402{left:800.165850px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls2_c00402{letter-spacing:-0.640000pt;}
.ls3_c00402{letter-spacing:-0.560000pt;}
.ls4_c00402{letter-spacing:-0.384000pt;}
.ls1_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.426667pt;}
.ws1_c00402{word-spacing:-7.728000pt;}
.ws0_c00402{word-spacing:-0.042667pt;}
.ws2_c00402{word-spacing:0.000000pt;}
.ws4_c00402{word-spacing:0.384000pt;}
.ws3_c00402{word-spacing:6.272000pt;}
._0_c00402{margin-left:-2449.134400pt;}
._4_c00402{margin-left:-6.174933pt;}
._8_c00402{margin-left:-4.080000pt;}
._1_c00402{margin-left:-2.005333pt;}
._3_c00402{margin-left:-1.066667pt;}
._2_c00402{width:0.896000pt;}
._7_c00402{width:6.912000pt;}
._5_c00402{width:49.488000pt;}
._6_c00402{width:52.565333pt;}
.fs3_c00402{font-size:37.333333pt;}
.fs0_c00402{font-size:42.666667pt;}
.fs4_c00402{font-size:48.000000pt;}
.fs2_c00402{font-size:50.666667pt;}
.fs1_c00402{font-size:53.333333pt;}
.y0_c00402{bottom:0.000000pt;}
.y1a_c00402{bottom:293.686933pt;}
.y19_c00402{bottom:305.686933pt;}
.y18_c00402{bottom:317.686933pt;}
.y17_c00402{bottom:341.246000pt;}
.y16_c00402{bottom:353.246000pt;}
.y15_c00402{bottom:365.246000pt;}
.y14_c00402{bottom:388.805067pt;}
.y13_c00402{bottom:400.805067pt;}
.y12_c00402{bottom:412.805067pt;}
.y11_c00402{bottom:432.584533pt;}
.y10_c00402{bottom:448.584533pt;}
.yf_c00402{bottom:464.584533pt;}
.ye_c00402{bottom:488.143600pt;}
.yd_c00402{bottom:743.758000pt;}
.yc_c00402{bottom:755.758000pt;}
.yb_c00402{bottom:767.758000pt;}
.ya_c00402{bottom:791.317067pt;}
.y9_c00402{bottom:803.317067pt;}
.y8_c00402{bottom:815.317067pt;}
.y7_c00402{bottom:838.876133pt;}
.y6_c00402{bottom:850.876133pt;}
.y5_c00402{bottom:862.876133pt;}
.y4_c00402{bottom:882.655600pt;}
.y3_c00402{bottom:898.655600pt;}
.y2_c00402{bottom:922.214667pt;}
.y1_c00402{bottom:972.089733pt;}
.h7_c00402{height:26.917333pt;}
.h5_c00402{height:30.293333pt;}
.h2_c00402{height:34.901333pt;}
.h3_c00402{height:35.541333pt;}
.h4_c00402{height:38.453333pt;}
.h6_c00402{height:38.880000pt;}
.h1_c00402{height:1009.333333pt;}
.h0_c00402{height:1009.338800pt;}
.w0_c00402{width:794.622400pt;}
.w1_c00402{width:794.666667pt;}
.x0_c00402{left:0.000000pt;}
.x4_c00402{left:114.334933pt;}
.x5_c00402{left:125.673467pt;}
.x6_c00402{left:129.557867pt;}
.x2_c00402{left:167.166133pt;}
.x3_c00402{left:169.345200pt;}
.x1_c00402{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.067000;font-style:normal;font-weight: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_c00403;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00403{font-family:ff7_c00403;line-height:0.710000;font-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_c00403{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls1_c00403{letter-spacing:-1.026000px;}
.ls2_c00403{letter-spacing:-0.720000px;}
.ls3_c00403{letter-spacing:-0.630000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00403{word-spacing:-11.340000px;}
.ws1_c00403{word-spacing:-8.694000px;}
.ws3_c00403{word-spacing:-6.487200px;}
.ws4_c00403{word-spacing:0.000000px;}
.ws5_c00403{word-spacing:7.056000px;}
.ws0_c00403{word-spacing:1585.435200px;}
._3_c00403{margin-left:-7.042800px;}
._0_c00403{margin-left:-2.112000px;}
._1_c00403{margin-left:-1.104000px;}
._2_c00403{width:2.016000px;}
._6_c00403{width:7.776000px;}
._4_c00403{width:55.674000px;}
._5_c00403{width:59.136000px;}
.fc0_c00403{color:rgb(35,31,32);}
.fs5_c00403{font-size:30.600000px;}
.fs6_c00403{font-size:36.000000px;}
.fs3_c00403{font-size:42.000000px;}
.fs0_c00403{font-size:48.000000px;}
.fs4_c00403{font-size:54.000000px;}
.fs2_c00403{font-size:57.000000px;}
.fs1_c00403{font-size:60.000000px;}
.y0_c00403{bottom:0.000000px;}
.y19_c00403{bottom:361.668150px;}
.y18_c00403{bottom:375.168000px;}
.y17_c00403{bottom:388.668000px;}
.y16_c00403{bottom:415.172100px;}
.y15_c00403{bottom:428.672100px;}
.y14_c00403{bottom:455.175900px;}
.y13_c00403{bottom:468.675900px;}
.y12_c00403{bottom:482.175900px;}
.y11_c00403{bottom:504.427950px;}
.y10_c00403{bottom:522.427950px;}
.yf_c00403{bottom:548.931900px;}
.y1a_c00403{bottom:551.323050px;}
.ye_c00403{bottom:819.144300px;}
.yd_c00403{bottom:832.644300px;}
.yc_c00403{bottom:846.144300px;}
.yb_c00403{bottom:872.648250px;}
.ya_c00403{bottom:886.148250px;}
.y9_c00403{bottom:899.648250px;}
.y8_c00403{bottom:926.152200px;}
.y7_c00403{bottom:939.652200px;}
.y6_c00403{bottom:953.152200px;}
.y5_c00403{bottom:975.404250px;}
.y4_c00403{bottom:993.404250px;}
.y3_c00403{bottom:1011.404250px;}
.y2_c00403{bottom:1037.908200px;}
.y1_c00403{bottom:1093.600950px;}
.h7_c00403{height:25.200000px;}
.h6_c00403{height:30.282000px;}
.h4_c00403{height:34.080000px;}
.h2_c00403{height:39.264000px;}
.h3_c00403{height:43.260000px;}
.h5_c00403{height:43.740000px;}
.h1_c00403{height:1135.500000px;}
.h0_c00403{height:1135.506150px;}
.w0_c00403{width:893.950200px;}
.w1_c00403{width:894.000000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:77.603100px;}
.x5_c00403{left:424.138500px;}
.x2_c00403{left:599.532150px;}
.x3_c00403{left:612.288150px;}
.x4_c00403{left:616.540050px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:-0.912000pt;}
.ls2_c00403{letter-spacing:-0.640000pt;}
.ls3_c00403{letter-spacing:-0.560000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws2_c00403{word-spacing:-10.080000pt;}
.ws1_c00403{word-spacing:-7.728000pt;}
.ws3_c00403{word-spacing:-5.766400pt;}
.ws4_c00403{word-spacing:0.000000pt;}
.ws5_c00403{word-spacing:6.272000pt;}
.ws0_c00403{word-spacing:1409.275733pt;}
._3_c00403{margin-left:-6.260267pt;}
._0_c00403{margin-left:-1.877333pt;}
._1_c00403{margin-left:-0.981333pt;}
._2_c00403{width:1.792000pt;}
._6_c00403{width:6.912000pt;}
._4_c00403{width:49.488000pt;}
._5_c00403{width:52.565333pt;}
.fs5_c00403{font-size:27.200000pt;}
.fs6_c00403{font-size:32.000000pt;}
.fs3_c00403{font-size:37.333333pt;}
.fs0_c00403{font-size:42.666667pt;}
.fs4_c00403{font-size:48.000000pt;}
.fs2_c00403{font-size:50.666667pt;}
.fs1_c00403{font-size:53.333333pt;}
.y0_c00403{bottom:0.000000pt;}
.y19_c00403{bottom:321.482800pt;}
.y18_c00403{bottom:333.482667pt;}
.y17_c00403{bottom:345.482667pt;}
.y16_c00403{bottom:369.041867pt;}
.y15_c00403{bottom:381.041867pt;}
.y14_c00403{bottom:404.600800pt;}
.y13_c00403{bottom:416.600800pt;}
.y12_c00403{bottom:428.600800pt;}
.y11_c00403{bottom:448.380400pt;}
.y10_c00403{bottom:464.380400pt;}
.yf_c00403{bottom:487.939467pt;}
.y1a_c00403{bottom:490.064933pt;}
.ye_c00403{bottom:728.128267pt;}
.yd_c00403{bottom:740.128267pt;}
.yc_c00403{bottom:752.128267pt;}
.yb_c00403{bottom:775.687333pt;}
.ya_c00403{bottom:787.687333pt;}
.y9_c00403{bottom:799.687333pt;}
.y8_c00403{bottom:823.246400pt;}
.y7_c00403{bottom:835.246400pt;}
.y6_c00403{bottom:847.246400pt;}
.y5_c00403{bottom:867.026000pt;}
.y4_c00403{bottom:883.026000pt;}
.y3_c00403{bottom:899.026000pt;}
.y2_c00403{bottom:922.585067pt;}
.y1_c00403{bottom:972.089733pt;}
.h7_c00403{height:22.400000pt;}
.h6_c00403{height:26.917333pt;}
.h4_c00403{height:30.293333pt;}
.h2_c00403{height:34.901333pt;}
.h3_c00403{height:38.453333pt;}
.h5_c00403{height:38.880000pt;}
.h1_c00403{height:1009.333333pt;}
.h0_c00403{height:1009.338800pt;}
.w0_c00403{width:794.622400pt;}
.w1_c00403{width:794.666667pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:68.980533pt;}
.x5_c00403{left:377.012000pt;}
.x2_c00403{left:532.917467pt;}
.x3_c00403{left:544.256133pt;}
.x4_c00403{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:0.908000;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00404{font-family:ff7_c00404;line-height:1.067000;font-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_c00404{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls2_c00404{letter-spacing:-0.720000px;}
.ls3_c00404{letter-spacing:-0.630000px;}
.ls1_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00404{word-spacing:-0.048000px;}
.ws2_c00404{word-spacing:0.000000px;}
.ws3_c00404{word-spacing:7.056000px;}
._0_c00404{margin-left:-2755.276200px;}
._4_c00404{margin-left:-6.946800px;}
._1_c00404{margin-left:-2.256000px;}
._3_c00404{margin-left:-1.200000px;}
._2_c00404{width:1.008000px;}
._7_c00404{width:7.776000px;}
._5_c00404{width:55.674000px;}
._6_c00404{width:59.136000px;}
.fc0_c00404{color:rgb(35,31,32);}
.fs3_c00404{font-size:42.000000px;}
.fs0_c00404{font-size:48.000000px;}
.fs4_c00404{font-size:54.000000px;}
.fs2_c00404{font-size:57.000000px;}
.fs1_c00404{font-size:60.000000px;}
.y0_c00404{bottom:0.000000px;}
.y19_c00404{bottom:348.397800px;}
.y18_c00404{bottom:361.897800px;}
.y17_c00404{bottom:375.397800px;}
.y16_c00404{bottom:401.901750px;}
.y15_c00404{bottom:415.401750px;}
.y14_c00404{bottom:428.901750px;}
.y13_c00404{bottom:455.405700px;}
.y12_c00404{bottom:468.905700px;}
.y11_c00404{bottom:482.405700px;}
.y10_c00404{bottom:504.657600px;}
.yf_c00404{bottom:522.657600px;}
.ye_c00404{bottom:549.161550px;}
.yd_c00404{bottom:836.727750px;}
.yc_c00404{bottom:850.227750px;}
.yb_c00404{bottom:863.727750px;}
.ya_c00404{bottom:890.231700px;}
.y9_c00404{bottom:903.731700px;}
.y8_c00404{bottom:917.231700px;}
.y7_c00404{bottom:943.735650px;}
.y6_c00404{bottom:957.235650px;}
.y5_c00404{bottom:970.735650px;}
.y4_c00404{bottom:992.987550px;}
.y3_c00404{bottom:1010.987550px;}
.y2_c00404{bottom:1037.491500px;}
.y1_c00404{bottom:1093.600950px;}
.h7_c00404{height:30.282000px;}
.h5_c00404{height:34.080000px;}
.h2_c00404{height:39.264000px;}
.h3_c00404{height:39.984000px;}
.h4_c00404{height:43.260000px;}
.h6_c00404{height:43.740000px;}
.h1_c00404{height:1135.500000px;}
.h0_c00404{height:1135.506150px;}
.w0_c00404{width:893.950200px;}
.w1_c00404{width:894.000000px;}
.x0_c00404{left:0.000000px;}
.x4_c00404{left:128.626800px;}
.x5_c00404{left:141.382650px;}
.x2_c00404{left:188.061900px;}
.x3_c00404{left:190.513350px;}
.x1_c00404{left:800.165850px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls2_c00404{letter-spacing:-0.640000pt;}
.ls3_c00404{letter-spacing:-0.560000pt;}
.ls1_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.426667pt;}
.ws1_c00404{word-spacing:-7.728000pt;}
.ws0_c00404{word-spacing:-0.042667pt;}
.ws2_c00404{word-spacing:0.000000pt;}
.ws3_c00404{word-spacing:6.272000pt;}
._0_c00404{margin-left:-2449.134400pt;}
._4_c00404{margin-left:-6.174933pt;}
._1_c00404{margin-left:-2.005333pt;}
._3_c00404{margin-left:-1.066667pt;}
._2_c00404{width:0.896000pt;}
._7_c00404{width:6.912000pt;}
._5_c00404{width:49.488000pt;}
._6_c00404{width:52.565333pt;}
.fs3_c00404{font-size:37.333333pt;}
.fs0_c00404{font-size:42.666667pt;}
.fs4_c00404{font-size:48.000000pt;}
.fs2_c00404{font-size:50.666667pt;}
.fs1_c00404{font-size:53.333333pt;}
.y0_c00404{bottom:0.000000pt;}
.y19_c00404{bottom:309.686933pt;}
.y18_c00404{bottom:321.686933pt;}
.y17_c00404{bottom:333.686933pt;}
.y16_c00404{bottom:357.246000pt;}
.y15_c00404{bottom:369.246000pt;}
.y14_c00404{bottom:381.246000pt;}
.y13_c00404{bottom:404.805067pt;}
.y12_c00404{bottom:416.805067pt;}
.y11_c00404{bottom:428.805067pt;}
.y10_c00404{bottom:448.584533pt;}
.yf_c00404{bottom:464.584533pt;}
.ye_c00404{bottom:488.143600pt;}
.yd_c00404{bottom:743.758000pt;}
.yc_c00404{bottom:755.758000pt;}
.yb_c00404{bottom:767.758000pt;}
.ya_c00404{bottom:791.317067pt;}
.y9_c00404{bottom:803.317067pt;}
.y8_c00404{bottom:815.317067pt;}
.y7_c00404{bottom:838.876133pt;}
.y6_c00404{bottom:850.876133pt;}
.y5_c00404{bottom:862.876133pt;}
.y4_c00404{bottom:882.655600pt;}
.y3_c00404{bottom:898.655600pt;}
.y2_c00404{bottom:922.214667pt;}
.y1_c00404{bottom:972.089733pt;}
.h7_c00404{height:26.917333pt;}
.h5_c00404{height:30.293333pt;}
.h2_c00404{height:34.901333pt;}
.h3_c00404{height:35.541333pt;}
.h4_c00404{height:38.453333pt;}
.h6_c00404{height:38.880000pt;}
.h1_c00404{height:1009.333333pt;}
.h0_c00404{height:1009.338800pt;}
.w0_c00404{width:794.622400pt;}
.w1_c00404{width:794.666667pt;}
.x0_c00404{left:0.000000pt;}
.x4_c00404{left:114.334933pt;}
.x5_c00404{left:125.673467pt;}
.x2_c00404{left:167.166133pt;}
.x3_c00404{left:169.345200pt;}
.x1_c00404{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00405;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00405{font-family:ff6_c00405;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00405;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00405{font-family:ff7_c00405;line-height:0.710000;font-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_c00405{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls2_c00405{letter-spacing:-0.720000px;}
.ls3_c00405{letter-spacing:-0.630000px;}
.ls1_c00405{letter-spacing:-0.540000px;}
.ls4_c00405{letter-spacing:-0.216000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00405{word-spacing:-8.694000px;}
.ws2_c00405{word-spacing:-6.487200px;}
.ws3_c00405{word-spacing:0.000000px;}
.ws5_c00405{word-spacing:0.540000px;}
.ws4_c00405{word-spacing:7.056000px;}
.ws6_c00405{word-spacing:55.890000px;}
.ws0_c00405{word-spacing:1585.435200px;}
._3_c00405{margin-left:-7.042800px;}
._0_c00405{margin-left:-2.112000px;}
._1_c00405{margin-left:-1.104000px;}
._2_c00405{width:2.016000px;}
._6_c00405{width:7.776000px;}
._4_c00405{width:55.674000px;}
._5_c00405{width:59.136000px;}
.fc0_c00405{color:rgb(35,31,32);}
.fs5_c00405{font-size:30.600000px;}
.fs6_c00405{font-size:36.000000px;}
.fs3_c00405{font-size:42.000000px;}
.fs0_c00405{font-size:48.000000px;}
.fs4_c00405{font-size:54.000000px;}
.fs2_c00405{font-size:57.000000px;}
.fs1_c00405{font-size:60.000000px;}
.y0_c00405{bottom:0.000000px;}
.y18_c00405{bottom:348.061800px;}
.y17_c00405{bottom:361.561800px;}
.y16_c00405{bottom:375.061800px;}
.y15_c00405{bottom:401.565750px;}
.y14_c00405{bottom:415.065750px;}
.y13_c00405{bottom:428.565750px;}
.y12_c00405{bottom:455.069700px;}
.y11_c00405{bottom:468.569700px;}
.y10_c00405{bottom:482.069700px;}
.yf_c00405{bottom:504.321600px;}
.ye_c00405{bottom:522.321600px;}
.yd_c00405{bottom:548.825550px;}
.yc_c00405{bottom:850.538100px;}
.yb_c00405{bottom:864.038100px;}
.ya_c00405{bottom:877.538100px;}
.y9_c00405{bottom:904.042050px;}
.y8_c00405{bottom:917.542050px;}
.y7_c00405{bottom:944.046000px;}
.y6_c00405{bottom:957.546000px;}
.y5_c00405{bottom:971.046000px;}
.y4_c00405{bottom:993.297900px;}
.y3_c00405{bottom:1011.297900px;}
.y2_c00405{bottom:1037.801850px;}
.y19_c00405{bottom:1040.193000px;}
.y1_c00405{bottom:1093.600950px;}
.h7_c00405{height:25.200000px;}
.h6_c00405{height:30.282000px;}
.h4_c00405{height:34.080000px;}
.h2_c00405{height:39.264000px;}
.h3_c00405{height:43.260000px;}
.h5_c00405{height:43.740000px;}
.h1_c00405{height:1135.500000px;}
.h0_c00405{height:1135.506150px;}
.w0_c00405{width:893.950200px;}
.w1_c00405{width:894.000000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:77.603100px;}
.x4_c00405{left:424.138500px;}
.x2_c00405{left:599.532150px;}
.x3_c00405{left:612.288150px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls2_c00405{letter-spacing:-0.640000pt;}
.ls3_c00405{letter-spacing:-0.560000pt;}
.ls1_c00405{letter-spacing:-0.480000pt;}
.ls4_c00405{letter-spacing:-0.192000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws1_c00405{word-spacing:-7.728000pt;}
.ws2_c00405{word-spacing:-5.766400pt;}
.ws3_c00405{word-spacing:0.000000pt;}
.ws5_c00405{word-spacing:0.480000pt;}
.ws4_c00405{word-spacing:6.272000pt;}
.ws6_c00405{word-spacing:49.680000pt;}
.ws0_c00405{word-spacing:1409.275733pt;}
._3_c00405{margin-left:-6.260267pt;}
._0_c00405{margin-left:-1.877333pt;}
._1_c00405{margin-left:-0.981333pt;}
._2_c00405{width:1.792000pt;}
._6_c00405{width:6.912000pt;}
._4_c00405{width:49.488000pt;}
._5_c00405{width:52.565333pt;}
.fs5_c00405{font-size:27.200000pt;}
.fs6_c00405{font-size:32.000000pt;}
.fs3_c00405{font-size:37.333333pt;}
.fs0_c00405{font-size:42.666667pt;}
.fs4_c00405{font-size:48.000000pt;}
.fs2_c00405{font-size:50.666667pt;}
.fs1_c00405{font-size:53.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.y18_c00405{bottom:309.388267pt;}
.y17_c00405{bottom:321.388267pt;}
.y16_c00405{bottom:333.388267pt;}
.y15_c00405{bottom:356.947333pt;}
.y14_c00405{bottom:368.947333pt;}
.y13_c00405{bottom:380.947333pt;}
.y12_c00405{bottom:404.506400pt;}
.y11_c00405{bottom:416.506400pt;}
.y10_c00405{bottom:428.506400pt;}
.yf_c00405{bottom:448.285867pt;}
.ye_c00405{bottom:464.285867pt;}
.yd_c00405{bottom:487.844933pt;}
.yc_c00405{bottom:756.033867pt;}
.yb_c00405{bottom:768.033867pt;}
.ya_c00405{bottom:780.033867pt;}
.y9_c00405{bottom:803.592933pt;}
.y8_c00405{bottom:815.592933pt;}
.y7_c00405{bottom:839.152000pt;}
.y6_c00405{bottom:851.152000pt;}
.y5_c00405{bottom:863.152000pt;}
.y4_c00405{bottom:882.931467pt;}
.y3_c00405{bottom:898.931467pt;}
.y2_c00405{bottom:922.490533pt;}
.y19_c00405{bottom:924.616000pt;}
.y1_c00405{bottom:972.089733pt;}
.h7_c00405{height:22.400000pt;}
.h6_c00405{height:26.917333pt;}
.h4_c00405{height:30.293333pt;}
.h2_c00405{height:34.901333pt;}
.h3_c00405{height:38.453333pt;}
.h5_c00405{height:38.880000pt;}
.h1_c00405{height:1009.333333pt;}
.h0_c00405{height:1009.338800pt;}
.w0_c00405{width:794.622400pt;}
.w1_c00405{width:794.666667pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:68.980533pt;}
.x4_c00405{left:377.012000pt;}
.x2_c00405{left:532.917467pt;}
.x3_c00405{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:0.908000;font-style:normal;font-weight: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_c00406;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:1.067000;font-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_c00406{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls4_c00406{letter-spacing:-0.864000px;}
.ls2_c00406{letter-spacing:-0.720000px;}
.ls3_c00406{letter-spacing:-0.630000px;}
.ls1_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00406{word-spacing:-11.502000px;}
.ws1_c00406{word-spacing:-8.694000px;}
.ws0_c00406{word-spacing:-0.048000px;}
.ws3_c00406{word-spacing:0.000000px;}
.ws4_c00406{word-spacing:7.056000px;}
._0_c00406{margin-left:-2755.276200px;}
._4_c00406{margin-left:-6.946800px;}
._1_c00406{margin-left:-2.256000px;}
._3_c00406{margin-left:-1.200000px;}
._2_c00406{width:1.008000px;}
._8_c00406{width:2.070000px;}
._7_c00406{width:7.776000px;}
._5_c00406{width:55.674000px;}
._6_c00406{width:59.136000px;}
.fc0_c00406{color:rgb(35,31,32);}
.fs3_c00406{font-size:42.000000px;}
.fs0_c00406{font-size:48.000000px;}
.fs4_c00406{font-size:54.000000px;}
.fs2_c00406{font-size:57.000000px;}
.fs1_c00406{font-size:60.000000px;}
.y0_c00406{bottom:0.000000px;}
.y1a_c00406{bottom:330.291600px;}
.y19_c00406{bottom:343.791600px;}
.y18_c00406{bottom:357.291600px;}
.y17_c00406{bottom:383.795400px;}
.y16_c00406{bottom:397.295400px;}
.y15_c00406{bottom:410.795400px;}
.y14_c00406{bottom:437.299350px;}
.y13_c00406{bottom:450.799350px;}
.y12_c00406{bottom:464.299350px;}
.y11_c00406{bottom:486.551400px;}
.y10_c00406{bottom:504.551400px;}
.yf_c00406{bottom:522.551400px;}
.ye_c00406{bottom:549.055350px;}
.yd_c00406{bottom:836.621400px;}
.yc_c00406{bottom:850.121400px;}
.yb_c00406{bottom:863.621400px;}
.ya_c00406{bottom:890.125350px;}
.y9_c00406{bottom:903.625350px;}
.y8_c00406{bottom:917.125350px;}
.y7_c00406{bottom:943.629300px;}
.y6_c00406{bottom:957.129300px;}
.y5_c00406{bottom:970.629300px;}
.y4_c00406{bottom:992.881350px;}
.y3_c00406{bottom:1010.881350px;}
.y2_c00406{bottom:1037.385300px;}
.y1_c00406{bottom:1093.600950px;}
.h7_c00406{height:30.282000px;}
.h5_c00406{height:34.080000px;}
.h2_c00406{height:39.264000px;}
.h3_c00406{height:39.984000px;}
.h4_c00406{height:43.260000px;}
.h6_c00406{height:43.740000px;}
.h1_c00406{height:1135.500000px;}
.h0_c00406{height:1135.506150px;}
.w0_c00406{width:893.950200px;}
.w1_c00406{width:894.000000px;}
.x0_c00406{left:0.000000px;}
.x4_c00406{left:128.626800px;}
.x5_c00406{left:141.382650px;}
.x6_c00406{left:145.752600px;}
.x2_c00406{left:188.061900px;}
.x3_c00406{left:190.513350px;}
.x1_c00406{left:800.165850px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls4_c00406{letter-spacing:-0.768000pt;}
.ls2_c00406{letter-spacing:-0.640000pt;}
.ls3_c00406{letter-spacing:-0.560000pt;}
.ls1_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:0.426667pt;}
.ws2_c00406{word-spacing:-10.224000pt;}
.ws1_c00406{word-spacing:-7.728000pt;}
.ws0_c00406{word-spacing:-0.042667pt;}
.ws3_c00406{word-spacing:0.000000pt;}
.ws4_c00406{word-spacing:6.272000pt;}
._0_c00406{margin-left:-2449.134400pt;}
._4_c00406{margin-left:-6.174933pt;}
._1_c00406{margin-left:-2.005333pt;}
._3_c00406{margin-left:-1.066667pt;}
._2_c00406{width:0.896000pt;}
._8_c00406{width:1.840000pt;}
._7_c00406{width:6.912000pt;}
._5_c00406{width:49.488000pt;}
._6_c00406{width:52.565333pt;}
.fs3_c00406{font-size:37.333333pt;}
.fs0_c00406{font-size:42.666667pt;}
.fs4_c00406{font-size:48.000000pt;}
.fs2_c00406{font-size:50.666667pt;}
.fs1_c00406{font-size:53.333333pt;}
.y0_c00406{bottom:0.000000pt;}
.y1a_c00406{bottom:293.592533pt;}
.y19_c00406{bottom:305.592533pt;}
.y18_c00406{bottom:317.592533pt;}
.y17_c00406{bottom:341.151467pt;}
.y16_c00406{bottom:353.151467pt;}
.y15_c00406{bottom:365.151467pt;}
.y14_c00406{bottom:388.710533pt;}
.y13_c00406{bottom:400.710533pt;}
.y12_c00406{bottom:412.710533pt;}
.y11_c00406{bottom:432.490133pt;}
.y10_c00406{bottom:448.490133pt;}
.yf_c00406{bottom:464.490133pt;}
.ye_c00406{bottom:488.049200pt;}
.yd_c00406{bottom:743.663467pt;}
.yc_c00406{bottom:755.663467pt;}
.yb_c00406{bottom:767.663467pt;}
.ya_c00406{bottom:791.222533pt;}
.y9_c00406{bottom:803.222533pt;}
.y8_c00406{bottom:815.222533pt;}
.y7_c00406{bottom:838.781600pt;}
.y6_c00406{bottom:850.781600pt;}
.y5_c00406{bottom:862.781600pt;}
.y4_c00406{bottom:882.561200pt;}
.y3_c00406{bottom:898.561200pt;}
.y2_c00406{bottom:922.120267pt;}
.y1_c00406{bottom:972.089733pt;}
.h7_c00406{height:26.917333pt;}
.h5_c00406{height:30.293333pt;}
.h2_c00406{height:34.901333pt;}
.h3_c00406{height:35.541333pt;}
.h4_c00406{height:38.453333pt;}
.h6_c00406{height:38.880000pt;}
.h1_c00406{height:1009.333333pt;}
.h0_c00406{height:1009.338800pt;}
.w0_c00406{width:794.622400pt;}
.w1_c00406{width:794.666667pt;}
.x0_c00406{left:0.000000pt;}
.x4_c00406{left:114.334933pt;}
.x5_c00406{left:125.673467pt;}
.x6_c00406{left:129.557867pt;}
.x2_c00406{left:167.166133pt;}
.x3_c00406{left:169.345200pt;}
.x1_c00406{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00407;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00407{font-family:ff6_c00407;line-height:1.067000;font-style:normal;font-weight: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_c00407;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00407{font-family:ff7_c00407;line-height:0.710000;font-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_c00407{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls2_c00407{letter-spacing:-0.720000px;}
.ls3_c00407{letter-spacing:-0.630000px;}
.ls1_c00407{letter-spacing:-0.378000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws2_c00407{word-spacing:-6.487200px;}
.ws3_c00407{word-spacing:0.000000px;}
.ws5_c00407{word-spacing:0.378000px;}
.ws4_c00407{word-spacing:7.056000px;}
.ws0_c00407{word-spacing:1585.435200px;}
._3_c00407{margin-left:-7.042800px;}
._0_c00407{margin-left:-2.112000px;}
._1_c00407{margin-left:-1.104000px;}
._2_c00407{width:2.016000px;}
._6_c00407{width:7.776000px;}
._4_c00407{width:55.674000px;}
._5_c00407{width:59.136000px;}
.fc0_c00407{color:rgb(35,31,32);}
.fs5_c00407{font-size:30.600000px;}
.fs6_c00407{font-size:36.000000px;}
.fs3_c00407{font-size:42.000000px;}
.fs0_c00407{font-size:48.000000px;}
.fs4_c00407{font-size:54.000000px;}
.fs2_c00407{font-size:57.000000px;}
.fs1_c00407{font-size:60.000000px;}
.y0_c00407{bottom:0.000000px;}
.y19_c00407{bottom:317.766600px;}
.y17_c00407{bottom:374.955450px;}
.y16_c00407{bottom:388.455450px;}
.y15_c00407{bottom:414.959400px;}
.y14_c00407{bottom:428.459400px;}
.y13_c00407{bottom:454.963350px;}
.y12_c00407{bottom:468.463350px;}
.y11_c00407{bottom:481.963350px;}
.y10_c00407{bottom:504.215400px;}
.yf_c00407{bottom:522.215400px;}
.ye_c00407{bottom:548.719350px;}
.y18_c00407{bottom:551.110350px;}
.yd_c00407{bottom:836.931750px;}
.yc_c00407{bottom:850.431750px;}
.yb_c00407{bottom:863.931750px;}
.ya_c00407{bottom:890.435700px;}
.y9_c00407{bottom:903.935700px;}
.y8_c00407{bottom:917.435700px;}
.y7_c00407{bottom:943.939650px;}
.y6_c00407{bottom:957.439650px;}
.y5_c00407{bottom:970.939650px;}
.y4_c00407{bottom:993.191700px;}
.y3_c00407{bottom:1011.191700px;}
.y2_c00407{bottom:1037.695650px;}
.y1_c00407{bottom:1093.600950px;}
.h7_c00407{height:25.200000px;}
.h6_c00407{height:30.282000px;}
.h4_c00407{height:34.080000px;}
.h2_c00407{height:39.264000px;}
.h3_c00407{height:43.260000px;}
.h5_c00407{height:43.740000px;}
.h1_c00407{height:1135.500000px;}
.h0_c00407{height:1135.506150px;}
.w0_c00407{width:893.950200px;}
.w1_c00407{width:894.000000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:77.603100px;}
.x4_c00407{left:424.138500px;}
.x2_c00407{left:599.532150px;}
.x3_c00407{left:612.288150px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls2_c00407{letter-spacing:-0.640000pt;}
.ls3_c00407{letter-spacing:-0.560000pt;}
.ls1_c00407{letter-spacing:-0.336000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws1_c00407{word-spacing:-7.728000pt;}
.ws2_c00407{word-spacing:-5.766400pt;}
.ws3_c00407{word-spacing:0.000000pt;}
.ws5_c00407{word-spacing:0.336000pt;}
.ws4_c00407{word-spacing:6.272000pt;}
.ws0_c00407{word-spacing:1409.275733pt;}
._3_c00407{margin-left:-6.260267pt;}
._0_c00407{margin-left:-1.877333pt;}
._1_c00407{margin-left:-0.981333pt;}
._2_c00407{width:1.792000pt;}
._6_c00407{width:6.912000pt;}
._4_c00407{width:49.488000pt;}
._5_c00407{width:52.565333pt;}
.fs5_c00407{font-size:27.200000pt;}
.fs6_c00407{font-size:32.000000pt;}
.fs3_c00407{font-size:37.333333pt;}
.fs0_c00407{font-size:42.666667pt;}
.fs4_c00407{font-size:48.000000pt;}
.fs2_c00407{font-size:50.666667pt;}
.fs1_c00407{font-size:53.333333pt;}
.y0_c00407{bottom:0.000000pt;}
.y19_c00407{bottom:282.459200pt;}
.y17_c00407{bottom:333.293733pt;}
.y16_c00407{bottom:345.293733pt;}
.y15_c00407{bottom:368.852800pt;}
.y14_c00407{bottom:380.852800pt;}
.y13_c00407{bottom:404.411867pt;}
.y12_c00407{bottom:416.411867pt;}
.y11_c00407{bottom:428.411867pt;}
.y10_c00407{bottom:448.191467pt;}
.yf_c00407{bottom:464.191467pt;}
.ye_c00407{bottom:487.750533pt;}
.y18_c00407{bottom:489.875867pt;}
.yd_c00407{bottom:743.939333pt;}
.yc_c00407{bottom:755.939333pt;}
.yb_c00407{bottom:767.939333pt;}
.ya_c00407{bottom:791.498400pt;}
.y9_c00407{bottom:803.498400pt;}
.y8_c00407{bottom:815.498400pt;}
.y7_c00407{bottom:839.057467pt;}
.y6_c00407{bottom:851.057467pt;}
.y5_c00407{bottom:863.057467pt;}
.y4_c00407{bottom:882.837067pt;}
.y3_c00407{bottom:898.837067pt;}
.y2_c00407{bottom:922.396133pt;}
.y1_c00407{bottom:972.089733pt;}
.h7_c00407{height:22.400000pt;}
.h6_c00407{height:26.917333pt;}
.h4_c00407{height:30.293333pt;}
.h2_c00407{height:34.901333pt;}
.h3_c00407{height:38.453333pt;}
.h5_c00407{height:38.880000pt;}
.h1_c00407{height:1009.333333pt;}
.h0_c00407{height:1009.338800pt;}
.w0_c00407{width:794.622400pt;}
.w1_c00407{width:794.666667pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:68.980533pt;}
.x4_c00407{left:377.012000pt;}
.x2_c00407{left:532.917467pt;}
.x3_c00407{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00408;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00408{font-family:ff6_c00408;line-height:0.908000;font-style:normal;font-weight: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_c00408;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00408{font-family:ff7_c00408;line-height:1.067000;font-style:normal;font-weight: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_c00408;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00408{font-family:ff8_c00408;line-height:0.710000;font-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_c00408{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls2_c00408{letter-spacing:-0.720000px;}
.ls3_c00408{letter-spacing:-0.630000px;}
.ls4_c00408{letter-spacing:-0.378000px;}
.ls1_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00408{word-spacing:-8.694000px;}
.ws2_c00408{word-spacing:-6.487200px;}
.ws0_c00408{word-spacing:-0.048000px;}
.ws3_c00408{word-spacing:0.000000px;}
.ws5_c00408{word-spacing:0.378000px;}
.ws4_c00408{word-spacing:7.056000px;}
._0_c00408{margin-left:-2755.276200px;}
._4_c00408{margin-left:-6.946800px;}
._1_c00408{margin-left:-2.256000px;}
._3_c00408{margin-left:-1.200000px;}
._2_c00408{width:1.008000px;}
._7_c00408{width:7.776000px;}
._5_c00408{width:55.674000px;}
._6_c00408{width:59.136000px;}
.fc0_c00408{color:rgb(35,31,32);}
.fs5_c00408{font-size:30.600000px;}
.fs6_c00408{font-size:36.000000px;}
.fs3_c00408{font-size:42.000000px;}
.fs0_c00408{font-size:48.000000px;}
.fs4_c00408{font-size:54.000000px;}
.fs2_c00408{font-size:57.000000px;}
.fs1_c00408{font-size:60.000000px;}
.y0_c00408{bottom:0.000000px;}
.y19_c00408{bottom:361.685250px;}
.y18_c00408{bottom:375.185250px;}
.y17_c00408{bottom:388.685250px;}
.y16_c00408{bottom:415.189200px;}
.y15_c00408{bottom:428.689200px;}
.y14_c00408{bottom:455.193150px;}
.y13_c00408{bottom:468.693150px;}
.y12_c00408{bottom:482.193150px;}
.y11_c00408{bottom:504.445050px;}
.y10_c00408{bottom:522.445050px;}
.yf_c00408{bottom:548.949000px;}
.ye_c00408{bottom:551.110350px;}
.yd_c00408{bottom:836.515200px;}
.yc_c00408{bottom:850.015200px;}
.yb_c00408{bottom:863.515200px;}
.ya_c00408{bottom:890.019150px;}
.y9_c00408{bottom:903.519150px;}
.y8_c00408{bottom:917.019150px;}
.y7_c00408{bottom:943.523100px;}
.y6_c00408{bottom:957.023100px;}
.y5_c00408{bottom:970.523100px;}
.y4_c00408{bottom:992.775000px;}
.y3_c00408{bottom:1010.775000px;}
.y2_c00408{bottom:1037.278950px;}
.y1_c00408{bottom:1093.600950px;}
.h8_c00408{height:25.200000px;}
.h7_c00408{height:30.282000px;}
.h5_c00408{height:34.080000px;}
.h2_c00408{height:39.264000px;}
.h3_c00408{height:39.984000px;}
.h4_c00408{height:43.260000px;}
.h6_c00408{height:43.740000px;}
.h1_c00408{height:1135.500000px;}
.h0_c00408{height:1135.506150px;}
.w0_c00408{width:893.950200px;}
.w1_c00408{width:894.000000px;}
.x0_c00408{left:0.000000px;}
.x4_c00408{left:128.626800px;}
.x5_c00408{left:141.382650px;}
.x2_c00408{left:188.061900px;}
.x3_c00408{left:190.513350px;}
.x6_c00408{left:321.801150px;}
.x1_c00408{left:800.165850px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls2_c00408{letter-spacing:-0.640000pt;}
.ls3_c00408{letter-spacing:-0.560000pt;}
.ls4_c00408{letter-spacing:-0.336000pt;}
.ls1_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.426667pt;}
.ws1_c00408{word-spacing:-7.728000pt;}
.ws2_c00408{word-spacing:-5.766400pt;}
.ws0_c00408{word-spacing:-0.042667pt;}
.ws3_c00408{word-spacing:0.000000pt;}
.ws5_c00408{word-spacing:0.336000pt;}
.ws4_c00408{word-spacing:6.272000pt;}
._0_c00408{margin-left:-2449.134400pt;}
._4_c00408{margin-left:-6.174933pt;}
._1_c00408{margin-left:-2.005333pt;}
._3_c00408{margin-left:-1.066667pt;}
._2_c00408{width:0.896000pt;}
._7_c00408{width:6.912000pt;}
._5_c00408{width:49.488000pt;}
._6_c00408{width:52.565333pt;}
.fs5_c00408{font-size:27.200000pt;}
.fs6_c00408{font-size:32.000000pt;}
.fs3_c00408{font-size:37.333333pt;}
.fs0_c00408{font-size:42.666667pt;}
.fs4_c00408{font-size:48.000000pt;}
.fs2_c00408{font-size:50.666667pt;}
.fs1_c00408{font-size:53.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.y19_c00408{bottom:321.498000pt;}
.y18_c00408{bottom:333.498000pt;}
.y17_c00408{bottom:345.498000pt;}
.y16_c00408{bottom:369.057067pt;}
.y15_c00408{bottom:381.057067pt;}
.y14_c00408{bottom:404.616133pt;}
.y13_c00408{bottom:416.616133pt;}
.y12_c00408{bottom:428.616133pt;}
.y11_c00408{bottom:448.395600pt;}
.y10_c00408{bottom:464.395600pt;}
.yf_c00408{bottom:487.954667pt;}
.ye_c00408{bottom:489.875867pt;}
.yd_c00408{bottom:743.569067pt;}
.yc_c00408{bottom:755.569067pt;}
.yb_c00408{bottom:767.569067pt;}
.ya_c00408{bottom:791.128133pt;}
.y9_c00408{bottom:803.128133pt;}
.y8_c00408{bottom:815.128133pt;}
.y7_c00408{bottom:838.687200pt;}
.y6_c00408{bottom:850.687200pt;}
.y5_c00408{bottom:862.687200pt;}
.y4_c00408{bottom:882.466667pt;}
.y3_c00408{bottom:898.466667pt;}
.y2_c00408{bottom:922.025733pt;}
.y1_c00408{bottom:972.089733pt;}
.h8_c00408{height:22.400000pt;}
.h7_c00408{height:26.917333pt;}
.h5_c00408{height:30.293333pt;}
.h2_c00408{height:34.901333pt;}
.h3_c00408{height:35.541333pt;}
.h4_c00408{height:38.453333pt;}
.h6_c00408{height:38.880000pt;}
.h1_c00408{height:1009.333333pt;}
.h0_c00408{height:1009.338800pt;}
.w0_c00408{width:794.622400pt;}
.w1_c00408{width:794.666667pt;}
.x0_c00408{left:0.000000pt;}
.x4_c00408{left:114.334933pt;}
.x5_c00408{left:125.673467pt;}
.x2_c00408{left:167.166133pt;}
.x3_c00408{left:169.345200pt;}
.x6_c00408{left:286.045467pt;}
.x1_c00408{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls1_c00409{letter-spacing:-0.720000px;}
.ls2_c00409{letter-spacing:-0.630000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:-8.694000px;}
.ws2_c00409{word-spacing:0.000000px;}
.ws3_c00409{word-spacing:7.056000px;}
.ws0_c00409{word-spacing:1585.435200px;}
._3_c00409{margin-left:-7.042800px;}
._8_c00409{margin-left:-5.022000px;}
._5_c00409{margin-left:-3.252000px;}
._0_c00409{margin-left:-2.112000px;}
._1_c00409{margin-left:-1.104000px;}
._2_c00409{width:2.016000px;}
._7_c00409{width:7.776000px;}
._4_c00409{width:55.674000px;}
._6_c00409{width:59.136000px;}
.fc0_c00409{color:rgb(35,31,32);}
.fs3_c00409{font-size:42.000000px;}
.fs0_c00409{font-size:48.000000px;}
.fs4_c00409{font-size:54.000000px;}
.fs2_c00409{font-size:57.000000px;}
.fs1_c00409{font-size:60.000000px;}
.y0_c00409{bottom:0.000000px;}
.y19_c00409{bottom:347.998200px;}
.y18_c00409{bottom:361.498050px;}
.y17_c00409{bottom:374.998050px;}
.y16_c00409{bottom:401.502000px;}
.y15_c00409{bottom:415.002000px;}
.y14_c00409{bottom:428.502000px;}
.y13_c00409{bottom:455.005950px;}
.y12_c00409{bottom:468.505950px;}
.y11_c00409{bottom:482.005950px;}
.y10_c00409{bottom:504.257850px;}
.yf_c00409{bottom:522.257850px;}
.ye_c00409{bottom:548.761800px;}
.yd_c00409{bottom:836.974200px;}
.yc_c00409{bottom:850.474200px;}
.yb_c00409{bottom:863.974200px;}
.ya_c00409{bottom:890.478150px;}
.y9_c00409{bottom:903.978150px;}
.y8_c00409{bottom:917.478150px;}
.y7_c00409{bottom:943.982100px;}
.y6_c00409{bottom:957.482100px;}
.y5_c00409{bottom:970.982100px;}
.y4_c00409{bottom:993.234150px;}
.y3_c00409{bottom:1011.234150px;}
.y2_c00409{bottom:1037.738100px;}
.y1_c00409{bottom:1093.600950px;}
.h6_c00409{height:30.282000px;}
.h4_c00409{height:34.080000px;}
.h2_c00409{height:39.264000px;}
.h3_c00409{height:43.260000px;}
.h5_c00409{height:43.740000px;}
.h1_c00409{height:1135.500000px;}
.h0_c00409{height:1135.506150px;}
.w0_c00409{width:893.950200px;}
.w1_c00409{width:894.000000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:77.603100px;}
.x2_c00409{left:599.489700px;}
.x3_c00409{left:612.245550px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls1_c00409{letter-spacing:-0.640000pt;}
.ls2_c00409{letter-spacing:-0.560000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws1_c00409{word-spacing:-7.728000pt;}
.ws2_c00409{word-spacing:0.000000pt;}
.ws3_c00409{word-spacing:6.272000pt;}
.ws0_c00409{word-spacing:1409.275733pt;}
._3_c00409{margin-left:-6.260267pt;}
._8_c00409{margin-left:-4.464000pt;}
._5_c00409{margin-left:-2.890667pt;}
._0_c00409{margin-left:-1.877333pt;}
._1_c00409{margin-left:-0.981333pt;}
._2_c00409{width:1.792000pt;}
._7_c00409{width:6.912000pt;}
._4_c00409{width:49.488000pt;}
._6_c00409{width:52.565333pt;}
.fs3_c00409{font-size:37.333333pt;}
.fs0_c00409{font-size:42.666667pt;}
.fs4_c00409{font-size:48.000000pt;}
.fs2_c00409{font-size:50.666667pt;}
.fs1_c00409{font-size:53.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y19_c00409{bottom:309.331733pt;}
.y18_c00409{bottom:321.331600pt;}
.y17_c00409{bottom:333.331600pt;}
.y16_c00409{bottom:356.890667pt;}
.y15_c00409{bottom:368.890667pt;}
.y14_c00409{bottom:380.890667pt;}
.y13_c00409{bottom:404.449733pt;}
.y12_c00409{bottom:416.449733pt;}
.y11_c00409{bottom:428.449733pt;}
.y10_c00409{bottom:448.229200pt;}
.yf_c00409{bottom:464.229200pt;}
.ye_c00409{bottom:487.788267pt;}
.yd_c00409{bottom:743.977067pt;}
.yc_c00409{bottom:755.977067pt;}
.yb_c00409{bottom:767.977067pt;}
.ya_c00409{bottom:791.536133pt;}
.y9_c00409{bottom:803.536133pt;}
.y8_c00409{bottom:815.536133pt;}
.y7_c00409{bottom:839.095200pt;}
.y6_c00409{bottom:851.095200pt;}
.y5_c00409{bottom:863.095200pt;}
.y4_c00409{bottom:882.874800pt;}
.y3_c00409{bottom:898.874800pt;}
.y2_c00409{bottom:922.433867pt;}
.y1_c00409{bottom:972.089733pt;}
.h6_c00409{height:26.917333pt;}
.h4_c00409{height:30.293333pt;}
.h2_c00409{height:34.901333pt;}
.h3_c00409{height:38.453333pt;}
.h5_c00409{height:38.880000pt;}
.h1_c00409{height:1009.333333pt;}
.h0_c00409{height:1009.338800pt;}
.w0_c00409{width:794.622400pt;}
.w1_c00409{width:794.666667pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:68.980533pt;}
.x2_c00409{left:532.879733pt;}
.x3_c00409{left:544.218267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00410;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:0.908000;font-style:normal;font-weight: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_c00410;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00410{font-family:ff7_c00410;line-height:1.067000;font-style:normal;font-weight: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_c00410;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00410{font-family:ff8_c00410;line-height:0.710000;font-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_c00410{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls3_c00410{letter-spacing:-0.720000px;}
.ls5_c00410{letter-spacing:-0.648000px;}
.ls4_c00410{letter-spacing:-0.630000px;}
.ls1_c00410{letter-spacing:0.000000px;}
.ls2_c00410{letter-spacing:0.162000px;}
.ls0_c00410{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00410{word-spacing:-8.694000px;}
.ws2_c00410{word-spacing:-6.487200px;}
.ws5_c00410{word-spacing:-0.162000px;}
.ws0_c00410{word-spacing:-0.048000px;}
.ws3_c00410{word-spacing:0.000000px;}
.ws4_c00410{word-spacing:7.056000px;}
.ws6_c00410{word-spacing:56.322000px;}
._0_c00410{margin-left:-2755.276200px;}
._4_c00410{margin-left:-6.946800px;}
._1_c00410{margin-left:-2.256000px;}
._3_c00410{margin-left:-1.200000px;}
._2_c00410{width:1.008000px;}
._7_c00410{width:7.776000px;}
._5_c00410{width:55.674000px;}
._6_c00410{width:59.136000px;}
.fc0_c00410{color:rgb(35,31,32);}
.fs5_c00410{font-size:30.600000px;}
.fs6_c00410{font-size:36.000000px;}
.fs3_c00410{font-size:42.000000px;}
.fs0_c00410{font-size:48.000000px;}
.fs4_c00410{font-size:54.000000px;}
.fs2_c00410{font-size:57.000000px;}
.fs1_c00410{font-size:60.000000px;}
.y0_c00410{bottom:0.000000px;}
.ye_c00410{bottom:317.809050px;}
.y19_c00410{bottom:375.227700px;}
.y18_c00410{bottom:388.727700px;}
.y17_c00410{bottom:415.231650px;}
.y16_c00410{bottom:428.731650px;}
.y15_c00410{bottom:455.235600px;}
.y14_c00410{bottom:468.735600px;}
.y13_c00410{bottom:482.235600px;}
.y12_c00410{bottom:504.487650px;}
.y11_c00410{bottom:522.487650px;}
.y10_c00410{bottom:548.991450px;}
.yd_c00410{bottom:551.152950px;}
.yc_c00410{bottom:850.057650px;}
.yb_c00410{bottom:863.557650px;}
.ya_c00410{bottom:877.057650px;}
.y9_c00410{bottom:903.561600px;}
.y8_c00410{bottom:917.061600px;}
.y7_c00410{bottom:943.565550px;}
.y6_c00410{bottom:957.065550px;}
.y5_c00410{bottom:970.565550px;}
.y4_c00410{bottom:992.817600px;}
.y3_c00410{bottom:1010.817600px;}
.y2_c00410{bottom:1037.321550px;}
.yf_c00410{bottom:1040.299350px;}
.y1_c00410{bottom:1093.600950px;}
.h8_c00410{height:25.200000px;}
.h7_c00410{height:30.282000px;}
.h5_c00410{height:34.080000px;}
.h2_c00410{height:39.264000px;}
.h3_c00410{height:39.984000px;}
.h4_c00410{height:43.260000px;}
.h6_c00410{height:43.740000px;}
.h1_c00410{height:1135.500000px;}
.h0_c00410{height:1135.506150px;}
.w0_c00410{width:893.950200px;}
.w1_c00410{width:894.000000px;}
.x0_c00410{left:0.000000px;}
.x4_c00410{left:128.584200px;}
.x5_c00410{left:141.340200px;}
.x2_c00410{left:188.061900px;}
.x3_c00410{left:190.513350px;}
.x6_c00410{left:321.758550px;}
.x1_c00410{left:800.165850px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls3_c00410{letter-spacing:-0.640000pt;}
.ls5_c00410{letter-spacing:-0.576000pt;}
.ls4_c00410{letter-spacing:-0.560000pt;}
.ls1_c00410{letter-spacing:0.000000pt;}
.ls2_c00410{letter-spacing:0.144000pt;}
.ls0_c00410{letter-spacing:0.426667pt;}
.ws1_c00410{word-spacing:-7.728000pt;}
.ws2_c00410{word-spacing:-5.766400pt;}
.ws5_c00410{word-spacing:-0.144000pt;}
.ws0_c00410{word-spacing:-0.042667pt;}
.ws3_c00410{word-spacing:0.000000pt;}
.ws4_c00410{word-spacing:6.272000pt;}
.ws6_c00410{word-spacing:50.064000pt;}
._0_c00410{margin-left:-2449.134400pt;}
._4_c00410{margin-left:-6.174933pt;}
._1_c00410{margin-left:-2.005333pt;}
._3_c00410{margin-left:-1.066667pt;}
._2_c00410{width:0.896000pt;}
._7_c00410{width:6.912000pt;}
._5_c00410{width:49.488000pt;}
._6_c00410{width:52.565333pt;}
.fs5_c00410{font-size:27.200000pt;}
.fs6_c00410{font-size:32.000000pt;}
.fs3_c00410{font-size:37.333333pt;}
.fs0_c00410{font-size:42.666667pt;}
.fs4_c00410{font-size:48.000000pt;}
.fs2_c00410{font-size:50.666667pt;}
.fs1_c00410{font-size:53.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.ye_c00410{bottom:282.496933pt;}
.y19_c00410{bottom:333.535733pt;}
.y18_c00410{bottom:345.535733pt;}
.y17_c00410{bottom:369.094800pt;}
.y16_c00410{bottom:381.094800pt;}
.y15_c00410{bottom:404.653867pt;}
.y14_c00410{bottom:416.653867pt;}
.y13_c00410{bottom:428.653867pt;}
.y12_c00410{bottom:448.433467pt;}
.y11_c00410{bottom:464.433467pt;}
.y10_c00410{bottom:487.992400pt;}
.yd_c00410{bottom:489.913733pt;}
.yc_c00410{bottom:755.606800pt;}
.yb_c00410{bottom:767.606800pt;}
.ya_c00410{bottom:779.606800pt;}
.y9_c00410{bottom:803.165867pt;}
.y8_c00410{bottom:815.165867pt;}
.y7_c00410{bottom:838.724933pt;}
.y6_c00410{bottom:850.724933pt;}
.y5_c00410{bottom:862.724933pt;}
.y4_c00410{bottom:882.504533pt;}
.y3_c00410{bottom:898.504533pt;}
.y2_c00410{bottom:922.063600pt;}
.yf_c00410{bottom:924.710533pt;}
.y1_c00410{bottom:972.089733pt;}
.h8_c00410{height:22.400000pt;}
.h7_c00410{height:26.917333pt;}
.h5_c00410{height:30.293333pt;}
.h2_c00410{height:34.901333pt;}
.h3_c00410{height:35.541333pt;}
.h4_c00410{height:38.453333pt;}
.h6_c00410{height:38.880000pt;}
.h1_c00410{height:1009.333333pt;}
.h0_c00410{height:1009.338800pt;}
.w0_c00410{width:794.622400pt;}
.w1_c00410{width:794.666667pt;}
.x0_c00410{left:0.000000pt;}
.x4_c00410{left:114.297067pt;}
.x5_c00410{left:125.635733pt;}
.x2_c00410{left:167.166133pt;}
.x3_c00410{left:169.345200pt;}
.x6_c00410{left:286.007600pt;}
.x1_c00410{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00411;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff6_c00411{font-family:ff6_c00411;line-height:1.067000;font-style:normal;font-weight: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_c00411;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00411{font-family:ff7_c00411;line-height:0.710000;font-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_c00411{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls2_c00411{letter-spacing:-0.720000px;}
.ls3_c00411{letter-spacing:-0.630000px;}
.ls1_c00411{letter-spacing:-0.216000px;}
.ls0_c00411{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00411{word-spacing:-8.694000px;}
.ws2_c00411{word-spacing:-6.487200px;}
.ws3_c00411{word-spacing:0.000000px;}
.ws5_c00411{word-spacing:0.216000px;}
.ws4_c00411{word-spacing:7.056000px;}
.ws0_c00411{word-spacing:1585.435200px;}
._3_c00411{margin-left:-7.042800px;}
._0_c00411{margin-left:-2.112000px;}
._1_c00411{margin-left:-1.104000px;}
._2_c00411{width:2.016000px;}
._6_c00411{width:7.776000px;}
._4_c00411{width:55.674000px;}
._5_c00411{width:59.136000px;}
.fc0_c00411{color:rgb(35,31,32);}
.fs5_c00411{font-size:30.600000px;}
.fs6_c00411{font-size:36.000000px;}
.fs3_c00411{font-size:42.000000px;}
.fs0_c00411{font-size:48.000000px;}
.fs4_c00411{font-size:54.000000px;}
.fs2_c00411{font-size:57.000000px;}
.fs1_c00411{font-size:60.000000px;}
.y0_c00411{bottom:0.000000px;}
.y18_c00411{bottom:361.668150px;}
.y17_c00411{bottom:375.168000px;}
.y16_c00411{bottom:388.668000px;}
.y15_c00411{bottom:415.172100px;}
.y14_c00411{bottom:428.672100px;}
.y13_c00411{bottom:455.175900px;}
.y12_c00411{bottom:468.675900px;}
.y11_c00411{bottom:482.175900px;}
.y10_c00411{bottom:504.427950px;}
.yf_c00411{bottom:522.427950px;}
.ye_c00411{bottom:548.931900px;}
.y19_c00411{bottom:551.323050px;}
.yd_c00411{bottom:837.144300px;}
.yc_c00411{bottom:850.644300px;}
.yb_c00411{bottom:864.144300px;}
.ya_c00411{bottom:890.648250px;}
.y9_c00411{bottom:904.148250px;}
.y8_c00411{bottom:917.648250px;}
.y7_c00411{bottom:944.152200px;}
.y6_c00411{bottom:957.652200px;}
.y5_c00411{bottom:971.152200px;}
.y4_c00411{bottom:993.404250px;}
.y3_c00411{bottom:1011.404250px;}
.y2_c00411{bottom:1037.908200px;}
.y1_c00411{bottom:1093.600950px;}
.h7_c00411{height:25.200000px;}
.h6_c00411{height:30.282000px;}
.h4_c00411{height:34.080000px;}
.h2_c00411{height:39.264000px;}
.h3_c00411{height:43.260000px;}
.h5_c00411{height:43.740000px;}
.h1_c00411{height:1135.500000px;}
.h0_c00411{height:1135.506150px;}
.w0_c00411{width:893.950200px;}
.w1_c00411{width:894.000000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:77.603100px;}
.x4_c00411{left:424.096050px;}
.x2_c00411{left:599.532150px;}
.x3_c00411{left:612.288150px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls2_c00411{letter-spacing:-0.640000pt;}
.ls3_c00411{letter-spacing:-0.560000pt;}
.ls1_c00411{letter-spacing:-0.192000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws1_c00411{word-spacing:-7.728000pt;}
.ws2_c00411{word-spacing:-5.766400pt;}
.ws3_c00411{word-spacing:0.000000pt;}
.ws5_c00411{word-spacing:0.192000pt;}
.ws4_c00411{word-spacing:6.272000pt;}
.ws0_c00411{word-spacing:1409.275733pt;}
._3_c00411{margin-left:-6.260267pt;}
._0_c00411{margin-left:-1.877333pt;}
._1_c00411{margin-left:-0.981333pt;}
._2_c00411{width:1.792000pt;}
._6_c00411{width:6.912000pt;}
._4_c00411{width:49.488000pt;}
._5_c00411{width:52.565333pt;}
.fs5_c00411{font-size:27.200000pt;}
.fs6_c00411{font-size:32.000000pt;}
.fs3_c00411{font-size:37.333333pt;}
.fs0_c00411{font-size:42.666667pt;}
.fs4_c00411{font-size:48.000000pt;}
.fs2_c00411{font-size:50.666667pt;}
.fs1_c00411{font-size:53.333333pt;}
.y0_c00411{bottom:0.000000pt;}
.y18_c00411{bottom:321.482800pt;}
.y17_c00411{bottom:333.482667pt;}
.y16_c00411{bottom:345.482667pt;}
.y15_c00411{bottom:369.041867pt;}
.y14_c00411{bottom:381.041867pt;}
.y13_c00411{bottom:404.600800pt;}
.y12_c00411{bottom:416.600800pt;}
.y11_c00411{bottom:428.600800pt;}
.y10_c00411{bottom:448.380400pt;}
.yf_c00411{bottom:464.380400pt;}
.ye_c00411{bottom:487.939467pt;}
.y19_c00411{bottom:490.064933pt;}
.yd_c00411{bottom:744.128267pt;}
.yc_c00411{bottom:756.128267pt;}
.yb_c00411{bottom:768.128267pt;}
.ya_c00411{bottom:791.687333pt;}
.y9_c00411{bottom:803.687333pt;}
.y8_c00411{bottom:815.687333pt;}
.y7_c00411{bottom:839.246400pt;}
.y6_c00411{bottom:851.246400pt;}
.y5_c00411{bottom:863.246400pt;}
.y4_c00411{bottom:883.026000pt;}
.y3_c00411{bottom:899.026000pt;}
.y2_c00411{bottom:922.585067pt;}
.y1_c00411{bottom:972.089733pt;}
.h7_c00411{height:22.400000pt;}
.h6_c00411{height:26.917333pt;}
.h4_c00411{height:30.293333pt;}
.h2_c00411{height:34.901333pt;}
.h3_c00411{height:38.453333pt;}
.h5_c00411{height:38.880000pt;}
.h1_c00411{height:1009.333333pt;}
.h0_c00411{height:1009.338800pt;}
.w0_c00411{width:794.622400pt;}
.w1_c00411{width:794.666667pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:68.980533pt;}
.x4_c00411{left:376.974267pt;}
.x2_c00411{left:532.917467pt;}
.x3_c00411{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00412;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;line-height:0.908000;font-style:normal;font-weight: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_c00412;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00412{font-family:ff7_c00412;line-height:1.067000;font-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_c00412{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls2_c00412{letter-spacing:-0.720000px;}
.ls3_c00412{letter-spacing:-0.630000px;}
.ls4_c00412{letter-spacing:-0.216000px;}
.ls1_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00412{word-spacing:-8.694000px;}
.ws0_c00412{word-spacing:-0.048000px;}
.ws2_c00412{word-spacing:0.000000px;}
.ws4_c00412{word-spacing:0.216000px;}
.ws3_c00412{word-spacing:7.056000px;}
._0_c00412{margin-left:-2755.276200px;}
._4_c00412{margin-left:-6.946800px;}
._1_c00412{margin-left:-2.256000px;}
._3_c00412{margin-left:-1.200000px;}
._2_c00412{width:1.008000px;}
._7_c00412{width:7.776000px;}
._5_c00412{width:55.674000px;}
._6_c00412{width:59.136000px;}
.fc0_c00412{color:rgb(35,31,32);}
.fs3_c00412{font-size:42.000000px;}
.fs0_c00412{font-size:48.000000px;}
.fs4_c00412{font-size:54.000000px;}
.fs2_c00412{font-size:57.000000px;}
.fs1_c00412{font-size:60.000000px;}
.y0_c00412{bottom:0.000000px;}
.y19_c00412{bottom:348.397800px;}
.y18_c00412{bottom:361.897800px;}
.y17_c00412{bottom:375.397800px;}
.y16_c00412{bottom:401.901750px;}
.y15_c00412{bottom:415.401750px;}
.y14_c00412{bottom:428.901750px;}
.y13_c00412{bottom:455.405700px;}
.y12_c00412{bottom:468.905700px;}
.y11_c00412{bottom:482.405700px;}
.y10_c00412{bottom:504.657600px;}
.yf_c00412{bottom:522.657600px;}
.ye_c00412{bottom:549.161550px;}
.yd_c00412{bottom:836.727750px;}
.yc_c00412{bottom:850.227750px;}
.yb_c00412{bottom:863.727750px;}
.ya_c00412{bottom:890.231700px;}
.y9_c00412{bottom:903.731700px;}
.y8_c00412{bottom:917.231700px;}
.y7_c00412{bottom:943.735650px;}
.y6_c00412{bottom:957.235650px;}
.y5_c00412{bottom:970.735650px;}
.y4_c00412{bottom:992.987550px;}
.y3_c00412{bottom:1010.987550px;}
.y2_c00412{bottom:1037.491500px;}
.y1_c00412{bottom:1093.600950px;}
.h7_c00412{height:30.282000px;}
.h5_c00412{height:34.080000px;}
.h2_c00412{height:39.264000px;}
.h3_c00412{height:39.984000px;}
.h4_c00412{height:43.260000px;}
.h6_c00412{height:43.740000px;}
.h1_c00412{height:1135.500000px;}
.h0_c00412{height:1135.506150px;}
.w0_c00412{width:893.950200px;}
.w1_c00412{width:894.000000px;}
.x0_c00412{left:0.000000px;}
.x4_c00412{left:128.626800px;}
.x5_c00412{left:141.382650px;}
.x2_c00412{left:188.061900px;}
.x3_c00412{left:190.513350px;}
.x1_c00412{left:800.165850px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls2_c00412{letter-spacing:-0.640000pt;}
.ls3_c00412{letter-spacing:-0.560000pt;}
.ls4_c00412{letter-spacing:-0.192000pt;}
.ls1_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:0.426667pt;}
.ws1_c00412{word-spacing:-7.728000pt;}
.ws0_c00412{word-spacing:-0.042667pt;}
.ws2_c00412{word-spacing:0.000000pt;}
.ws4_c00412{word-spacing:0.192000pt;}
.ws3_c00412{word-spacing:6.272000pt;}
._0_c00412{margin-left:-2449.134400pt;}
._4_c00412{margin-left:-6.174933pt;}
._1_c00412{margin-left:-2.005333pt;}
._3_c00412{margin-left:-1.066667pt;}
._2_c00412{width:0.896000pt;}
._7_c00412{width:6.912000pt;}
._5_c00412{width:49.488000pt;}
._6_c00412{width:52.565333pt;}
.fs3_c00412{font-size:37.333333pt;}
.fs0_c00412{font-size:42.666667pt;}
.fs4_c00412{font-size:48.000000pt;}
.fs2_c00412{font-size:50.666667pt;}
.fs1_c00412{font-size:53.333333pt;}
.y0_c00412{bottom:0.000000pt;}
.y19_c00412{bottom:309.686933pt;}
.y18_c00412{bottom:321.686933pt;}
.y17_c00412{bottom:333.686933pt;}
.y16_c00412{bottom:357.246000pt;}
.y15_c00412{bottom:369.246000pt;}
.y14_c00412{bottom:381.246000pt;}
.y13_c00412{bottom:404.805067pt;}
.y12_c00412{bottom:416.805067pt;}
.y11_c00412{bottom:428.805067pt;}
.y10_c00412{bottom:448.584533pt;}
.yf_c00412{bottom:464.584533pt;}
.ye_c00412{bottom:488.143600pt;}
.yd_c00412{bottom:743.758000pt;}
.yc_c00412{bottom:755.758000pt;}
.yb_c00412{bottom:767.758000pt;}
.ya_c00412{bottom:791.317067pt;}
.y9_c00412{bottom:803.317067pt;}
.y8_c00412{bottom:815.317067pt;}
.y7_c00412{bottom:838.876133pt;}
.y6_c00412{bottom:850.876133pt;}
.y5_c00412{bottom:862.876133pt;}
.y4_c00412{bottom:882.655600pt;}
.y3_c00412{bottom:898.655600pt;}
.y2_c00412{bottom:922.214667pt;}
.y1_c00412{bottom:972.089733pt;}
.h7_c00412{height:26.917333pt;}
.h5_c00412{height:30.293333pt;}
.h2_c00412{height:34.901333pt;}
.h3_c00412{height:35.541333pt;}
.h4_c00412{height:38.453333pt;}
.h6_c00412{height:38.880000pt;}
.h1_c00412{height:1009.333333pt;}
.h0_c00412{height:1009.338800pt;}
.w0_c00412{width:794.622400pt;}
.w1_c00412{width:794.666667pt;}
.x0_c00412{left:0.000000pt;}
.x4_c00412{left:114.334933pt;}
.x5_c00412{left:125.673467pt;}
.x2_c00412{left:167.166133pt;}
.x3_c00412{left:169.345200pt;}
.x1_c00412{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:1.067000;font-style:normal;font-weight: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_c00413;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00413{font-family:ff7_c00413;line-height:0.710000;font-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_c00413{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls1_c00413{letter-spacing:-1.620000px;}
.ls2_c00413{letter-spacing:-0.720000px;}
.ls3_c00413{letter-spacing:-0.630000px;}
.ls4_c00413{letter-spacing:-0.486000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00413{word-spacing:-8.694000px;}
.ws2_c00413{word-spacing:-6.487200px;}
.ws3_c00413{word-spacing:0.000000px;}
.ws6_c00413{word-spacing:0.486000px;}
.ws4_c00413{word-spacing:7.056000px;}
.ws5_c00413{word-spacing:57.294000px;}
.ws0_c00413{word-spacing:1585.435200px;}
._3_c00413{margin-left:-7.042800px;}
._0_c00413{margin-left:-2.112000px;}
._1_c00413{margin-left:-1.104000px;}
._2_c00413{width:2.016000px;}
._4_c00413{width:3.024600px;}
._6_c00413{width:7.776000px;}
._7_c00413{width:55.674000px;}
._5_c00413{width:59.136000px;}
.fc0_c00413{color:rgb(35,31,32);}
.fs5_c00413{font-size:30.600000px;}
.fs6_c00413{font-size:36.000000px;}
.fs3_c00413{font-size:42.000000px;}
.fs0_c00413{font-size:48.000000px;}
.fs4_c00413{font-size:54.000000px;}
.fs2_c00413{font-size:57.000000px;}
.fs1_c00413{font-size:60.000000px;}
.y0_c00413{bottom:0.000000px;}
.y18_c00413{bottom:361.668150px;}
.y17_c00413{bottom:375.168000px;}
.y16_c00413{bottom:388.668000px;}
.y15_c00413{bottom:415.172100px;}
.y14_c00413{bottom:428.672100px;}
.y13_c00413{bottom:455.175900px;}
.y12_c00413{bottom:468.675900px;}
.y11_c00413{bottom:482.175900px;}
.y10_c00413{bottom:504.427950px;}
.yf_c00413{bottom:522.427950px;}
.ye_c00413{bottom:548.931900px;}
.y19_c00413{bottom:551.323050px;}
.yd_c00413{bottom:837.144300px;}
.yc_c00413{bottom:850.644300px;}
.yb_c00413{bottom:864.144300px;}
.ya_c00413{bottom:890.648250px;}
.y9_c00413{bottom:904.148250px;}
.y8_c00413{bottom:917.648250px;}
.y7_c00413{bottom:944.152200px;}
.y6_c00413{bottom:957.652200px;}
.y5_c00413{bottom:971.152200px;}
.y4_c00413{bottom:993.404250px;}
.y3_c00413{bottom:1011.404250px;}
.y2_c00413{bottom:1037.908200px;}
.y1_c00413{bottom:1093.600950px;}
.h7_c00413{height:25.200000px;}
.h6_c00413{height:30.282000px;}
.h4_c00413{height:34.080000px;}
.h2_c00413{height:39.264000px;}
.h3_c00413{height:43.260000px;}
.h5_c00413{height:43.740000px;}
.h1_c00413{height:1135.500000px;}
.h0_c00413{height:1135.506150px;}
.w0_c00413{width:893.950200px;}
.w1_c00413{width:894.000000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:77.603100px;}
.x4_c00413{left:424.096050px;}
.x2_c00413{left:599.532150px;}
.x3_c00413{left:612.288150px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1_c00413{letter-spacing:-1.440000pt;}
.ls2_c00413{letter-spacing:-0.640000pt;}
.ls3_c00413{letter-spacing:-0.560000pt;}
.ls4_c00413{letter-spacing:-0.432000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws1_c00413{word-spacing:-7.728000pt;}
.ws2_c00413{word-spacing:-5.766400pt;}
.ws3_c00413{word-spacing:0.000000pt;}
.ws6_c00413{word-spacing:0.432000pt;}
.ws4_c00413{word-spacing:6.272000pt;}
.ws5_c00413{word-spacing:50.928000pt;}
.ws0_c00413{word-spacing:1409.275733pt;}
._3_c00413{margin-left:-6.260267pt;}
._0_c00413{margin-left:-1.877333pt;}
._1_c00413{margin-left:-0.981333pt;}
._2_c00413{width:1.792000pt;}
._4_c00413{width:2.688533pt;}
._6_c00413{width:6.912000pt;}
._7_c00413{width:49.488000pt;}
._5_c00413{width:52.565333pt;}
.fs5_c00413{font-size:27.200000pt;}
.fs6_c00413{font-size:32.000000pt;}
.fs3_c00413{font-size:37.333333pt;}
.fs0_c00413{font-size:42.666667pt;}
.fs4_c00413{font-size:48.000000pt;}
.fs2_c00413{font-size:50.666667pt;}
.fs1_c00413{font-size:53.333333pt;}
.y0_c00413{bottom:0.000000pt;}
.y18_c00413{bottom:321.482800pt;}
.y17_c00413{bottom:333.482667pt;}
.y16_c00413{bottom:345.482667pt;}
.y15_c00413{bottom:369.041867pt;}
.y14_c00413{bottom:381.041867pt;}
.y13_c00413{bottom:404.600800pt;}
.y12_c00413{bottom:416.600800pt;}
.y11_c00413{bottom:428.600800pt;}
.y10_c00413{bottom:448.380400pt;}
.yf_c00413{bottom:464.380400pt;}
.ye_c00413{bottom:487.939467pt;}
.y19_c00413{bottom:490.064933pt;}
.yd_c00413{bottom:744.128267pt;}
.yc_c00413{bottom:756.128267pt;}
.yb_c00413{bottom:768.128267pt;}
.ya_c00413{bottom:791.687333pt;}
.y9_c00413{bottom:803.687333pt;}
.y8_c00413{bottom:815.687333pt;}
.y7_c00413{bottom:839.246400pt;}
.y6_c00413{bottom:851.246400pt;}
.y5_c00413{bottom:863.246400pt;}
.y4_c00413{bottom:883.026000pt;}
.y3_c00413{bottom:899.026000pt;}
.y2_c00413{bottom:922.585067pt;}
.y1_c00413{bottom:972.089733pt;}
.h7_c00413{height:22.400000pt;}
.h6_c00413{height:26.917333pt;}
.h4_c00413{height:30.293333pt;}
.h2_c00413{height:34.901333pt;}
.h3_c00413{height:38.453333pt;}
.h5_c00413{height:38.880000pt;}
.h1_c00413{height:1009.333333pt;}
.h0_c00413{height:1009.338800pt;}
.w0_c00413{width:794.622400pt;}
.w1_c00413{width:794.666667pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:68.980533pt;}
.x4_c00413{left:376.974267pt;}
.x2_c00413{left:532.917467pt;}
.x3_c00413{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:0.908000;font-style:normal;font-weight: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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.067000;font-style:normal;font-weight: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_c00414;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00414{font-family:ff8_c00414;line-height:0.710000;font-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_c00414{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls2_c00414{letter-spacing:-0.864000px;}
.ls3_c00414{letter-spacing:-0.720000px;}
.ls4_c00414{letter-spacing:-0.630000px;}
.ls5_c00414{letter-spacing:-0.540000px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws2_c00414{word-spacing:-6.487200px;}
.ws0_c00414{word-spacing:-0.048000px;}
.ws3_c00414{word-spacing:0.000000px;}
.ws5_c00414{word-spacing:0.864000px;}
.ws4_c00414{word-spacing:7.056000px;}
.ws6_c00414{word-spacing:56.214000px;}
._0_c00414{margin-left:-2755.276200px;}
._4_c00414{margin-left:-6.946800px;}
._1_c00414{margin-left:-2.256000px;}
._3_c00414{margin-left:-1.200000px;}
._2_c00414{width:1.008000px;}
._7_c00414{width:7.776000px;}
._5_c00414{width:55.674000px;}
._6_c00414{width:59.136000px;}
.fc0_c00414{color:rgb(35,31,32);}
.fs5_c00414{font-size:30.600000px;}
.fs6_c00414{font-size:36.000000px;}
.fs3_c00414{font-size:42.000000px;}
.fs0_c00414{font-size:48.000000px;}
.fs4_c00414{font-size:54.000000px;}
.fs2_c00414{font-size:57.000000px;}
.fs1_c00414{font-size:60.000000px;}
.y0_c00414{bottom:0.000000px;}
.y19_c00414{bottom:361.897800px;}
.y18_c00414{bottom:375.397800px;}
.y17_c00414{bottom:388.897800px;}
.y16_c00414{bottom:415.401750px;}
.y15_c00414{bottom:428.901750px;}
.y14_c00414{bottom:455.405700px;}
.y13_c00414{bottom:468.905700px;}
.y12_c00414{bottom:482.405700px;}
.y11_c00414{bottom:504.657600px;}
.y10_c00414{bottom:522.657600px;}
.yf_c00414{bottom:549.161550px;}
.ye_c00414{bottom:551.323050px;}
.yd_c00414{bottom:836.727750px;}
.yc_c00414{bottom:850.227750px;}
.yb_c00414{bottom:863.727750px;}
.ya_c00414{bottom:890.231700px;}
.y9_c00414{bottom:903.731700px;}
.y8_c00414{bottom:917.231700px;}
.y7_c00414{bottom:943.735650px;}
.y6_c00414{bottom:957.235650px;}
.y5_c00414{bottom:970.735650px;}
.y4_c00414{bottom:992.987550px;}
.y3_c00414{bottom:1010.987550px;}
.y2_c00414{bottom:1037.491500px;}
.y1_c00414{bottom:1093.600950px;}
.h8_c00414{height:25.200000px;}
.h7_c00414{height:30.282000px;}
.h5_c00414{height:34.080000px;}
.h2_c00414{height:39.264000px;}
.h3_c00414{height:39.984000px;}
.h4_c00414{height:43.260000px;}
.h6_c00414{height:43.740000px;}
.h1_c00414{height:1135.500000px;}
.h0_c00414{height:1135.506150px;}
.w0_c00414{width:893.950200px;}
.w1_c00414{width:894.000000px;}
.x0_c00414{left:0.000000px;}
.x4_c00414{left:128.626800px;}
.x5_c00414{left:141.382650px;}
.x2_c00414{left:188.061900px;}
.x3_c00414{left:190.513350px;}
.x6_c00414{left:321.919050px;}
.x1_c00414{left:800.165850px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2_c00414{letter-spacing:-0.768000pt;}
.ls3_c00414{letter-spacing:-0.640000pt;}
.ls4_c00414{letter-spacing:-0.560000pt;}
.ls5_c00414{letter-spacing:-0.480000pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:0.426667pt;}
.ws1_c00414{word-spacing:-7.728000pt;}
.ws2_c00414{word-spacing:-5.766400pt;}
.ws0_c00414{word-spacing:-0.042667pt;}
.ws3_c00414{word-spacing:0.000000pt;}
.ws5_c00414{word-spacing:0.768000pt;}
.ws4_c00414{word-spacing:6.272000pt;}
.ws6_c00414{word-spacing:49.968000pt;}
._0_c00414{margin-left:-2449.134400pt;}
._4_c00414{margin-left:-6.174933pt;}
._1_c00414{margin-left:-2.005333pt;}
._3_c00414{margin-left:-1.066667pt;}
._2_c00414{width:0.896000pt;}
._7_c00414{width:6.912000pt;}
._5_c00414{width:49.488000pt;}
._6_c00414{width:52.565333pt;}
.fs5_c00414{font-size:27.200000pt;}
.fs6_c00414{font-size:32.000000pt;}
.fs3_c00414{font-size:37.333333pt;}
.fs0_c00414{font-size:42.666667pt;}
.fs4_c00414{font-size:48.000000pt;}
.fs2_c00414{font-size:50.666667pt;}
.fs1_c00414{font-size:53.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y19_c00414{bottom:321.686933pt;}
.y18_c00414{bottom:333.686933pt;}
.y17_c00414{bottom:345.686933pt;}
.y16_c00414{bottom:369.246000pt;}
.y15_c00414{bottom:381.246000pt;}
.y14_c00414{bottom:404.805067pt;}
.y13_c00414{bottom:416.805067pt;}
.y12_c00414{bottom:428.805067pt;}
.y11_c00414{bottom:448.584533pt;}
.y10_c00414{bottom:464.584533pt;}
.yf_c00414{bottom:488.143600pt;}
.ye_c00414{bottom:490.064933pt;}
.yd_c00414{bottom:743.758000pt;}
.yc_c00414{bottom:755.758000pt;}
.yb_c00414{bottom:767.758000pt;}
.ya_c00414{bottom:791.317067pt;}
.y9_c00414{bottom:803.317067pt;}
.y8_c00414{bottom:815.317067pt;}
.y7_c00414{bottom:838.876133pt;}
.y6_c00414{bottom:850.876133pt;}
.y5_c00414{bottom:862.876133pt;}
.y4_c00414{bottom:882.655600pt;}
.y3_c00414{bottom:898.655600pt;}
.y2_c00414{bottom:922.214667pt;}
.y1_c00414{bottom:972.089733pt;}
.h8_c00414{height:22.400000pt;}
.h7_c00414{height:26.917333pt;}
.h5_c00414{height:30.293333pt;}
.h2_c00414{height:34.901333pt;}
.h3_c00414{height:35.541333pt;}
.h4_c00414{height:38.453333pt;}
.h6_c00414{height:38.880000pt;}
.h1_c00414{height:1009.333333pt;}
.h0_c00414{height:1009.338800pt;}
.w0_c00414{width:794.622400pt;}
.w1_c00414{width:794.666667pt;}
.x0_c00414{left:0.000000pt;}
.x4_c00414{left:114.334933pt;}
.x5_c00414{left:125.673467pt;}
.x2_c00414{left:167.166133pt;}
.x3_c00414{left:169.345200pt;}
.x6_c00414{left:286.150267pt;}
.x1_c00414{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00415;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00415{font-family:ff6_c00415;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00415;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00415{font-family:ff7_c00415;line-height:0.710000;font-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_c00415{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls1_c00415{letter-spacing:-0.720000px;}
.ls2_c00415{letter-spacing:-0.630000px;}
.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;}
}
.ws1_c00415{word-spacing:-8.694000px;}
.ws2_c00415{word-spacing:-6.487200px;}
.ws3_c00415{word-spacing:0.000000px;}
.ws4_c00415{word-spacing:7.056000px;}
.ws0_c00415{word-spacing:1585.435200px;}
._3_c00415{margin-left:-7.042800px;}
._0_c00415{margin-left:-2.112000px;}
._1_c00415{margin-left:-1.104000px;}
._2_c00415{width:2.016000px;}
._6_c00415{width:7.776000px;}
._4_c00415{width:55.674000px;}
._5_c00415{width:59.136000px;}
.fc0_c00415{color:rgb(35,31,32);}
.fs5_c00415{font-size:30.600000px;}
.fs6_c00415{font-size:36.000000px;}
.fs3_c00415{font-size:42.000000px;}
.fs0_c00415{font-size:48.000000px;}
.fs4_c00415{font-size:54.000000px;}
.fs2_c00415{font-size:57.000000px;}
.fs1_c00415{font-size:60.000000px;}
.y0_c00415{bottom:0.000000px;}
.y18_c00415{bottom:347.530350px;}
.y17_c00415{bottom:361.030350px;}
.y16_c00415{bottom:374.530350px;}
.y15_c00415{bottom:401.034300px;}
.y14_c00415{bottom:414.534300px;}
.y13_c00415{bottom:428.034300px;}
.y12_c00415{bottom:454.538100px;}
.y11_c00415{bottom:468.038100px;}
.y10_c00415{bottom:481.538100px;}
.yf_c00415{bottom:503.790150px;}
.ye_c00415{bottom:521.790150px;}
.yd_c00415{bottom:548.294100px;}
.y19_c00415{bottom:806.955600px;}
.yc_c00415{bottom:850.006500px;}
.yb_c00415{bottom:863.506500px;}
.ya_c00415{bottom:890.010450px;}
.y9_c00415{bottom:903.510450px;}
.y8_c00415{bottom:917.010450px;}
.y7_c00415{bottom:943.514550px;}
.y6_c00415{bottom:957.014550px;}
.y5_c00415{bottom:970.514550px;}
.y4_c00415{bottom:992.766450px;}
.y3_c00415{bottom:1010.766450px;}
.y2_c00415{bottom:1037.270400px;}
.y1_c00415{bottom:1093.600950px;}
.h7_c00415{height:25.200000px;}
.h6_c00415{height:30.282000px;}
.h4_c00415{height:34.080000px;}
.h2_c00415{height:39.264000px;}
.h3_c00415{height:43.260000px;}
.h5_c00415{height:43.740000px;}
.h1_c00415{height:1135.500000px;}
.h0_c00415{height:1135.506150px;}
.w0_c00415{width:893.950200px;}
.w1_c00415{width:894.000000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:77.603100px;}
.x4_c00415{left:424.138500px;}
.x2_c00415{left:599.744850px;}
.x3_c00415{left:612.500700px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls1_c00415{letter-spacing:-0.640000pt;}
.ls2_c00415{letter-spacing:-0.560000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws1_c00415{word-spacing:-7.728000pt;}
.ws2_c00415{word-spacing:-5.766400pt;}
.ws3_c00415{word-spacing:0.000000pt;}
.ws4_c00415{word-spacing:6.272000pt;}
.ws0_c00415{word-spacing:1409.275733pt;}
._3_c00415{margin-left:-6.260267pt;}
._0_c00415{margin-left:-1.877333pt;}
._1_c00415{margin-left:-0.981333pt;}
._2_c00415{width:1.792000pt;}
._6_c00415{width:6.912000pt;}
._4_c00415{width:49.488000pt;}
._5_c00415{width:52.565333pt;}
.fs5_c00415{font-size:27.200000pt;}
.fs6_c00415{font-size:32.000000pt;}
.fs3_c00415{font-size:37.333333pt;}
.fs0_c00415{font-size:42.666667pt;}
.fs4_c00415{font-size:48.000000pt;}
.fs2_c00415{font-size:50.666667pt;}
.fs1_c00415{font-size:53.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.y18_c00415{bottom:308.915867pt;}
.y17_c00415{bottom:320.915867pt;}
.y16_c00415{bottom:332.915867pt;}
.y15_c00415{bottom:356.474933pt;}
.y14_c00415{bottom:368.474933pt;}
.y13_c00415{bottom:380.474933pt;}
.y12_c00415{bottom:404.033867pt;}
.y11_c00415{bottom:416.033867pt;}
.y10_c00415{bottom:428.033867pt;}
.yf_c00415{bottom:447.813467pt;}
.ye_c00415{bottom:463.813467pt;}
.yd_c00415{bottom:487.372533pt;}
.y19_c00415{bottom:717.293867pt;}
.yc_c00415{bottom:755.561333pt;}
.yb_c00415{bottom:767.561333pt;}
.ya_c00415{bottom:791.120400pt;}
.y9_c00415{bottom:803.120400pt;}
.y8_c00415{bottom:815.120400pt;}
.y7_c00415{bottom:838.679600pt;}
.y6_c00415{bottom:850.679600pt;}
.y5_c00415{bottom:862.679600pt;}
.y4_c00415{bottom:882.459067pt;}
.y3_c00415{bottom:898.459067pt;}
.y2_c00415{bottom:922.018133pt;}
.y1_c00415{bottom:972.089733pt;}
.h7_c00415{height:22.400000pt;}
.h6_c00415{height:26.917333pt;}
.h4_c00415{height:30.293333pt;}
.h2_c00415{height:34.901333pt;}
.h3_c00415{height:38.453333pt;}
.h5_c00415{height:38.880000pt;}
.h1_c00415{height:1009.333333pt;}
.h0_c00415{height:1009.338800pt;}
.w0_c00415{width:794.622400pt;}
.w1_c00415{width:794.666667pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:68.980533pt;}
.x4_c00415{left:377.012000pt;}
.x2_c00415{left:533.106533pt;}
.x3_c00415{left:544.445067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00416;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00416;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00416;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00416{font-family:ff8_c00416;line-height:0.710000;font-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_c00416{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls4_c00416{letter-spacing:-1.242000px;}
.ls2_c00416{letter-spacing:-0.720000px;}
.ls3_c00416{letter-spacing:-0.630000px;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:0.480000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00416{word-spacing:-8.694000px;}
.ws2_c00416{word-spacing:-6.487200px;}
.ws0_c00416{word-spacing:-0.048000px;}
.ws3_c00416{word-spacing:0.000000px;}
.ws4_c00416{word-spacing:7.056000px;}
.ws5_c00416{word-spacing:56.916000px;}
._0_c00416{margin-left:-2755.276200px;}
._4_c00416{margin-left:-6.946800px;}
._1_c00416{margin-left:-2.256000px;}
._3_c00416{margin-left:-1.200000px;}
._2_c00416{width:1.008000px;}
._7_c00416{width:7.776000px;}
._5_c00416{width:55.674000px;}
._6_c00416{width:59.136000px;}
.fc0_c00416{color:rgb(35,31,32);}
.fs5_c00416{font-size:30.600000px;}
.fs6_c00416{font-size:36.000000px;}
.fs3_c00416{font-size:42.000000px;}
.fs0_c00416{font-size:48.000000px;}
.fs4_c00416{font-size:54.000000px;}
.fs2_c00416{font-size:57.000000px;}
.fs1_c00416{font-size:60.000000px;}
.y0_c00416{bottom:0.000000px;}
.y19_c00416{bottom:361.260000px;}
.y18_c00416{bottom:374.760000px;}
.y17_c00416{bottom:388.260000px;}
.y16_c00416{bottom:414.763950px;}
.y15_c00416{bottom:428.263950px;}
.y14_c00416{bottom:454.767900px;}
.y13_c00416{bottom:468.267900px;}
.y12_c00416{bottom:481.767900px;}
.y11_c00416{bottom:504.019800px;}
.y10_c00416{bottom:522.019800px;}
.yf_c00416{bottom:548.523750px;}
.ye_c00416{bottom:551.323050px;}
.yd_c00416{bottom:836.089950px;}
.yc_c00416{bottom:849.589950px;}
.yb_c00416{bottom:863.089950px;}
.ya_c00416{bottom:889.593900px;}
.y9_c00416{bottom:903.093900px;}
.y8_c00416{bottom:916.593900px;}
.y7_c00416{bottom:943.098000px;}
.y6_c00416{bottom:956.598000px;}
.y5_c00416{bottom:970.098000px;}
.y4_c00416{bottom:992.349750px;}
.y3_c00416{bottom:1010.349750px;}
.y2_c00416{bottom:1036.853850px;}
.y1_c00416{bottom:1093.600950px;}
.h8_c00416{height:25.200000px;}
.h7_c00416{height:30.282000px;}
.h5_c00416{height:34.080000px;}
.h2_c00416{height:39.264000px;}
.h3_c00416{height:39.984000px;}
.h4_c00416{height:43.260000px;}
.h6_c00416{height:43.740000px;}
.h1_c00416{height:1135.500000px;}
.h0_c00416{height:1135.506150px;}
.w0_c00416{width:893.950200px;}
.w1_c00416{width:894.000000px;}
.x0_c00416{left:0.000000px;}
.x4_c00416{left:128.839350px;}
.x5_c00416{left:141.595200px;}
.x2_c00416{left:188.061900px;}
.x3_c00416{left:190.513350px;}
.x6_c00416{left:322.013700px;}
.x1_c00416{left:800.165850px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls4_c00416{letter-spacing:-1.104000pt;}
.ls2_c00416{letter-spacing:-0.640000pt;}
.ls3_c00416{letter-spacing:-0.560000pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:0.426667pt;}
.ws1_c00416{word-spacing:-7.728000pt;}
.ws2_c00416{word-spacing:-5.766400pt;}
.ws0_c00416{word-spacing:-0.042667pt;}
.ws3_c00416{word-spacing:0.000000pt;}
.ws4_c00416{word-spacing:6.272000pt;}
.ws5_c00416{word-spacing:50.592000pt;}
._0_c00416{margin-left:-2449.134400pt;}
._4_c00416{margin-left:-6.174933pt;}
._1_c00416{margin-left:-2.005333pt;}
._3_c00416{margin-left:-1.066667pt;}
._2_c00416{width:0.896000pt;}
._7_c00416{width:6.912000pt;}
._5_c00416{width:49.488000pt;}
._6_c00416{width:52.565333pt;}
.fs5_c00416{font-size:27.200000pt;}
.fs6_c00416{font-size:32.000000pt;}
.fs3_c00416{font-size:37.333333pt;}
.fs0_c00416{font-size:42.666667pt;}
.fs4_c00416{font-size:48.000000pt;}
.fs2_c00416{font-size:50.666667pt;}
.fs1_c00416{font-size:53.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y19_c00416{bottom:321.120000pt;}
.y18_c00416{bottom:333.120000pt;}
.y17_c00416{bottom:345.120000pt;}
.y16_c00416{bottom:368.679067pt;}
.y15_c00416{bottom:380.679067pt;}
.y14_c00416{bottom:404.238133pt;}
.y13_c00416{bottom:416.238133pt;}
.y12_c00416{bottom:428.238133pt;}
.y11_c00416{bottom:448.017600pt;}
.y10_c00416{bottom:464.017600pt;}
.yf_c00416{bottom:487.576667pt;}
.ye_c00416{bottom:490.064933pt;}
.yd_c00416{bottom:743.191067pt;}
.yc_c00416{bottom:755.191067pt;}
.yb_c00416{bottom:767.191067pt;}
.ya_c00416{bottom:790.750133pt;}
.y9_c00416{bottom:802.750133pt;}
.y8_c00416{bottom:814.750133pt;}
.y7_c00416{bottom:838.309333pt;}
.y6_c00416{bottom:850.309333pt;}
.y5_c00416{bottom:862.309333pt;}
.y4_c00416{bottom:882.088667pt;}
.y3_c00416{bottom:898.088667pt;}
.y2_c00416{bottom:921.647867pt;}
.y1_c00416{bottom:972.089733pt;}
.h8_c00416{height:22.400000pt;}
.h7_c00416{height:26.917333pt;}
.h5_c00416{height:30.293333pt;}
.h2_c00416{height:34.901333pt;}
.h3_c00416{height:35.541333pt;}
.h4_c00416{height:38.453333pt;}
.h6_c00416{height:38.880000pt;}
.h1_c00416{height:1009.333333pt;}
.h0_c00416{height:1009.338800pt;}
.w0_c00416{width:794.622400pt;}
.w1_c00416{width:794.666667pt;}
.x0_c00416{left:0.000000pt;}
.x4_c00416{left:114.523867pt;}
.x5_c00416{left:125.862400pt;}
.x2_c00416{left:167.166133pt;}
.x3_c00416{left:169.345200pt;}
.x6_c00416{left:286.234400pt;}
.x1_c00416{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00417;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00417{font-family:ff6_c00417;line-height:1.067000;font-style:normal;font-weight: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_c00417;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00417{font-family:ff7_c00417;line-height:0.710000;font-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_c00417{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls1_c00417{letter-spacing:-0.720000px;}
.ls2_c00417{letter-spacing:-0.630000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00417{word-spacing:-8.694000px;}
.ws2_c00417{word-spacing:-6.487200px;}
.ws3_c00417{word-spacing:0.000000px;}
.ws4_c00417{word-spacing:7.056000px;}
.ws0_c00417{word-spacing:1585.435200px;}
._3_c00417{margin-left:-7.042800px;}
._0_c00417{margin-left:-2.112000px;}
._1_c00417{margin-left:-1.104000px;}
._2_c00417{width:2.016000px;}
._6_c00417{width:7.776000px;}
._4_c00417{width:55.674000px;}
._5_c00417{width:59.136000px;}
.fc0_c00417{color:rgb(35,31,32);}
.fs5_c00417{font-size:30.600000px;}
.fs6_c00417{font-size:36.000000px;}
.fs3_c00417{font-size:42.000000px;}
.fs0_c00417{font-size:48.000000px;}
.fs4_c00417{font-size:54.000000px;}
.fs2_c00417{font-size:57.000000px;}
.fs1_c00417{font-size:60.000000px;}
.y0_c00417{bottom:0.000000px;}
.y1a_c00417{bottom:317.979150px;}
.y19_c00417{bottom:361.880700px;}
.y18_c00417{bottom:375.380700px;}
.y17_c00417{bottom:401.884650px;}
.y16_c00417{bottom:415.384650px;}
.y15_c00417{bottom:428.884650px;}
.y14_c00417{bottom:455.388600px;}
.y13_c00417{bottom:468.888600px;}
.y12_c00417{bottom:482.388600px;}
.y11_c00417{bottom:504.640500px;}
.y10_c00417{bottom:522.640500px;}
.yf_c00417{bottom:549.144450px;}
.ye_c00417{bottom:819.356850px;}
.yd_c00417{bottom:832.856850px;}
.yc_c00417{bottom:846.356850px;}
.yb_c00417{bottom:872.860800px;}
.ya_c00417{bottom:886.360800px;}
.y9_c00417{bottom:899.860800px;}
.y8_c00417{bottom:926.364900px;}
.y7_c00417{bottom:939.864900px;}
.y6_c00417{bottom:953.364900px;}
.y5_c00417{bottom:975.616800px;}
.y4_c00417{bottom:993.616800px;}
.y3_c00417{bottom:1011.616800px;}
.y2_c00417{bottom:1038.120750px;}
.y1_c00417{bottom:1093.600950px;}
.h7_c00417{height:25.200000px;}
.h6_c00417{height:30.282000px;}
.h4_c00417{height:34.080000px;}
.h2_c00417{height:39.264000px;}
.h3_c00417{height:43.260000px;}
.h5_c00417{height:43.740000px;}
.h1_c00417{height:1135.500000px;}
.h0_c00417{height:1135.506150px;}
.w0_c00417{width:893.950200px;}
.w1_c00417{width:894.000000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:77.603100px;}
.x5_c00417{left:423.713400px;}
.x2_c00417{left:599.319600px;}
.x3_c00417{left:612.075450px;}
.x4_c00417{left:616.327500px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls1_c00417{letter-spacing:-0.640000pt;}
.ls2_c00417{letter-spacing:-0.560000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws1_c00417{word-spacing:-7.728000pt;}
.ws2_c00417{word-spacing:-5.766400pt;}
.ws3_c00417{word-spacing:0.000000pt;}
.ws4_c00417{word-spacing:6.272000pt;}
.ws0_c00417{word-spacing:1409.275733pt;}
._3_c00417{margin-left:-6.260267pt;}
._0_c00417{margin-left:-1.877333pt;}
._1_c00417{margin-left:-0.981333pt;}
._2_c00417{width:1.792000pt;}
._6_c00417{width:6.912000pt;}
._4_c00417{width:49.488000pt;}
._5_c00417{width:52.565333pt;}
.fs5_c00417{font-size:27.200000pt;}
.fs6_c00417{font-size:32.000000pt;}
.fs3_c00417{font-size:37.333333pt;}
.fs0_c00417{font-size:42.666667pt;}
.fs4_c00417{font-size:48.000000pt;}
.fs2_c00417{font-size:50.666667pt;}
.fs1_c00417{font-size:53.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y1a_c00417{bottom:282.648133pt;}
.y19_c00417{bottom:321.671733pt;}
.y18_c00417{bottom:333.671733pt;}
.y17_c00417{bottom:357.230800pt;}
.y16_c00417{bottom:369.230800pt;}
.y15_c00417{bottom:381.230800pt;}
.y14_c00417{bottom:404.789867pt;}
.y13_c00417{bottom:416.789867pt;}
.y12_c00417{bottom:428.789867pt;}
.y11_c00417{bottom:448.569333pt;}
.y10_c00417{bottom:464.569333pt;}
.yf_c00417{bottom:488.128400pt;}
.ye_c00417{bottom:728.317200pt;}
.yd_c00417{bottom:740.317200pt;}
.yc_c00417{bottom:752.317200pt;}
.yb_c00417{bottom:775.876267pt;}
.ya_c00417{bottom:787.876267pt;}
.y9_c00417{bottom:799.876267pt;}
.y8_c00417{bottom:823.435467pt;}
.y7_c00417{bottom:835.435467pt;}
.y6_c00417{bottom:847.435467pt;}
.y5_c00417{bottom:867.214933pt;}
.y4_c00417{bottom:883.214933pt;}
.y3_c00417{bottom:899.214933pt;}
.y2_c00417{bottom:922.774000pt;}
.y1_c00417{bottom:972.089733pt;}
.h7_c00417{height:22.400000pt;}
.h6_c00417{height:26.917333pt;}
.h4_c00417{height:30.293333pt;}
.h2_c00417{height:34.901333pt;}
.h3_c00417{height:38.453333pt;}
.h5_c00417{height:38.880000pt;}
.h1_c00417{height:1009.333333pt;}
.h0_c00417{height:1009.338800pt;}
.w0_c00417{width:794.622400pt;}
.w1_c00417{width:794.666667pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:68.980533pt;}
.x5_c00417{left:376.634133pt;}
.x2_c00417{left:532.728533pt;}
.x3_c00417{left:544.067067pt;}
.x4_c00417{left:547.846667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:0.908000;font-style:normal;font-weight: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_c00418;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00418{font-family:ff7_c00418;line-height:1.067000;font-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_c00418{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls4_c00418{letter-spacing:-0.720000px;}
.ls5_c00418{letter-spacing:-0.630000px;}
.ls6_c00418{letter-spacing:-0.540000px;}
.ls2_c00418{letter-spacing:0.000000px;}
.ls3_c00418{letter-spacing:0.162000px;}
.ls0_c00418{letter-spacing:0.480000px;}
.ls1_c00418{letter-spacing:59.127600px;}
.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;}
}
.ws1_c00418{word-spacing:-8.694000px;}
.ws4_c00418{word-spacing:-0.162000px;}
.ws0_c00418{word-spacing:-0.048000px;}
.ws2_c00418{word-spacing:0.000000px;}
.ws5_c00418{word-spacing:0.540000px;}
.ws3_c00418{word-spacing:7.056000px;}
._0_c00418{margin-left:-2755.276200px;}
._4_c00418{margin-left:-6.947400px;}
._1_c00418{margin-left:-2.256000px;}
._3_c00418{margin-left:-1.200000px;}
._2_c00418{width:1.008000px;}
._7_c00418{width:7.776000px;}
._5_c00418{width:55.674000px;}
._6_c00418{width:59.136000px;}
.fc1_c00418{color:rgb(210,32,39);}
.fc0_c00418{color:rgb(35,31,32);}
.fs3_c00418{font-size:42.000000px;}
.fs0_c00418{font-size:48.000000px;}
.fs4_c00418{font-size:54.000000px;}
.fs2_c00418{font-size:57.000000px;}
.fs1_c00418{font-size:60.000000px;}
.y0_c00418{bottom:0.000000px;}
.y19_c00418{bottom:348.610500px;}
.y18_c00418{bottom:362.110500px;}
.y17_c00418{bottom:375.610500px;}
.y16_c00418{bottom:402.114300px;}
.y15_c00418{bottom:415.614300px;}
.y14_c00418{bottom:429.114300px;}
.y13_c00418{bottom:455.618250px;}
.y12_c00418{bottom:469.118250px;}
.y11_c00418{bottom:482.618250px;}
.y10_c00418{bottom:504.870300px;}
.yf_c00418{bottom:522.870300px;}
.ye_c00418{bottom:549.374250px;}
.yd_c00418{bottom:836.940300px;}
.yc_c00418{bottom:850.440300px;}
.yb_c00418{bottom:863.940300px;}
.ya_c00418{bottom:890.444250px;}
.y9_c00418{bottom:903.944250px;}
.y8_c00418{bottom:917.444250px;}
.y7_c00418{bottom:943.948200px;}
.y6_c00418{bottom:957.448200px;}
.y5_c00418{bottom:970.948200px;}
.y4_c00418{bottom:993.200250px;}
.y3_c00418{bottom:1011.200250px;}
.y2_c00418{bottom:1037.704200px;}
.y1_c00418{bottom:1093.600950px;}
.h7_c00418{height:30.282000px;}
.h5_c00418{height:34.080000px;}
.h2_c00418{height:39.264000px;}
.h3_c00418{height:39.984000px;}
.h4_c00418{height:43.260000px;}
.h6_c00418{height:43.740000px;}
.h1_c00418{height:1135.500000px;}
.h0_c00418{height:1135.506150px;}
.w0_c00418{width:893.950200px;}
.w1_c00418{width:894.000000px;}
.x0_c00418{left:0.000000px;}
.x4_c00418{left:128.414100px;}
.x5_c00418{left:141.170100px;}
.x2_c00418{left:188.061900px;}
.x3_c00418{left:190.513350px;}
.x1_c00418{left:800.165850px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls4_c00418{letter-spacing:-0.640000pt;}
.ls5_c00418{letter-spacing:-0.560000pt;}
.ls6_c00418{letter-spacing:-0.480000pt;}
.ls2_c00418{letter-spacing:0.000000pt;}
.ls3_c00418{letter-spacing:0.144000pt;}
.ls0_c00418{letter-spacing:0.426667pt;}
.ls1_c00418{letter-spacing:52.557867pt;}
.ws1_c00418{word-spacing:-7.728000pt;}
.ws4_c00418{word-spacing:-0.144000pt;}
.ws0_c00418{word-spacing:-0.042667pt;}
.ws2_c00418{word-spacing:0.000000pt;}
.ws5_c00418{word-spacing:0.480000pt;}
.ws3_c00418{word-spacing:6.272000pt;}
._0_c00418{margin-left:-2449.134400pt;}
._4_c00418{margin-left:-6.175467pt;}
._1_c00418{margin-left:-2.005333pt;}
._3_c00418{margin-left:-1.066667pt;}
._2_c00418{width:0.896000pt;}
._7_c00418{width:6.912000pt;}
._5_c00418{width:49.488000pt;}
._6_c00418{width:52.565333pt;}
.fs3_c00418{font-size:37.333333pt;}
.fs0_c00418{font-size:42.666667pt;}
.fs4_c00418{font-size:48.000000pt;}
.fs2_c00418{font-size:50.666667pt;}
.fs1_c00418{font-size:53.333333pt;}
.y0_c00418{bottom:0.000000pt;}
.y19_c00418{bottom:309.876000pt;}
.y18_c00418{bottom:321.876000pt;}
.y17_c00418{bottom:333.876000pt;}
.y16_c00418{bottom:357.434933pt;}
.y15_c00418{bottom:369.434933pt;}
.y14_c00418{bottom:381.434933pt;}
.y13_c00418{bottom:404.994000pt;}
.y12_c00418{bottom:416.994000pt;}
.y11_c00418{bottom:428.994000pt;}
.y10_c00418{bottom:448.773600pt;}
.yf_c00418{bottom:464.773600pt;}
.ye_c00418{bottom:488.332667pt;}
.yd_c00418{bottom:743.946933pt;}
.yc_c00418{bottom:755.946933pt;}
.yb_c00418{bottom:767.946933pt;}
.ya_c00418{bottom:791.506000pt;}
.y9_c00418{bottom:803.506000pt;}
.y8_c00418{bottom:815.506000pt;}
.y7_c00418{bottom:839.065067pt;}
.y6_c00418{bottom:851.065067pt;}
.y5_c00418{bottom:863.065067pt;}
.y4_c00418{bottom:882.844667pt;}
.y3_c00418{bottom:898.844667pt;}
.y2_c00418{bottom:922.403733pt;}
.y1_c00418{bottom:972.089733pt;}
.h7_c00418{height:26.917333pt;}
.h5_c00418{height:30.293333pt;}
.h2_c00418{height:34.901333pt;}
.h3_c00418{height:35.541333pt;}
.h4_c00418{height:38.453333pt;}
.h6_c00418{height:38.880000pt;}
.h1_c00418{height:1009.333333pt;}
.h0_c00418{height:1009.338800pt;}
.w0_c00418{width:794.622400pt;}
.w1_c00418{width:794.666667pt;}
.x0_c00418{left:0.000000pt;}
.x4_c00418{left:114.145867pt;}
.x5_c00418{left:125.484533pt;}
.x2_c00418{left:167.166133pt;}
.x3_c00418{left:169.345200pt;}
.x1_c00418{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00419;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00419{font-family:ff7_c00419;line-height:0.710000;font-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_c00419{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls1_c00419{letter-spacing:-0.720000px;}
.ls2_c00419{letter-spacing:-0.630000px;}
.ls3_c00419{letter-spacing:-0.216000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00419{word-spacing:-8.694000px;}
.ws2_c00419{word-spacing:-6.487200px;}
.ws3_c00419{word-spacing:0.000000px;}
.ws6_c00419{word-spacing:0.216000px;}
.ws4_c00419{word-spacing:7.056000px;}
.ws5_c00419{word-spacing:55.674000px;}
.ws0_c00419{word-spacing:1585.435200px;}
._3_c00419{margin-left:-7.042800px;}
._4_c00419{margin-left:-3.839400px;}
._0_c00419{margin-left:-2.112000px;}
._1_c00419{margin-left:-1.104000px;}
._2_c00419{width:2.016000px;}
._6_c00419{width:7.776000px;}
._7_c00419{width:55.674000px;}
._5_c00419{width:59.136000px;}
.fc0_c00419{color:rgb(35,31,32);}
.fs5_c00419{font-size:30.600000px;}
.fs6_c00419{font-size:36.000000px;}
.fs3_c00419{font-size:42.000000px;}
.fs0_c00419{font-size:48.000000px;}
.fs4_c00419{font-size:54.000000px;}
.fs2_c00419{font-size:57.000000px;}
.fs1_c00419{font-size:60.000000px;}
.y0_c00419{bottom:0.000000px;}
.y19_c00419{bottom:343.455600px;}
.y18_c00419{bottom:356.955600px;}
.y17_c00419{bottom:370.455450px;}
.y16_c00419{bottom:396.959400px;}
.y15_c00419{bottom:410.459400px;}
.y14_c00419{bottom:436.963350px;}
.y13_c00419{bottom:450.463350px;}
.y12_c00419{bottom:463.963350px;}
.y11_c00419{bottom:486.215400px;}
.y10_c00419{bottom:504.215400px;}
.yf_c00419{bottom:522.215400px;}
.ye_c00419{bottom:548.719350px;}
.y1a_c00419{bottom:551.110350px;}
.yd_c00419{bottom:836.931750px;}
.yc_c00419{bottom:850.431750px;}
.yb_c00419{bottom:863.931750px;}
.ya_c00419{bottom:890.435700px;}
.y9_c00419{bottom:903.935700px;}
.y8_c00419{bottom:917.435700px;}
.y7_c00419{bottom:943.939650px;}
.y6_c00419{bottom:957.439650px;}
.y5_c00419{bottom:970.939650px;}
.y4_c00419{bottom:993.191700px;}
.y3_c00419{bottom:1011.191700px;}
.y2_c00419{bottom:1037.695650px;}
.y1_c00419{bottom:1093.600950px;}
.h7_c00419{height:25.200000px;}
.h6_c00419{height:30.282000px;}
.h4_c00419{height:34.080000px;}
.h2_c00419{height:39.264000px;}
.h3_c00419{height:43.260000px;}
.h5_c00419{height:43.740000px;}
.h1_c00419{height:1135.500000px;}
.h0_c00419{height:1135.506150px;}
.w0_c00419{width:893.950200px;}
.w1_c00419{width:894.000000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:77.603100px;}
.x5_c00419{left:423.925950px;}
.x2_c00419{left:599.532150px;}
.x3_c00419{left:612.288150px;}
.x4_c00419{left:616.540050px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls1_c00419{letter-spacing:-0.640000pt;}
.ls2_c00419{letter-spacing:-0.560000pt;}
.ls3_c00419{letter-spacing:-0.192000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws1_c00419{word-spacing:-7.728000pt;}
.ws2_c00419{word-spacing:-5.766400pt;}
.ws3_c00419{word-spacing:0.000000pt;}
.ws6_c00419{word-spacing:0.192000pt;}
.ws4_c00419{word-spacing:6.272000pt;}
.ws5_c00419{word-spacing:49.488000pt;}
.ws0_c00419{word-spacing:1409.275733pt;}
._3_c00419{margin-left:-6.260267pt;}
._4_c00419{margin-left:-3.412800pt;}
._0_c00419{margin-left:-1.877333pt;}
._1_c00419{margin-left:-0.981333pt;}
._2_c00419{width:1.792000pt;}
._6_c00419{width:6.912000pt;}
._7_c00419{width:49.488000pt;}
._5_c00419{width:52.565333pt;}
.fs5_c00419{font-size:27.200000pt;}
.fs6_c00419{font-size:32.000000pt;}
.fs3_c00419{font-size:37.333333pt;}
.fs0_c00419{font-size:42.666667pt;}
.fs4_c00419{font-size:48.000000pt;}
.fs2_c00419{font-size:50.666667pt;}
.fs1_c00419{font-size:53.333333pt;}
.y0_c00419{bottom:0.000000pt;}
.y19_c00419{bottom:305.293867pt;}
.y18_c00419{bottom:317.293867pt;}
.y17_c00419{bottom:329.293733pt;}
.y16_c00419{bottom:352.852800pt;}
.y15_c00419{bottom:364.852800pt;}
.y14_c00419{bottom:388.411867pt;}
.y13_c00419{bottom:400.411867pt;}
.y12_c00419{bottom:412.411867pt;}
.y11_c00419{bottom:432.191467pt;}
.y10_c00419{bottom:448.191467pt;}
.yf_c00419{bottom:464.191467pt;}
.ye_c00419{bottom:487.750533pt;}
.y1a_c00419{bottom:489.875867pt;}
.yd_c00419{bottom:743.939333pt;}
.yc_c00419{bottom:755.939333pt;}
.yb_c00419{bottom:767.939333pt;}
.ya_c00419{bottom:791.498400pt;}
.y9_c00419{bottom:803.498400pt;}
.y8_c00419{bottom:815.498400pt;}
.y7_c00419{bottom:839.057467pt;}
.y6_c00419{bottom:851.057467pt;}
.y5_c00419{bottom:863.057467pt;}
.y4_c00419{bottom:882.837067pt;}
.y3_c00419{bottom:898.837067pt;}
.y2_c00419{bottom:922.396133pt;}
.y1_c00419{bottom:972.089733pt;}
.h7_c00419{height:22.400000pt;}
.h6_c00419{height:26.917333pt;}
.h4_c00419{height:30.293333pt;}
.h2_c00419{height:34.901333pt;}
.h3_c00419{height:38.453333pt;}
.h5_c00419{height:38.880000pt;}
.h1_c00419{height:1009.333333pt;}
.h0_c00419{height:1009.338800pt;}
.w0_c00419{width:794.622400pt;}
.w1_c00419{width:794.666667pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:68.980533pt;}
.x5_c00419{left:376.823067pt;}
.x2_c00419{left:532.917467pt;}
.x3_c00419{left:544.256133pt;}
.x4_c00419{left:548.035600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00420;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00420{font-family:ff6_c00420;line-height:0.908000;font-style:normal;font-weight: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_c00420;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00420{font-family:ff7_c00420;line-height:1.067000;font-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_c00420{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:-0.720000px;}
.ls3_c00420{letter-spacing:-0.630000px;}
.ls4_c00420{letter-spacing:-0.216000px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00420{word-spacing:-8.694000px;}
.ws0_c00420{word-spacing:-0.048000px;}
.ws2_c00420{word-spacing:0.000000px;}
.ws4_c00420{word-spacing:0.216000px;}
.ws3_c00420{word-spacing:7.056000px;}
._0_c00420{margin-left:-2755.276200px;}
._4_c00420{margin-left:-6.946800px;}
._1_c00420{margin-left:-2.256000px;}
._3_c00420{margin-left:-1.200000px;}
._2_c00420{width:1.008000px;}
._7_c00420{width:7.776000px;}
._5_c00420{width:55.674000px;}
._6_c00420{width:59.136000px;}
.fc0_c00420{color:rgb(35,31,32);}
.fs3_c00420{font-size:42.000000px;}
.fs0_c00420{font-size:48.000000px;}
.fs4_c00420{font-size:54.000000px;}
.fs2_c00420{font-size:57.000000px;}
.fs1_c00420{font-size:60.000000px;}
.y0_c00420{bottom:0.000000px;}
.y19_c00420{bottom:348.185250px;}
.y18_c00420{bottom:361.685250px;}
.y17_c00420{bottom:375.185250px;}
.y16_c00420{bottom:401.689200px;}
.y15_c00420{bottom:415.189200px;}
.y14_c00420{bottom:428.689200px;}
.y13_c00420{bottom:455.193150px;}
.y12_c00420{bottom:468.693150px;}
.y11_c00420{bottom:482.193150px;}
.y10_c00420{bottom:504.445050px;}
.yf_c00420{bottom:522.445050px;}
.ye_c00420{bottom:548.949000px;}
.yd_c00420{bottom:836.515200px;}
.yc_c00420{bottom:850.015200px;}
.yb_c00420{bottom:863.515200px;}
.ya_c00420{bottom:890.019150px;}
.y9_c00420{bottom:903.519150px;}
.y8_c00420{bottom:917.019150px;}
.y7_c00420{bottom:943.523100px;}
.y6_c00420{bottom:957.023100px;}
.y5_c00420{bottom:970.523100px;}
.y4_c00420{bottom:992.775000px;}
.y3_c00420{bottom:1010.775000px;}
.y2_c00420{bottom:1037.278950px;}
.y1_c00420{bottom:1093.600950px;}
.h7_c00420{height:30.282000px;}
.h5_c00420{height:34.080000px;}
.h2_c00420{height:39.264000px;}
.h3_c00420{height:39.984000px;}
.h4_c00420{height:43.260000px;}
.h6_c00420{height:43.740000px;}
.h1_c00420{height:1135.500000px;}
.h0_c00420{height:1135.506150px;}
.w0_c00420{width:893.950200px;}
.w1_c00420{width:894.000000px;}
.x0_c00420{left:0.000000px;}
.x4_c00420{left:128.626800px;}
.x5_c00420{left:141.382650px;}
.x2_c00420{left:188.061900px;}
.x3_c00420{left:190.513350px;}
.x1_c00420{left:800.165850px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:-0.640000pt;}
.ls3_c00420{letter-spacing:-0.560000pt;}
.ls4_c00420{letter-spacing:-0.192000pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:0.426667pt;}
.ws1_c00420{word-spacing:-7.728000pt;}
.ws0_c00420{word-spacing:-0.042667pt;}
.ws2_c00420{word-spacing:0.000000pt;}
.ws4_c00420{word-spacing:0.192000pt;}
.ws3_c00420{word-spacing:6.272000pt;}
._0_c00420{margin-left:-2449.134400pt;}
._4_c00420{margin-left:-6.174933pt;}
._1_c00420{margin-left:-2.005333pt;}
._3_c00420{margin-left:-1.066667pt;}
._2_c00420{width:0.896000pt;}
._7_c00420{width:6.912000pt;}
._5_c00420{width:49.488000pt;}
._6_c00420{width:52.565333pt;}
.fs3_c00420{font-size:37.333333pt;}
.fs0_c00420{font-size:42.666667pt;}
.fs4_c00420{font-size:48.000000pt;}
.fs2_c00420{font-size:50.666667pt;}
.fs1_c00420{font-size:53.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y19_c00420{bottom:309.498000pt;}
.y18_c00420{bottom:321.498000pt;}
.y17_c00420{bottom:333.498000pt;}
.y16_c00420{bottom:357.057067pt;}
.y15_c00420{bottom:369.057067pt;}
.y14_c00420{bottom:381.057067pt;}
.y13_c00420{bottom:404.616133pt;}
.y12_c00420{bottom:416.616133pt;}
.y11_c00420{bottom:428.616133pt;}
.y10_c00420{bottom:448.395600pt;}
.yf_c00420{bottom:464.395600pt;}
.ye_c00420{bottom:487.954667pt;}
.yd_c00420{bottom:743.569067pt;}
.yc_c00420{bottom:755.569067pt;}
.yb_c00420{bottom:767.569067pt;}
.ya_c00420{bottom:791.128133pt;}
.y9_c00420{bottom:803.128133pt;}
.y8_c00420{bottom:815.128133pt;}
.y7_c00420{bottom:838.687200pt;}
.y6_c00420{bottom:850.687200pt;}
.y5_c00420{bottom:862.687200pt;}
.y4_c00420{bottom:882.466667pt;}
.y3_c00420{bottom:898.466667pt;}
.y2_c00420{bottom:922.025733pt;}
.y1_c00420{bottom:972.089733pt;}
.h7_c00420{height:26.917333pt;}
.h5_c00420{height:30.293333pt;}
.h2_c00420{height:34.901333pt;}
.h3_c00420{height:35.541333pt;}
.h4_c00420{height:38.453333pt;}
.h6_c00420{height:38.880000pt;}
.h1_c00420{height:1009.333333pt;}
.h0_c00420{height:1009.338800pt;}
.w0_c00420{width:794.622400pt;}
.w1_c00420{width:794.666667pt;}
.x0_c00420{left:0.000000pt;}
.x4_c00420{left:114.334933pt;}
.x5_c00420{left:125.673467pt;}
.x2_c00420{left:167.166133pt;}
.x3_c00420{left:169.345200pt;}
.x1_c00420{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00421;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00421{font-family:ff6_c00421;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls2_c00421{letter-spacing:-0.720000px;}
.ls3_c00421{letter-spacing:-0.630000px;}
.ls1_c00421{letter-spacing:-0.540000px;}
.ls0_c00421{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00421{word-spacing:-8.694000px;}
.ws2_c00421{word-spacing:0.000000px;}
.ws4_c00421{word-spacing:0.540000px;}
.ws3_c00421{word-spacing:7.056000px;}
.ws0_c00421{word-spacing:1585.435200px;}
._3_c00421{margin-left:-7.042800px;}
._0_c00421{margin-left:-2.112000px;}
._1_c00421{margin-left:-1.104000px;}
._2_c00421{width:2.016000px;}
._6_c00421{width:7.776000px;}
._4_c00421{width:55.674000px;}
._5_c00421{width:59.136000px;}
.fc0_c00421{color:rgb(35,31,32);}
.fs3_c00421{font-size:42.000000px;}
.fs0_c00421{font-size:48.000000px;}
.fs4_c00421{font-size:54.000000px;}
.fs2_c00421{font-size:57.000000px;}
.fs1_c00421{font-size:60.000000px;}
.y0_c00421{bottom:0.000000px;}
.y19_c00421{bottom:347.671500px;}
.y18_c00421{bottom:361.171500px;}
.y17_c00421{bottom:374.671500px;}
.y16_c00421{bottom:401.175450px;}
.y15_c00421{bottom:414.675450px;}
.y14_c00421{bottom:428.175450px;}
.y13_c00421{bottom:454.679400px;}
.y12_c00421{bottom:468.179400px;}
.y11_c00421{bottom:481.679400px;}
.y10_c00421{bottom:503.931300px;}
.yf_c00421{bottom:521.931300px;}
.ye_c00421{bottom:548.435250px;}
.yd_c00421{bottom:836.647800px;}
.yc_c00421{bottom:850.147800px;}
.yb_c00421{bottom:863.647800px;}
.ya_c00421{bottom:890.151750px;}
.y9_c00421{bottom:903.651750px;}
.y8_c00421{bottom:917.151750px;}
.y7_c00421{bottom:943.655700px;}
.y6_c00421{bottom:957.155700px;}
.y5_c00421{bottom:970.655700px;}
.y4_c00421{bottom:992.907600px;}
.y3_c00421{bottom:1010.907600px;}
.y2_c00421{bottom:1037.411550px;}
.y1_c00421{bottom:1093.600950px;}
.h6_c00421{height:30.282000px;}
.h4_c00421{height:34.080000px;}
.h2_c00421{height:39.264000px;}
.h3_c00421{height:43.260000px;}
.h5_c00421{height:43.740000px;}
.h1_c00421{height:1135.500000px;}
.h0_c00421{height:1135.506150px;}
.w0_c00421{width:893.950200px;}
.w1_c00421{width:894.000000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:77.603100px;}
.x2_c00421{left:599.638500px;}
.x3_c00421{left:612.394500px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls2_c00421{letter-spacing:-0.640000pt;}
.ls3_c00421{letter-spacing:-0.560000pt;}
.ls1_c00421{letter-spacing:-0.480000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws1_c00421{word-spacing:-7.728000pt;}
.ws2_c00421{word-spacing:0.000000pt;}
.ws4_c00421{word-spacing:0.480000pt;}
.ws3_c00421{word-spacing:6.272000pt;}
.ws0_c00421{word-spacing:1409.275733pt;}
._3_c00421{margin-left:-6.260267pt;}
._0_c00421{margin-left:-1.877333pt;}
._1_c00421{margin-left:-0.981333pt;}
._2_c00421{width:1.792000pt;}
._6_c00421{width:6.912000pt;}
._4_c00421{width:49.488000pt;}
._5_c00421{width:52.565333pt;}
.fs3_c00421{font-size:37.333333pt;}
.fs0_c00421{font-size:42.666667pt;}
.fs4_c00421{font-size:48.000000pt;}
.fs2_c00421{font-size:50.666667pt;}
.fs1_c00421{font-size:53.333333pt;}
.y0_c00421{bottom:0.000000pt;}
.y19_c00421{bottom:309.041333pt;}
.y18_c00421{bottom:321.041333pt;}
.y17_c00421{bottom:333.041333pt;}
.y16_c00421{bottom:356.600400pt;}
.y15_c00421{bottom:368.600400pt;}
.y14_c00421{bottom:380.600400pt;}
.y13_c00421{bottom:404.159467pt;}
.y12_c00421{bottom:416.159467pt;}
.y11_c00421{bottom:428.159467pt;}
.y10_c00421{bottom:447.938933pt;}
.yf_c00421{bottom:463.938933pt;}
.ye_c00421{bottom:487.498000pt;}
.yd_c00421{bottom:743.686933pt;}
.yc_c00421{bottom:755.686933pt;}
.yb_c00421{bottom:767.686933pt;}
.ya_c00421{bottom:791.246000pt;}
.y9_c00421{bottom:803.246000pt;}
.y8_c00421{bottom:815.246000pt;}
.y7_c00421{bottom:838.805067pt;}
.y6_c00421{bottom:850.805067pt;}
.y5_c00421{bottom:862.805067pt;}
.y4_c00421{bottom:882.584533pt;}
.y3_c00421{bottom:898.584533pt;}
.y2_c00421{bottom:922.143600pt;}
.y1_c00421{bottom:972.089733pt;}
.h6_c00421{height:26.917333pt;}
.h4_c00421{height:30.293333pt;}
.h2_c00421{height:34.901333pt;}
.h3_c00421{height:38.453333pt;}
.h5_c00421{height:38.880000pt;}
.h1_c00421{height:1009.333333pt;}
.h0_c00421{height:1009.338800pt;}
.w0_c00421{width:794.622400pt;}
.w1_c00421{width:794.666667pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:68.980533pt;}
.x2_c00421{left:533.012000pt;}
.x3_c00421{left:544.350667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00422;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:0.908000;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00422{font-family:ff7_c00422;line-height:1.067000;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00422{font-family:ff8_c00422;line-height:0.710000;font-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_c00422{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls3_c00422{letter-spacing:-0.720000px;}
.ls4_c00422{letter-spacing:-0.630000px;}
.ls2_c00422{letter-spacing:-0.216000px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.480000px;}
.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;}
}
.ws3_c00422{word-spacing:-12.366000px;}
.ws1_c00422{word-spacing:-8.694000px;}
.ws2_c00422{word-spacing:-6.487200px;}
.ws0_c00422{word-spacing:-0.048000px;}
.ws4_c00422{word-spacing:0.000000px;}
.ws6_c00422{word-spacing:0.216000px;}
.ws5_c00422{word-spacing:7.056000px;}
._0_c00422{margin-left:-2755.276200px;}
._4_c00422{margin-left:-6.946800px;}
._8_c00422{margin-left:-5.154000px;}
._9_c00422{margin-left:-4.008000px;}
._1_c00422{margin-left:-2.256000px;}
._3_c00422{margin-left:-1.200000px;}
._2_c00422{width:1.008000px;}
._7_c00422{width:7.776000px;}
._5_c00422{width:55.674000px;}
._6_c00422{width:59.136000px;}
.fc0_c00422{color:rgb(35,31,32);}
.fs5_c00422{font-size:30.600000px;}
.fs6_c00422{font-size:36.000000px;}
.fs3_c00422{font-size:42.000000px;}
.fs0_c00422{font-size:48.000000px;}
.fs4_c00422{font-size:54.000000px;}
.fs2_c00422{font-size:57.000000px;}
.fs1_c00422{font-size:60.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1a_c00422{bottom:343.401300px;}
.y19_c00422{bottom:356.901300px;}
.y18_c00422{bottom:370.401150px;}
.y17_c00422{bottom:396.905100px;}
.y16_c00422{bottom:410.405100px;}
.y15_c00422{bottom:436.909050px;}
.y14_c00422{bottom:450.409050px;}
.y13_c00422{bottom:463.909050px;}
.y12_c00422{bottom:486.160950px;}
.y11_c00422{bottom:504.160950px;}
.y10_c00422{bottom:522.160950px;}
.yf_c00422{bottom:548.664900px;}
.ye_c00422{bottom:551.181750px;}
.yd_c00422{bottom:836.230950px;}
.yc_c00422{bottom:849.730950px;}
.yb_c00422{bottom:863.230950px;}
.ya_c00422{bottom:889.734900px;}
.y9_c00422{bottom:903.234900px;}
.y8_c00422{bottom:916.734900px;}
.y7_c00422{bottom:943.238850px;}
.y6_c00422{bottom:956.738850px;}
.y5_c00422{bottom:970.238850px;}
.y4_c00422{bottom:992.490900px;}
.y3_c00422{bottom:1010.490900px;}
.y2_c00422{bottom:1036.994850px;}
.y1_c00422{bottom:1093.600950px;}
.h8_c00422{height:25.200000px;}
.h7_c00422{height:30.282000px;}
.h5_c00422{height:34.080000px;}
.h2_c00422{height:39.264000px;}
.h3_c00422{height:39.984000px;}
.h4_c00422{height:43.260000px;}
.h6_c00422{height:43.740000px;}
.h1_c00422{height:1135.500000px;}
.h0_c00422{height:1135.506150px;}
.w0_c00422{width:893.950200px;}
.w1_c00422{width:894.000000px;}
.x0_c00422{left:0.000000px;}
.x4_c00422{left:128.733000px;}
.x5_c00422{left:141.489000px;}
.x7_c00422{left:145.858950px;}
.x2_c00422{left:188.061900px;}
.x3_c00422{left:190.513350px;}
.x6_c00422{left:321.694800px;}
.x1_c00422{left:800.165850px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls3_c00422{letter-spacing:-0.640000pt;}
.ls4_c00422{letter-spacing:-0.560000pt;}
.ls2_c00422{letter-spacing:-0.192000pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.426667pt;}
.ws3_c00422{word-spacing:-10.992000pt;}
.ws1_c00422{word-spacing:-7.728000pt;}
.ws2_c00422{word-spacing:-5.766400pt;}
.ws0_c00422{word-spacing:-0.042667pt;}
.ws4_c00422{word-spacing:0.000000pt;}
.ws6_c00422{word-spacing:0.192000pt;}
.ws5_c00422{word-spacing:6.272000pt;}
._0_c00422{margin-left:-2449.134400pt;}
._4_c00422{margin-left:-6.174933pt;}
._8_c00422{margin-left:-4.581333pt;}
._9_c00422{margin-left:-3.562667pt;}
._1_c00422{margin-left:-2.005333pt;}
._3_c00422{margin-left:-1.066667pt;}
._2_c00422{width:0.896000pt;}
._7_c00422{width:6.912000pt;}
._5_c00422{width:49.488000pt;}
._6_c00422{width:52.565333pt;}
.fs5_c00422{font-size:27.200000pt;}
.fs6_c00422{font-size:32.000000pt;}
.fs3_c00422{font-size:37.333333pt;}
.fs0_c00422{font-size:42.666667pt;}
.fs4_c00422{font-size:48.000000pt;}
.fs2_c00422{font-size:50.666667pt;}
.fs1_c00422{font-size:53.333333pt;}
.y0_c00422{bottom:0.000000pt;}
.y1a_c00422{bottom:305.245600pt;}
.y19_c00422{bottom:317.245600pt;}
.y18_c00422{bottom:329.245467pt;}
.y17_c00422{bottom:352.804533pt;}
.y16_c00422{bottom:364.804533pt;}
.y15_c00422{bottom:388.363600pt;}
.y14_c00422{bottom:400.363600pt;}
.y13_c00422{bottom:412.363600pt;}
.y12_c00422{bottom:432.143067pt;}
.y11_c00422{bottom:448.143067pt;}
.y10_c00422{bottom:464.143067pt;}
.yf_c00422{bottom:487.702133pt;}
.ye_c00422{bottom:489.939333pt;}
.yd_c00422{bottom:743.316400pt;}
.yc_c00422{bottom:755.316400pt;}
.yb_c00422{bottom:767.316400pt;}
.ya_c00422{bottom:790.875467pt;}
.y9_c00422{bottom:802.875467pt;}
.y8_c00422{bottom:814.875467pt;}
.y7_c00422{bottom:838.434533pt;}
.y6_c00422{bottom:850.434533pt;}
.y5_c00422{bottom:862.434533pt;}
.y4_c00422{bottom:882.214133pt;}
.y3_c00422{bottom:898.214133pt;}
.y2_c00422{bottom:921.773200pt;}
.y1_c00422{bottom:972.089733pt;}
.h8_c00422{height:22.400000pt;}
.h7_c00422{height:26.917333pt;}
.h5_c00422{height:30.293333pt;}
.h2_c00422{height:34.901333pt;}
.h3_c00422{height:35.541333pt;}
.h4_c00422{height:38.453333pt;}
.h6_c00422{height:38.880000pt;}
.h1_c00422{height:1009.333333pt;}
.h0_c00422{height:1009.338800pt;}
.w0_c00422{width:794.622400pt;}
.w1_c00422{width:794.666667pt;}
.x0_c00422{left:0.000000pt;}
.x4_c00422{left:114.429333pt;}
.x5_c00422{left:125.768000pt;}
.x7_c00422{left:129.652400pt;}
.x2_c00422{left:167.166133pt;}
.x3_c00422{left:169.345200pt;}
.x6_c00422{left:285.950933pt;}
.x1_c00422{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00423;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00423{font-family:ff6_c00423;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls1_c00423{letter-spacing:-1.026000px;}
.ls2_c00423{letter-spacing:-0.720000px;}
.ls3_c00423{letter-spacing:-0.630000px;}
.ls0_c00423{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00423{word-spacing:-8.694000px;}
.ws2_c00423{word-spacing:0.000000px;}
.ws4_c00423{word-spacing:1.026000px;}
.ws3_c00423{word-spacing:7.056000px;}
.ws0_c00423{word-spacing:1585.435200px;}
._3_c00423{margin-left:-7.042800px;}
._0_c00423{margin-left:-2.112000px;}
._1_c00423{margin-left:-1.104000px;}
._5_c00423{width:1.008000px;}
._2_c00423{width:2.016000px;}
._7_c00423{width:7.776000px;}
._4_c00423{width:55.674000px;}
._6_c00423{width:59.136000px;}
.fc0_c00423{color:rgb(35,31,32);}
.fs3_c00423{font-size:42.000000px;}
.fs0_c00423{font-size:48.000000px;}
.fs4_c00423{font-size:54.000000px;}
.fs2_c00423{font-size:57.000000px;}
.fs1_c00423{font-size:60.000000px;}
.y0_c00423{bottom:0.000000px;}
.y19_c00423{bottom:347.884200px;}
.y18_c00423{bottom:361.384050px;}
.y17_c00423{bottom:374.884050px;}
.y16_c00423{bottom:401.388000px;}
.y15_c00423{bottom:414.888000px;}
.y14_c00423{bottom:428.388000px;}
.y13_c00423{bottom:454.891950px;}
.y12_c00423{bottom:468.391950px;}
.y11_c00423{bottom:481.891950px;}
.y10_c00423{bottom:504.143850px;}
.yf_c00423{bottom:522.143850px;}
.ye_c00423{bottom:548.647800px;}
.yd_c00423{bottom:836.860350px;}
.yc_c00423{bottom:850.360350px;}
.yb_c00423{bottom:863.860350px;}
.ya_c00423{bottom:890.364300px;}
.y9_c00423{bottom:903.864300px;}
.y8_c00423{bottom:917.364300px;}
.y7_c00423{bottom:943.868250px;}
.y6_c00423{bottom:957.368250px;}
.y5_c00423{bottom:970.868250px;}
.y4_c00423{bottom:993.120300px;}
.y3_c00423{bottom:1011.120300px;}
.y2_c00423{bottom:1037.624250px;}
.y1_c00423{bottom:1093.600950px;}
.h6_c00423{height:30.282000px;}
.h4_c00423{height:34.080000px;}
.h2_c00423{height:39.264000px;}
.h3_c00423{height:43.260000px;}
.h5_c00423{height:43.740000px;}
.h1_c00423{height:1135.500000px;}
.h0_c00423{height:1135.506150px;}
.w0_c00423{width:893.950200px;}
.w1_c00423{width:894.000000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:77.603100px;}
.x2_c00423{left:599.468400px;}
.x3_c00423{left:612.224400px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls1_c00423{letter-spacing:-0.912000pt;}
.ls2_c00423{letter-spacing:-0.640000pt;}
.ls3_c00423{letter-spacing:-0.560000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws1_c00423{word-spacing:-7.728000pt;}
.ws2_c00423{word-spacing:0.000000pt;}
.ws4_c00423{word-spacing:0.912000pt;}
.ws3_c00423{word-spacing:6.272000pt;}
.ws0_c00423{word-spacing:1409.275733pt;}
._3_c00423{margin-left:-6.260267pt;}
._0_c00423{margin-left:-1.877333pt;}
._1_c00423{margin-left:-0.981333pt;}
._5_c00423{width:0.896000pt;}
._2_c00423{width:1.792000pt;}
._7_c00423{width:6.912000pt;}
._4_c00423{width:49.488000pt;}
._6_c00423{width:52.565333pt;}
.fs3_c00423{font-size:37.333333pt;}
.fs0_c00423{font-size:42.666667pt;}
.fs4_c00423{font-size:48.000000pt;}
.fs2_c00423{font-size:50.666667pt;}
.fs1_c00423{font-size:53.333333pt;}
.y0_c00423{bottom:0.000000pt;}
.y19_c00423{bottom:309.230400pt;}
.y18_c00423{bottom:321.230267pt;}
.y17_c00423{bottom:333.230267pt;}
.y16_c00423{bottom:356.789333pt;}
.y15_c00423{bottom:368.789333pt;}
.y14_c00423{bottom:380.789333pt;}
.y13_c00423{bottom:404.348400pt;}
.y12_c00423{bottom:416.348400pt;}
.y11_c00423{bottom:428.348400pt;}
.y10_c00423{bottom:448.127867pt;}
.yf_c00423{bottom:464.127867pt;}
.ye_c00423{bottom:487.686933pt;}
.yd_c00423{bottom:743.875867pt;}
.yc_c00423{bottom:755.875867pt;}
.yb_c00423{bottom:767.875867pt;}
.ya_c00423{bottom:791.434933pt;}
.y9_c00423{bottom:803.434933pt;}
.y8_c00423{bottom:815.434933pt;}
.y7_c00423{bottom:838.994000pt;}
.y6_c00423{bottom:850.994000pt;}
.y5_c00423{bottom:862.994000pt;}
.y4_c00423{bottom:882.773600pt;}
.y3_c00423{bottom:898.773600pt;}
.y2_c00423{bottom:922.332667pt;}
.y1_c00423{bottom:972.089733pt;}
.h6_c00423{height:26.917333pt;}
.h4_c00423{height:30.293333pt;}
.h2_c00423{height:34.901333pt;}
.h3_c00423{height:38.453333pt;}
.h5_c00423{height:38.880000pt;}
.h1_c00423{height:1009.333333pt;}
.h0_c00423{height:1009.338800pt;}
.w0_c00423{width:794.622400pt;}
.w1_c00423{width:794.666667pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:68.980533pt;}
.x2_c00423{left:532.860800pt;}
.x3_c00423{left:544.199467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00424;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00424{font-family:ff7_c00424;line-height:1.067000;font-style:normal;font-weight: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_c00424;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00424{font-family:ff8_c00424;line-height:0.710000;font-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_c00424{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls2_c00424{letter-spacing:-0.720000px;}
.ls3_c00424{letter-spacing:-0.630000px;}
.ls1_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00424{word-spacing:-8.694000px;}
.ws2_c00424{word-spacing:-6.487200px;}
.ws0_c00424{word-spacing:-0.048000px;}
.ws3_c00424{word-spacing:0.000000px;}
.ws4_c00424{word-spacing:7.056000px;}
._0_c00424{margin-left:-2755.276200px;}
._4_c00424{margin-left:-6.946800px;}
._1_c00424{margin-left:-2.256000px;}
._3_c00424{margin-left:-1.200000px;}
._2_c00424{width:1.008000px;}
._7_c00424{width:7.776000px;}
._5_c00424{width:55.674000px;}
._6_c00424{width:59.136000px;}
.fc0_c00424{color:rgb(35,31,32);}
.fs5_c00424{font-size:30.600000px;}
.fs6_c00424{font-size:36.000000px;}
.fs3_c00424{font-size:42.000000px;}
.fs0_c00424{font-size:48.000000px;}
.fs4_c00424{font-size:54.000000px;}
.fs2_c00424{font-size:57.000000px;}
.fs1_c00424{font-size:60.000000px;}
.y0_c00424{bottom:0.000000px;}
.y19_c00424{bottom:348.113850px;}
.y18_c00424{bottom:361.613850px;}
.y17_c00424{bottom:375.113850px;}
.y16_c00424{bottom:401.617650px;}
.y15_c00424{bottom:415.117650px;}
.y14_c00424{bottom:428.617650px;}
.y13_c00424{bottom:455.121600px;}
.y12_c00424{bottom:468.621600px;}
.y11_c00424{bottom:482.121600px;}
.y10_c00424{bottom:504.373650px;}
.yf_c00424{bottom:522.373650px;}
.ye_c00424{bottom:548.877600px;}
.yc_c00424{bottom:849.943800px;}
.yb_c00424{bottom:863.443800px;}
.ya_c00424{bottom:876.943800px;}
.y9_c00424{bottom:903.447750px;}
.y8_c00424{bottom:916.947750px;}
.y7_c00424{bottom:943.451700px;}
.y6_c00424{bottom:956.951700px;}
.y5_c00424{bottom:970.451700px;}
.y4_c00424{bottom:992.703600px;}
.y3_c00424{bottom:1010.703600px;}
.y2_c00424{bottom:1037.207550px;}
.yd_c00424{bottom:1040.299350px;}
.y1_c00424{bottom:1093.600950px;}
.h8_c00424{height:25.200000px;}
.h7_c00424{height:30.282000px;}
.h5_c00424{height:34.080000px;}
.h2_c00424{height:39.264000px;}
.h3_c00424{height:39.984000px;}
.h4_c00424{height:43.260000px;}
.h6_c00424{height:43.740000px;}
.h1_c00424{height:1135.500000px;}
.h0_c00424{height:1135.506150px;}
.w0_c00424{width:893.950200px;}
.w1_c00424{width:894.000000px;}
.x0_c00424{left:0.000000px;}
.x4_c00424{left:128.562900px;}
.x5_c00424{left:141.318900px;}
.x2_c00424{left:188.061900px;}
.x3_c00424{left:190.513350px;}
.x6_c00424{left:321.524700px;}
.x1_c00424{left:800.165850px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls2_c00424{letter-spacing:-0.640000pt;}
.ls3_c00424{letter-spacing:-0.560000pt;}
.ls1_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:0.426667pt;}
.ws1_c00424{word-spacing:-7.728000pt;}
.ws2_c00424{word-spacing:-5.766400pt;}
.ws0_c00424{word-spacing:-0.042667pt;}
.ws3_c00424{word-spacing:0.000000pt;}
.ws4_c00424{word-spacing:6.272000pt;}
._0_c00424{margin-left:-2449.134400pt;}
._4_c00424{margin-left:-6.174933pt;}
._1_c00424{margin-left:-2.005333pt;}
._3_c00424{margin-left:-1.066667pt;}
._2_c00424{width:0.896000pt;}
._7_c00424{width:6.912000pt;}
._5_c00424{width:49.488000pt;}
._6_c00424{width:52.565333pt;}
.fs5_c00424{font-size:27.200000pt;}
.fs6_c00424{font-size:32.000000pt;}
.fs3_c00424{font-size:37.333333pt;}
.fs0_c00424{font-size:42.666667pt;}
.fs4_c00424{font-size:48.000000pt;}
.fs2_c00424{font-size:50.666667pt;}
.fs1_c00424{font-size:53.333333pt;}
.y0_c00424{bottom:0.000000pt;}
.y19_c00424{bottom:309.434533pt;}
.y18_c00424{bottom:321.434533pt;}
.y17_c00424{bottom:333.434533pt;}
.y16_c00424{bottom:356.993467pt;}
.y15_c00424{bottom:368.993467pt;}
.y14_c00424{bottom:380.993467pt;}
.y13_c00424{bottom:404.552533pt;}
.y12_c00424{bottom:416.552533pt;}
.y11_c00424{bottom:428.552533pt;}
.y10_c00424{bottom:448.332133pt;}
.yf_c00424{bottom:464.332133pt;}
.ye_c00424{bottom:487.891200pt;}
.yc_c00424{bottom:755.505600pt;}
.yb_c00424{bottom:767.505600pt;}
.ya_c00424{bottom:779.505600pt;}
.y9_c00424{bottom:803.064667pt;}
.y8_c00424{bottom:815.064667pt;}
.y7_c00424{bottom:838.623733pt;}
.y6_c00424{bottom:850.623733pt;}
.y5_c00424{bottom:862.623733pt;}
.y4_c00424{bottom:882.403200pt;}
.y3_c00424{bottom:898.403200pt;}
.y2_c00424{bottom:921.962267pt;}
.yd_c00424{bottom:924.710533pt;}
.y1_c00424{bottom:972.089733pt;}
.h8_c00424{height:22.400000pt;}
.h7_c00424{height:26.917333pt;}
.h5_c00424{height:30.293333pt;}
.h2_c00424{height:34.901333pt;}
.h3_c00424{height:35.541333pt;}
.h4_c00424{height:38.453333pt;}
.h6_c00424{height:38.880000pt;}
.h1_c00424{height:1009.333333pt;}
.h0_c00424{height:1009.338800pt;}
.w0_c00424{width:794.622400pt;}
.w1_c00424{width:794.666667pt;}
.x0_c00424{left:0.000000pt;}
.x4_c00424{left:114.278133pt;}
.x5_c00424{left:125.616800pt;}
.x2_c00424{left:167.166133pt;}
.x3_c00424{left:169.345200pt;}
.x6_c00424{left:285.799733pt;}
.x1_c00424{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00425;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00425;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00425{font-family:ff7_c00425;line-height:0.710000;font-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_c00425{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls1_c00425{letter-spacing:-0.864000px;}
.ls2_c00425{letter-spacing:-0.720000px;}
.ls3_c00425{letter-spacing:-0.630000px;}
.ls4_c00425{letter-spacing:-0.540000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00425{word-spacing:-8.694000px;}
.ws2_c00425{word-spacing:-6.487200px;}
.ws3_c00425{word-spacing:0.000000px;}
.ws6_c00425{word-spacing:0.540000px;}
.ws5_c00425{word-spacing:0.864000px;}
.ws4_c00425{word-spacing:7.056000px;}
.ws0_c00425{word-spacing:1585.435200px;}
._3_c00425{margin-left:-7.042800px;}
._0_c00425{margin-left:-2.112000px;}
._1_c00425{margin-left:-1.104000px;}
._2_c00425{width:2.016000px;}
._6_c00425{width:7.776000px;}
._4_c00425{width:55.674000px;}
._5_c00425{width:59.136000px;}
.fc0_c00425{color:rgb(35,31,32);}
.fs5_c00425{font-size:30.600000px;}
.fs6_c00425{font-size:36.000000px;}
.fs3_c00425{font-size:42.000000px;}
.fs0_c00425{font-size:48.000000px;}
.fs4_c00425{font-size:54.000000px;}
.fs2_c00425{font-size:57.000000px;}
.fs1_c00425{font-size:60.000000px;}
.y0_c00425{bottom:0.000000px;}
.y18_c00425{bottom:348.096750px;}
.y17_c00425{bottom:361.596750px;}
.y16_c00425{bottom:375.096600px;}
.y15_c00425{bottom:401.600700px;}
.y14_c00425{bottom:415.100700px;}
.y13_c00425{bottom:428.600700px;}
.y12_c00425{bottom:455.104500px;}
.y11_c00425{bottom:468.604500px;}
.y10_c00425{bottom:482.104500px;}
.yf_c00425{bottom:504.356550px;}
.ye_c00425{bottom:522.356550px;}
.yd_c00425{bottom:548.860500px;}
.yc_c00425{bottom:850.572900px;}
.yb_c00425{bottom:864.072900px;}
.ya_c00425{bottom:877.572900px;}
.y9_c00425{bottom:904.076850px;}
.y8_c00425{bottom:917.576850px;}
.y7_c00425{bottom:944.080800px;}
.y6_c00425{bottom:957.580800px;}
.y5_c00425{bottom:971.080800px;}
.y4_c00425{bottom:993.332850px;}
.y3_c00425{bottom:1011.332850px;}
.y2_c00425{bottom:1037.836800px;}
.y19_c00425{bottom:1040.299350px;}
.y1_c00425{bottom:1093.600950px;}
.h7_c00425{height:25.200000px;}
.h6_c00425{height:30.282000px;}
.h4_c00425{height:34.080000px;}
.h2_c00425{height:39.264000px;}
.h3_c00425{height:43.260000px;}
.h5_c00425{height:43.740000px;}
.h1_c00425{height:1135.500000px;}
.h0_c00425{height:1135.506150px;}
.w0_c00425{width:893.950200px;}
.w1_c00425{width:894.000000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:77.603100px;}
.x4_c00425{left:423.819600px;}
.x2_c00425{left:599.425950px;}
.x3_c00425{left:612.181800px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls1_c00425{letter-spacing:-0.768000pt;}
.ls2_c00425{letter-spacing:-0.640000pt;}
.ls3_c00425{letter-spacing:-0.560000pt;}
.ls4_c00425{letter-spacing:-0.480000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws1_c00425{word-spacing:-7.728000pt;}
.ws2_c00425{word-spacing:-5.766400pt;}
.ws3_c00425{word-spacing:0.000000pt;}
.ws6_c00425{word-spacing:0.480000pt;}
.ws5_c00425{word-spacing:0.768000pt;}
.ws4_c00425{word-spacing:6.272000pt;}
.ws0_c00425{word-spacing:1409.275733pt;}
._3_c00425{margin-left:-6.260267pt;}
._0_c00425{margin-left:-1.877333pt;}
._1_c00425{margin-left:-0.981333pt;}
._2_c00425{width:1.792000pt;}
._6_c00425{width:6.912000pt;}
._4_c00425{width:49.488000pt;}
._5_c00425{width:52.565333pt;}
.fs5_c00425{font-size:27.200000pt;}
.fs6_c00425{font-size:32.000000pt;}
.fs3_c00425{font-size:37.333333pt;}
.fs0_c00425{font-size:42.666667pt;}
.fs4_c00425{font-size:48.000000pt;}
.fs2_c00425{font-size:50.666667pt;}
.fs1_c00425{font-size:53.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y18_c00425{bottom:309.419333pt;}
.y17_c00425{bottom:321.419333pt;}
.y16_c00425{bottom:333.419200pt;}
.y15_c00425{bottom:356.978400pt;}
.y14_c00425{bottom:368.978400pt;}
.y13_c00425{bottom:380.978400pt;}
.y12_c00425{bottom:404.537333pt;}
.y11_c00425{bottom:416.537333pt;}
.y10_c00425{bottom:428.537333pt;}
.yf_c00425{bottom:448.316933pt;}
.ye_c00425{bottom:464.316933pt;}
.yd_c00425{bottom:487.876000pt;}
.yc_c00425{bottom:756.064800pt;}
.yb_c00425{bottom:768.064800pt;}
.ya_c00425{bottom:780.064800pt;}
.y9_c00425{bottom:803.623867pt;}
.y8_c00425{bottom:815.623867pt;}
.y7_c00425{bottom:839.182933pt;}
.y6_c00425{bottom:851.182933pt;}
.y5_c00425{bottom:863.182933pt;}
.y4_c00425{bottom:882.962533pt;}
.y3_c00425{bottom:898.962533pt;}
.y2_c00425{bottom:922.521600pt;}
.y19_c00425{bottom:924.710533pt;}
.y1_c00425{bottom:972.089733pt;}
.h7_c00425{height:22.400000pt;}
.h6_c00425{height:26.917333pt;}
.h4_c00425{height:30.293333pt;}
.h2_c00425{height:34.901333pt;}
.h3_c00425{height:38.453333pt;}
.h5_c00425{height:38.880000pt;}
.h1_c00425{height:1009.333333pt;}
.h0_c00425{height:1009.338800pt;}
.w0_c00425{width:794.622400pt;}
.w1_c00425{width:794.666667pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:68.980533pt;}
.x4_c00425{left:376.728533pt;}
.x2_c00425{left:532.823067pt;}
.x3_c00425{left:544.161600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00426;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00426;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00426;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:1.067000;font-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_c00426{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls2_c00426{letter-spacing:-0.720000px;}
.ls3_c00426{letter-spacing:-0.630000px;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00426{word-spacing:-8.694000px;}
.ws0_c00426{word-spacing:-0.048000px;}
.ws2_c00426{word-spacing:0.000000px;}
.ws3_c00426{word-spacing:7.056000px;}
._0_c00426{margin-left:-2755.276200px;}
._4_c00426{margin-left:-6.946800px;}
._1_c00426{margin-left:-2.256000px;}
._3_c00426{margin-left:-1.200000px;}
._2_c00426{width:1.008000px;}
._7_c00426{width:7.776000px;}
._5_c00426{width:55.674000px;}
._6_c00426{width:59.136000px;}
.fc0_c00426{color:rgb(35,31,32);}
.fs3_c00426{font-size:42.000000px;}
.fs0_c00426{font-size:48.000000px;}
.fs4_c00426{font-size:54.000000px;}
.fs2_c00426{font-size:57.000000px;}
.fs1_c00426{font-size:60.000000px;}
.y0_c00426{bottom:0.000000px;}
.y19_c00426{bottom:348.326400px;}
.y18_c00426{bottom:361.826400px;}
.y17_c00426{bottom:375.326400px;}
.y16_c00426{bottom:401.830350px;}
.y15_c00426{bottom:415.330350px;}
.y14_c00426{bottom:428.830350px;}
.y13_c00426{bottom:455.334300px;}
.y12_c00426{bottom:468.834300px;}
.y11_c00426{bottom:482.334300px;}
.y10_c00426{bottom:504.586200px;}
.yf_c00426{bottom:522.586200px;}
.ye_c00426{bottom:549.090150px;}
.yd_c00426{bottom:836.656350px;}
.yc_c00426{bottom:850.156350px;}
.yb_c00426{bottom:863.656350px;}
.ya_c00426{bottom:890.160300px;}
.y9_c00426{bottom:903.660300px;}
.y8_c00426{bottom:917.160300px;}
.y7_c00426{bottom:943.664250px;}
.y6_c00426{bottom:957.164250px;}
.y5_c00426{bottom:970.664250px;}
.y4_c00426{bottom:992.916150px;}
.y3_c00426{bottom:1010.916150px;}
.y2_c00426{bottom:1037.420100px;}
.y1_c00426{bottom:1093.600950px;}
.h7_c00426{height:30.282000px;}
.h5_c00426{height:34.080000px;}
.h2_c00426{height:39.264000px;}
.h3_c00426{height:39.984000px;}
.h4_c00426{height:43.260000px;}
.h6_c00426{height:43.740000px;}
.h1_c00426{height:1135.500000px;}
.h0_c00426{height:1135.506150px;}
.w0_c00426{width:893.950200px;}
.w1_c00426{width:894.000000px;}
.x0_c00426{left:0.000000px;}
.x4_c00426{left:128.520450px;}
.x5_c00426{left:141.276300px;}
.x2_c00426{left:188.061900px;}
.x3_c00426{left:190.513350px;}
.x1_c00426{left:800.165850px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls2_c00426{letter-spacing:-0.640000pt;}
.ls3_c00426{letter-spacing:-0.560000pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.426667pt;}
.ws1_c00426{word-spacing:-7.728000pt;}
.ws0_c00426{word-spacing:-0.042667pt;}
.ws2_c00426{word-spacing:0.000000pt;}
.ws3_c00426{word-spacing:6.272000pt;}
._0_c00426{margin-left:-2449.134400pt;}
._4_c00426{margin-left:-6.174933pt;}
._1_c00426{margin-left:-2.005333pt;}
._3_c00426{margin-left:-1.066667pt;}
._2_c00426{width:0.896000pt;}
._7_c00426{width:6.912000pt;}
._5_c00426{width:49.488000pt;}
._6_c00426{width:52.565333pt;}
.fs3_c00426{font-size:37.333333pt;}
.fs0_c00426{font-size:42.666667pt;}
.fs4_c00426{font-size:48.000000pt;}
.fs2_c00426{font-size:50.666667pt;}
.fs1_c00426{font-size:53.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y19_c00426{bottom:309.623467pt;}
.y18_c00426{bottom:321.623467pt;}
.y17_c00426{bottom:333.623467pt;}
.y16_c00426{bottom:357.182533pt;}
.y15_c00426{bottom:369.182533pt;}
.y14_c00426{bottom:381.182533pt;}
.y13_c00426{bottom:404.741600pt;}
.y12_c00426{bottom:416.741600pt;}
.y11_c00426{bottom:428.741600pt;}
.y10_c00426{bottom:448.521067pt;}
.yf_c00426{bottom:464.521067pt;}
.ye_c00426{bottom:488.080133pt;}
.yd_c00426{bottom:743.694533pt;}
.yc_c00426{bottom:755.694533pt;}
.yb_c00426{bottom:767.694533pt;}
.ya_c00426{bottom:791.253600pt;}
.y9_c00426{bottom:803.253600pt;}
.y8_c00426{bottom:815.253600pt;}
.y7_c00426{bottom:838.812667pt;}
.y6_c00426{bottom:850.812667pt;}
.y5_c00426{bottom:862.812667pt;}
.y4_c00426{bottom:882.592133pt;}
.y3_c00426{bottom:898.592133pt;}
.y2_c00426{bottom:922.151200pt;}
.y1_c00426{bottom:972.089733pt;}
.h7_c00426{height:26.917333pt;}
.h5_c00426{height:30.293333pt;}
.h2_c00426{height:34.901333pt;}
.h3_c00426{height:35.541333pt;}
.h4_c00426{height:38.453333pt;}
.h6_c00426{height:38.880000pt;}
.h1_c00426{height:1009.333333pt;}
.h0_c00426{height:1009.338800pt;}
.w0_c00426{width:794.622400pt;}
.w1_c00426{width:794.666667pt;}
.x0_c00426{left:0.000000pt;}
.x4_c00426{left:114.240400pt;}
.x5_c00426{left:125.578933pt;}
.x2_c00426{left:167.166133pt;}
.x3_c00426{left:169.345200pt;}
.x1_c00426{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00427;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00427{font-family:ff7_c00427;line-height:0.710000;font-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_c00427{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls1_c00427{letter-spacing:-0.720000px;}
.ls2_c00427{letter-spacing:-0.630000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00427{word-spacing:-8.694000px;}
.ws2_c00427{word-spacing:-6.487200px;}
.ws3_c00427{word-spacing:0.000000px;}
.ws4_c00427{word-spacing:7.056000px;}
.ws0_c00427{word-spacing:1585.435200px;}
._3_c00427{margin-left:-7.042800px;}
._7_c00427{margin-left:-4.854000px;}
._0_c00427{margin-left:-2.112000px;}
._1_c00427{margin-left:-1.104000px;}
._2_c00427{width:2.016000px;}
._6_c00427{width:7.776000px;}
._4_c00427{width:55.674000px;}
._5_c00427{width:59.136000px;}
.fc0_c00427{color:rgb(35,31,32);}
.fs5_c00427{font-size:30.600000px;}
.fs6_c00427{font-size:36.000000px;}
.fs3_c00427{font-size:42.000000px;}
.fs0_c00427{font-size:48.000000px;}
.fs4_c00427{font-size:54.000000px;}
.fs2_c00427{font-size:57.000000px;}
.fs1_c00427{font-size:60.000000px;}
.y0_c00427{bottom:0.000000px;}
.y18_c00427{bottom:361.171500px;}
.y17_c00427{bottom:374.671500px;}
.y16_c00427{bottom:388.171500px;}
.y15_c00427{bottom:414.675450px;}
.y14_c00427{bottom:428.175450px;}
.y13_c00427{bottom:454.679400px;}
.y12_c00427{bottom:468.179400px;}
.y11_c00427{bottom:481.679400px;}
.y10_c00427{bottom:503.931300px;}
.yf_c00427{bottom:521.931300px;}
.ye_c00427{bottom:548.435250px;}
.y19_c00427{bottom:551.323050px;}
.yd_c00427{bottom:836.647800px;}
.yc_c00427{bottom:850.147800px;}
.yb_c00427{bottom:863.647800px;}
.ya_c00427{bottom:890.151750px;}
.y9_c00427{bottom:903.651750px;}
.y8_c00427{bottom:917.151750px;}
.y7_c00427{bottom:943.655700px;}
.y6_c00427{bottom:957.155700px;}
.y5_c00427{bottom:970.655700px;}
.y4_c00427{bottom:992.907600px;}
.y3_c00427{bottom:1010.907600px;}
.y2_c00427{bottom:1037.411550px;}
.y1_c00427{bottom:1093.600950px;}
.h7_c00427{height:25.200000px;}
.h6_c00427{height:30.282000px;}
.h4_c00427{height:34.080000px;}
.h2_c00427{height:39.264000px;}
.h3_c00427{height:43.260000px;}
.h5_c00427{height:43.740000px;}
.h1_c00427{height:1135.500000px;}
.h0_c00427{height:1135.506150px;}
.w0_c00427{width:893.950200px;}
.w1_c00427{width:894.000000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:77.603100px;}
.x4_c00427{left:423.819600px;}
.x2_c00427{left:599.425950px;}
.x3_c00427{left:612.181800px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls1_c00427{letter-spacing:-0.640000pt;}
.ls2_c00427{letter-spacing:-0.560000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws1_c00427{word-spacing:-7.728000pt;}
.ws2_c00427{word-spacing:-5.766400pt;}
.ws3_c00427{word-spacing:0.000000pt;}
.ws4_c00427{word-spacing:6.272000pt;}
.ws0_c00427{word-spacing:1409.275733pt;}
._3_c00427{margin-left:-6.260267pt;}
._7_c00427{margin-left:-4.314667pt;}
._0_c00427{margin-left:-1.877333pt;}
._1_c00427{margin-left:-0.981333pt;}
._2_c00427{width:1.792000pt;}
._6_c00427{width:6.912000pt;}
._4_c00427{width:49.488000pt;}
._5_c00427{width:52.565333pt;}
.fs5_c00427{font-size:27.200000pt;}
.fs6_c00427{font-size:32.000000pt;}
.fs3_c00427{font-size:37.333333pt;}
.fs0_c00427{font-size:42.666667pt;}
.fs4_c00427{font-size:48.000000pt;}
.fs2_c00427{font-size:50.666667pt;}
.fs1_c00427{font-size:53.333333pt;}
.y0_c00427{bottom:0.000000pt;}
.y18_c00427{bottom:321.041333pt;}
.y17_c00427{bottom:333.041333pt;}
.y16_c00427{bottom:345.041333pt;}
.y15_c00427{bottom:368.600400pt;}
.y14_c00427{bottom:380.600400pt;}
.y13_c00427{bottom:404.159467pt;}
.y12_c00427{bottom:416.159467pt;}
.y11_c00427{bottom:428.159467pt;}
.y10_c00427{bottom:447.938933pt;}
.yf_c00427{bottom:463.938933pt;}
.ye_c00427{bottom:487.498000pt;}
.y19_c00427{bottom:490.064933pt;}
.yd_c00427{bottom:743.686933pt;}
.yc_c00427{bottom:755.686933pt;}
.yb_c00427{bottom:767.686933pt;}
.ya_c00427{bottom:791.246000pt;}
.y9_c00427{bottom:803.246000pt;}
.y8_c00427{bottom:815.246000pt;}
.y7_c00427{bottom:838.805067pt;}
.y6_c00427{bottom:850.805067pt;}
.y5_c00427{bottom:862.805067pt;}
.y4_c00427{bottom:882.584533pt;}
.y3_c00427{bottom:898.584533pt;}
.y2_c00427{bottom:922.143600pt;}
.y1_c00427{bottom:972.089733pt;}
.h7_c00427{height:22.400000pt;}
.h6_c00427{height:26.917333pt;}
.h4_c00427{height:30.293333pt;}
.h2_c00427{height:34.901333pt;}
.h3_c00427{height:38.453333pt;}
.h5_c00427{height:38.880000pt;}
.h1_c00427{height:1009.333333pt;}
.h0_c00427{height:1009.338800pt;}
.w0_c00427{width:794.622400pt;}
.w1_c00427{width:794.666667pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:68.980533pt;}
.x4_c00427{left:376.728533pt;}
.x2_c00427{left:532.823067pt;}
.x3_c00427{left:544.161600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00428;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;line-height:1.067000;font-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_c00428{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls2_c00428{letter-spacing:-0.720000px;}
.ls3_c00428{letter-spacing:-0.630000px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00428{word-spacing:-8.694000px;}
.ws0_c00428{word-spacing:-0.048000px;}
.ws2_c00428{word-spacing:0.000000px;}
.ws3_c00428{word-spacing:7.056000px;}
._0_c00428{margin-left:-2755.276200px;}
._4_c00428{margin-left:-6.946800px;}
._6_c00428{margin-left:-4.050000px;}
._1_c00428{margin-left:-2.256000px;}
._3_c00428{margin-left:-1.200000px;}
._2_c00428{width:1.008000px;}
._8_c00428{width:7.776000px;}
._5_c00428{width:55.674000px;}
._7_c00428{width:59.136000px;}
.fc0_c00428{color:rgb(35,31,32);}
.fs3_c00428{font-size:42.000000px;}
.fs0_c00428{font-size:48.000000px;}
.fs4_c00428{font-size:54.000000px;}
.fs2_c00428{font-size:57.000000px;}
.fs1_c00428{font-size:60.000000px;}
.y0_c00428{bottom:0.000000px;}
.y19_c00428{bottom:347.901300px;}
.y18_c00428{bottom:361.401300px;}
.y17_c00428{bottom:374.901150px;}
.y16_c00428{bottom:401.405100px;}
.y15_c00428{bottom:414.905100px;}
.y14_c00428{bottom:428.405100px;}
.y13_c00428{bottom:454.909050px;}
.y12_c00428{bottom:468.409050px;}
.y11_c00428{bottom:481.909050px;}
.y10_c00428{bottom:504.160950px;}
.yf_c00428{bottom:522.160950px;}
.ye_c00428{bottom:548.664900px;}
.yd_c00428{bottom:836.230950px;}
.yc_c00428{bottom:849.730950px;}
.yb_c00428{bottom:863.230950px;}
.ya_c00428{bottom:889.734900px;}
.y9_c00428{bottom:903.234900px;}
.y8_c00428{bottom:916.734900px;}
.y7_c00428{bottom:943.238850px;}
.y6_c00428{bottom:956.738850px;}
.y5_c00428{bottom:970.238850px;}
.y4_c00428{bottom:992.490900px;}
.y3_c00428{bottom:1010.490900px;}
.y2_c00428{bottom:1036.994850px;}
.y1_c00428{bottom:1093.600950px;}
.h7_c00428{height:30.282000px;}
.h5_c00428{height:34.080000px;}
.h2_c00428{height:39.264000px;}
.h3_c00428{height:39.984000px;}
.h4_c00428{height:43.260000px;}
.h6_c00428{height:43.740000px;}
.h1_c00428{height:1135.500000px;}
.h0_c00428{height:1135.506150px;}
.w0_c00428{width:893.950200px;}
.w1_c00428{width:894.000000px;}
.x0_c00428{left:0.000000px;}
.x4_c00428{left:128.520450px;}
.x5_c00428{left:141.276300px;}
.x2_c00428{left:188.061900px;}
.x3_c00428{left:190.513350px;}
.x1_c00428{left:800.165850px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls2_c00428{letter-spacing:-0.640000pt;}
.ls3_c00428{letter-spacing:-0.560000pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.426667pt;}
.ws1_c00428{word-spacing:-7.728000pt;}
.ws0_c00428{word-spacing:-0.042667pt;}
.ws2_c00428{word-spacing:0.000000pt;}
.ws3_c00428{word-spacing:6.272000pt;}
._0_c00428{margin-left:-2449.134400pt;}
._4_c00428{margin-left:-6.174933pt;}
._6_c00428{margin-left:-3.600000pt;}
._1_c00428{margin-left:-2.005333pt;}
._3_c00428{margin-left:-1.066667pt;}
._2_c00428{width:0.896000pt;}
._8_c00428{width:6.912000pt;}
._5_c00428{width:49.488000pt;}
._7_c00428{width:52.565333pt;}
.fs3_c00428{font-size:37.333333pt;}
.fs0_c00428{font-size:42.666667pt;}
.fs4_c00428{font-size:48.000000pt;}
.fs2_c00428{font-size:50.666667pt;}
.fs1_c00428{font-size:53.333333pt;}
.y0_c00428{bottom:0.000000pt;}
.y19_c00428{bottom:309.245600pt;}
.y18_c00428{bottom:321.245600pt;}
.y17_c00428{bottom:333.245467pt;}
.y16_c00428{bottom:356.804533pt;}
.y15_c00428{bottom:368.804533pt;}
.y14_c00428{bottom:380.804533pt;}
.y13_c00428{bottom:404.363600pt;}
.y12_c00428{bottom:416.363600pt;}
.y11_c00428{bottom:428.363600pt;}
.y10_c00428{bottom:448.143067pt;}
.yf_c00428{bottom:464.143067pt;}
.ye_c00428{bottom:487.702133pt;}
.yd_c00428{bottom:743.316400pt;}
.yc_c00428{bottom:755.316400pt;}
.yb_c00428{bottom:767.316400pt;}
.ya_c00428{bottom:790.875467pt;}
.y9_c00428{bottom:802.875467pt;}
.y8_c00428{bottom:814.875467pt;}
.y7_c00428{bottom:838.434533pt;}
.y6_c00428{bottom:850.434533pt;}
.y5_c00428{bottom:862.434533pt;}
.y4_c00428{bottom:882.214133pt;}
.y3_c00428{bottom:898.214133pt;}
.y2_c00428{bottom:921.773200pt;}
.y1_c00428{bottom:972.089733pt;}
.h7_c00428{height:26.917333pt;}
.h5_c00428{height:30.293333pt;}
.h2_c00428{height:34.901333pt;}
.h3_c00428{height:35.541333pt;}
.h4_c00428{height:38.453333pt;}
.h6_c00428{height:38.880000pt;}
.h1_c00428{height:1009.333333pt;}
.h0_c00428{height:1009.338800pt;}
.w0_c00428{width:794.622400pt;}
.w1_c00428{width:794.666667pt;}
.x0_c00428{left:0.000000pt;}
.x4_c00428{left:114.240400pt;}
.x5_c00428{left:125.578933pt;}
.x2_c00428{left:167.166133pt;}
.x3_c00428{left:169.345200pt;}
.x1_c00428{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00429;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00429{font-family:ff6_c00429;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls2_c00429{letter-spacing:-0.720000px;}
.ls3_c00429{letter-spacing:-0.630000px;}
.ls1_c00429{letter-spacing:-0.378000px;}
.ls4_c00429{letter-spacing:-0.324000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00429{word-spacing:-8.694000px;}
.ws2_c00429{word-spacing:0.000000px;}
.ws5_c00429{word-spacing:0.324000px;}
.ws4_c00429{word-spacing:0.378000px;}
.ws3_c00429{word-spacing:7.056000px;}
.ws0_c00429{word-spacing:1585.435200px;}
._3_c00429{margin-left:-7.042800px;}
._0_c00429{margin-left:-2.112000px;}
._1_c00429{margin-left:-1.104000px;}
._2_c00429{width:2.016000px;}
._6_c00429{width:7.776000px;}
._4_c00429{width:55.674000px;}
._5_c00429{width:59.136000px;}
.fc0_c00429{color:rgb(35,31,32);}
.fs3_c00429{font-size:42.000000px;}
.fs0_c00429{font-size:48.000000px;}
.fs4_c00429{font-size:54.000000px;}
.fs2_c00429{font-size:57.000000px;}
.fs1_c00429{font-size:60.000000px;}
.y0_c00429{bottom:0.000000px;}
.y19_c00429{bottom:347.884200px;}
.y18_c00429{bottom:361.384050px;}
.y17_c00429{bottom:374.884050px;}
.y16_c00429{bottom:401.388000px;}
.y15_c00429{bottom:414.888000px;}
.y14_c00429{bottom:428.388000px;}
.y13_c00429{bottom:454.891950px;}
.y12_c00429{bottom:468.391950px;}
.y11_c00429{bottom:481.891950px;}
.y10_c00429{bottom:504.143850px;}
.yf_c00429{bottom:522.143850px;}
.ye_c00429{bottom:548.647800px;}
.yd_c00429{bottom:836.860350px;}
.yc_c00429{bottom:850.360350px;}
.yb_c00429{bottom:863.860350px;}
.ya_c00429{bottom:890.364300px;}
.y9_c00429{bottom:903.864300px;}
.y8_c00429{bottom:917.364300px;}
.y7_c00429{bottom:943.868250px;}
.y6_c00429{bottom:957.368250px;}
.y5_c00429{bottom:970.868250px;}
.y4_c00429{bottom:993.120300px;}
.y3_c00429{bottom:1011.120300px;}
.y2_c00429{bottom:1037.624250px;}
.y1_c00429{bottom:1093.600950px;}
.h6_c00429{height:30.282000px;}
.h4_c00429{height:34.080000px;}
.h2_c00429{height:39.264000px;}
.h3_c00429{height:43.260000px;}
.h5_c00429{height:43.740000px;}
.h1_c00429{height:1135.500000px;}
.h0_c00429{height:1135.506150px;}
.w0_c00429{width:893.950200px;}
.w1_c00429{width:894.000000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:77.603100px;}
.x2_c00429{left:599.425950px;}
.x3_c00429{left:612.181800px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls2_c00429{letter-spacing:-0.640000pt;}
.ls3_c00429{letter-spacing:-0.560000pt;}
.ls1_c00429{letter-spacing:-0.336000pt;}
.ls4_c00429{letter-spacing:-0.288000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws1_c00429{word-spacing:-7.728000pt;}
.ws2_c00429{word-spacing:0.000000pt;}
.ws5_c00429{word-spacing:0.288000pt;}
.ws4_c00429{word-spacing:0.336000pt;}
.ws3_c00429{word-spacing:6.272000pt;}
.ws0_c00429{word-spacing:1409.275733pt;}
._3_c00429{margin-left:-6.260267pt;}
._0_c00429{margin-left:-1.877333pt;}
._1_c00429{margin-left:-0.981333pt;}
._2_c00429{width:1.792000pt;}
._6_c00429{width:6.912000pt;}
._4_c00429{width:49.488000pt;}
._5_c00429{width:52.565333pt;}
.fs3_c00429{font-size:37.333333pt;}
.fs0_c00429{font-size:42.666667pt;}
.fs4_c00429{font-size:48.000000pt;}
.fs2_c00429{font-size:50.666667pt;}
.fs1_c00429{font-size:53.333333pt;}
.y0_c00429{bottom:0.000000pt;}
.y19_c00429{bottom:309.230400pt;}
.y18_c00429{bottom:321.230267pt;}
.y17_c00429{bottom:333.230267pt;}
.y16_c00429{bottom:356.789333pt;}
.y15_c00429{bottom:368.789333pt;}
.y14_c00429{bottom:380.789333pt;}
.y13_c00429{bottom:404.348400pt;}
.y12_c00429{bottom:416.348400pt;}
.y11_c00429{bottom:428.348400pt;}
.y10_c00429{bottom:448.127867pt;}
.yf_c00429{bottom:464.127867pt;}
.ye_c00429{bottom:487.686933pt;}
.yd_c00429{bottom:743.875867pt;}
.yc_c00429{bottom:755.875867pt;}
.yb_c00429{bottom:767.875867pt;}
.ya_c00429{bottom:791.434933pt;}
.y9_c00429{bottom:803.434933pt;}
.y8_c00429{bottom:815.434933pt;}
.y7_c00429{bottom:838.994000pt;}
.y6_c00429{bottom:850.994000pt;}
.y5_c00429{bottom:862.994000pt;}
.y4_c00429{bottom:882.773600pt;}
.y3_c00429{bottom:898.773600pt;}
.y2_c00429{bottom:922.332667pt;}
.y1_c00429{bottom:972.089733pt;}
.h6_c00429{height:26.917333pt;}
.h4_c00429{height:30.293333pt;}
.h2_c00429{height:34.901333pt;}
.h3_c00429{height:38.453333pt;}
.h5_c00429{height:38.880000pt;}
.h1_c00429{height:1009.333333pt;}
.h0_c00429{height:1009.338800pt;}
.w0_c00429{width:794.622400pt;}
.w1_c00429{width:794.666667pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:68.980533pt;}
.x2_c00429{left:532.823067pt;}
.x3_c00429{left:544.161600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:0.955000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00430;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00430;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00430;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff8_c00430{font-family:ff8_c00430;line-height:0.710000;font-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_c00430{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls3_c00430{letter-spacing:-0.720000px;}
.ls4_c00430{letter-spacing:-0.630000px;}
.ls2_c00430{letter-spacing:-0.540000px;}
.ls1_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00430{word-spacing:-8.694000px;}
.ws2_c00430{word-spacing:-6.487200px;}
.ws0_c00430{word-spacing:-0.048000px;}
.ws3_c00430{word-spacing:0.000000px;}
.ws5_c00430{word-spacing:0.540000px;}
.ws4_c00430{word-spacing:7.056000px;}
._0_c00430{margin-left:-2755.276200px;}
._4_c00430{margin-left:-6.946800px;}
._1_c00430{margin-left:-2.256000px;}
._3_c00430{margin-left:-1.200000px;}
._2_c00430{width:1.008000px;}
._6_c00430{width:2.262000px;}
._8_c00430{width:7.776000px;}
._5_c00430{width:55.674000px;}
._7_c00430{width:59.136000px;}
.fc0_c00430{color:rgb(35,31,32);}
.fs5_c00430{font-size:30.600000px;}
.fs6_c00430{font-size:36.000000px;}
.fs3_c00430{font-size:42.000000px;}
.fs0_c00430{font-size:48.000000px;}
.fs4_c00430{font-size:54.000000px;}
.fs2_c00430{font-size:57.000000px;}
.fs1_c00430{font-size:60.000000px;}
.y0_c00430{bottom:0.000000px;}
.y18_c00430{bottom:348.113850px;}
.y17_c00430{bottom:361.613850px;}
.y16_c00430{bottom:375.113850px;}
.y15_c00430{bottom:401.617650px;}
.y14_c00430{bottom:415.117650px;}
.y13_c00430{bottom:428.617650px;}
.y12_c00430{bottom:455.121600px;}
.y11_c00430{bottom:468.621600px;}
.y10_c00430{bottom:482.121600px;}
.yf_c00430{bottom:504.373650px;}
.ye_c00430{bottom:522.373650px;}
.yd_c00430{bottom:548.877600px;}
.yc_c00430{bottom:849.943800px;}
.yb_c00430{bottom:863.443800px;}
.ya_c00430{bottom:876.943800px;}
.y9_c00430{bottom:903.447750px;}
.y8_c00430{bottom:916.947750px;}
.y7_c00430{bottom:943.451700px;}
.y6_c00430{bottom:956.951700px;}
.y5_c00430{bottom:970.451700px;}
.y4_c00430{bottom:992.703600px;}
.y3_c00430{bottom:1010.703600px;}
.y2_c00430{bottom:1037.207550px;}
.y19_c00430{bottom:1040.299350px;}
.y1_c00430{bottom:1093.600950px;}
.h8_c00430{height:25.200000px;}
.h7_c00430{height:30.282000px;}
.h5_c00430{height:34.080000px;}
.h2_c00430{height:39.264000px;}
.h3_c00430{height:39.984000px;}
.h4_c00430{height:43.260000px;}
.h6_c00430{height:43.740000px;}
.h1_c00430{height:1135.500000px;}
.h0_c00430{height:1135.506150px;}
.w0_c00430{width:893.950200px;}
.w1_c00430{width:894.000000px;}
.x0_c00430{left:0.000000px;}
.x4_c00430{left:128.520450px;}
.x5_c00430{left:141.276300px;}
.x2_c00430{left:188.061900px;}
.x3_c00430{left:190.513350px;}
.x6_c00430{left:321.919050px;}
.x1_c00430{left:800.165850px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls3_c00430{letter-spacing:-0.640000pt;}
.ls4_c00430{letter-spacing:-0.560000pt;}
.ls2_c00430{letter-spacing:-0.480000pt;}
.ls1_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:0.426667pt;}
.ws1_c00430{word-spacing:-7.728000pt;}
.ws2_c00430{word-spacing:-5.766400pt;}
.ws0_c00430{word-spacing:-0.042667pt;}
.ws3_c00430{word-spacing:0.000000pt;}
.ws5_c00430{word-spacing:0.480000pt;}
.ws4_c00430{word-spacing:6.272000pt;}
._0_c00430{margin-left:-2449.134400pt;}
._4_c00430{margin-left:-6.174933pt;}
._1_c00430{margin-left:-2.005333pt;}
._3_c00430{margin-left:-1.066667pt;}
._2_c00430{width:0.896000pt;}
._6_c00430{width:2.010667pt;}
._8_c00430{width:6.912000pt;}
._5_c00430{width:49.488000pt;}
._7_c00430{width:52.565333pt;}
.fs5_c00430{font-size:27.200000pt;}
.fs6_c00430{font-size:32.000000pt;}
.fs3_c00430{font-size:37.333333pt;}
.fs0_c00430{font-size:42.666667pt;}
.fs4_c00430{font-size:48.000000pt;}
.fs2_c00430{font-size:50.666667pt;}
.fs1_c00430{font-size:53.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y18_c00430{bottom:309.434533pt;}
.y17_c00430{bottom:321.434533pt;}
.y16_c00430{bottom:333.434533pt;}
.y15_c00430{bottom:356.993467pt;}
.y14_c00430{bottom:368.993467pt;}
.y13_c00430{bottom:380.993467pt;}
.y12_c00430{bottom:404.552533pt;}
.y11_c00430{bottom:416.552533pt;}
.y10_c00430{bottom:428.552533pt;}
.yf_c00430{bottom:448.332133pt;}
.ye_c00430{bottom:464.332133pt;}
.yd_c00430{bottom:487.891200pt;}
.yc_c00430{bottom:755.505600pt;}
.yb_c00430{bottom:767.505600pt;}
.ya_c00430{bottom:779.505600pt;}
.y9_c00430{bottom:803.064667pt;}
.y8_c00430{bottom:815.064667pt;}
.y7_c00430{bottom:838.623733pt;}
.y6_c00430{bottom:850.623733pt;}
.y5_c00430{bottom:862.623733pt;}
.y4_c00430{bottom:882.403200pt;}
.y3_c00430{bottom:898.403200pt;}
.y2_c00430{bottom:921.962267pt;}
.y19_c00430{bottom:924.710533pt;}
.y1_c00430{bottom:972.089733pt;}
.h8_c00430{height:22.400000pt;}
.h7_c00430{height:26.917333pt;}
.h5_c00430{height:30.293333pt;}
.h2_c00430{height:34.901333pt;}
.h3_c00430{height:35.541333pt;}
.h4_c00430{height:38.453333pt;}
.h6_c00430{height:38.880000pt;}
.h1_c00430{height:1009.333333pt;}
.h0_c00430{height:1009.338800pt;}
.w0_c00430{width:794.622400pt;}
.w1_c00430{width:794.666667pt;}
.x0_c00430{left:0.000000pt;}
.x4_c00430{left:114.240400pt;}
.x5_c00430{left:125.578933pt;}
.x2_c00430{left:167.166133pt;}
.x3_c00430{left:169.345200pt;}
.x6_c00430{left:286.150267pt;}
.x1_c00430{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:0.930000;font-style:normal;font-weight:normal;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_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00431;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00431{font-family:ff6_c00431;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls1_c00431{letter-spacing:-0.720000px;}
.ls2_c00431{letter-spacing:-0.630000px;}
.ls3_c00431{letter-spacing:-0.216000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00431{word-spacing:-12.150000px;}
.ws1_c00431{word-spacing:-8.694000px;}
.ws3_c00431{word-spacing:0.000000px;}
.ws4_c00431{word-spacing:7.056000px;}
.ws0_c00431{word-spacing:1585.435200px;}
._3_c00431{margin-left:-7.042800px;}
._0_c00431{margin-left:-2.112000px;}
._1_c00431{margin-left:-1.104000px;}
._2_c00431{width:2.016000px;}
._6_c00431{width:7.776000px;}
._4_c00431{width:55.674000px;}
._5_c00431{width:59.136000px;}
.fc0_c00431{color:rgb(35,31,32);}
.fs3_c00431{font-size:42.000000px;}
.fs0_c00431{font-size:48.000000px;}
.fs4_c00431{font-size:54.000000px;}
.fs2_c00431{font-size:57.000000px;}
.fs1_c00431{font-size:60.000000px;}
.y0_c00431{bottom:0.000000px;}
.y1a_c00431{bottom:330.137700px;}
.y19_c00431{bottom:343.637700px;}
.y18_c00431{bottom:357.137700px;}
.y17_c00431{bottom:383.641500px;}
.y16_c00431{bottom:397.141500px;}
.y15_c00431{bottom:410.641500px;}
.y14_c00431{bottom:437.145450px;}
.y13_c00431{bottom:450.645450px;}
.y12_c00431{bottom:464.145450px;}
.y11_c00431{bottom:486.397500px;}
.y10_c00431{bottom:504.397500px;}
.yf_c00431{bottom:522.397500px;}
.ye_c00431{bottom:548.901450px;}
.yd_c00431{bottom:837.113850px;}
.yc_c00431{bottom:850.613850px;}
.yb_c00431{bottom:864.113850px;}
.ya_c00431{bottom:890.617950px;}
.y9_c00431{bottom:904.117950px;}
.y8_c00431{bottom:917.617950px;}
.y7_c00431{bottom:944.121900px;}
.y6_c00431{bottom:957.621900px;}
.y5_c00431{bottom:971.121900px;}
.y4_c00431{bottom:993.373800px;}
.y3_c00431{bottom:1011.373800px;}
.y2_c00431{bottom:1037.877750px;}
.y1_c00431{bottom:1093.600950px;}
.h6_c00431{height:30.282000px;}
.h4_c00431{height:34.080000px;}
.h2_c00431{height:39.264000px;}
.h3_c00431{height:43.260000px;}
.h5_c00431{height:43.740000px;}
.h1_c00431{height:1135.500000px;}
.h0_c00431{height:1135.506150px;}
.w0_c00431{width:893.950200px;}
.w1_c00431{width:894.000000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:77.603100px;}
.x2_c00431{left:599.468400px;}
.x3_c00431{left:612.224400px;}
.x4_c00431{left:616.476300px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls1_c00431{letter-spacing:-0.640000pt;}
.ls2_c00431{letter-spacing:-0.560000pt;}
.ls3_c00431{letter-spacing:-0.192000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws2_c00431{word-spacing:-10.800000pt;}
.ws1_c00431{word-spacing:-7.728000pt;}
.ws3_c00431{word-spacing:0.000000pt;}
.ws4_c00431{word-spacing:6.272000pt;}
.ws0_c00431{word-spacing:1409.275733pt;}
._3_c00431{margin-left:-6.260267pt;}
._0_c00431{margin-left:-1.877333pt;}
._1_c00431{margin-left:-0.981333pt;}
._2_c00431{width:1.792000pt;}
._6_c00431{width:6.912000pt;}
._4_c00431{width:49.488000pt;}
._5_c00431{width:52.565333pt;}
.fs3_c00431{font-size:37.333333pt;}
.fs0_c00431{font-size:42.666667pt;}
.fs4_c00431{font-size:48.000000pt;}
.fs2_c00431{font-size:50.666667pt;}
.fs1_c00431{font-size:53.333333pt;}
.y0_c00431{bottom:0.000000pt;}
.y1a_c00431{bottom:293.455733pt;}
.y19_c00431{bottom:305.455733pt;}
.y18_c00431{bottom:317.455733pt;}
.y17_c00431{bottom:341.014667pt;}
.y16_c00431{bottom:353.014667pt;}
.y15_c00431{bottom:365.014667pt;}
.y14_c00431{bottom:388.573733pt;}
.y13_c00431{bottom:400.573733pt;}
.y12_c00431{bottom:412.573733pt;}
.y11_c00431{bottom:432.353333pt;}
.y10_c00431{bottom:448.353333pt;}
.yf_c00431{bottom:464.353333pt;}
.ye_c00431{bottom:487.912400pt;}
.yd_c00431{bottom:744.101200pt;}
.yc_c00431{bottom:756.101200pt;}
.yb_c00431{bottom:768.101200pt;}
.ya_c00431{bottom:791.660400pt;}
.y9_c00431{bottom:803.660400pt;}
.y8_c00431{bottom:815.660400pt;}
.y7_c00431{bottom:839.219467pt;}
.y6_c00431{bottom:851.219467pt;}
.y5_c00431{bottom:863.219467pt;}
.y4_c00431{bottom:882.998933pt;}
.y3_c00431{bottom:898.998933pt;}
.y2_c00431{bottom:922.558000pt;}
.y1_c00431{bottom:972.089733pt;}
.h6_c00431{height:26.917333pt;}
.h4_c00431{height:30.293333pt;}
.h2_c00431{height:34.901333pt;}
.h3_c00431{height:38.453333pt;}
.h5_c00431{height:38.880000pt;}
.h1_c00431{height:1009.333333pt;}
.h0_c00431{height:1009.338800pt;}
.w0_c00431{width:794.622400pt;}
.w1_c00431{width:794.666667pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:68.980533pt;}
.x2_c00431{left:532.860800pt;}
.x3_c00431{left:544.199467pt;}
.x4_c00431{left:547.978933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00432;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:1.067000;font-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_c00432{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls3_c00432{letter-spacing:-0.720000px;}
.ls4_c00432{letter-spacing:-0.630000px;}
.ls2_c00432{letter-spacing:-0.216000px;}
.ls1_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00432{word-spacing:-8.694000px;}
.ws0_c00432{word-spacing:-0.048000px;}
.ws2_c00432{word-spacing:0.000000px;}
.ws4_c00432{word-spacing:0.216000px;}
.ws3_c00432{word-spacing:7.056000px;}
._0_c00432{margin-left:-2755.276200px;}
._4_c00432{margin-left:-6.946800px;}
._1_c00432{margin-left:-2.256000px;}
._3_c00432{margin-left:-1.200000px;}
._2_c00432{width:1.008000px;}
._7_c00432{width:7.776000px;}
._5_c00432{width:55.674000px;}
._6_c00432{width:59.136000px;}
.fc0_c00432{color:rgb(35,31,32);}
.fs3_c00432{font-size:42.000000px;}
.fs0_c00432{font-size:48.000000px;}
.fs4_c00432{font-size:54.000000px;}
.fs2_c00432{font-size:57.000000px;}
.fs1_c00432{font-size:60.000000px;}
.y0_c00432{bottom:0.000000px;}
.y19_c00432{bottom:348.367350px;}
.y18_c00432{bottom:361.867350px;}
.y17_c00432{bottom:375.367350px;}
.y16_c00432{bottom:401.871300px;}
.y15_c00432{bottom:415.371300px;}
.y14_c00432{bottom:428.871300px;}
.y13_c00432{bottom:455.375250px;}
.y12_c00432{bottom:468.875250px;}
.y11_c00432{bottom:482.375250px;}
.y10_c00432{bottom:504.627150px;}
.yf_c00432{bottom:522.627150px;}
.ye_c00432{bottom:549.131100px;}
.yd_c00432{bottom:836.697150px;}
.yc_c00432{bottom:850.197150px;}
.yb_c00432{bottom:863.697150px;}
.ya_c00432{bottom:890.201100px;}
.y9_c00432{bottom:903.701100px;}
.y8_c00432{bottom:917.201100px;}
.y7_c00432{bottom:943.705050px;}
.y6_c00432{bottom:957.205050px;}
.y5_c00432{bottom:970.705050px;}
.y4_c00432{bottom:992.957100px;}
.y3_c00432{bottom:1010.957100px;}
.y2_c00432{bottom:1037.461050px;}
.y1_c00432{bottom:1093.600950px;}
.h7_c00432{height:30.282000px;}
.h5_c00432{height:34.080000px;}
.h2_c00432{height:39.264000px;}
.h3_c00432{height:39.984000px;}
.h4_c00432{height:43.260000px;}
.h6_c00432{height:43.740000px;}
.h1_c00432{height:1135.500000px;}
.h0_c00432{height:1135.506150px;}
.w0_c00432{width:893.950200px;}
.w1_c00432{width:894.000000px;}
.x0_c00432{left:0.000000px;}
.x4_c00432{left:128.562900px;}
.x5_c00432{left:141.318900px;}
.x2_c00432{left:188.061900px;}
.x3_c00432{left:190.513350px;}
.x1_c00432{left:800.165850px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls3_c00432{letter-spacing:-0.640000pt;}
.ls4_c00432{letter-spacing:-0.560000pt;}
.ls2_c00432{letter-spacing:-0.192000pt;}
.ls1_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:0.426667pt;}
.ws1_c00432{word-spacing:-7.728000pt;}
.ws0_c00432{word-spacing:-0.042667pt;}
.ws2_c00432{word-spacing:0.000000pt;}
.ws4_c00432{word-spacing:0.192000pt;}
.ws3_c00432{word-spacing:6.272000pt;}
._0_c00432{margin-left:-2449.134400pt;}
._4_c00432{margin-left:-6.174933pt;}
._1_c00432{margin-left:-2.005333pt;}
._3_c00432{margin-left:-1.066667pt;}
._2_c00432{width:0.896000pt;}
._7_c00432{width:6.912000pt;}
._5_c00432{width:49.488000pt;}
._6_c00432{width:52.565333pt;}
.fs3_c00432{font-size:37.333333pt;}
.fs0_c00432{font-size:42.666667pt;}
.fs4_c00432{font-size:48.000000pt;}
.fs2_c00432{font-size:50.666667pt;}
.fs1_c00432{font-size:53.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y19_c00432{bottom:309.659867pt;}
.y18_c00432{bottom:321.659867pt;}
.y17_c00432{bottom:333.659867pt;}
.y16_c00432{bottom:357.218933pt;}
.y15_c00432{bottom:369.218933pt;}
.y14_c00432{bottom:381.218933pt;}
.y13_c00432{bottom:404.778000pt;}
.y12_c00432{bottom:416.778000pt;}
.y11_c00432{bottom:428.778000pt;}
.y10_c00432{bottom:448.557467pt;}
.yf_c00432{bottom:464.557467pt;}
.ye_c00432{bottom:488.116533pt;}
.yd_c00432{bottom:743.730800pt;}
.yc_c00432{bottom:755.730800pt;}
.yb_c00432{bottom:767.730800pt;}
.ya_c00432{bottom:791.289867pt;}
.y9_c00432{bottom:803.289867pt;}
.y8_c00432{bottom:815.289867pt;}
.y7_c00432{bottom:838.848933pt;}
.y6_c00432{bottom:850.848933pt;}
.y5_c00432{bottom:862.848933pt;}
.y4_c00432{bottom:882.628533pt;}
.y3_c00432{bottom:898.628533pt;}
.y2_c00432{bottom:922.187600pt;}
.y1_c00432{bottom:972.089733pt;}
.h7_c00432{height:26.917333pt;}
.h5_c00432{height:30.293333pt;}
.h2_c00432{height:34.901333pt;}
.h3_c00432{height:35.541333pt;}
.h4_c00432{height:38.453333pt;}
.h6_c00432{height:38.880000pt;}
.h1_c00432{height:1009.333333pt;}
.h0_c00432{height:1009.338800pt;}
.w0_c00432{width:794.622400pt;}
.w1_c00432{width:794.666667pt;}
.x0_c00432{left:0.000000pt;}
.x4_c00432{left:114.278133pt;}
.x5_c00432{left:125.616800pt;}
.x2_c00432{left:167.166133pt;}
.x3_c00432{left:169.345200pt;}
.x1_c00432{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00433;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00433;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00433;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00433{font-family:ff7_c00433;line-height:0.710000;font-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_c00433{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls1_c00433{letter-spacing:-0.720000px;}
.ls2_c00433{letter-spacing:-0.630000px;}
.ls3_c00433{letter-spacing:-0.270000px;}
.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;}
}
.ws1_c00433{word-spacing:-8.694000px;}
.ws2_c00433{word-spacing:-6.487200px;}
.ws3_c00433{word-spacing:0.000000px;}
.ws4_c00433{word-spacing:7.056000px;}
.ws5_c00433{word-spacing:55.944000px;}
.ws0_c00433{word-spacing:1585.435200px;}
._3_c00433{margin-left:-7.042800px;}
._0_c00433{margin-left:-2.112000px;}
._1_c00433{margin-left:-1.104000px;}
._2_c00433{width:2.016000px;}
._6_c00433{width:7.776000px;}
._4_c00433{width:55.674000px;}
._5_c00433{width:59.136000px;}
.fc0_c00433{color:rgb(35,31,32);}
.fs5_c00433{font-size:30.600000px;}
.fs6_c00433{font-size:36.000000px;}
.fs3_c00433{font-size:42.000000px;}
.fs0_c00433{font-size:48.000000px;}
.fs4_c00433{font-size:54.000000px;}
.fs2_c00433{font-size:57.000000px;}
.fs1_c00433{font-size:60.000000px;}
.y0_c00433{bottom:0.000000px;}
.y18_c00433{bottom:348.309300px;}
.y17_c00433{bottom:361.809300px;}
.y16_c00433{bottom:375.309300px;}
.y15_c00433{bottom:401.813250px;}
.y14_c00433{bottom:415.313250px;}
.y13_c00433{bottom:428.813250px;}
.y12_c00433{bottom:455.317200px;}
.y11_c00433{bottom:468.817200px;}
.y10_c00433{bottom:482.317200px;}
.yf_c00433{bottom:504.569100px;}
.ye_c00433{bottom:522.569100px;}
.yd_c00433{bottom:549.073050px;}
.yc_c00433{bottom:850.785450px;}
.yb_c00433{bottom:864.285450px;}
.ya_c00433{bottom:877.785450px;}
.y9_c00433{bottom:904.289400px;}
.y8_c00433{bottom:917.789400px;}
.y7_c00433{bottom:944.293350px;}
.y6_c00433{bottom:957.793350px;}
.y5_c00433{bottom:971.293350px;}
.y4_c00433{bottom:993.545400px;}
.y3_c00433{bottom:1011.545400px;}
.y2_c00433{bottom:1038.049350px;}
.y19_c00433{bottom:1040.299350px;}
.y1_c00433{bottom:1093.600950px;}
.h7_c00433{height:25.200000px;}
.h6_c00433{height:30.282000px;}
.h4_c00433{height:34.080000px;}
.h2_c00433{height:39.264000px;}
.h3_c00433{height:43.260000px;}
.h5_c00433{height:43.740000px;}
.h1_c00433{height:1135.500000px;}
.h0_c00433{height:1135.506150px;}
.w0_c00433{width:893.950200px;}
.w1_c00433{width:894.000000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:77.603100px;}
.x4_c00433{left:423.932400px;}
.x2_c00433{left:599.538600px;}
.x3_c00433{left:612.294450px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls1_c00433{letter-spacing:-0.640000pt;}
.ls2_c00433{letter-spacing:-0.560000pt;}
.ls3_c00433{letter-spacing:-0.240000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws1_c00433{word-spacing:-7.728000pt;}
.ws2_c00433{word-spacing:-5.766400pt;}
.ws3_c00433{word-spacing:0.000000pt;}
.ws4_c00433{word-spacing:6.272000pt;}
.ws5_c00433{word-spacing:49.728000pt;}
.ws0_c00433{word-spacing:1409.275733pt;}
._3_c00433{margin-left:-6.260267pt;}
._0_c00433{margin-left:-1.877333pt;}
._1_c00433{margin-left:-0.981333pt;}
._2_c00433{width:1.792000pt;}
._6_c00433{width:6.912000pt;}
._4_c00433{width:49.488000pt;}
._5_c00433{width:52.565333pt;}
.fs5_c00433{font-size:27.200000pt;}
.fs6_c00433{font-size:32.000000pt;}
.fs3_c00433{font-size:37.333333pt;}
.fs0_c00433{font-size:42.666667pt;}
.fs4_c00433{font-size:48.000000pt;}
.fs2_c00433{font-size:50.666667pt;}
.fs1_c00433{font-size:53.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y18_c00433{bottom:309.608267pt;}
.y17_c00433{bottom:321.608267pt;}
.y16_c00433{bottom:333.608267pt;}
.y15_c00433{bottom:357.167333pt;}
.y14_c00433{bottom:369.167333pt;}
.y13_c00433{bottom:381.167333pt;}
.y12_c00433{bottom:404.726400pt;}
.y11_c00433{bottom:416.726400pt;}
.y10_c00433{bottom:428.726400pt;}
.yf_c00433{bottom:448.505867pt;}
.ye_c00433{bottom:464.505867pt;}
.yd_c00433{bottom:488.064933pt;}
.yc_c00433{bottom:756.253733pt;}
.yb_c00433{bottom:768.253733pt;}
.ya_c00433{bottom:780.253733pt;}
.y9_c00433{bottom:803.812800pt;}
.y8_c00433{bottom:815.812800pt;}
.y7_c00433{bottom:839.371867pt;}
.y6_c00433{bottom:851.371867pt;}
.y5_c00433{bottom:863.371867pt;}
.y4_c00433{bottom:883.151467pt;}
.y3_c00433{bottom:899.151467pt;}
.y2_c00433{bottom:922.710533pt;}
.y19_c00433{bottom:924.710533pt;}
.y1_c00433{bottom:972.089733pt;}
.h7_c00433{height:22.400000pt;}
.h6_c00433{height:26.917333pt;}
.h4_c00433{height:30.293333pt;}
.h2_c00433{height:34.901333pt;}
.h3_c00433{height:38.453333pt;}
.h5_c00433{height:38.880000pt;}
.h1_c00433{height:1009.333333pt;}
.h0_c00433{height:1009.338800pt;}
.w0_c00433{width:794.622400pt;}
.w1_c00433{width:794.666667pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:68.980533pt;}
.x4_c00433{left:376.828800pt;}
.x2_c00433{left:532.923200pt;}
.x3_c00433{left:544.261733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00434;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00434{font-family:ff6_c00434;line-height:0.908000;font-style:normal;font-weight: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_c00434;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00434{font-family:ff7_c00434;line-height:1.067000;font-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_c00434{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls2_c00434{letter-spacing:-0.720000px;}
.ls3_c00434{letter-spacing:-0.630000px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:0.480000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:-8.694000px;}
.ws0_c00434{word-spacing:-0.048000px;}
.ws2_c00434{word-spacing:0.000000px;}
.ws3_c00434{word-spacing:7.056000px;}
._0_c00434{margin-left:-2755.276200px;}
._4_c00434{margin-left:-6.947400px;}
._1_c00434{margin-left:-2.256000px;}
._3_c00434{margin-left:-1.200000px;}
._2_c00434{width:1.008000px;}
._7_c00434{width:7.776000px;}
._5_c00434{width:55.674000px;}
._6_c00434{width:59.136000px;}
.fc0_c00434{color:rgb(35,31,32);}
.fs3_c00434{font-size:42.000000px;}
.fs0_c00434{font-size:48.000000px;}
.fs4_c00434{font-size:54.000000px;}
.fs2_c00434{font-size:57.000000px;}
.fs1_c00434{font-size:60.000000px;}
.y0_c00434{bottom:0.000000px;}
.y19_c00434{bottom:348.538950px;}
.y18_c00434{bottom:362.038950px;}
.y17_c00434{bottom:375.538950px;}
.y16_c00434{bottom:402.042900px;}
.y15_c00434{bottom:415.542900px;}
.y14_c00434{bottom:429.042900px;}
.y13_c00434{bottom:455.546850px;}
.y12_c00434{bottom:469.046850px;}
.y11_c00434{bottom:482.546850px;}
.y10_c00434{bottom:504.798750px;}
.yf_c00434{bottom:522.798750px;}
.ye_c00434{bottom:549.302700px;}
.yd_c00434{bottom:836.868900px;}
.yc_c00434{bottom:850.368900px;}
.yb_c00434{bottom:863.868900px;}
.ya_c00434{bottom:890.372850px;}
.y9_c00434{bottom:903.872850px;}
.y8_c00434{bottom:917.372850px;}
.y7_c00434{bottom:943.876800px;}
.y6_c00434{bottom:957.376800px;}
.y5_c00434{bottom:970.876800px;}
.y4_c00434{bottom:993.128700px;}
.y3_c00434{bottom:1011.128700px;}
.y2_c00434{bottom:1037.632650px;}
.y1_c00434{bottom:1093.600950px;}
.h7_c00434{height:30.282000px;}
.h5_c00434{height:34.080000px;}
.h2_c00434{height:39.264000px;}
.h3_c00434{height:39.984000px;}
.h4_c00434{height:43.260000px;}
.h6_c00434{height:43.740000px;}
.h1_c00434{height:1135.500000px;}
.h0_c00434{height:1135.506150px;}
.w0_c00434{width:893.950200px;}
.w1_c00434{width:894.000000px;}
.x0_c00434{left:0.000000px;}
.x4_c00434{left:128.633100px;}
.x5_c00434{left:141.389100px;}
.x2_c00434{left:188.061900px;}
.x3_c00434{left:190.513350px;}
.x1_c00434{left:800.165850px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls2_c00434{letter-spacing:-0.640000pt;}
.ls3_c00434{letter-spacing:-0.560000pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:0.426667pt;}
.ws1_c00434{word-spacing:-7.728000pt;}
.ws0_c00434{word-spacing:-0.042667pt;}
.ws2_c00434{word-spacing:0.000000pt;}
.ws3_c00434{word-spacing:6.272000pt;}
._0_c00434{margin-left:-2449.134400pt;}
._4_c00434{margin-left:-6.175467pt;}
._1_c00434{margin-left:-2.005333pt;}
._3_c00434{margin-left:-1.066667pt;}
._2_c00434{width:0.896000pt;}
._7_c00434{width:6.912000pt;}
._5_c00434{width:49.488000pt;}
._6_c00434{width:52.565333pt;}
.fs3_c00434{font-size:37.333333pt;}
.fs0_c00434{font-size:42.666667pt;}
.fs4_c00434{font-size:48.000000pt;}
.fs2_c00434{font-size:50.666667pt;}
.fs1_c00434{font-size:53.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.y19_c00434{bottom:309.812400pt;}
.y18_c00434{bottom:321.812400pt;}
.y17_c00434{bottom:333.812400pt;}
.y16_c00434{bottom:357.371467pt;}
.y15_c00434{bottom:369.371467pt;}
.y14_c00434{bottom:381.371467pt;}
.y13_c00434{bottom:404.930533pt;}
.y12_c00434{bottom:416.930533pt;}
.y11_c00434{bottom:428.930533pt;}
.y10_c00434{bottom:448.710000pt;}
.yf_c00434{bottom:464.710000pt;}
.ye_c00434{bottom:488.269067pt;}
.yd_c00434{bottom:743.883467pt;}
.yc_c00434{bottom:755.883467pt;}
.yb_c00434{bottom:767.883467pt;}
.ya_c00434{bottom:791.442533pt;}
.y9_c00434{bottom:803.442533pt;}
.y8_c00434{bottom:815.442533pt;}
.y7_c00434{bottom:839.001600pt;}
.y6_c00434{bottom:851.001600pt;}
.y5_c00434{bottom:863.001600pt;}
.y4_c00434{bottom:882.781067pt;}
.y3_c00434{bottom:898.781067pt;}
.y2_c00434{bottom:922.340133pt;}
.y1_c00434{bottom:972.089733pt;}
.h7_c00434{height:26.917333pt;}
.h5_c00434{height:30.293333pt;}
.h2_c00434{height:34.901333pt;}
.h3_c00434{height:35.541333pt;}
.h4_c00434{height:38.453333pt;}
.h6_c00434{height:38.880000pt;}
.h1_c00434{height:1009.333333pt;}
.h0_c00434{height:1009.338800pt;}
.w0_c00434{width:794.622400pt;}
.w1_c00434{width:794.666667pt;}
.x0_c00434{left:0.000000pt;}
.x4_c00434{left:114.340533pt;}
.x5_c00434{left:125.679200pt;}
.x2_c00434{left:167.166133pt;}
.x3_c00434{left:169.345200pt;}
.x1_c00434{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00435;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00435;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00435{font-family:ff7_c00435;line-height:0.710000;font-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_c00435{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls4_c00435{letter-spacing:-0.864000px;}
.ls2_c00435{letter-spacing:-0.720000px;}
.ls3_c00435{letter-spacing:-0.630000px;}
.ls1_c00435{letter-spacing:-0.540000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00435{word-spacing:-8.694000px;}
.ws2_c00435{word-spacing:-6.487200px;}
.ws3_c00435{word-spacing:0.000000px;}
.ws5_c00435{word-spacing:0.540000px;}
.ws6_c00435{word-spacing:0.864000px;}
.ws4_c00435{word-spacing:7.056000px;}
.ws0_c00435{word-spacing:1585.435200px;}
._3_c00435{margin-left:-7.042800px;}
._0_c00435{margin-left:-2.112000px;}
._1_c00435{margin-left:-1.104000px;}
._2_c00435{width:2.016000px;}
._6_c00435{width:7.776000px;}
._4_c00435{width:55.674000px;}
._5_c00435{width:59.136000px;}
.fc0_c00435{color:rgb(35,31,32);}
.fs5_c00435{font-size:30.600000px;}
.fs6_c00435{font-size:36.000000px;}
.fs3_c00435{font-size:42.000000px;}
.fs0_c00435{font-size:48.000000px;}
.fs4_c00435{font-size:54.000000px;}
.fs2_c00435{font-size:57.000000px;}
.fs1_c00435{font-size:60.000000px;}
.y0_c00435{bottom:0.000000px;}
.y18_c00435{bottom:361.596750px;}
.y17_c00435{bottom:375.096600px;}
.y16_c00435{bottom:388.596600px;}
.y15_c00435{bottom:415.100700px;}
.y14_c00435{bottom:428.600700px;}
.y13_c00435{bottom:455.104500px;}
.y12_c00435{bottom:468.604500px;}
.y11_c00435{bottom:482.104500px;}
.y10_c00435{bottom:504.356550px;}
.yf_c00435{bottom:522.356550px;}
.ye_c00435{bottom:548.860500px;}
.y19_c00435{bottom:551.748150px;}
.yd_c00435{bottom:837.072900px;}
.yc_c00435{bottom:850.572900px;}
.yb_c00435{bottom:864.072900px;}
.ya_c00435{bottom:890.576850px;}
.y9_c00435{bottom:904.076850px;}
.y8_c00435{bottom:917.576850px;}
.y7_c00435{bottom:944.080800px;}
.y6_c00435{bottom:957.580800px;}
.y5_c00435{bottom:971.080800px;}
.y4_c00435{bottom:993.332850px;}
.y3_c00435{bottom:1011.332850px;}
.y2_c00435{bottom:1037.836800px;}
.y1_c00435{bottom:1093.600950px;}
.h7_c00435{height:25.200000px;}
.h6_c00435{height:30.282000px;}
.h4_c00435{height:34.080000px;}
.h2_c00435{height:39.264000px;}
.h3_c00435{height:43.260000px;}
.h5_c00435{height:43.740000px;}
.h1_c00435{height:1135.500000px;}
.h0_c00435{height:1135.506150px;}
.w0_c00435{width:893.950200px;}
.w1_c00435{width:894.000000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:77.603100px;}
.x4_c00435{left:423.819600px;}
.x2_c00435{left:599.425950px;}
.x3_c00435{left:612.181800px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls4_c00435{letter-spacing:-0.768000pt;}
.ls2_c00435{letter-spacing:-0.640000pt;}
.ls3_c00435{letter-spacing:-0.560000pt;}
.ls1_c00435{letter-spacing:-0.480000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws1_c00435{word-spacing:-7.728000pt;}
.ws2_c00435{word-spacing:-5.766400pt;}
.ws3_c00435{word-spacing:0.000000pt;}
.ws5_c00435{word-spacing:0.480000pt;}
.ws6_c00435{word-spacing:0.768000pt;}
.ws4_c00435{word-spacing:6.272000pt;}
.ws0_c00435{word-spacing:1409.275733pt;}
._3_c00435{margin-left:-6.260267pt;}
._0_c00435{margin-left:-1.877333pt;}
._1_c00435{margin-left:-0.981333pt;}
._2_c00435{width:1.792000pt;}
._6_c00435{width:6.912000pt;}
._4_c00435{width:49.488000pt;}
._5_c00435{width:52.565333pt;}
.fs5_c00435{font-size:27.200000pt;}
.fs6_c00435{font-size:32.000000pt;}
.fs3_c00435{font-size:37.333333pt;}
.fs0_c00435{font-size:42.666667pt;}
.fs4_c00435{font-size:48.000000pt;}
.fs2_c00435{font-size:50.666667pt;}
.fs1_c00435{font-size:53.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y18_c00435{bottom:321.419333pt;}
.y17_c00435{bottom:333.419200pt;}
.y16_c00435{bottom:345.419200pt;}
.y15_c00435{bottom:368.978400pt;}
.y14_c00435{bottom:380.978400pt;}
.y13_c00435{bottom:404.537333pt;}
.y12_c00435{bottom:416.537333pt;}
.y11_c00435{bottom:428.537333pt;}
.y10_c00435{bottom:448.316933pt;}
.yf_c00435{bottom:464.316933pt;}
.ye_c00435{bottom:487.876000pt;}
.y19_c00435{bottom:490.442800pt;}
.yd_c00435{bottom:744.064800pt;}
.yc_c00435{bottom:756.064800pt;}
.yb_c00435{bottom:768.064800pt;}
.ya_c00435{bottom:791.623867pt;}
.y9_c00435{bottom:803.623867pt;}
.y8_c00435{bottom:815.623867pt;}
.y7_c00435{bottom:839.182933pt;}
.y6_c00435{bottom:851.182933pt;}
.y5_c00435{bottom:863.182933pt;}
.y4_c00435{bottom:882.962533pt;}
.y3_c00435{bottom:898.962533pt;}
.y2_c00435{bottom:922.521600pt;}
.y1_c00435{bottom:972.089733pt;}
.h7_c00435{height:22.400000pt;}
.h6_c00435{height:26.917333pt;}
.h4_c00435{height:30.293333pt;}
.h2_c00435{height:34.901333pt;}
.h3_c00435{height:38.453333pt;}
.h5_c00435{height:38.880000pt;}
.h1_c00435{height:1009.333333pt;}
.h0_c00435{height:1009.338800pt;}
.w0_c00435{width:794.622400pt;}
.w1_c00435{width:794.666667pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:68.980533pt;}
.x4_c00435{left:376.728533pt;}
.x2_c00435{left:532.823067pt;}
.x3_c00435{left:544.161600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00436;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00436;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00436{font-family:ff6_c00436;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00436;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00436{font-family:ff7_c00436;line-height:1.067000;font-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_c00436{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls3_c00436{letter-spacing:-0.720000px;}
.ls4_c00436{letter-spacing:-0.630000px;}
.ls5_c00436{letter-spacing:-0.540000px;}
.ls2_c00436{letter-spacing:-0.216000px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00436{word-spacing:-12.150000px;}
.ws1_c00436{word-spacing:-8.694000px;}
.ws0_c00436{word-spacing:-0.048000px;}
.ws3_c00436{word-spacing:0.000000px;}
.ws5_c00436{word-spacing:0.540000px;}
.ws4_c00436{word-spacing:7.056000px;}
._0_c00436{margin-left:-2755.276200px;}
._4_c00436{margin-left:-6.946800px;}
._1_c00436{margin-left:-2.256000px;}
._3_c00436{margin-left:-1.200000px;}
._2_c00436{width:1.008000px;}
._7_c00436{width:7.776000px;}
._5_c00436{width:55.674000px;}
._6_c00436{width:59.136000px;}
.fc0_c00436{color:rgb(35,31,32);}
.fs3_c00436{font-size:42.000000px;}
.fs0_c00436{font-size:48.000000px;}
.fs4_c00436{font-size:54.000000px;}
.fs2_c00436{font-size:57.000000px;}
.fs1_c00436{font-size:60.000000px;}
.y0_c00436{bottom:0.000000px;}
.y1a_c00436{bottom:348.326400px;}
.y19_c00436{bottom:361.826400px;}
.y18_c00436{bottom:375.326400px;}
.y17_c00436{bottom:401.830350px;}
.y16_c00436{bottom:415.330350px;}
.y15_c00436{bottom:428.830350px;}
.y14_c00436{bottom:455.334300px;}
.y13_c00436{bottom:468.834300px;}
.y12_c00436{bottom:482.334300px;}
.y11_c00436{bottom:504.586200px;}
.y10_c00436{bottom:522.586200px;}
.yf_c00436{bottom:549.090150px;}
.ye_c00436{bottom:818.656350px;}
.yd_c00436{bottom:832.156350px;}
.yc_c00436{bottom:845.656350px;}
.yb_c00436{bottom:872.160300px;}
.ya_c00436{bottom:885.660300px;}
.y9_c00436{bottom:899.160300px;}
.y8_c00436{bottom:925.664250px;}
.y7_c00436{bottom:939.164250px;}
.y6_c00436{bottom:952.664250px;}
.y5_c00436{bottom:974.916150px;}
.y4_c00436{bottom:992.916150px;}
.y3_c00436{bottom:1010.916150px;}
.y2_c00436{bottom:1037.420100px;}
.y1_c00436{bottom:1093.600950px;}
.h7_c00436{height:30.282000px;}
.h5_c00436{height:34.080000px;}
.h2_c00436{height:39.264000px;}
.h3_c00436{height:39.984000px;}
.h4_c00436{height:43.260000px;}
.h6_c00436{height:43.740000px;}
.h1_c00436{height:1135.500000px;}
.h0_c00436{height:1135.506150px;}
.w0_c00436{width:893.950200px;}
.w1_c00436{width:894.000000px;}
.x0_c00436{left:0.000000px;}
.x4_c00436{left:128.520450px;}
.x5_c00436{left:141.276300px;}
.x6_c00436{left:145.528350px;}
.x2_c00436{left:188.061900px;}
.x3_c00436{left:190.513350px;}
.x1_c00436{left:800.165850px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls3_c00436{letter-spacing:-0.640000pt;}
.ls4_c00436{letter-spacing:-0.560000pt;}
.ls5_c00436{letter-spacing:-0.480000pt;}
.ls2_c00436{letter-spacing:-0.192000pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:0.426667pt;}
.ws2_c00436{word-spacing:-10.800000pt;}
.ws1_c00436{word-spacing:-7.728000pt;}
.ws0_c00436{word-spacing:-0.042667pt;}
.ws3_c00436{word-spacing:0.000000pt;}
.ws5_c00436{word-spacing:0.480000pt;}
.ws4_c00436{word-spacing:6.272000pt;}
._0_c00436{margin-left:-2449.134400pt;}
._4_c00436{margin-left:-6.174933pt;}
._1_c00436{margin-left:-2.005333pt;}
._3_c00436{margin-left:-1.066667pt;}
._2_c00436{width:0.896000pt;}
._7_c00436{width:6.912000pt;}
._5_c00436{width:49.488000pt;}
._6_c00436{width:52.565333pt;}
.fs3_c00436{font-size:37.333333pt;}
.fs0_c00436{font-size:42.666667pt;}
.fs4_c00436{font-size:48.000000pt;}
.fs2_c00436{font-size:50.666667pt;}
.fs1_c00436{font-size:53.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y1a_c00436{bottom:309.623467pt;}
.y19_c00436{bottom:321.623467pt;}
.y18_c00436{bottom:333.623467pt;}
.y17_c00436{bottom:357.182533pt;}
.y16_c00436{bottom:369.182533pt;}
.y15_c00436{bottom:381.182533pt;}
.y14_c00436{bottom:404.741600pt;}
.y13_c00436{bottom:416.741600pt;}
.y12_c00436{bottom:428.741600pt;}
.y11_c00436{bottom:448.521067pt;}
.y10_c00436{bottom:464.521067pt;}
.yf_c00436{bottom:488.080133pt;}
.ye_c00436{bottom:727.694533pt;}
.yd_c00436{bottom:739.694533pt;}
.yc_c00436{bottom:751.694533pt;}
.yb_c00436{bottom:775.253600pt;}
.ya_c00436{bottom:787.253600pt;}
.y9_c00436{bottom:799.253600pt;}
.y8_c00436{bottom:822.812667pt;}
.y7_c00436{bottom:834.812667pt;}
.y6_c00436{bottom:846.812667pt;}
.y5_c00436{bottom:866.592133pt;}
.y4_c00436{bottom:882.592133pt;}
.y3_c00436{bottom:898.592133pt;}
.y2_c00436{bottom:922.151200pt;}
.y1_c00436{bottom:972.089733pt;}
.h7_c00436{height:26.917333pt;}
.h5_c00436{height:30.293333pt;}
.h2_c00436{height:34.901333pt;}
.h3_c00436{height:35.541333pt;}
.h4_c00436{height:38.453333pt;}
.h6_c00436{height:38.880000pt;}
.h1_c00436{height:1009.333333pt;}
.h0_c00436{height:1009.338800pt;}
.w0_c00436{width:794.622400pt;}
.w1_c00436{width:794.666667pt;}
.x0_c00436{left:0.000000pt;}
.x4_c00436{left:114.240400pt;}
.x5_c00436{left:125.578933pt;}
.x6_c00436{left:129.358533pt;}
.x2_c00436{left:167.166133pt;}
.x3_c00436{left:169.345200pt;}
.x1_c00436{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.067000;font-style:normal;font-weight:normal;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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:0.710000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00437;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00437{font-family:ff6_c00437;line-height:0.908000;font-style:normal;font-weight: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_c00437;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00437{font-family:ff7_c00437;line-height:1.067000;font-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_c00437{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls1_c00437{letter-spacing:-0.720000px;}
.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;}
}
.ws2_c00437{word-spacing:-8.694000px;}
.ws1_c00437{word-spacing:-6.487200px;}
.ws3_c00437{word-spacing:0.000000px;}
.ws4_c00437{word-spacing:7.056000px;}
.ws0_c00437{word-spacing:1585.435200px;}
._3_c00437{margin-left:-7.042800px;}
._0_c00437{margin-left:-2.112000px;}
._1_c00437{margin-left:-1.104000px;}
._2_c00437{width:2.016000px;}
._6_c00437{width:7.776000px;}
._4_c00437{width:55.674000px;}
._5_c00437{width:59.136000px;}
.fc0_c00437{color:rgb(35,31,32);}
.fs1_c00437{font-size:30.600000px;}
.fs2_c00437{font-size:36.000000px;}
.fs5_c00437{font-size:42.000000px;}
.fs0_c00437{font-size:48.000000px;}
.fs6_c00437{font-size:54.000000px;}
.fs4_c00437{font-size:57.000000px;}
.fs3_c00437{font-size:60.000000px;}
.y0_c00437{bottom:0.000000px;}
.y19_c00437{bottom:317.979150px;}
.y17_c00437{bottom:375.096600px;}
.y16_c00437{bottom:388.596600px;}
.y15_c00437{bottom:415.100700px;}
.y14_c00437{bottom:428.600700px;}
.y13_c00437{bottom:455.104500px;}
.y12_c00437{bottom:468.604500px;}
.y11_c00437{bottom:482.104500px;}
.y10_c00437{bottom:504.356550px;}
.yf_c00437{bottom:522.356550px;}
.ye_c00437{bottom:548.860500px;}
.y2_c00437{bottom:551.748150px;}
.y18_c00437{bottom:806.654400px;}
.yd_c00437{bottom:850.572900px;}
.yc_c00437{bottom:864.072900px;}
.yb_c00437{bottom:890.576850px;}
.ya_c00437{bottom:904.076850px;}
.y9_c00437{bottom:917.576850px;}
.y8_c00437{bottom:944.080800px;}
.y7_c00437{bottom:957.580800px;}
.y6_c00437{bottom:971.080800px;}
.y5_c00437{bottom:993.332850px;}
.y4_c00437{bottom:1011.332850px;}
.y3_c00437{bottom:1037.836800px;}
.y1_c00437{bottom:1093.600950px;}
.h3_c00437{height:25.200000px;}
.h7_c00437{height:30.282000px;}
.h5_c00437{height:34.080000px;}
.h2_c00437{height:39.264000px;}
.h4_c00437{height:43.260000px;}
.h6_c00437{height:43.740000px;}
.h1_c00437{height:1135.500000px;}
.h0_c00437{height:1135.506150px;}
.w0_c00437{width:893.950200px;}
.w1_c00437{width:894.000000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:77.603100px;}
.x2_c00437{left:423.947250px;}
.x3_c00437{left:599.553450px;}
.x4_c00437{left:612.309450px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls1_c00437{letter-spacing:-0.640000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws2_c00437{word-spacing:-7.728000pt;}
.ws1_c00437{word-spacing:-5.766400pt;}
.ws3_c00437{word-spacing:0.000000pt;}
.ws4_c00437{word-spacing:6.272000pt;}
.ws0_c00437{word-spacing:1409.275733pt;}
._3_c00437{margin-left:-6.260267pt;}
._0_c00437{margin-left:-1.877333pt;}
._1_c00437{margin-left:-0.981333pt;}
._2_c00437{width:1.792000pt;}
._6_c00437{width:6.912000pt;}
._4_c00437{width:49.488000pt;}
._5_c00437{width:52.565333pt;}
.fs1_c00437{font-size:27.200000pt;}
.fs2_c00437{font-size:32.000000pt;}
.fs5_c00437{font-size:37.333333pt;}
.fs0_c00437{font-size:42.666667pt;}
.fs6_c00437{font-size:48.000000pt;}
.fs4_c00437{font-size:50.666667pt;}
.fs3_c00437{font-size:53.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y19_c00437{bottom:282.648133pt;}
.y17_c00437{bottom:333.419200pt;}
.y16_c00437{bottom:345.419200pt;}
.y15_c00437{bottom:368.978400pt;}
.y14_c00437{bottom:380.978400pt;}
.y13_c00437{bottom:404.537333pt;}
.y12_c00437{bottom:416.537333pt;}
.y11_c00437{bottom:428.537333pt;}
.y10_c00437{bottom:448.316933pt;}
.yf_c00437{bottom:464.316933pt;}
.ye_c00437{bottom:487.876000pt;}
.y2_c00437{bottom:490.442800pt;}
.y18_c00437{bottom:717.026133pt;}
.yd_c00437{bottom:756.064800pt;}
.yc_c00437{bottom:768.064800pt;}
.yb_c00437{bottom:791.623867pt;}
.ya_c00437{bottom:803.623867pt;}
.y9_c00437{bottom:815.623867pt;}
.y8_c00437{bottom:839.182933pt;}
.y7_c00437{bottom:851.182933pt;}
.y6_c00437{bottom:863.182933pt;}
.y5_c00437{bottom:882.962533pt;}
.y4_c00437{bottom:898.962533pt;}
.y3_c00437{bottom:922.521600pt;}
.y1_c00437{bottom:972.089733pt;}
.h3_c00437{height:22.400000pt;}
.h7_c00437{height:26.917333pt;}
.h5_c00437{height:30.293333pt;}
.h2_c00437{height:34.901333pt;}
.h4_c00437{height:38.453333pt;}
.h6_c00437{height:38.880000pt;}
.h1_c00437{height:1009.333333pt;}
.h0_c00437{height:1009.338800pt;}
.w0_c00437{width:794.622400pt;}
.w1_c00437{width:794.666667pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:68.980533pt;}
.x2_c00437{left:376.842000pt;}
.x3_c00437{left:532.936400pt;}
.x4_c00437{left:544.275067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00438;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00438{font-family:ff7_c00438;line-height:1.067000;font-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_c00438{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls2_c00438{letter-spacing:-0.720000px;}
.ls3_c00438{letter-spacing:-0.630000px;}
.ls1_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00438{word-spacing:-0.048000px;}
.ws2_c00438{word-spacing:0.000000px;}
.ws3_c00438{word-spacing:7.056000px;}
._0_c00438{margin-left:-2755.276200px;}
._4_c00438{margin-left:-6.946800px;}
._1_c00438{margin-left:-2.256000px;}
._3_c00438{margin-left:-1.200000px;}
._2_c00438{width:1.008000px;}
._7_c00438{width:7.776000px;}
._5_c00438{width:55.674000px;}
._6_c00438{width:59.136000px;}
.fc0_c00438{color:rgb(35,31,32);}
.fs3_c00438{font-size:42.000000px;}
.fs0_c00438{font-size:48.000000px;}
.fs4_c00438{font-size:54.000000px;}
.fs2_c00438{font-size:57.000000px;}
.fs1_c00438{font-size:60.000000px;}
.y0_c00438{bottom:0.000000px;}
.y19_c00438{bottom:348.326400px;}
.y18_c00438{bottom:361.826400px;}
.y17_c00438{bottom:375.326400px;}
.y16_c00438{bottom:401.830350px;}
.y15_c00438{bottom:415.330350px;}
.y14_c00438{bottom:428.830350px;}
.y13_c00438{bottom:455.334300px;}
.y12_c00438{bottom:468.834300px;}
.y11_c00438{bottom:482.334300px;}
.y10_c00438{bottom:504.586200px;}
.yf_c00438{bottom:522.586200px;}
.ye_c00438{bottom:549.090150px;}
.yd_c00438{bottom:836.656350px;}
.yc_c00438{bottom:850.156350px;}
.yb_c00438{bottom:863.656350px;}
.ya_c00438{bottom:890.160300px;}
.y9_c00438{bottom:903.660300px;}
.y8_c00438{bottom:917.160300px;}
.y7_c00438{bottom:943.664250px;}
.y6_c00438{bottom:957.164250px;}
.y5_c00438{bottom:970.664250px;}
.y4_c00438{bottom:992.916150px;}
.y3_c00438{bottom:1010.916150px;}
.y2_c00438{bottom:1037.420100px;}
.y1_c00438{bottom:1093.600950px;}
.h7_c00438{height:30.282000px;}
.h5_c00438{height:34.080000px;}
.h2_c00438{height:39.264000px;}
.h3_c00438{height:39.984000px;}
.h4_c00438{height:43.260000px;}
.h6_c00438{height:43.740000px;}
.h1_c00438{height:1135.500000px;}
.h0_c00438{height:1135.506150px;}
.w0_c00438{width:893.950200px;}
.w1_c00438{width:894.000000px;}
.x0_c00438{left:0.000000px;}
.x4_c00438{left:128.647950px;}
.x5_c00438{left:141.403950px;}
.x2_c00438{left:188.061900px;}
.x3_c00438{left:190.513350px;}
.x1_c00438{left:800.165850px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls2_c00438{letter-spacing:-0.640000pt;}
.ls3_c00438{letter-spacing:-0.560000pt;}
.ls1_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.426667pt;}
.ws1_c00438{word-spacing:-7.728000pt;}
.ws0_c00438{word-spacing:-0.042667pt;}
.ws2_c00438{word-spacing:0.000000pt;}
.ws3_c00438{word-spacing:6.272000pt;}
._0_c00438{margin-left:-2449.134400pt;}
._4_c00438{margin-left:-6.174933pt;}
._1_c00438{margin-left:-2.005333pt;}
._3_c00438{margin-left:-1.066667pt;}
._2_c00438{width:0.896000pt;}
._7_c00438{width:6.912000pt;}
._5_c00438{width:49.488000pt;}
._6_c00438{width:52.565333pt;}
.fs3_c00438{font-size:37.333333pt;}
.fs0_c00438{font-size:42.666667pt;}
.fs4_c00438{font-size:48.000000pt;}
.fs2_c00438{font-size:50.666667pt;}
.fs1_c00438{font-size:53.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y19_c00438{bottom:309.623467pt;}
.y18_c00438{bottom:321.623467pt;}
.y17_c00438{bottom:333.623467pt;}
.y16_c00438{bottom:357.182533pt;}
.y15_c00438{bottom:369.182533pt;}
.y14_c00438{bottom:381.182533pt;}
.y13_c00438{bottom:404.741600pt;}
.y12_c00438{bottom:416.741600pt;}
.y11_c00438{bottom:428.741600pt;}
.y10_c00438{bottom:448.521067pt;}
.yf_c00438{bottom:464.521067pt;}
.ye_c00438{bottom:488.080133pt;}
.yd_c00438{bottom:743.694533pt;}
.yc_c00438{bottom:755.694533pt;}
.yb_c00438{bottom:767.694533pt;}
.ya_c00438{bottom:791.253600pt;}
.y9_c00438{bottom:803.253600pt;}
.y8_c00438{bottom:815.253600pt;}
.y7_c00438{bottom:838.812667pt;}
.y6_c00438{bottom:850.812667pt;}
.y5_c00438{bottom:862.812667pt;}
.y4_c00438{bottom:882.592133pt;}
.y3_c00438{bottom:898.592133pt;}
.y2_c00438{bottom:922.151200pt;}
.y1_c00438{bottom:972.089733pt;}
.h7_c00438{height:26.917333pt;}
.h5_c00438{height:30.293333pt;}
.h2_c00438{height:34.901333pt;}
.h3_c00438{height:35.541333pt;}
.h4_c00438{height:38.453333pt;}
.h6_c00438{height:38.880000pt;}
.h1_c00438{height:1009.333333pt;}
.h0_c00438{height:1009.338800pt;}
.w0_c00438{width:794.622400pt;}
.w1_c00438{width:794.666667pt;}
.x0_c00438{left:0.000000pt;}
.x4_c00438{left:114.353733pt;}
.x5_c00438{left:125.692400pt;}
.x2_c00438{left:167.166133pt;}
.x3_c00438{left:169.345200pt;}
.x1_c00438{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.067000;font-style:normal;font-weight:normal;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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00439;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00439;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00439{font-family:ff6_c00439;line-height:0.908000;font-style:normal;font-weight: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_c00439;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff7_c00439{font-family:ff7_c00439;line-height:1.067000;font-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_c00439{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls3_c00439{letter-spacing:-0.720000px;}
.ls2_c00439{letter-spacing:-0.702000px;}
.ls4_c00439{letter-spacing:-0.630000px;}
.ls1_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:7.071600px;}
.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;}
}
.ws3_c00439{word-spacing:-11.664000px;}
.ws2_c00439{word-spacing:-8.694000px;}
.ws1_c00439{word-spacing:-6.487200px;}
.ws4_c00439{word-spacing:0.000000px;}
.ws6_c00439{word-spacing:0.702000px;}
.ws5_c00439{word-spacing:7.056000px;}
.ws0_c00439{word-spacing:1585.435200px;}
._3_c00439{margin-left:-7.042800px;}
._0_c00439{margin-left:-2.112000px;}
._1_c00439{margin-left:-1.104000px;}
._2_c00439{width:2.016000px;}
._6_c00439{width:7.776000px;}
._4_c00439{width:55.674000px;}
._5_c00439{width:59.136000px;}
.fc1_c00439{color:rgb(210,32,39);}
.fc0_c00439{color:rgb(35,31,32);}
.fs1_c00439{font-size:30.600000px;}
.fs2_c00439{font-size:36.000000px;}
.fs5_c00439{font-size:42.000000px;}
.fs0_c00439{font-size:48.000000px;}
.fs6_c00439{font-size:54.000000px;}
.fs4_c00439{font-size:57.000000px;}
.fs3_c00439{font-size:60.000000px;}
.y0_c00439{bottom:0.000000px;}
.y1a_c00439{bottom:343.681800px;}
.y19_c00439{bottom:357.181800px;}
.y18_c00439{bottom:370.681650px;}
.y17_c00439{bottom:397.185600px;}
.y16_c00439{bottom:410.685600px;}
.y15_c00439{bottom:437.189550px;}
.y14_c00439{bottom:450.689550px;}
.y13_c00439{bottom:464.189550px;}
.y12_c00439{bottom:486.441600px;}
.y11_c00439{bottom:504.441600px;}
.y10_c00439{bottom:522.441600px;}
.yf_c00439{bottom:548.945400px;}
.y2_c00439{bottom:551.323050px;}
.ye_c00439{bottom:837.157800px;}
.yd_c00439{bottom:850.657800px;}
.yc_c00439{bottom:864.157800px;}
.yb_c00439{bottom:890.661900px;}
.ya_c00439{bottom:904.161900px;}
.y9_c00439{bottom:917.661900px;}
.y8_c00439{bottom:944.165850px;}
.y7_c00439{bottom:957.665850px;}
.y6_c00439{bottom:971.165850px;}
.y5_c00439{bottom:993.417750px;}
.y4_c00439{bottom:1011.417750px;}
.y3_c00439{bottom:1037.921700px;}
.y1_c00439{bottom:1093.600950px;}
.h3_c00439{height:25.200000px;}
.h7_c00439{height:30.282000px;}
.h5_c00439{height:34.080000px;}
.h2_c00439{height:39.264000px;}
.h4_c00439{height:43.260000px;}
.h6_c00439{height:43.740000px;}
.h1_c00439{height:1135.500000px;}
.h0_c00439{height:1135.506150px;}
.w0_c00439{width:893.950200px;}
.w1_c00439{width:894.000000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:77.603100px;}
.x2_c00439{left:423.947250px;}
.x3_c00439{left:599.553450px;}
.x4_c00439{left:612.309450px;}
.x5_c00439{left:616.561350px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls3_c00439{letter-spacing:-0.640000pt;}
.ls2_c00439{letter-spacing:-0.624000pt;}
.ls4_c00439{letter-spacing:-0.560000pt;}
.ls1_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:6.285867pt;}
.ws3_c00439{word-spacing:-10.368000pt;}
.ws2_c00439{word-spacing:-7.728000pt;}
.ws1_c00439{word-spacing:-5.766400pt;}
.ws4_c00439{word-spacing:0.000000pt;}
.ws6_c00439{word-spacing:0.624000pt;}
.ws5_c00439{word-spacing:6.272000pt;}
.ws0_c00439{word-spacing:1409.275733pt;}
._3_c00439{margin-left:-6.260267pt;}
._0_c00439{margin-left:-1.877333pt;}
._1_c00439{margin-left:-0.981333pt;}
._2_c00439{width:1.792000pt;}
._6_c00439{width:6.912000pt;}
._4_c00439{width:49.488000pt;}
._5_c00439{width:52.565333pt;}
.fs1_c00439{font-size:27.200000pt;}
.fs2_c00439{font-size:32.000000pt;}
.fs5_c00439{font-size:37.333333pt;}
.fs0_c00439{font-size:42.666667pt;}
.fs6_c00439{font-size:48.000000pt;}
.fs4_c00439{font-size:50.666667pt;}
.fs3_c00439{font-size:53.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y1a_c00439{bottom:305.494933pt;}
.y19_c00439{bottom:317.494933pt;}
.y18_c00439{bottom:329.494800pt;}
.y17_c00439{bottom:353.053867pt;}
.y16_c00439{bottom:365.053867pt;}
.y15_c00439{bottom:388.612933pt;}
.y14_c00439{bottom:400.612933pt;}
.y13_c00439{bottom:412.612933pt;}
.y12_c00439{bottom:432.392533pt;}
.y11_c00439{bottom:448.392533pt;}
.y10_c00439{bottom:464.392533pt;}
.yf_c00439{bottom:487.951467pt;}
.y2_c00439{bottom:490.064933pt;}
.ye_c00439{bottom:744.140267pt;}
.yd_c00439{bottom:756.140267pt;}
.yc_c00439{bottom:768.140267pt;}
.yb_c00439{bottom:791.699467pt;}
.ya_c00439{bottom:803.699467pt;}
.y9_c00439{bottom:815.699467pt;}
.y8_c00439{bottom:839.258533pt;}
.y7_c00439{bottom:851.258533pt;}
.y6_c00439{bottom:863.258533pt;}
.y5_c00439{bottom:883.038000pt;}
.y4_c00439{bottom:899.038000pt;}
.y3_c00439{bottom:922.597067pt;}
.y1_c00439{bottom:972.089733pt;}
.h3_c00439{height:22.400000pt;}
.h7_c00439{height:26.917333pt;}
.h5_c00439{height:30.293333pt;}
.h2_c00439{height:34.901333pt;}
.h4_c00439{height:38.453333pt;}
.h6_c00439{height:38.880000pt;}
.h1_c00439{height:1009.333333pt;}
.h0_c00439{height:1009.338800pt;}
.w0_c00439{width:794.622400pt;}
.w1_c00439{width:794.666667pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:68.980533pt;}
.x2_c00439{left:376.842000pt;}
.x3_c00439{left:532.936400pt;}
.x4_c00439{left:544.275067pt;}
.x5_c00439{left:548.054533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00440;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00440{font-family:ff6_c00440;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00440;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00440{font-family:ff7_c00440;line-height:1.067000;font-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_c00440{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls3_c00440{letter-spacing:-0.720000px;}
.ls4_c00440{letter-spacing:-0.630000px;}
.ls2_c00440{letter-spacing:-0.540000px;}
.ls5_c00440{letter-spacing:-0.378000px;}
.ls1_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00440{word-spacing:-11.826000px;}
.ws1_c00440{word-spacing:-8.694000px;}
.ws0_c00440{word-spacing:-0.048000px;}
.ws3_c00440{word-spacing:0.000000px;}
.ws5_c00440{word-spacing:0.378000px;}
.ws4_c00440{word-spacing:7.056000px;}
._0_c00440{margin-left:-2755.276200px;}
._4_c00440{margin-left:-6.946800px;}
._1_c00440{margin-left:-2.256000px;}
._3_c00440{margin-left:-1.200000px;}
._2_c00440{width:1.008000px;}
._7_c00440{width:7.776000px;}
._5_c00440{width:55.674000px;}
._6_c00440{width:59.136000px;}
.fc0_c00440{color:rgb(35,31,32);}
.fs3_c00440{font-size:42.000000px;}
.fs0_c00440{font-size:48.000000px;}
.fs4_c00440{font-size:54.000000px;}
.fs2_c00440{font-size:57.000000px;}
.fs1_c00440{font-size:60.000000px;}
.y0_c00440{bottom:0.000000px;}
.y1a_c00440{bottom:348.411450px;}
.y19_c00440{bottom:361.911450px;}
.y18_c00440{bottom:375.411450px;}
.y17_c00440{bottom:401.915400px;}
.y16_c00440{bottom:415.415400px;}
.y15_c00440{bottom:428.915400px;}
.y14_c00440{bottom:455.419200px;}
.y13_c00440{bottom:468.919200px;}
.y12_c00440{bottom:482.419200px;}
.y11_c00440{bottom:504.671250px;}
.y10_c00440{bottom:522.671250px;}
.yf_c00440{bottom:549.175200px;}
.ye_c00440{bottom:818.741250px;}
.yd_c00440{bottom:832.241250px;}
.yc_c00440{bottom:845.741250px;}
.yb_c00440{bottom:872.245200px;}
.ya_c00440{bottom:885.745200px;}
.y9_c00440{bottom:899.245200px;}
.y8_c00440{bottom:925.749300px;}
.y7_c00440{bottom:939.249300px;}
.y6_c00440{bottom:952.749300px;}
.y5_c00440{bottom:975.001200px;}
.y4_c00440{bottom:993.001200px;}
.y3_c00440{bottom:1011.001200px;}
.y2_c00440{bottom:1037.505150px;}
.y1_c00440{bottom:1093.600950px;}
.h7_c00440{height:30.282000px;}
.h5_c00440{height:34.080000px;}
.h2_c00440{height:39.264000px;}
.h3_c00440{height:39.984000px;}
.h4_c00440{height:43.260000px;}
.h6_c00440{height:43.740000px;}
.h1_c00440{height:1135.500000px;}
.h0_c00440{height:1135.506150px;}
.w0_c00440{width:893.950200px;}
.w1_c00440{width:894.000000px;}
.x0_c00440{left:0.000000px;}
.x4_c00440{left:128.647950px;}
.x5_c00440{left:141.403950px;}
.x6_c00440{left:145.655850px;}
.x2_c00440{left:188.061900px;}
.x3_c00440{left:190.513350px;}
.x1_c00440{left:800.165850px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls3_c00440{letter-spacing:-0.640000pt;}
.ls4_c00440{letter-spacing:-0.560000pt;}
.ls2_c00440{letter-spacing:-0.480000pt;}
.ls5_c00440{letter-spacing:-0.336000pt;}
.ls1_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:0.426667pt;}
.ws2_c00440{word-spacing:-10.512000pt;}
.ws1_c00440{word-spacing:-7.728000pt;}
.ws0_c00440{word-spacing:-0.042667pt;}
.ws3_c00440{word-spacing:0.000000pt;}
.ws5_c00440{word-spacing:0.336000pt;}
.ws4_c00440{word-spacing:6.272000pt;}
._0_c00440{margin-left:-2449.134400pt;}
._4_c00440{margin-left:-6.174933pt;}
._1_c00440{margin-left:-2.005333pt;}
._3_c00440{margin-left:-1.066667pt;}
._2_c00440{width:0.896000pt;}
._7_c00440{width:6.912000pt;}
._5_c00440{width:49.488000pt;}
._6_c00440{width:52.565333pt;}
.fs3_c00440{font-size:37.333333pt;}
.fs0_c00440{font-size:42.666667pt;}
.fs4_c00440{font-size:48.000000pt;}
.fs2_c00440{font-size:50.666667pt;}
.fs1_c00440{font-size:53.333333pt;}
.y0_c00440{bottom:0.000000pt;}
.y1a_c00440{bottom:309.699067pt;}
.y19_c00440{bottom:321.699067pt;}
.y18_c00440{bottom:333.699067pt;}
.y17_c00440{bottom:357.258133pt;}
.y16_c00440{bottom:369.258133pt;}
.y15_c00440{bottom:381.258133pt;}
.y14_c00440{bottom:404.817067pt;}
.y13_c00440{bottom:416.817067pt;}
.y12_c00440{bottom:428.817067pt;}
.y11_c00440{bottom:448.596667pt;}
.y10_c00440{bottom:464.596667pt;}
.yf_c00440{bottom:488.155733pt;}
.ye_c00440{bottom:727.770000pt;}
.yd_c00440{bottom:739.770000pt;}
.yc_c00440{bottom:751.770000pt;}
.yb_c00440{bottom:775.329067pt;}
.ya_c00440{bottom:787.329067pt;}
.y9_c00440{bottom:799.329067pt;}
.y8_c00440{bottom:822.888267pt;}
.y7_c00440{bottom:834.888267pt;}
.y6_c00440{bottom:846.888267pt;}
.y5_c00440{bottom:866.667733pt;}
.y4_c00440{bottom:882.667733pt;}
.y3_c00440{bottom:898.667733pt;}
.y2_c00440{bottom:922.226800pt;}
.y1_c00440{bottom:972.089733pt;}
.h7_c00440{height:26.917333pt;}
.h5_c00440{height:30.293333pt;}
.h2_c00440{height:34.901333pt;}
.h3_c00440{height:35.541333pt;}
.h4_c00440{height:38.453333pt;}
.h6_c00440{height:38.880000pt;}
.h1_c00440{height:1009.333333pt;}
.h0_c00440{height:1009.338800pt;}
.w0_c00440{width:794.622400pt;}
.w1_c00440{width:794.666667pt;}
.x0_c00440{left:0.000000pt;}
.x4_c00440{left:114.353733pt;}
.x5_c00440{left:125.692400pt;}
.x6_c00440{left:129.471867pt;}
.x2_c00440{left:167.166133pt;}
.x3_c00440{left:169.345200pt;}
.x1_c00440{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00441;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00441;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.067000;font-style:normal;font-weight: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_c00441;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff7_c00441{font-family:ff7_c00441;line-height:0.710000;font-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_c00441{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls1_c00441{letter-spacing:-0.864000px;}
.ls2_c00441{letter-spacing:-0.720000px;}
.ls3_c00441{letter-spacing:-0.630000px;}
.ls4_c00441{letter-spacing:-0.540000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00441{word-spacing:-8.694000px;}
.ws2_c00441{word-spacing:-6.487200px;}
.ws3_c00441{word-spacing:0.000000px;}
.ws6_c00441{word-spacing:0.540000px;}
.ws5_c00441{word-spacing:0.864000px;}
.ws4_c00441{word-spacing:7.056000px;}
.ws0_c00441{word-spacing:1585.435200px;}
._3_c00441{margin-left:-7.042800px;}
._0_c00441{margin-left:-2.112000px;}
._1_c00441{margin-left:-1.104000px;}
._2_c00441{width:2.016000px;}
._6_c00441{width:7.776000px;}
._4_c00441{width:55.674000px;}
._5_c00441{width:59.136000px;}
.fc0_c00441{color:rgb(35,31,32);}
.fs5_c00441{font-size:30.600000px;}
.fs6_c00441{font-size:36.000000px;}
.fs3_c00441{font-size:42.000000px;}
.fs0_c00441{font-size:48.000000px;}
.fs4_c00441{font-size:54.000000px;}
.fs2_c00441{font-size:57.000000px;}
.fs1_c00441{font-size:60.000000px;}
.y0_c00441{bottom:0.000000px;}
.y18_c00441{bottom:348.096750px;}
.y17_c00441{bottom:361.596750px;}
.y16_c00441{bottom:375.096600px;}
.y15_c00441{bottom:401.600700px;}
.y14_c00441{bottom:415.100700px;}
.y13_c00441{bottom:428.600700px;}
.y12_c00441{bottom:455.104500px;}
.y11_c00441{bottom:468.604500px;}
.y10_c00441{bottom:482.104500px;}
.yf_c00441{bottom:504.356550px;}
.ye_c00441{bottom:522.356550px;}
.yd_c00441{bottom:548.860500px;}
.yc_c00441{bottom:850.572900px;}
.yb_c00441{bottom:864.072900px;}
.ya_c00441{bottom:877.572900px;}
.y9_c00441{bottom:904.076850px;}
.y8_c00441{bottom:917.576850px;}
.y7_c00441{bottom:944.080800px;}
.y6_c00441{bottom:957.580800px;}
.y5_c00441{bottom:971.080800px;}
.y4_c00441{bottom:993.332850px;}
.y3_c00441{bottom:1011.332850px;}
.y2_c00441{bottom:1037.836800px;}
.y19_c00441{bottom:1040.299350px;}
.y1_c00441{bottom:1093.600950px;}
.h7_c00441{height:25.200000px;}
.h6_c00441{height:30.282000px;}
.h4_c00441{height:34.080000px;}
.h2_c00441{height:39.264000px;}
.h3_c00441{height:43.260000px;}
.h5_c00441{height:43.740000px;}
.h1_c00441{height:1135.500000px;}
.h0_c00441{height:1135.506150px;}
.w0_c00441{width:893.950200px;}
.w1_c00441{width:894.000000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:77.603100px;}
.x4_c00441{left:423.904650px;}
.x2_c00441{left:599.511000px;}
.x3_c00441{left:612.266850px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls1_c00441{letter-spacing:-0.768000pt;}
.ls2_c00441{letter-spacing:-0.640000pt;}
.ls3_c00441{letter-spacing:-0.560000pt;}
.ls4_c00441{letter-spacing:-0.480000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws1_c00441{word-spacing:-7.728000pt;}
.ws2_c00441{word-spacing:-5.766400pt;}
.ws3_c00441{word-spacing:0.000000pt;}
.ws6_c00441{word-spacing:0.480000pt;}
.ws5_c00441{word-spacing:0.768000pt;}
.ws4_c00441{word-spacing:6.272000pt;}
.ws0_c00441{word-spacing:1409.275733pt;}
._3_c00441{margin-left:-6.260267pt;}
._0_c00441{margin-left:-1.877333pt;}
._1_c00441{margin-left:-0.981333pt;}
._2_c00441{width:1.792000pt;}
._6_c00441{width:6.912000pt;}
._4_c00441{width:49.488000pt;}
._5_c00441{width:52.565333pt;}
.fs5_c00441{font-size:27.200000pt;}
.fs6_c00441{font-size:32.000000pt;}
.fs3_c00441{font-size:37.333333pt;}
.fs0_c00441{font-size:42.666667pt;}
.fs4_c00441{font-size:48.000000pt;}
.fs2_c00441{font-size:50.666667pt;}
.fs1_c00441{font-size:53.333333pt;}
.y0_c00441{bottom:0.000000pt;}
.y18_c00441{bottom:309.419333pt;}
.y17_c00441{bottom:321.419333pt;}
.y16_c00441{bottom:333.419200pt;}
.y15_c00441{bottom:356.978400pt;}
.y14_c00441{bottom:368.978400pt;}
.y13_c00441{bottom:380.978400pt;}
.y12_c00441{bottom:404.537333pt;}
.y11_c00441{bottom:416.537333pt;}
.y10_c00441{bottom:428.537333pt;}
.yf_c00441{bottom:448.316933pt;}
.ye_c00441{bottom:464.316933pt;}
.yd_c00441{bottom:487.876000pt;}
.yc_c00441{bottom:756.064800pt;}
.yb_c00441{bottom:768.064800pt;}
.ya_c00441{bottom:780.064800pt;}
.y9_c00441{bottom:803.623867pt;}
.y8_c00441{bottom:815.623867pt;}
.y7_c00441{bottom:839.182933pt;}
.y6_c00441{bottom:851.182933pt;}
.y5_c00441{bottom:863.182933pt;}
.y4_c00441{bottom:882.962533pt;}
.y3_c00441{bottom:898.962533pt;}
.y2_c00441{bottom:922.521600pt;}
.y19_c00441{bottom:924.710533pt;}
.y1_c00441{bottom:972.089733pt;}
.h7_c00441{height:22.400000pt;}
.h6_c00441{height:26.917333pt;}
.h4_c00441{height:30.293333pt;}
.h2_c00441{height:34.901333pt;}
.h3_c00441{height:38.453333pt;}
.h5_c00441{height:38.880000pt;}
.h1_c00441{height:1009.333333pt;}
.h0_c00441{height:1009.338800pt;}
.w0_c00441{width:794.622400pt;}
.w1_c00441{width:794.666667pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:68.980533pt;}
.x4_c00441{left:376.804133pt;}
.x2_c00441{left:532.898667pt;}
.x3_c00441{left:544.237200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00442;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00442{font-family:ff6_c00442;line-height:0.908000;font-style:normal;font-weight: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_c00442;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00442{font-family:ff7_c00442;line-height:1.067000;font-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_c00442{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls3_c00442{letter-spacing:-0.720000px;}
.ls4_c00442{letter-spacing:-0.630000px;}
.ls2_c00442{letter-spacing:-0.216000px;}
.ls1_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:0.480000px;}
.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:-8.694000px;}
.ws0_c00442{word-spacing:-0.048000px;}
.ws2_c00442{word-spacing:0.000000px;}
.ws3_c00442{word-spacing:7.056000px;}
.ws4_c00442{word-spacing:55.890000px;}
._0_c00442{margin-left:-2755.276200px;}
._4_c00442{margin-left:-6.946800px;}
._1_c00442{margin-left:-2.256000px;}
._3_c00442{margin-left:-1.200000px;}
._2_c00442{width:1.008000px;}
._6_c00442{width:7.776000px;}
._7_c00442{width:55.674000px;}
._5_c00442{width:59.136000px;}
.fc0_c00442{color:rgb(35,31,32);}
.fs3_c00442{font-size:42.000000px;}
.fs0_c00442{font-size:48.000000px;}
.fs4_c00442{font-size:54.000000px;}
.fs2_c00442{font-size:57.000000px;}
.fs1_c00442{font-size:60.000000px;}
.y0_c00442{bottom:0.000000px;}
.y19_c00442{bottom:348.326400px;}
.y18_c00442{bottom:361.826400px;}
.y17_c00442{bottom:375.326400px;}
.y16_c00442{bottom:401.830350px;}
.y15_c00442{bottom:415.330350px;}
.y14_c00442{bottom:428.830350px;}
.y13_c00442{bottom:455.334300px;}
.y12_c00442{bottom:468.834300px;}
.y11_c00442{bottom:482.334300px;}
.y10_c00442{bottom:504.586200px;}
.yf_c00442{bottom:522.586200px;}
.ye_c00442{bottom:549.090150px;}
.yd_c00442{bottom:836.656350px;}
.yc_c00442{bottom:850.156350px;}
.yb_c00442{bottom:863.656350px;}
.ya_c00442{bottom:890.160300px;}
.y9_c00442{bottom:903.660300px;}
.y8_c00442{bottom:917.160300px;}
.y7_c00442{bottom:943.664250px;}
.y6_c00442{bottom:957.164250px;}
.y5_c00442{bottom:970.664250px;}
.y4_c00442{bottom:992.916150px;}
.y3_c00442{bottom:1010.916150px;}
.y2_c00442{bottom:1037.420100px;}
.y1_c00442{bottom:1093.600950px;}
.h7_c00442{height:30.282000px;}
.h5_c00442{height:34.080000px;}
.h2_c00442{height:39.264000px;}
.h3_c00442{height:39.984000px;}
.h4_c00442{height:43.260000px;}
.h6_c00442{height:43.740000px;}
.h1_c00442{height:1135.500000px;}
.h0_c00442{height:1135.506150px;}
.w0_c00442{width:893.950200px;}
.w1_c00442{width:894.000000px;}
.x0_c00442{left:0.000000px;}
.x4_c00442{left:128.605500px;}
.x5_c00442{left:141.361350px;}
.x2_c00442{left:188.061900px;}
.x3_c00442{left:190.513350px;}
.x1_c00442{left:800.165850px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls3_c00442{letter-spacing:-0.640000pt;}
.ls4_c00442{letter-spacing:-0.560000pt;}
.ls2_c00442{letter-spacing:-0.192000pt;}
.ls1_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:0.426667pt;}
.ws1_c00442{word-spacing:-7.728000pt;}
.ws0_c00442{word-spacing:-0.042667pt;}
.ws2_c00442{word-spacing:0.000000pt;}
.ws3_c00442{word-spacing:6.272000pt;}
.ws4_c00442{word-spacing:49.680000pt;}
._0_c00442{margin-left:-2449.134400pt;}
._4_c00442{margin-left:-6.174933pt;}
._1_c00442{margin-left:-2.005333pt;}
._3_c00442{margin-left:-1.066667pt;}
._2_c00442{width:0.896000pt;}
._6_c00442{width:6.912000pt;}
._7_c00442{width:49.488000pt;}
._5_c00442{width:52.565333pt;}
.fs3_c00442{font-size:37.333333pt;}
.fs0_c00442{font-size:42.666667pt;}
.fs4_c00442{font-size:48.000000pt;}
.fs2_c00442{font-size:50.666667pt;}
.fs1_c00442{font-size:53.333333pt;}
.y0_c00442{bottom:0.000000pt;}
.y19_c00442{bottom:309.623467pt;}
.y18_c00442{bottom:321.623467pt;}
.y17_c00442{bottom:333.623467pt;}
.y16_c00442{bottom:357.182533pt;}
.y15_c00442{bottom:369.182533pt;}
.y14_c00442{bottom:381.182533pt;}
.y13_c00442{bottom:404.741600pt;}
.y12_c00442{bottom:416.741600pt;}
.y11_c00442{bottom:428.741600pt;}
.y10_c00442{bottom:448.521067pt;}
.yf_c00442{bottom:464.521067pt;}
.ye_c00442{bottom:488.080133pt;}
.yd_c00442{bottom:743.694533pt;}
.yc_c00442{bottom:755.694533pt;}
.yb_c00442{bottom:767.694533pt;}
.ya_c00442{bottom:791.253600pt;}
.y9_c00442{bottom:803.253600pt;}
.y8_c00442{bottom:815.253600pt;}
.y7_c00442{bottom:838.812667pt;}
.y6_c00442{bottom:850.812667pt;}
.y5_c00442{bottom:862.812667pt;}
.y4_c00442{bottom:882.592133pt;}
.y3_c00442{bottom:898.592133pt;}
.y2_c00442{bottom:922.151200pt;}
.y1_c00442{bottom:972.089733pt;}
.h7_c00442{height:26.917333pt;}
.h5_c00442{height:30.293333pt;}
.h2_c00442{height:34.901333pt;}
.h3_c00442{height:35.541333pt;}
.h4_c00442{height:38.453333pt;}
.h6_c00442{height:38.880000pt;}
.h1_c00442{height:1009.333333pt;}
.h0_c00442{height:1009.338800pt;}
.w0_c00442{width:794.622400pt;}
.w1_c00442{width:794.666667pt;}
.x0_c00442{left:0.000000pt;}
.x4_c00442{left:114.316000pt;}
.x5_c00442{left:125.654533pt;}
.x2_c00442{left:167.166133pt;}
.x3_c00442{left:169.345200pt;}
.x1_c00442{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.067000;font-style:normal;font-weight:normal;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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:0.710000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00443{font-family:ff5_c00443;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00443;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00443{font-family:ff6_c00443;line-height:0.908000;font-style:normal;font-weight: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_c00443;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00443{font-family:ff7_c00443;line-height:1.067000;font-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_c00443{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls3_c00443{letter-spacing:-0.864000px;}
.ls2_c00443{letter-spacing:-0.720000px;}
.ls4_c00443{letter-spacing:-0.630000px;}
.ls1_c00443{letter-spacing:-0.216000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.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:-8.694000px;}
.ws1_c00443{word-spacing:-6.487200px;}
.ws3_c00443{word-spacing:0.000000px;}
.ws5_c00443{word-spacing:0.216000px;}
.ws6_c00443{word-spacing:0.864000px;}
.ws4_c00443{word-spacing:7.056000px;}
.ws0_c00443{word-spacing:1585.435200px;}
._3_c00443{margin-left:-7.042800px;}
._0_c00443{margin-left:-2.112000px;}
._1_c00443{margin-left:-1.104000px;}
._2_c00443{width:2.016000px;}
._6_c00443{width:7.776000px;}
._4_c00443{width:55.674000px;}
._5_c00443{width:59.136000px;}
.fc0_c00443{color:rgb(35,31,32);}
.fs1_c00443{font-size:30.600000px;}
.fs2_c00443{font-size:36.000000px;}
.fs5_c00443{font-size:42.000000px;}
.fs0_c00443{font-size:48.000000px;}
.fs6_c00443{font-size:54.000000px;}
.fs4_c00443{font-size:57.000000px;}
.fs3_c00443{font-size:60.000000px;}
.y0_c00443{bottom:0.000000px;}
.y18_c00443{bottom:361.469100px;}
.y17_c00443{bottom:374.969100px;}
.y16_c00443{bottom:388.469100px;}
.y15_c00443{bottom:414.973050px;}
.y14_c00443{bottom:428.473050px;}
.y13_c00443{bottom:454.977000px;}
.y12_c00443{bottom:468.477000px;}
.y11_c00443{bottom:481.977000px;}
.y10_c00443{bottom:504.228900px;}
.yf_c00443{bottom:522.228900px;}
.ye_c00443{bottom:548.732850px;}
.y3_c00443{bottom:551.195400px;}
.y2_c00443{bottom:806.654400px;}
.yd_c00443{bottom:863.945250px;}
.yc_c00443{bottom:877.445250px;}
.yb_c00443{bottom:903.949200px;}
.ya_c00443{bottom:917.449200px;}
.y9_c00443{bottom:943.953150px;}
.y8_c00443{bottom:957.453150px;}
.y7_c00443{bottom:970.953150px;}
.y6_c00443{bottom:993.205200px;}
.y5_c00443{bottom:1011.205200px;}
.y4_c00443{bottom:1037.709150px;}
.y19_c00443{bottom:1040.299350px;}
.y1_c00443{bottom:1093.600950px;}
.h3_c00443{height:25.200000px;}
.h7_c00443{height:30.282000px;}
.h5_c00443{height:34.080000px;}
.h2_c00443{height:39.264000px;}
.h4_c00443{height:43.260000px;}
.h6_c00443{height:43.740000px;}
.h1_c00443{height:1135.500000px;}
.h0_c00443{height:1135.506150px;}
.w0_c00443{width:893.950200px;}
.w1_c00443{width:894.000000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:77.603100px;}
.x2_c00443{left:423.947250px;}
.x3_c00443{left:599.553450px;}
.x4_c00443{left:612.309450px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls3_c00443{letter-spacing:-0.768000pt;}
.ls2_c00443{letter-spacing:-0.640000pt;}
.ls4_c00443{letter-spacing:-0.560000pt;}
.ls1_c00443{letter-spacing:-0.192000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws2_c00443{word-spacing:-7.728000pt;}
.ws1_c00443{word-spacing:-5.766400pt;}
.ws3_c00443{word-spacing:0.000000pt;}
.ws5_c00443{word-spacing:0.192000pt;}
.ws6_c00443{word-spacing:0.768000pt;}
.ws4_c00443{word-spacing:6.272000pt;}
.ws0_c00443{word-spacing:1409.275733pt;}
._3_c00443{margin-left:-6.260267pt;}
._0_c00443{margin-left:-1.877333pt;}
._1_c00443{margin-left:-0.981333pt;}
._2_c00443{width:1.792000pt;}
._6_c00443{width:6.912000pt;}
._4_c00443{width:49.488000pt;}
._5_c00443{width:52.565333pt;}
.fs1_c00443{font-size:27.200000pt;}
.fs2_c00443{font-size:32.000000pt;}
.fs5_c00443{font-size:37.333333pt;}
.fs0_c00443{font-size:42.666667pt;}
.fs6_c00443{font-size:48.000000pt;}
.fs4_c00443{font-size:50.666667pt;}
.fs3_c00443{font-size:53.333333pt;}
.y0_c00443{bottom:0.000000pt;}
.y18_c00443{bottom:321.305867pt;}
.y17_c00443{bottom:333.305867pt;}
.y16_c00443{bottom:345.305867pt;}
.y15_c00443{bottom:368.864933pt;}
.y14_c00443{bottom:380.864933pt;}
.y13_c00443{bottom:404.424000pt;}
.y12_c00443{bottom:416.424000pt;}
.y11_c00443{bottom:428.424000pt;}
.y10_c00443{bottom:448.203467pt;}
.yf_c00443{bottom:464.203467pt;}
.ye_c00443{bottom:487.762533pt;}
.y3_c00443{bottom:489.951467pt;}
.y2_c00443{bottom:717.026133pt;}
.yd_c00443{bottom:767.951333pt;}
.yc_c00443{bottom:779.951333pt;}
.yb_c00443{bottom:803.510400pt;}
.ya_c00443{bottom:815.510400pt;}
.y9_c00443{bottom:839.069467pt;}
.y8_c00443{bottom:851.069467pt;}
.y7_c00443{bottom:863.069467pt;}
.y6_c00443{bottom:882.849067pt;}
.y5_c00443{bottom:898.849067pt;}
.y4_c00443{bottom:922.408133pt;}
.y19_c00443{bottom:924.710533pt;}
.y1_c00443{bottom:972.089733pt;}
.h3_c00443{height:22.400000pt;}
.h7_c00443{height:26.917333pt;}
.h5_c00443{height:30.293333pt;}
.h2_c00443{height:34.901333pt;}
.h4_c00443{height:38.453333pt;}
.h6_c00443{height:38.880000pt;}
.h1_c00443{height:1009.333333pt;}
.h0_c00443{height:1009.338800pt;}
.w0_c00443{width:794.622400pt;}
.w1_c00443{width:794.666667pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:68.980533pt;}
.x2_c00443{left:376.842000pt;}
.x3_c00443{left:532.936400pt;}
.x4_c00443{left:544.275067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:0.955000;font-style:normal;font-weight:normal;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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00444;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff6_c00444{font-family:ff6_c00444;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00444;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff7_c00444{font-family:ff7_c00444;line-height:0.908000;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff8_c00444{font-family:ff8_c00444;line-height:1.067000;font-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_c00444{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls2_c00444{letter-spacing:-0.720000px;}
.ls3_c00444{letter-spacing:-0.216000px;}
.ls1_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00444{word-spacing:-8.694000px;}
.ws1_c00444{word-spacing:-6.487200px;}
.ws0_c00444{word-spacing:-0.048000px;}
.ws3_c00444{word-spacing:0.000000px;}
.ws5_c00444{word-spacing:0.216000px;}
.ws4_c00444{word-spacing:7.056000px;}
._0_c00444{margin-left:-2755.276200px;}
._4_c00444{margin-left:-6.946800px;}
._1_c00444{margin-left:-2.256000px;}
._3_c00444{margin-left:-1.200000px;}
._2_c00444{width:1.008000px;}
._7_c00444{width:7.776000px;}
._5_c00444{width:55.674000px;}
._6_c00444{width:59.136000px;}
.fc0_c00444{color:rgb(35,31,32);}
.fs1_c00444{font-size:30.600000px;}
.fs2_c00444{font-size:36.000000px;}
.fs5_c00444{font-size:42.000000px;}
.fs0_c00444{font-size:48.000000px;}
.fs6_c00444{font-size:54.000000px;}
.fs4_c00444{font-size:57.000000px;}
.fs3_c00444{font-size:60.000000px;}
.y0_c00444{bottom:0.000000px;}
.y4_c00444{bottom:317.979150px;}
.y19_c00444{bottom:375.198900px;}
.y18_c00444{bottom:388.698900px;}
.y17_c00444{bottom:415.202700px;}
.y16_c00444{bottom:428.702700px;}
.y15_c00444{bottom:455.206650px;}
.y14_c00444{bottom:468.706650px;}
.y13_c00444{bottom:482.206650px;}
.y12_c00444{bottom:504.458700px;}
.y11_c00444{bottom:522.458700px;}
.y10_c00444{bottom:548.962650px;}
.y2_c00444{bottom:551.195400px;}
.y3_c00444{bottom:806.955600px;}
.yf_c00444{bottom:850.028700px;}
.ye_c00444{bottom:863.528700px;}
.yd_c00444{bottom:890.032650px;}
.yc_c00444{bottom:903.532650px;}
.yb_c00444{bottom:917.032650px;}
.ya_c00444{bottom:943.536600px;}
.y9_c00444{bottom:957.036600px;}
.y8_c00444{bottom:970.536600px;}
.y7_c00444{bottom:992.788650px;}
.y6_c00444{bottom:1010.788650px;}
.y5_c00444{bottom:1037.292600px;}
.y1_c00444{bottom:1093.600950px;}
.h4_c00444{height:25.200000px;}
.h8_c00444{height:30.282000px;}
.h6_c00444{height:34.080000px;}
.h2_c00444{height:39.264000px;}
.h3_c00444{height:39.984000px;}
.h5_c00444{height:43.260000px;}
.h7_c00444{height:43.740000px;}
.h1_c00444{height:1135.500000px;}
.h0_c00444{height:1135.506150px;}
.w0_c00444{width:893.950200px;}
.w1_c00444{width:894.000000px;}
.x0_c00444{left:0.000000px;}
.x5_c00444{left:128.647950px;}
.x6_c00444{left:141.403950px;}
.x2_c00444{left:188.061900px;}
.x3_c00444{left:190.513350px;}
.x4_c00444{left:321.843600px;}
.x1_c00444{left:800.165850px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls2_c00444{letter-spacing:-0.640000pt;}
.ls3_c00444{letter-spacing:-0.192000pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.426667pt;}
.ws2_c00444{word-spacing:-7.728000pt;}
.ws1_c00444{word-spacing:-5.766400pt;}
.ws0_c00444{word-spacing:-0.042667pt;}
.ws3_c00444{word-spacing:0.000000pt;}
.ws5_c00444{word-spacing:0.192000pt;}
.ws4_c00444{word-spacing:6.272000pt;}
._0_c00444{margin-left:-2449.134400pt;}
._4_c00444{margin-left:-6.174933pt;}
._1_c00444{margin-left:-2.005333pt;}
._3_c00444{margin-left:-1.066667pt;}
._2_c00444{width:0.896000pt;}
._7_c00444{width:6.912000pt;}
._5_c00444{width:49.488000pt;}
._6_c00444{width:52.565333pt;}
.fs1_c00444{font-size:27.200000pt;}
.fs2_c00444{font-size:32.000000pt;}
.fs5_c00444{font-size:37.333333pt;}
.fs0_c00444{font-size:42.666667pt;}
.fs6_c00444{font-size:48.000000pt;}
.fs4_c00444{font-size:50.666667pt;}
.fs3_c00444{font-size:53.333333pt;}
.y0_c00444{bottom:0.000000pt;}
.y4_c00444{bottom:282.648133pt;}
.y19_c00444{bottom:333.510133pt;}
.y18_c00444{bottom:345.510133pt;}
.y17_c00444{bottom:369.069067pt;}
.y16_c00444{bottom:381.069067pt;}
.y15_c00444{bottom:404.628133pt;}
.y14_c00444{bottom:416.628133pt;}
.y13_c00444{bottom:428.628133pt;}
.y12_c00444{bottom:448.407733pt;}
.y11_c00444{bottom:464.407733pt;}
.y10_c00444{bottom:487.966800pt;}
.y2_c00444{bottom:489.951467pt;}
.y3_c00444{bottom:717.293867pt;}
.yf_c00444{bottom:755.581067pt;}
.ye_c00444{bottom:767.581067pt;}
.yd_c00444{bottom:791.140133pt;}
.yc_c00444{bottom:803.140133pt;}
.yb_c00444{bottom:815.140133pt;}
.ya_c00444{bottom:838.699200pt;}
.y9_c00444{bottom:850.699200pt;}
.y8_c00444{bottom:862.699200pt;}
.y7_c00444{bottom:882.478800pt;}
.y6_c00444{bottom:898.478800pt;}
.y5_c00444{bottom:922.037867pt;}
.y1_c00444{bottom:972.089733pt;}
.h4_c00444{height:22.400000pt;}
.h8_c00444{height:26.917333pt;}
.h6_c00444{height:30.293333pt;}
.h2_c00444{height:34.901333pt;}
.h3_c00444{height:35.541333pt;}
.h5_c00444{height:38.453333pt;}
.h7_c00444{height:38.880000pt;}
.h1_c00444{height:1009.333333pt;}
.h0_c00444{height:1009.338800pt;}
.w0_c00444{width:794.622400pt;}
.w1_c00444{width:794.666667pt;}
.x0_c00444{left:0.000000pt;}
.x5_c00444{left:114.353733pt;}
.x6_c00444{left:125.692400pt;}
.x2_c00444{left:167.166133pt;}
.x3_c00444{left:169.345200pt;}
.x4_c00444{left:286.083200pt;}
.x1_c00444{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.067000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00445;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls2_c00445{letter-spacing:-0.720000px;}
.ls3_c00445{letter-spacing:-0.630000px;}
.ls1_c00445{letter-spacing:-0.324000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00445{word-spacing:-8.694000px;}
.ws2_c00445{word-spacing:0.000000px;}
.ws4_c00445{word-spacing:0.324000px;}
.ws3_c00445{word-spacing:7.056000px;}
.ws0_c00445{word-spacing:1585.435200px;}
._3_c00445{margin-left:-7.042800px;}
._0_c00445{margin-left:-2.112000px;}
._1_c00445{margin-left:-1.104000px;}
._2_c00445{width:2.016000px;}
._6_c00445{width:7.776000px;}
._4_c00445{width:55.674000px;}
._5_c00445{width:59.136000px;}
.fc0_c00445{color:rgb(35,31,32);}
.fs3_c00445{font-size:42.000000px;}
.fs0_c00445{font-size:48.000000px;}
.fs4_c00445{font-size:54.000000px;}
.fs2_c00445{font-size:57.000000px;}
.fs1_c00445{font-size:60.000000px;}
.y0_c00445{bottom:0.000000px;}
.y19_c00445{bottom:348.096750px;}
.y18_c00445{bottom:361.596750px;}
.y17_c00445{bottom:375.096600px;}
.y16_c00445{bottom:401.600700px;}
.y15_c00445{bottom:415.100700px;}
.y14_c00445{bottom:428.600700px;}
.y13_c00445{bottom:455.104500px;}
.y12_c00445{bottom:468.604500px;}
.y11_c00445{bottom:482.104500px;}
.y10_c00445{bottom:504.356550px;}
.yf_c00445{bottom:522.356550px;}
.ye_c00445{bottom:548.860500px;}
.yd_c00445{bottom:837.072900px;}
.yc_c00445{bottom:850.572900px;}
.yb_c00445{bottom:864.072900px;}
.ya_c00445{bottom:890.576850px;}
.y9_c00445{bottom:904.076850px;}
.y8_c00445{bottom:917.576850px;}
.y7_c00445{bottom:944.080800px;}
.y6_c00445{bottom:957.580800px;}
.y5_c00445{bottom:971.080800px;}
.y4_c00445{bottom:993.332850px;}
.y3_c00445{bottom:1011.332850px;}
.y2_c00445{bottom:1037.836800px;}
.y1_c00445{bottom:1093.600950px;}
.h6_c00445{height:30.282000px;}
.h4_c00445{height:34.080000px;}
.h2_c00445{height:39.264000px;}
.h3_c00445{height:43.260000px;}
.h5_c00445{height:43.740000px;}
.h1_c00445{height:1135.500000px;}
.h0_c00445{height:1135.506150px;}
.w0_c00445{width:893.950200px;}
.w1_c00445{width:894.000000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:77.603100px;}
.x2_c00445{left:599.511000px;}
.x3_c00445{left:612.266850px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls2_c00445{letter-spacing:-0.640000pt;}
.ls3_c00445{letter-spacing:-0.560000pt;}
.ls1_c00445{letter-spacing:-0.288000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws1_c00445{word-spacing:-7.728000pt;}
.ws2_c00445{word-spacing:0.000000pt;}
.ws4_c00445{word-spacing:0.288000pt;}
.ws3_c00445{word-spacing:6.272000pt;}
.ws0_c00445{word-spacing:1409.275733pt;}
._3_c00445{margin-left:-6.260267pt;}
._0_c00445{margin-left:-1.877333pt;}
._1_c00445{margin-left:-0.981333pt;}
._2_c00445{width:1.792000pt;}
._6_c00445{width:6.912000pt;}
._4_c00445{width:49.488000pt;}
._5_c00445{width:52.565333pt;}
.fs3_c00445{font-size:37.333333pt;}
.fs0_c00445{font-size:42.666667pt;}
.fs4_c00445{font-size:48.000000pt;}
.fs2_c00445{font-size:50.666667pt;}
.fs1_c00445{font-size:53.333333pt;}
.y0_c00445{bottom:0.000000pt;}
.y19_c00445{bottom:309.419333pt;}
.y18_c00445{bottom:321.419333pt;}
.y17_c00445{bottom:333.419200pt;}
.y16_c00445{bottom:356.978400pt;}
.y15_c00445{bottom:368.978400pt;}
.y14_c00445{bottom:380.978400pt;}
.y13_c00445{bottom:404.537333pt;}
.y12_c00445{bottom:416.537333pt;}
.y11_c00445{bottom:428.537333pt;}
.y10_c00445{bottom:448.316933pt;}
.yf_c00445{bottom:464.316933pt;}
.ye_c00445{bottom:487.876000pt;}
.yd_c00445{bottom:744.064800pt;}
.yc_c00445{bottom:756.064800pt;}
.yb_c00445{bottom:768.064800pt;}
.ya_c00445{bottom:791.623867pt;}
.y9_c00445{bottom:803.623867pt;}
.y8_c00445{bottom:815.623867pt;}
.y7_c00445{bottom:839.182933pt;}
.y6_c00445{bottom:851.182933pt;}
.y5_c00445{bottom:863.182933pt;}
.y4_c00445{bottom:882.962533pt;}
.y3_c00445{bottom:898.962533pt;}
.y2_c00445{bottom:922.521600pt;}
.y1_c00445{bottom:972.089733pt;}
.h6_c00445{height:26.917333pt;}
.h4_c00445{height:30.293333pt;}
.h2_c00445{height:34.901333pt;}
.h3_c00445{height:38.453333pt;}
.h5_c00445{height:38.880000pt;}
.h1_c00445{height:1009.333333pt;}
.h0_c00445{height:1009.338800pt;}
.w0_c00445{width:794.622400pt;}
.w1_c00445{width:794.666667pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:68.980533pt;}
.x2_c00445{left:532.898667pt;}
.x3_c00445{left:544.237200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00446;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00446;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff7_c00446{font-family:ff7_c00446;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00446;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff8_c00446{font-family:ff8_c00446;line-height:1.067000;font-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_c00446{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls3_c00446{letter-spacing:-0.720000px;}
.ls4_c00446{letter-spacing:-0.630000px;}
.ls2_c00446{letter-spacing:-0.378000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00446{word-spacing:-8.694000px;}
.ws1_c00446{word-spacing:-6.487200px;}
.ws0_c00446{word-spacing:-0.048000px;}
.ws3_c00446{word-spacing:0.000000px;}
.ws5_c00446{word-spacing:0.378000px;}
.ws4_c00446{word-spacing:7.056000px;}
._0_c00446{margin-left:-2755.276200px;}
._4_c00446{margin-left:-6.946800px;}
._1_c00446{margin-left:-2.256000px;}
._3_c00446{margin-left:-1.200000px;}
._2_c00446{width:1.008000px;}
._7_c00446{width:7.776000px;}
._5_c00446{width:55.674000px;}
._6_c00446{width:59.136000px;}
.fc0_c00446{color:rgb(35,31,32);}
.fs1_c00446{font-size:30.600000px;}
.fs2_c00446{font-size:36.000000px;}
.fs5_c00446{font-size:42.000000px;}
.fs0_c00446{font-size:48.000000px;}
.fs6_c00446{font-size:54.000000px;}
.fs4_c00446{font-size:57.000000px;}
.fs3_c00446{font-size:60.000000px;}
.y0_c00446{bottom:0.000000px;}
.y19_c00446{bottom:348.326400px;}
.y18_c00446{bottom:361.826400px;}
.y17_c00446{bottom:375.326400px;}
.y16_c00446{bottom:401.830350px;}
.y15_c00446{bottom:415.330350px;}
.y14_c00446{bottom:428.830350px;}
.y13_c00446{bottom:455.334300px;}
.y12_c00446{bottom:468.834300px;}
.y11_c00446{bottom:482.334300px;}
.y10_c00446{bottom:504.586200px;}
.yf_c00446{bottom:522.586200px;}
.ye_c00446{bottom:549.090150px;}
.y2_c00446{bottom:807.083100px;}
.yd_c00446{bottom:850.156350px;}
.yc_c00446{bottom:863.656350px;}
.yb_c00446{bottom:890.160300px;}
.ya_c00446{bottom:903.660300px;}
.y9_c00446{bottom:917.160300px;}
.y8_c00446{bottom:943.664250px;}
.y7_c00446{bottom:957.164250px;}
.y6_c00446{bottom:970.664250px;}
.y5_c00446{bottom:992.916150px;}
.y4_c00446{bottom:1010.916150px;}
.y3_c00446{bottom:1037.420100px;}
.y1_c00446{bottom:1093.600950px;}
.h4_c00446{height:25.200000px;}
.h8_c00446{height:30.282000px;}
.h6_c00446{height:34.080000px;}
.h2_c00446{height:39.264000px;}
.h3_c00446{height:39.984000px;}
.h5_c00446{height:43.260000px;}
.h7_c00446{height:43.740000px;}
.h1_c00446{height:1135.500000px;}
.h0_c00446{height:1135.506150px;}
.w0_c00446{width:893.950200px;}
.w1_c00446{width:894.000000px;}
.x0_c00446{left:0.000000px;}
.x5_c00446{left:128.605500px;}
.x6_c00446{left:141.361350px;}
.x2_c00446{left:188.061900px;}
.x3_c00446{left:190.513350px;}
.x4_c00446{left:321.758550px;}
.x1_c00446{left:800.165850px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls3_c00446{letter-spacing:-0.640000pt;}
.ls4_c00446{letter-spacing:-0.560000pt;}
.ls2_c00446{letter-spacing:-0.336000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:0.426667pt;}
.ws2_c00446{word-spacing:-7.728000pt;}
.ws1_c00446{word-spacing:-5.766400pt;}
.ws0_c00446{word-spacing:-0.042667pt;}
.ws3_c00446{word-spacing:0.000000pt;}
.ws5_c00446{word-spacing:0.336000pt;}
.ws4_c00446{word-spacing:6.272000pt;}
._0_c00446{margin-left:-2449.134400pt;}
._4_c00446{margin-left:-6.174933pt;}
._1_c00446{margin-left:-2.005333pt;}
._3_c00446{margin-left:-1.066667pt;}
._2_c00446{width:0.896000pt;}
._7_c00446{width:6.912000pt;}
._5_c00446{width:49.488000pt;}
._6_c00446{width:52.565333pt;}
.fs1_c00446{font-size:27.200000pt;}
.fs2_c00446{font-size:32.000000pt;}
.fs5_c00446{font-size:37.333333pt;}
.fs0_c00446{font-size:42.666667pt;}
.fs6_c00446{font-size:48.000000pt;}
.fs4_c00446{font-size:50.666667pt;}
.fs3_c00446{font-size:53.333333pt;}
.y0_c00446{bottom:0.000000pt;}
.y19_c00446{bottom:309.623467pt;}
.y18_c00446{bottom:321.623467pt;}
.y17_c00446{bottom:333.623467pt;}
.y16_c00446{bottom:357.182533pt;}
.y15_c00446{bottom:369.182533pt;}
.y14_c00446{bottom:381.182533pt;}
.y13_c00446{bottom:404.741600pt;}
.y12_c00446{bottom:416.741600pt;}
.y11_c00446{bottom:428.741600pt;}
.y10_c00446{bottom:448.521067pt;}
.yf_c00446{bottom:464.521067pt;}
.ye_c00446{bottom:488.080133pt;}
.y2_c00446{bottom:717.407200pt;}
.yd_c00446{bottom:755.694533pt;}
.yc_c00446{bottom:767.694533pt;}
.yb_c00446{bottom:791.253600pt;}
.ya_c00446{bottom:803.253600pt;}
.y9_c00446{bottom:815.253600pt;}
.y8_c00446{bottom:838.812667pt;}
.y7_c00446{bottom:850.812667pt;}
.y6_c00446{bottom:862.812667pt;}
.y5_c00446{bottom:882.592133pt;}
.y4_c00446{bottom:898.592133pt;}
.y3_c00446{bottom:922.151200pt;}
.y1_c00446{bottom:972.089733pt;}
.h4_c00446{height:22.400000pt;}
.h8_c00446{height:26.917333pt;}
.h6_c00446{height:30.293333pt;}
.h2_c00446{height:34.901333pt;}
.h3_c00446{height:35.541333pt;}
.h5_c00446{height:38.453333pt;}
.h7_c00446{height:38.880000pt;}
.h1_c00446{height:1009.333333pt;}
.h0_c00446{height:1009.338800pt;}
.w0_c00446{width:794.622400pt;}
.w1_c00446{width:794.666667pt;}
.x0_c00446{left:0.000000pt;}
.x5_c00446{left:114.316000pt;}
.x6_c00446{left:125.654533pt;}
.x2_c00446{left:167.166133pt;}
.x3_c00446{left:169.345200pt;}
.x4_c00446{left:286.007600pt;}
.x1_c00446{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.067000;font-style:normal;font-weight:normal;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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:0.710000;font-style:normal;font-weight:normal;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_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00447;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:0.908000;font-style:normal;font-weight: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_c00447;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00447{font-family:ff7_c00447;line-height:1.067000;font-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_c00447{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls1_c00447{letter-spacing:-0.720000px;}
.ls3_c00447{letter-spacing:-0.702000px;}
.ls2_c00447{letter-spacing:-0.630000px;}
.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;}
}
.ws2_c00447{word-spacing:-8.694000px;}
.ws1_c00447{word-spacing:-6.487200px;}
.ws3_c00447{word-spacing:0.000000px;}
.ws4_c00447{word-spacing:7.056000px;}
.ws5_c00447{word-spacing:56.376000px;}
.ws0_c00447{word-spacing:1585.435200px;}
._3_c00447{margin-left:-7.042800px;}
._0_c00447{margin-left:-2.112000px;}
._1_c00447{margin-left:-1.104000px;}
._2_c00447{width:2.016000px;}
._6_c00447{width:7.776000px;}
._4_c00447{width:55.674000px;}
._5_c00447{width:59.136000px;}
.fc0_c00447{color:rgb(35,31,32);}
.fs1_c00447{font-size:30.600000px;}
.fs2_c00447{font-size:36.000000px;}
.fs5_c00447{font-size:42.000000px;}
.fs0_c00447{font-size:48.000000px;}
.fs6_c00447{font-size:54.000000px;}
.fs4_c00447{font-size:57.000000px;}
.fs3_c00447{font-size:60.000000px;}
.y0_c00447{bottom:0.000000px;}
.y19_c00447{bottom:361.596750px;}
.y18_c00447{bottom:375.096600px;}
.y17_c00447{bottom:388.596600px;}
.y16_c00447{bottom:415.100700px;}
.y15_c00447{bottom:428.600700px;}
.y14_c00447{bottom:455.104500px;}
.y13_c00447{bottom:468.604500px;}
.y12_c00447{bottom:482.104500px;}
.y11_c00447{bottom:504.356550px;}
.y10_c00447{bottom:522.356550px;}
.yf_c00447{bottom:548.860500px;}
.y2_c00447{bottom:551.323050px;}
.ye_c00447{bottom:837.072900px;}
.yd_c00447{bottom:850.572900px;}
.yc_c00447{bottom:864.072900px;}
.yb_c00447{bottom:890.576850px;}
.ya_c00447{bottom:904.076850px;}
.y9_c00447{bottom:917.576850px;}
.y8_c00447{bottom:944.080800px;}
.y7_c00447{bottom:957.580800px;}
.y6_c00447{bottom:971.080800px;}
.y5_c00447{bottom:993.332850px;}
.y4_c00447{bottom:1011.332850px;}
.y3_c00447{bottom:1037.836800px;}
.y1_c00447{bottom:1093.600950px;}
.h3_c00447{height:25.200000px;}
.h7_c00447{height:30.282000px;}
.h5_c00447{height:34.080000px;}
.h2_c00447{height:39.264000px;}
.h4_c00447{height:43.260000px;}
.h6_c00447{height:43.740000px;}
.h1_c00447{height:1135.500000px;}
.h0_c00447{height:1135.506150px;}
.w0_c00447{width:893.950200px;}
.w1_c00447{width:894.000000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:77.603100px;}
.x2_c00447{left:424.138500px;}
.x3_c00447{left:599.553450px;}
.x4_c00447{left:612.309450px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls1_c00447{letter-spacing:-0.640000pt;}
.ls3_c00447{letter-spacing:-0.624000pt;}
.ls2_c00447{letter-spacing:-0.560000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws2_c00447{word-spacing:-7.728000pt;}
.ws1_c00447{word-spacing:-5.766400pt;}
.ws3_c00447{word-spacing:0.000000pt;}
.ws4_c00447{word-spacing:6.272000pt;}
.ws5_c00447{word-spacing:50.112000pt;}
.ws0_c00447{word-spacing:1409.275733pt;}
._3_c00447{margin-left:-6.260267pt;}
._0_c00447{margin-left:-1.877333pt;}
._1_c00447{margin-left:-0.981333pt;}
._2_c00447{width:1.792000pt;}
._6_c00447{width:6.912000pt;}
._4_c00447{width:49.488000pt;}
._5_c00447{width:52.565333pt;}
.fs1_c00447{font-size:27.200000pt;}
.fs2_c00447{font-size:32.000000pt;}
.fs5_c00447{font-size:37.333333pt;}
.fs0_c00447{font-size:42.666667pt;}
.fs6_c00447{font-size:48.000000pt;}
.fs4_c00447{font-size:50.666667pt;}
.fs3_c00447{font-size:53.333333pt;}
.y0_c00447{bottom:0.000000pt;}
.y19_c00447{bottom:321.419333pt;}
.y18_c00447{bottom:333.419200pt;}
.y17_c00447{bottom:345.419200pt;}
.y16_c00447{bottom:368.978400pt;}
.y15_c00447{bottom:380.978400pt;}
.y14_c00447{bottom:404.537333pt;}
.y13_c00447{bottom:416.537333pt;}
.y12_c00447{bottom:428.537333pt;}
.y11_c00447{bottom:448.316933pt;}
.y10_c00447{bottom:464.316933pt;}
.yf_c00447{bottom:487.876000pt;}
.y2_c00447{bottom:490.064933pt;}
.ye_c00447{bottom:744.064800pt;}
.yd_c00447{bottom:756.064800pt;}
.yc_c00447{bottom:768.064800pt;}
.yb_c00447{bottom:791.623867pt;}
.ya_c00447{bottom:803.623867pt;}
.y9_c00447{bottom:815.623867pt;}
.y8_c00447{bottom:839.182933pt;}
.y7_c00447{bottom:851.182933pt;}
.y6_c00447{bottom:863.182933pt;}
.y5_c00447{bottom:882.962533pt;}
.y4_c00447{bottom:898.962533pt;}
.y3_c00447{bottom:922.521600pt;}
.y1_c00447{bottom:972.089733pt;}
.h3_c00447{height:22.400000pt;}
.h7_c00447{height:26.917333pt;}
.h5_c00447{height:30.293333pt;}
.h2_c00447{height:34.901333pt;}
.h4_c00447{height:38.453333pt;}
.h6_c00447{height:38.880000pt;}
.h1_c00447{height:1009.333333pt;}
.h0_c00447{height:1009.338800pt;}
.w0_c00447{width:794.622400pt;}
.w1_c00447{width:794.666667pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:68.980533pt;}
.x2_c00447{left:377.012000pt;}
.x3_c00447{left:532.936400pt;}
.x4_c00447{left:544.275067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:0.955000;font-style:normal;font-weight:normal;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_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00448;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff7_c00448{font-family:ff7_c00448;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00448;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff8_c00448{font-family:ff8_c00448;line-height:1.067000;font-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_c00448{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls3_c00448{letter-spacing:-0.720000px;}
.ls2_c00448{letter-spacing:-0.702000px;}
.ls4_c00448{letter-spacing:-0.630000px;}
.ls1_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00448{word-spacing:-8.694000px;}
.ws1_c00448{word-spacing:-6.487200px;}
.ws0_c00448{word-spacing:-0.048000px;}
.ws3_c00448{word-spacing:0.000000px;}
.ws5_c00448{word-spacing:0.702000px;}
.ws4_c00448{word-spacing:7.056000px;}
._0_c00448{margin-left:-2755.276200px;}
._4_c00448{margin-left:-6.946800px;}
._1_c00448{margin-left:-2.256000px;}
._3_c00448{margin-left:-1.200000px;}
._2_c00448{width:1.008000px;}
._7_c00448{width:7.776000px;}
._5_c00448{width:55.674000px;}
._6_c00448{width:59.136000px;}
.fc0_c00448{color:rgb(35,31,32);}
.fs1_c00448{font-size:30.600000px;}
.fs2_c00448{font-size:36.000000px;}
.fs5_c00448{font-size:42.000000px;}
.fs0_c00448{font-size:48.000000px;}
.fs6_c00448{font-size:54.000000px;}
.fs4_c00448{font-size:57.000000px;}
.fs3_c00448{font-size:60.000000px;}
.y0_c00448{bottom:0.000000px;}
.y19_c00448{bottom:348.326400px;}
.y18_c00448{bottom:361.826400px;}
.y17_c00448{bottom:375.326400px;}
.y16_c00448{bottom:401.830350px;}
.y15_c00448{bottom:415.330350px;}
.y14_c00448{bottom:428.830350px;}
.y13_c00448{bottom:455.334300px;}
.y12_c00448{bottom:468.834300px;}
.y11_c00448{bottom:482.334300px;}
.y10_c00448{bottom:504.586200px;}
.yf_c00448{bottom:522.586200px;}
.ye_c00448{bottom:549.090150px;}
.yd_c00448{bottom:850.156350px;}
.yc_c00448{bottom:863.656350px;}
.yb_c00448{bottom:877.156350px;}
.ya_c00448{bottom:903.660300px;}
.y9_c00448{bottom:917.160300px;}
.y8_c00448{bottom:943.664250px;}
.y7_c00448{bottom:957.164250px;}
.y6_c00448{bottom:970.664250px;}
.y5_c00448{bottom:992.916150px;}
.y4_c00448{bottom:1010.916150px;}
.y3_c00448{bottom:1037.420100px;}
.y2_c00448{bottom:1040.299350px;}
.y1_c00448{bottom:1093.600950px;}
.h4_c00448{height:25.200000px;}
.h8_c00448{height:30.282000px;}
.h6_c00448{height:34.080000px;}
.h2_c00448{height:39.264000px;}
.h3_c00448{height:39.984000px;}
.h5_c00448{height:43.260000px;}
.h7_c00448{height:43.740000px;}
.h1_c00448{height:1135.500000px;}
.h0_c00448{height:1135.506150px;}
.w0_c00448{width:893.950200px;}
.w1_c00448{width:894.000000px;}
.x0_c00448{left:0.000000px;}
.x5_c00448{left:128.647950px;}
.x6_c00448{left:141.403950px;}
.x2_c00448{left:188.061900px;}
.x3_c00448{left:190.513350px;}
.x4_c00448{left:321.082500px;}
.x1_c00448{left:800.165850px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls3_c00448{letter-spacing:-0.640000pt;}
.ls2_c00448{letter-spacing:-0.624000pt;}
.ls4_c00448{letter-spacing:-0.560000pt;}
.ls1_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.426667pt;}
.ws2_c00448{word-spacing:-7.728000pt;}
.ws1_c00448{word-spacing:-5.766400pt;}
.ws0_c00448{word-spacing:-0.042667pt;}
.ws3_c00448{word-spacing:0.000000pt;}
.ws5_c00448{word-spacing:0.624000pt;}
.ws4_c00448{word-spacing:6.272000pt;}
._0_c00448{margin-left:-2449.134400pt;}
._4_c00448{margin-left:-6.174933pt;}
._1_c00448{margin-left:-2.005333pt;}
._3_c00448{margin-left:-1.066667pt;}
._2_c00448{width:0.896000pt;}
._7_c00448{width:6.912000pt;}
._5_c00448{width:49.488000pt;}
._6_c00448{width:52.565333pt;}
.fs1_c00448{font-size:27.200000pt;}
.fs2_c00448{font-size:32.000000pt;}
.fs5_c00448{font-size:37.333333pt;}
.fs0_c00448{font-size:42.666667pt;}
.fs6_c00448{font-size:48.000000pt;}
.fs4_c00448{font-size:50.666667pt;}
.fs3_c00448{font-size:53.333333pt;}
.y0_c00448{bottom:0.000000pt;}
.y19_c00448{bottom:309.623467pt;}
.y18_c00448{bottom:321.623467pt;}
.y17_c00448{bottom:333.623467pt;}
.y16_c00448{bottom:357.182533pt;}
.y15_c00448{bottom:369.182533pt;}
.y14_c00448{bottom:381.182533pt;}
.y13_c00448{bottom:404.741600pt;}
.y12_c00448{bottom:416.741600pt;}
.y11_c00448{bottom:428.741600pt;}
.y10_c00448{bottom:448.521067pt;}
.yf_c00448{bottom:464.521067pt;}
.ye_c00448{bottom:488.080133pt;}
.yd_c00448{bottom:755.694533pt;}
.yc_c00448{bottom:767.694533pt;}
.yb_c00448{bottom:779.694533pt;}
.ya_c00448{bottom:803.253600pt;}
.y9_c00448{bottom:815.253600pt;}
.y8_c00448{bottom:838.812667pt;}
.y7_c00448{bottom:850.812667pt;}
.y6_c00448{bottom:862.812667pt;}
.y5_c00448{bottom:882.592133pt;}
.y4_c00448{bottom:898.592133pt;}
.y3_c00448{bottom:922.151200pt;}
.y2_c00448{bottom:924.710533pt;}
.y1_c00448{bottom:972.089733pt;}
.h4_c00448{height:22.400000pt;}
.h8_c00448{height:26.917333pt;}
.h6_c00448{height:30.293333pt;}
.h2_c00448{height:34.901333pt;}
.h3_c00448{height:35.541333pt;}
.h5_c00448{height:38.453333pt;}
.h7_c00448{height:38.880000pt;}
.h1_c00448{height:1009.333333pt;}
.h0_c00448{height:1009.338800pt;}
.w0_c00448{width:794.622400pt;}
.w1_c00448{width:794.666667pt;}
.x0_c00448{left:0.000000pt;}
.x5_c00448{left:114.353733pt;}
.x6_c00448{left:125.692400pt;}
.x2_c00448{left:167.166133pt;}
.x3_c00448{left:169.345200pt;}
.x4_c00448{left:285.406667pt;}
.x1_c00448{left:711.258533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2571044d16552ad42440058.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_2b480aaf96a6b88db625fa17.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_d6784e0fe6c8b09c5ebd55d0.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00449;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff7_c00449{font-family:ff7_c00449;line-height:1.067000;font-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_c00449{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls1_c00449{letter-spacing:-0.720000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00449{word-spacing:-8.694000px;}
.ws1_c00449{word-spacing:-6.487200px;}
.ws3_c00449{word-spacing:0.000000px;}
.ws4_c00449{word-spacing:7.056000px;}
.ws0_c00449{word-spacing:1585.435200px;}
._3_c00449{margin-left:-7.042800px;}
._0_c00449{margin-left:-2.112000px;}
._1_c00449{margin-left:-1.104000px;}
._2_c00449{width:2.016000px;}
._6_c00449{width:7.776000px;}
._4_c00449{width:55.674000px;}
._5_c00449{width:59.136000px;}
.fc0_c00449{color:rgb(35,31,32);}
.fs1_c00449{font-size:30.600000px;}
.fs2_c00449{font-size:36.000000px;}
.fs5_c00449{font-size:42.000000px;}
.fs0_c00449{font-size:48.000000px;}
.fs6_c00449{font-size:54.000000px;}
.fs4_c00449{font-size:57.000000px;}
.fs3_c00449{font-size:60.000000px;}
.y0_c00449{bottom:0.000000px;}
.y3_c00449{bottom:317.979150px;}
.y19_c00449{bottom:361.809300px;}
.y18_c00449{bottom:375.309300px;}
.y17_c00449{bottom:401.813250px;}
.y16_c00449{bottom:415.313250px;}
.y15_c00449{bottom:428.813250px;}
.y14_c00449{bottom:455.317200px;}
.y13_c00449{bottom:468.817200px;}
.y12_c00449{bottom:482.317200px;}
.y11_c00449{bottom:504.569100px;}
.y10_c00449{bottom:522.569100px;}
.yf_c00449{bottom:549.073050px;}
.y2_c00449{bottom:806.866950px;}
.ye_c00449{bottom:850.785450px;}
.yd_c00449{bottom:864.285450px;}
.yc_c00449{bottom:890.789400px;}
.yb_c00449{bottom:904.289400px;}
.ya_c00449{bottom:917.789400px;}
.y9_c00449{bottom:944.293350px;}
.y8_c00449{bottom:957.793350px;}
.y7_c00449{bottom:971.293350px;}
.y6_c00449{bottom:993.545400px;}
.y5_c00449{bottom:1011.545400px;}
.y4_c00449{bottom:1038.049350px;}
.y1_c00449{bottom:1093.600950px;}
.h3_c00449{height:25.200000px;}
.h7_c00449{height:30.282000px;}
.h5_c00449{height:34.080000px;}
.h2_c00449{height:39.264000px;}
.h4_c00449{height:43.260000px;}
.h6_c00449{height:43.740000px;}
.h1_c00449{height:1135.500000px;}
.h0_c00449{height:1135.506150px;}
.w0_c00449{width:893.950200px;}
.w1_c00449{width:894.000000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:77.603100px;}
.x2_c00449{left:423.925950px;}
.x3_c00449{left:599.532150px;}
.x4_c00449{left:612.288150px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls1_c00449{letter-spacing:-0.640000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws2_c00449{word-spacing:-7.728000pt;}
.ws1_c00449{word-spacing:-5.766400pt;}
.ws3_c00449{word-spacing:0.000000pt;}
.ws4_c00449{word-spacing:6.272000pt;}
.ws0_c00449{word-spacing:1409.275733pt;}
._3_c00449{margin-left:-6.260267pt;}
._0_c00449{margin-left:-1.877333pt;}
._1_c00449{margin-left:-0.981333pt;}
._2_c00449{width:1.792000pt;}
._6_c00449{width:6.912000pt;}
._4_c00449{width:49.488000pt;}
._5_c00449{width:52.565333pt;}
.fs1_c00449{font-size:27.200000pt;}
.fs2_c00449{font-size:32.000000pt;}
.fs5_c00449{font-size:37.333333pt;}
.fs0_c00449{font-size:42.666667pt;}
.fs6_c00449{font-size:48.000000pt;}
.fs4_c00449{font-size:50.666667pt;}
.fs3_c00449{font-size:53.333333pt;}
.y0_c00449{bottom:0.000000pt;}
.y3_c00449{bottom:282.648133pt;}
.y19_c00449{bottom:321.608267pt;}
.y18_c00449{bottom:333.608267pt;}
.y17_c00449{bottom:357.167333pt;}
.y16_c00449{bottom:369.167333pt;}
.y15_c00449{bottom:381.167333pt;}
.y14_c00449{bottom:404.726400pt;}
.y13_c00449{bottom:416.726400pt;}
.y12_c00449{bottom:428.726400pt;}
.y11_c00449{bottom:448.505867pt;}
.y10_c00449{bottom:464.505867pt;}
.yf_c00449{bottom:488.064933pt;}
.y2_c00449{bottom:717.215067pt;}
.ye_c00449{bottom:756.253733pt;}
.yd_c00449{bottom:768.253733pt;}
.yc_c00449{bottom:791.812800pt;}
.yb_c00449{bottom:803.812800pt;}
.ya_c00449{bottom:815.812800pt;}
.y9_c00449{bottom:839.371867pt;}
.y8_c00449{bottom:851.371867pt;}
.y7_c00449{bottom:863.371867pt;}
.y6_c00449{bottom:883.151467pt;}
.y5_c00449{bottom:899.151467pt;}
.y4_c00449{bottom:922.710533pt;}
.y1_c00449{bottom:972.089733pt;}
.h3_c00449{height:22.400000pt;}
.h7_c00449{height:26.917333pt;}
.h5_c00449{height:30.293333pt;}
.h2_c00449{height:34.901333pt;}
.h4_c00449{height:38.453333pt;}
.h6_c00449{height:38.880000pt;}
.h1_c00449{height:1009.333333pt;}
.h0_c00449{height:1009.338800pt;}
.w0_c00449{width:794.622400pt;}
.w1_c00449{width:794.666667pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:68.980533pt;}
.x2_c00449{left:376.823067pt;}
.x3_c00449{left:532.917467pt;}
.x4_c00449{left:544.256133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5a9aa56d56ad59d0dfb4f5e.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_518dd1f6b16b2c1321b86ab9.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.067000;font-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_c00450{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls5_c00450{letter-spacing:-0.960000px;}
.ls7_c00450{letter-spacing:-0.600000px;}
.ls6_c00450{letter-spacing:-0.420000px;}
.ls3_c00450{letter-spacing:-0.360000px;}
.ls8_c00450{letter-spacing:-0.240000px;}
.ls2_c00450{letter-spacing:0.000000px;}
.ls4_c00450{letter-spacing:0.180000px;}
.ls1_c00450{letter-spacing:0.336000px;}
.ls0_c00450{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00450{word-spacing:-13.260000px;}
.ws2_c00450{word-spacing:-13.140000px;}
.ws3_c00450{word-spacing:-12.780000px;}
.ws0_c00450{word-spacing:-11.232000px;}
.wse_c00450{word-spacing:-2.220000px;}
.wsb_c00450{word-spacing:-0.300000px;}
.ws7_c00450{word-spacing:-0.180000px;}
.wsa_c00450{word-spacing:-0.120000px;}
.ws4_c00450{word-spacing:0.000000px;}
.wsf_c00450{word-spacing:0.240000px;}
.ws9_c00450{word-spacing:0.420000px;}
.ws8_c00450{word-spacing:0.960000px;}
.wsd_c00450{word-spacing:4.500000px;}
.wsc_c00450{word-spacing:4.980000px;}
.ws10_c00450{word-spacing:5.940000px;}
.ws6_c00450{word-spacing:6.408000px;}
.ws5_c00450{word-spacing:6.480000px;}
._0_c00450{margin-left:-2755.373400px;}
._b_c00450{margin-left:-12.397800px;}
._9_c00450{margin-left:-6.000000px;}
._5_c00450{margin-left:-4.296000px;}
._1_c00450{margin-left:-2.256000px;}
._4_c00450{margin-left:-1.008000px;}
._2_c00450{width:1.008000px;}
._d_c00450{width:2.546400px;}
._a_c00450{width:3.780000px;}
._f_c00450{width:5.952000px;}
._8_c00450{width:9.541800px;}
._10_c00450{width:16.216800px;}
._6_c00450{width:32.263800px;}
._3_c00450{width:62.640000px;}
._e_c00450{width:65.877000px;}
._7_c00450{width:86.891400px;}
._c_c00450{width:135.840000px;}
.fc0_c00450{color:rgb(35,31,32);}
.fs0_c00450{font-size:48.000000px;}
.fs2_c00450{font-size:60.000000px;}
.fs1_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y23_c00450{bottom:113.998800px;}
.y3e_c00450{bottom:133.132650px;}
.y22_c00450{bottom:134.257650px;}
.y3d_c00450{bottom:153.385650px;}
.y21_c00450{bottom:160.882650px;}
.y3c_c00450{bottom:180.010650px;}
.y20_c00450{bottom:187.507650px;}
.y3b_c00450{bottom:200.263650px;}
.y1f_c00450{bottom:214.132650px;}
.y3a_c00450{bottom:226.888650px;}
.y1e_c00450{bottom:234.388650px;}
.y39_c00450{bottom:247.141500px;}
.y1d_c00450{bottom:261.013650px;}
.y38_c00450{bottom:273.766500px;}
.y1c_c00450{bottom:287.638650px;}
.y37_c00450{bottom:294.022350px;}
.y1b_c00450{bottom:307.894500px;}
.y36_c00450{bottom:320.647350px;}
.y1a_c00450{bottom:334.519500px;}
.y35_c00450{bottom:340.897350px;}
.y19_c00450{bottom:361.144500px;}
.y34_c00450{bottom:367.522350px;}
.y18_c00450{bottom:381.415200px;}
.y33_c00450{bottom:387.778350px;}
.y17_c00450{bottom:408.040200px;}
.y32_c00450{bottom:414.403350px;}
.y16_c00450{bottom:428.290200px;}
.y31_c00450{bottom:441.028350px;}
.y15_c00450{bottom:454.915200px;}
.y30_c00450{bottom:461.281350px;}
.y14_c00450{bottom:481.540200px;}
.y2f_c00450{bottom:487.906350px;}
.y2e_c00450{bottom:508.159200px;}
.y13_c00450{bottom:508.165200px;}
.y12_c00450{bottom:528.415200px;}
.y2d_c00450{bottom:534.784200px;}
.y2c_c00450{bottom:555.037200px;}
.y11_c00450{bottom:555.040200px;}
.y2b_c00450{bottom:581.662200px;}
.y10_c00450{bottom:581.665200px;}
.y2a_c00450{bottom:601.918050px;}
.yf_c00450{bottom:608.290200px;}
.y29_c00450{bottom:628.543050px;}
.ye_c00450{bottom:628.546050px;}
.y28_c00450{bottom:655.168050px;}
.yd_c00450{bottom:655.171050px;}
.y27_c00450{bottom:675.429900px;}
.yc_c00450{bottom:681.796050px;}
.yb_c00450{bottom:702.054900px;}
.ya_c00450{bottom:728.679900px;}
.y9_c00450{bottom:755.304900px;}
.y8_c00450{bottom:781.929900px;}
.y26_c00450{bottom:802.183800px;}
.y7_c00450{bottom:802.185750px;}
.y25_c00450{bottom:828.808800px;}
.y24_c00450{bottom:855.433800px;}
.y6_c00450{bottom:855.435750px;}
.y5_c00450{bottom:953.217450px;}
.y4_c00450{bottom:977.967450px;}
.y3_c00450{bottom:1002.717450px;}
.y2_c00450{bottom:1042.467450px;}
.y1_c00450{bottom:1093.600950px;}
.h2_c00450{height:39.264000px;}
.h3_c00450{height:39.984000px;}
.h5_c00450{height:49.080000px;}
.h4_c00450{height:58.896000px;}
.h1_c00450{height:1135.500000px;}
.h0_c00450{height:1135.506150px;}
.w0_c00450{width:893.950200px;}
.w1_c00450{width:894.000000px;}
.x0_c00450{left:0.000000px;}
.x4_c00450{left:128.626800px;}
.x5_c00450{left:147.760650px;}
.x2_c00450{left:188.061900px;}
.x3_c00450{left:190.513350px;}
.x6_c00450{left:485.785650px;}
.x7_c00450{left:504.925950px;}
.x1_c00450{left:799.722150px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls5_c00450{letter-spacing:-0.853333pt;}
.ls7_c00450{letter-spacing:-0.533333pt;}
.ls6_c00450{letter-spacing:-0.373333pt;}
.ls3_c00450{letter-spacing:-0.320000pt;}
.ls8_c00450{letter-spacing:-0.213333pt;}
.ls2_c00450{letter-spacing:0.000000pt;}
.ls4_c00450{letter-spacing:0.160000pt;}
.ls1_c00450{letter-spacing:0.298667pt;}
.ls0_c00450{letter-spacing:0.426667pt;}
.ws1_c00450{word-spacing:-11.786667pt;}
.ws2_c00450{word-spacing:-11.680000pt;}
.ws3_c00450{word-spacing:-11.360000pt;}
.ws0_c00450{word-spacing:-9.984000pt;}
.wse_c00450{word-spacing:-1.973333pt;}
.wsb_c00450{word-spacing:-0.266667pt;}
.ws7_c00450{word-spacing:-0.160000pt;}
.wsa_c00450{word-spacing:-0.106667pt;}
.ws4_c00450{word-spacing:0.000000pt;}
.wsf_c00450{word-spacing:0.213333pt;}
.ws9_c00450{word-spacing:0.373333pt;}
.ws8_c00450{word-spacing:0.853333pt;}
.wsd_c00450{word-spacing:4.000000pt;}
.wsc_c00450{word-spacing:4.426667pt;}
.ws10_c00450{word-spacing:5.280000pt;}
.ws6_c00450{word-spacing:5.696000pt;}
.ws5_c00450{word-spacing:5.760000pt;}
._0_c00450{margin-left:-2449.220800pt;}
._b_c00450{margin-left:-11.020267pt;}
._9_c00450{margin-left:-5.333333pt;}
._5_c00450{margin-left:-3.818667pt;}
._1_c00450{margin-left:-2.005333pt;}
._4_c00450{margin-left:-0.896000pt;}
._2_c00450{width:0.896000pt;}
._d_c00450{width:2.263467pt;}
._a_c00450{width:3.360000pt;}
._f_c00450{width:5.290667pt;}
._8_c00450{width:8.481600pt;}
._10_c00450{width:14.414933pt;}
._6_c00450{width:28.678933pt;}
._3_c00450{width:55.680000pt;}
._e_c00450{width:58.557333pt;}
._7_c00450{width:77.236800pt;}
._c_c00450{width:120.746667pt;}
.fs0_c00450{font-size:42.666667pt;}
.fs2_c00450{font-size:53.333333pt;}
.fs1_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y23_c00450{bottom:101.332267pt;}
.y3e_c00450{bottom:118.340133pt;}
.y22_c00450{bottom:119.340133pt;}
.y3d_c00450{bottom:136.342800pt;}
.y21_c00450{bottom:143.006800pt;}
.y3c_c00450{bottom:160.009467pt;}
.y20_c00450{bottom:166.673467pt;}
.y3b_c00450{bottom:178.012133pt;}
.y1f_c00450{bottom:190.340133pt;}
.y3a_c00450{bottom:201.678800pt;}
.y1e_c00450{bottom:208.345467pt;}
.y39_c00450{bottom:219.681333pt;}
.y1d_c00450{bottom:232.012133pt;}
.y38_c00450{bottom:243.348000pt;}
.y1c_c00450{bottom:255.678800pt;}
.y37_c00450{bottom:261.353200pt;}
.y1b_c00450{bottom:273.684000pt;}
.y36_c00450{bottom:285.019867pt;}
.y1a_c00450{bottom:297.350667pt;}
.y35_c00450{bottom:303.019867pt;}
.y19_c00450{bottom:321.017333pt;}
.y34_c00450{bottom:326.686533pt;}
.y18_c00450{bottom:339.035733pt;}
.y33_c00450{bottom:344.691867pt;}
.y17_c00450{bottom:362.702400pt;}
.y32_c00450{bottom:368.358533pt;}
.y16_c00450{bottom:380.702400pt;}
.y31_c00450{bottom:392.025200pt;}
.y15_c00450{bottom:404.369067pt;}
.y30_c00450{bottom:410.027867pt;}
.y14_c00450{bottom:428.035733pt;}
.y2f_c00450{bottom:433.694533pt;}
.y2e_c00450{bottom:451.697067pt;}
.y13_c00450{bottom:451.702400pt;}
.y12_c00450{bottom:469.702400pt;}
.y2d_c00450{bottom:475.363733pt;}
.y2c_c00450{bottom:493.366400pt;}
.y11_c00450{bottom:493.369067pt;}
.y2b_c00450{bottom:517.033067pt;}
.y10_c00450{bottom:517.035733pt;}
.y2a_c00450{bottom:535.038267pt;}
.yf_c00450{bottom:540.702400pt;}
.y29_c00450{bottom:558.704933pt;}
.ye_c00450{bottom:558.707600pt;}
.y28_c00450{bottom:582.371600pt;}
.yd_c00450{bottom:582.374267pt;}
.y27_c00450{bottom:600.382133pt;}
.yc_c00450{bottom:606.040933pt;}
.yb_c00450{bottom:624.048800pt;}
.ya_c00450{bottom:647.715467pt;}
.y9_c00450{bottom:671.382133pt;}
.y8_c00450{bottom:695.048800pt;}
.y26_c00450{bottom:713.052267pt;}
.y7_c00450{bottom:713.054000pt;}
.y25_c00450{bottom:736.718933pt;}
.y24_c00450{bottom:760.385600pt;}
.y6_c00450{bottom:760.387333pt;}
.y5_c00450{bottom:847.304400pt;}
.y4_c00450{bottom:869.304400pt;}
.y3_c00450{bottom:891.304400pt;}
.y2_c00450{bottom:926.637733pt;}
.y1_c00450{bottom:972.089733pt;}
.h2_c00450{height:34.901333pt;}
.h3_c00450{height:35.541333pt;}
.h5_c00450{height:43.626667pt;}
.h4_c00450{height:52.352000pt;}
.h1_c00450{height:1009.333333pt;}
.h0_c00450{height:1009.338800pt;}
.w0_c00450{width:794.622400pt;}
.w1_c00450{width:794.666667pt;}
.x0_c00450{left:0.000000pt;}
.x4_c00450{left:114.334933pt;}
.x5_c00450{left:131.342800pt;}
.x2_c00450{left:167.166133pt;}
.x3_c00450{left:169.345200pt;}
.x6_c00450{left:431.809467pt;}
.x7_c00450{left:448.823067pt;}
.x1_c00450{left:710.864133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.067000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls4_c00451{letter-spacing:-1.500000px;}
.ls7_c00451{letter-spacing:-1.200000px;}
.ls8_c00451{letter-spacing:-0.780000px;}
.ls6_c00451{letter-spacing:-0.600000px;}
.ls0_c00451{letter-spacing:-0.480000px;}
.ls2_c00451{letter-spacing:-0.420000px;}
.ls5_c00451{letter-spacing:-0.240000px;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls3_c00451{letter-spacing:0.180000px;}
.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;}
}
.ws1_c00451{word-spacing:-13.620000px;}
.ws11_c00451{word-spacing:-4.980000px;}
.ws13_c00451{word-spacing:-2.580000px;}
.ws14_c00451{word-spacing:-2.520000px;}
.ws10_c00451{word-spacing:-2.280000px;}
.wsa_c00451{word-spacing:-2.100000px;}
.ws7_c00451{word-spacing:-1.560000px;}
.ws8_c00451{word-spacing:-1.500000px;}
.ws5_c00451{word-spacing:-0.180000px;}
.ws2_c00451{word-spacing:0.000000px;}
.wsb_c00451{word-spacing:0.240000px;}
.ws3_c00451{word-spacing:0.420000px;}
.wsd_c00451{word-spacing:0.600000px;}
.ws16_c00451{word-spacing:0.780000px;}
.ws12_c00451{word-spacing:1.200000px;}
.ws6_c00451{word-spacing:1.500000px;}
.ws9_c00451{word-spacing:2.640000px;}
.ws4_c00451{word-spacing:4.620000px;}
.wsc_c00451{word-spacing:4.740000px;}
.ws15_c00451{word-spacing:10.200000px;}
.wsf_c00451{word-spacing:10.320000px;}
.wse_c00451{word-spacing:10.380000px;}
.ws0_c00451{word-spacing:1577.035200px;}
._6_c00451{margin-left:-6.288000px;}
._5_c00451{margin-left:-4.932000px;}
._2_c00451{margin-left:-3.408000px;}
._3_c00451{margin-left:-2.316000px;}
._1_c00451{margin-left:-1.056000px;}
._0_c00451{width:1.056000px;}
._8_c00451{width:2.700000px;}
._4_c00451{width:4.080000px;}
._9_c00451{width:10.320000px;}
._7_c00451{width:35.092200px;}
.fc0_c00451{color:rgb(35,31,32);}
.fs0_c00451{font-size:48.000000px;}
.fs1_c00451{font-size:60.000000px;}
.y0_c00451{bottom:0.000000px;}
.y49_c00451{bottom:115.699650px;}
.y27_c00451{bottom:128.458350px;}
.y48_c00451{bottom:135.961350px;}
.y26_c00451{bottom:148.708350px;}
.y47_c00451{bottom:162.586350px;}
.y25_c00451{bottom:175.333350px;}
.y46_c00451{bottom:189.211350px;}
.y24_c00451{bottom:195.592350px;}
.y45_c00451{bottom:215.836350px;}
.y23_c00451{bottom:222.217350px;}
.y44_c00451{bottom:242.461350px;}
.y22_c00451{bottom:248.842350px;}
.y43_c00451{bottom:262.714350px;}
.y21_c00451{bottom:269.092350px;}
.y42_c00451{bottom:289.339350px;}
.y20_c00451{bottom:295.717350px;}
.y41_c00451{bottom:309.601200px;}
.y1f_c00451{bottom:315.973200px;}
.y40_c00451{bottom:336.226200px;}
.y1e_c00451{bottom:342.598200px;}
.y3f_c00451{bottom:362.851200px;}
.y1d_c00451{bottom:369.223200px;}
.y1c_c00451{bottom:389.476200px;}
.y1b_c00451{bottom:416.101200px;}
.y3e_c00451{bottom:436.354050px;}
.y1a_c00451{bottom:436.360050px;}
.y3d_c00451{bottom:462.979050px;}
.y19_c00451{bottom:462.985050px;}
.y3c_c00451{bottom:483.237900px;}
.y18_c00451{bottom:489.610050px;}
.y17_c00451{bottom:509.860050px;}
.y3b_c00451{bottom:509.862900px;}
.y16_c00451{bottom:536.485050px;}
.y3a_c00451{bottom:536.487900px;}
.y15_c00451{bottom:556.737900px;}
.y14_c00451{bottom:583.362900px;}
.y13_c00451{bottom:603.615900px;}
.y39_c00451{bottom:603.621900px;}
.y12_c00451{bottom:630.240900px;}
.y38_c00451{bottom:630.246900px;}
.y11_c00451{bottom:650.493900px;}
.y37_c00451{bottom:656.871900px;}
.y10_c00451{bottom:677.118900px;}
.y36_c00451{bottom:683.496900px;}
.yf_c00451{bottom:697.374750px;}
.y35_c00451{bottom:703.758600px;}
.ye_c00451{bottom:723.999750px;}
.y34_c00451{bottom:730.383600px;}
.yd_c00451{bottom:744.249750px;}
.y33_c00451{bottom:757.008600px;}
.yc_c00451{bottom:770.874750px;}
.y32_c00451{bottom:783.633600px;}
.yb_c00451{bottom:791.130600px;}
.y31_c00451{bottom:803.883600px;}
.ya_c00451{bottom:817.755600px;}
.y30_c00451{bottom:830.508600px;}
.y9_c00451{bottom:844.380600px;}
.y2f_c00451{bottom:850.761600px;}
.y8_c00451{bottom:864.648450px;}
.y2e_c00451{bottom:877.386600px;}
.y7_c00451{bottom:891.273450px;}
.y2d_c00451{bottom:897.639450px;}
.y6_c00451{bottom:917.898450px;}
.y2c_c00451{bottom:924.264450px;}
.y5_c00451{bottom:944.523450px;}
.y4_c00451{bottom:964.773450px;}
.y2b_c00451{bottom:971.148450px;}
.y3_c00451{bottom:991.398450px;}
.y2a_c00451{bottom:997.773450px;}
.y29_c00451{bottom:1024.398450px;}
.y2_c00451{bottom:1044.648450px;}
.y28_c00451{bottom:1044.658350px;}
.y1_c00451{bottom:1093.601100px;}
.h2_c00451{height:39.264000px;}
.h3_c00451{height:49.080000px;}
.h1_c00451{height:1135.500000px;}
.h0_c00451{height:1135.506150px;}
.w0_c00451{width:893.950200px;}
.w1_c00451{width:894.000000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:77.603100px;}
.x2_c00451{left:97.005600px;}
.x3_c00451{left:435.024450px;}
.x4_c00451{left:454.164900px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls4_c00451{letter-spacing:-1.333333pt;}
.ls7_c00451{letter-spacing:-1.066667pt;}
.ls8_c00451{letter-spacing:-0.693333pt;}
.ls6_c00451{letter-spacing:-0.533333pt;}
.ls0_c00451{letter-spacing:-0.426667pt;}
.ls2_c00451{letter-spacing:-0.373333pt;}
.ls5_c00451{letter-spacing:-0.213333pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls3_c00451{letter-spacing:0.160000pt;}
.ws1_c00451{word-spacing:-12.106667pt;}
.ws11_c00451{word-spacing:-4.426667pt;}
.ws13_c00451{word-spacing:-2.293333pt;}
.ws14_c00451{word-spacing:-2.240000pt;}
.ws10_c00451{word-spacing:-2.026667pt;}
.wsa_c00451{word-spacing:-1.866667pt;}
.ws7_c00451{word-spacing:-1.386667pt;}
.ws8_c00451{word-spacing:-1.333333pt;}
.ws5_c00451{word-spacing:-0.160000pt;}
.ws2_c00451{word-spacing:0.000000pt;}
.wsb_c00451{word-spacing:0.213333pt;}
.ws3_c00451{word-spacing:0.373333pt;}
.wsd_c00451{word-spacing:0.533333pt;}
.ws16_c00451{word-spacing:0.693333pt;}
.ws12_c00451{word-spacing:1.066667pt;}
.ws6_c00451{word-spacing:1.333333pt;}
.ws9_c00451{word-spacing:2.346667pt;}
.ws4_c00451{word-spacing:4.106667pt;}
.wsc_c00451{word-spacing:4.213333pt;}
.ws15_c00451{word-spacing:9.066667pt;}
.wsf_c00451{word-spacing:9.173333pt;}
.wse_c00451{word-spacing:9.226667pt;}
.ws0_c00451{word-spacing:1401.809067pt;}
._6_c00451{margin-left:-5.589333pt;}
._5_c00451{margin-left:-4.384000pt;}
._2_c00451{margin-left:-3.029333pt;}
._3_c00451{margin-left:-2.058667pt;}
._1_c00451{margin-left:-0.938667pt;}
._0_c00451{width:0.938667pt;}
._8_c00451{width:2.400000pt;}
._4_c00451{width:3.626667pt;}
._9_c00451{width:9.173333pt;}
._7_c00451{width:31.193067pt;}
.fs0_c00451{font-size:42.666667pt;}
.fs1_c00451{font-size:53.333333pt;}
.y0_c00451{bottom:0.000000pt;}
.y49_c00451{bottom:102.844133pt;}
.y27_c00451{bottom:114.185200pt;}
.y48_c00451{bottom:120.854533pt;}
.y26_c00451{bottom:132.185200pt;}
.y47_c00451{bottom:144.521200pt;}
.y25_c00451{bottom:155.851867pt;}
.y46_c00451{bottom:168.187867pt;}
.y24_c00451{bottom:173.859867pt;}
.y45_c00451{bottom:191.854533pt;}
.y23_c00451{bottom:197.526533pt;}
.y44_c00451{bottom:215.521200pt;}
.y22_c00451{bottom:221.193200pt;}
.y43_c00451{bottom:233.523867pt;}
.y21_c00451{bottom:239.193200pt;}
.y42_c00451{bottom:257.190533pt;}
.y20_c00451{bottom:262.859867pt;}
.y41_c00451{bottom:275.201067pt;}
.y1f_c00451{bottom:280.865067pt;}
.y40_c00451{bottom:298.867733pt;}
.y1e_c00451{bottom:304.531733pt;}
.y3f_c00451{bottom:322.534400pt;}
.y1d_c00451{bottom:328.198400pt;}
.y1c_c00451{bottom:346.201067pt;}
.y1b_c00451{bottom:369.867733pt;}
.y3e_c00451{bottom:387.870267pt;}
.y1a_c00451{bottom:387.875600pt;}
.y3d_c00451{bottom:411.536933pt;}
.y19_c00451{bottom:411.542267pt;}
.y3c_c00451{bottom:429.544800pt;}
.y18_c00451{bottom:435.208933pt;}
.y17_c00451{bottom:453.208933pt;}
.y3b_c00451{bottom:453.211467pt;}
.y16_c00451{bottom:476.875600pt;}
.y3a_c00451{bottom:476.878133pt;}
.y15_c00451{bottom:494.878133pt;}
.y14_c00451{bottom:518.544800pt;}
.y13_c00451{bottom:536.547467pt;}
.y39_c00451{bottom:536.552800pt;}
.y12_c00451{bottom:560.214133pt;}
.y38_c00451{bottom:560.219467pt;}
.y11_c00451{bottom:578.216800pt;}
.y37_c00451{bottom:583.886133pt;}
.y10_c00451{bottom:601.883467pt;}
.y36_c00451{bottom:607.552800pt;}
.yf_c00451{bottom:619.888667pt;}
.y35_c00451{bottom:625.563200pt;}
.ye_c00451{bottom:643.555333pt;}
.y34_c00451{bottom:649.229867pt;}
.yd_c00451{bottom:661.555333pt;}
.y33_c00451{bottom:672.896533pt;}
.yc_c00451{bottom:685.222000pt;}
.y32_c00451{bottom:696.563200pt;}
.yb_c00451{bottom:703.227200pt;}
.y31_c00451{bottom:714.563200pt;}
.ya_c00451{bottom:726.893867pt;}
.y30_c00451{bottom:738.229867pt;}
.y9_c00451{bottom:750.560533pt;}
.y2f_c00451{bottom:756.232533pt;}
.y8_c00451{bottom:768.576400pt;}
.y2e_c00451{bottom:779.899200pt;}
.y7_c00451{bottom:792.243067pt;}
.y2d_c00451{bottom:797.901733pt;}
.y6_c00451{bottom:815.909733pt;}
.y2c_c00451{bottom:821.568400pt;}
.y5_c00451{bottom:839.576400pt;}
.y4_c00451{bottom:857.576400pt;}
.y2b_c00451{bottom:863.243067pt;}
.y3_c00451{bottom:881.243067pt;}
.y2a_c00451{bottom:886.909733pt;}
.y29_c00451{bottom:910.576400pt;}
.y2_c00451{bottom:928.576400pt;}
.y28_c00451{bottom:928.585200pt;}
.y1_c00451{bottom:972.089867pt;}
.h2_c00451{height:34.901333pt;}
.h3_c00451{height:43.626667pt;}
.h1_c00451{height:1009.333333pt;}
.h0_c00451{height:1009.338800pt;}
.w0_c00451{width:794.622400pt;}
.w1_c00451{width:794.666667pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:68.980533pt;}
.x2_c00451{left:86.227200pt;}
.x3_c00451{left:386.688400pt;}
.x4_c00451{left:403.702133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.067000;font-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_c00452{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls8_c00452{letter-spacing:-1.800000px;}
.ls5_c00452{letter-spacing:-1.200000px;}
.ls4_c00452{letter-spacing:-1.020000px;}
.ls9_c00452{letter-spacing:-0.960000px;}
.ls3_c00452{letter-spacing:-0.600000px;}
.ls2_c00452{letter-spacing:-0.420000px;}
.ls6_c00452{letter-spacing:-0.240000px;}
.ls1_c00452{letter-spacing:0.000000px;}
.ls7_c00452{letter-spacing:0.180000px;}
.ls0_c00452{letter-spacing:0.480000px;}
.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:-10.896000px;}
.wsd_c00452{word-spacing:-5.220000px;}
.wse_c00452{word-spacing:-5.160000px;}
.ws12_c00452{word-spacing:-4.260000px;}
.ws13_c00452{word-spacing:-4.200000px;}
.wsa_c00452{word-spacing:-4.140000px;}
.wsb_c00452{word-spacing:-4.080000px;}
.ws3_c00452{word-spacing:-3.240000px;}
.ws5_c00452{word-spacing:-2.820000px;}
.ws6_c00452{word-spacing:-2.760000px;}
.ws11_c00452{word-spacing:-2.580000px;}
.ws17_c00452{word-spacing:-0.420000px;}
.ws10_c00452{word-spacing:-0.180000px;}
.wsf_c00452{word-spacing:-0.120000px;}
.ws1_c00452{word-spacing:0.000000px;}
.wsc_c00452{word-spacing:0.240000px;}
.ws2_c00452{word-spacing:0.420000px;}
.ws4_c00452{word-spacing:0.600000px;}
.ws16_c00452{word-spacing:0.960000px;}
.ws9_c00452{word-spacing:1.200000px;}
.ws14_c00452{word-spacing:1.800000px;}
.ws15_c00452{word-spacing:3.540000px;}
.ws8_c00452{word-spacing:5.700000px;}
.ws7_c00452{word-spacing:5.760000px;}
._0_c00452{margin-left:-2754.604200px;}
._9_c00452{margin-left:-8.793000px;}
._6_c00452{margin-left:-5.760000px;}
._5_c00452{margin-left:-3.720000px;}
._1_c00452{margin-left:-2.256000px;}
._3_c00452{margin-left:-1.152000px;}
._2_c00452{width:1.008000px;}
._8_c00452{width:2.820000px;}
._a_c00452{width:3.912000px;}
._7_c00452{width:5.700000px;}
._b_c00452{width:34.245000px;}
._4_c00452{width:36.283200px;}
.fc0_c00452{color:rgb(35,31,32);}
.fs0_c00452{font-size:48.000000px;}
.fs1_c00452{font-size:60.000000px;}
.y0_c00452{bottom:0.000000px;}
.y27_c00452{bottom:116.815800px;}
.y48_c00452{bottom:135.952500px;}
.y26_c00452{bottom:137.110050px;}
.y47_c00452{bottom:162.577500px;}
.y25_c00452{bottom:163.735050px;}
.y46_c00452{bottom:182.830500px;}
.y24_c00452{bottom:183.985050px;}
.y45_c00452{bottom:209.455500px;}
.y23_c00452{bottom:210.610050px;}
.y44_c00452{bottom:229.708350px;}
.y22_c00452{bottom:237.235050px;}
.y43_c00452{bottom:256.333350px;}
.y21_c00452{bottom:263.860050px;}
.y42_c00452{bottom:276.589350px;}
.y20_c00452{bottom:290.485050px;}
.y41_c00452{bottom:303.214350px;}
.y1f_c00452{bottom:317.110050px;}
.y40_c00452{bottom:329.839350px;}
.y1e_c00452{bottom:343.735050px;}
.y3f_c00452{bottom:350.098200px;}
.y1d_c00452{bottom:370.360050px;}
.y3e_c00452{bottom:376.723200px;}
.y1c_c00452{bottom:396.985050px;}
.y3d_c00452{bottom:403.348200px;}
.y1b_c00452{bottom:423.610050px;}
.y3c_c00452{bottom:429.973200px;}
.y3b_c00452{bottom:450.226200px;}
.y1a_c00452{bottom:450.235050px;}
.y3a_c00452{bottom:476.851200px;}
.y19_c00452{bottom:476.860050px;}
.y39_c00452{bottom:497.107050px;}
.y18_c00452{bottom:503.485050px;}
.y38_c00452{bottom:523.732050px;}
.y17_c00452{bottom:530.110050px;}
.y37_c00452{bottom:550.357050px;}
.y16_c00452{bottom:556.735050px;}
.y36_c00452{bottom:570.615900px;}
.y15_c00452{bottom:576.993900px;}
.y35_c00452{bottom:597.240900px;}
.y14_c00452{bottom:603.618900px;}
.y34_c00452{bottom:617.490900px;}
.y13_c00452{bottom:623.868900px;}
.y33_c00452{bottom:644.115900px;}
.y12_c00452{bottom:650.493900px;}
.y32_c00452{bottom:670.740900px;}
.y11_c00452{bottom:677.118900px;}
.y31_c00452{bottom:691.002750px;}
.y10_c00452{bottom:697.371900px;}
.y30_c00452{bottom:717.627750px;}
.yf_c00452{bottom:723.996900px;}
.ye_c00452{bottom:744.252750px;}
.yd_c00452{bottom:770.877750px;}
.yc_c00452{bottom:797.502750px;}
.yb_c00452{bottom:817.761600px;}
.y2f_c00452{bottom:817.770600px;}
.ya_c00452{bottom:844.386600px;}
.y2e_c00452{bottom:844.395600px;}
.y9_c00452{bottom:871.011600px;}
.y2d_c00452{bottom:871.020600px;}
.y8_c00452{bottom:897.636600px;}
.y2c_c00452{bottom:897.645600px;}
.y7_c00452{bottom:917.898450px;}
.y2b_c00452{bottom:924.270600px;}
.y6_c00452{bottom:944.523450px;}
.y2a_c00452{bottom:950.895600px;}
.y5_c00452{bottom:971.148450px;}
.y29_c00452{bottom:977.520600px;}
.y4_c00452{bottom:997.773450px;}
.y3_c00452{bottom:1024.398450px;}
.y2_c00452{bottom:1044.648450px;}
.y28_c00452{bottom:1044.655800px;}
.y1_c00452{bottom:1093.601100px;}
.h2_c00452{height:39.264000px;}
.h3_c00452{height:39.984000px;}
.h4_c00452{height:49.080000px;}
.h1_c00452{height:1135.500000px;}
.h0_c00452{height:1135.506150px;}
.w0_c00452{width:893.950200px;}
.w1_c00452{width:894.000000px;}
.x0_c00452{left:0.000000px;}
.x4_c00452{left:128.626800px;}
.x5_c00452{left:147.760650px;}
.x2_c00452{left:188.061900px;}
.x3_c00452{left:190.513350px;}
.x6_c00452{left:485.785650px;}
.x7_c00452{left:504.925950px;}
.x1_c00452{left:802.529850px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls8_c00452{letter-spacing:-1.600000pt;}
.ls5_c00452{letter-spacing:-1.066667pt;}
.ls4_c00452{letter-spacing:-0.906667pt;}
.ls9_c00452{letter-spacing:-0.853333pt;}
.ls3_c00452{letter-spacing:-0.533333pt;}
.ls2_c00452{letter-spacing:-0.373333pt;}
.ls6_c00452{letter-spacing:-0.213333pt;}
.ls1_c00452{letter-spacing:0.000000pt;}
.ls7_c00452{letter-spacing:0.160000pt;}
.ls0_c00452{letter-spacing:0.426667pt;}
.ws0_c00452{word-spacing:-9.685333pt;}
.wsd_c00452{word-spacing:-4.640000pt;}
.wse_c00452{word-spacing:-4.586667pt;}
.ws12_c00452{word-spacing:-3.786667pt;}
.ws13_c00452{word-spacing:-3.733333pt;}
.wsa_c00452{word-spacing:-3.680000pt;}
.wsb_c00452{word-spacing:-3.626667pt;}
.ws3_c00452{word-spacing:-2.880000pt;}
.ws5_c00452{word-spacing:-2.506667pt;}
.ws6_c00452{word-spacing:-2.453333pt;}
.ws11_c00452{word-spacing:-2.293333pt;}
.ws17_c00452{word-spacing:-0.373333pt;}
.ws10_c00452{word-spacing:-0.160000pt;}
.wsf_c00452{word-spacing:-0.106667pt;}
.ws1_c00452{word-spacing:0.000000pt;}
.wsc_c00452{word-spacing:0.213333pt;}
.ws2_c00452{word-spacing:0.373333pt;}
.ws4_c00452{word-spacing:0.533333pt;}
.ws16_c00452{word-spacing:0.853333pt;}
.ws9_c00452{word-spacing:1.066667pt;}
.ws14_c00452{word-spacing:1.600000pt;}
.ws15_c00452{word-spacing:3.146667pt;}
.ws8_c00452{word-spacing:5.066667pt;}
.ws7_c00452{word-spacing:5.120000pt;}
._0_c00452{margin-left:-2448.537067pt;}
._9_c00452{margin-left:-7.816000pt;}
._6_c00452{margin-left:-5.120000pt;}
._5_c00452{margin-left:-3.306667pt;}
._1_c00452{margin-left:-2.005333pt;}
._3_c00452{margin-left:-1.024000pt;}
._2_c00452{width:0.896000pt;}
._8_c00452{width:2.506667pt;}
._a_c00452{width:3.477333pt;}
._7_c00452{width:5.066667pt;}
._b_c00452{width:30.440000pt;}
._4_c00452{width:32.251733pt;}
.fs0_c00452{font-size:42.666667pt;}
.fs1_c00452{font-size:53.333333pt;}
.y0_c00452{bottom:0.000000pt;}
.y27_c00452{bottom:103.836267pt;}
.y48_c00452{bottom:120.846667pt;}
.y26_c00452{bottom:121.875600pt;}
.y47_c00452{bottom:144.513333pt;}
.y25_c00452{bottom:145.542267pt;}
.y46_c00452{bottom:162.516000pt;}
.y24_c00452{bottom:163.542267pt;}
.y45_c00452{bottom:186.182667pt;}
.y23_c00452{bottom:187.208933pt;}
.y44_c00452{bottom:204.185200pt;}
.y22_c00452{bottom:210.875600pt;}
.y43_c00452{bottom:227.851867pt;}
.y21_c00452{bottom:234.542267pt;}
.y42_c00452{bottom:245.857200pt;}
.y20_c00452{bottom:258.208933pt;}
.y41_c00452{bottom:269.523867pt;}
.y1f_c00452{bottom:281.875600pt;}
.y40_c00452{bottom:293.190533pt;}
.y1e_c00452{bottom:305.542267pt;}
.y3f_c00452{bottom:311.198400pt;}
.y1d_c00452{bottom:329.208933pt;}
.y3e_c00452{bottom:334.865067pt;}
.y1c_c00452{bottom:352.875600pt;}
.y3d_c00452{bottom:358.531733pt;}
.y1b_c00452{bottom:376.542267pt;}
.y3c_c00452{bottom:382.198400pt;}
.y3b_c00452{bottom:400.201067pt;}
.y1a_c00452{bottom:400.208933pt;}
.y3a_c00452{bottom:423.867733pt;}
.y19_c00452{bottom:423.875600pt;}
.y39_c00452{bottom:441.872933pt;}
.y18_c00452{bottom:447.542267pt;}
.y38_c00452{bottom:465.539600pt;}
.y17_c00452{bottom:471.208933pt;}
.y37_c00452{bottom:489.206267pt;}
.y16_c00452{bottom:494.875600pt;}
.y36_c00452{bottom:507.214133pt;}
.y15_c00452{bottom:512.883467pt;}
.y35_c00452{bottom:530.880800pt;}
.y14_c00452{bottom:536.550133pt;}
.y34_c00452{bottom:548.880800pt;}
.y13_c00452{bottom:554.550133pt;}
.y33_c00452{bottom:572.547467pt;}
.y12_c00452{bottom:578.216800pt;}
.y32_c00452{bottom:596.214133pt;}
.y11_c00452{bottom:601.883467pt;}
.y31_c00452{bottom:614.224667pt;}
.y10_c00452{bottom:619.886133pt;}
.y30_c00452{bottom:637.891333pt;}
.yf_c00452{bottom:643.552800pt;}
.ye_c00452{bottom:661.558000pt;}
.yd_c00452{bottom:685.224667pt;}
.yc_c00452{bottom:708.891333pt;}
.yb_c00452{bottom:726.899200pt;}
.y2f_c00452{bottom:726.907200pt;}
.ya_c00452{bottom:750.565867pt;}
.y2e_c00452{bottom:750.573867pt;}
.y9_c00452{bottom:774.232533pt;}
.y2d_c00452{bottom:774.240533pt;}
.y8_c00452{bottom:797.899200pt;}
.y2c_c00452{bottom:797.907200pt;}
.y7_c00452{bottom:815.909733pt;}
.y2b_c00452{bottom:821.573867pt;}
.y6_c00452{bottom:839.576400pt;}
.y2a_c00452{bottom:845.240533pt;}
.y5_c00452{bottom:863.243067pt;}
.y29_c00452{bottom:868.907200pt;}
.y4_c00452{bottom:886.909733pt;}
.y3_c00452{bottom:910.576400pt;}
.y2_c00452{bottom:928.576400pt;}
.y28_c00452{bottom:928.582933pt;}
.y1_c00452{bottom:972.089867pt;}
.h2_c00452{height:34.901333pt;}
.h3_c00452{height:35.541333pt;}
.h4_c00452{height:43.626667pt;}
.h1_c00452{height:1009.333333pt;}
.h0_c00452{height:1009.338800pt;}
.w0_c00452{width:794.622400pt;}
.w1_c00452{width:794.666667pt;}
.x0_c00452{left:0.000000pt;}
.x4_c00452{left:114.334933pt;}
.x5_c00452{left:131.342800pt;}
.x2_c00452{left:167.166133pt;}
.x3_c00452{left:169.345200pt;}
.x6_c00452{left:431.809467pt;}
.x7_c00452{left:448.823067pt;}
.x1_c00452{left:713.359867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.067000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls6_c00453{letter-spacing:-1.560000px;}
.ls4_c00453{letter-spacing:-1.200000px;}
.ls7_c00453{letter-spacing:-0.960000px;}
.ls2_c00453{letter-spacing:-0.600000px;}
.ls3_c00453{letter-spacing:-0.420000px;}
.ls0_c00453{letter-spacing:-0.288000px;}
.ls8_c00453{letter-spacing:-0.240000px;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls5_c00453{letter-spacing:0.180000px;}
.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;}
}
.wsf_c00453{word-spacing:-5.700000px;}
.ws14_c00453{word-spacing:-4.080000px;}
.ws15_c00453{word-spacing:-4.020000px;}
.ws16_c00453{word-spacing:-3.900000px;}
.ws9_c00453{word-spacing:-2.520000px;}
.wsa_c00453{word-spacing:-2.460000px;}
.wse_c00453{word-spacing:-1.620000px;}
.wsc_c00453{word-spacing:-1.500000px;}
.ws3_c00453{word-spacing:-1.320000px;}
.wsb_c00453{word-spacing:-0.900000px;}
.ws12_c00453{word-spacing:-0.720000px;}
.ws6_c00453{word-spacing:-0.300000px;}
.ws8_c00453{word-spacing:-0.180000px;}
.ws1_c00453{word-spacing:0.000000px;}
.ws13_c00453{word-spacing:0.240000px;}
.ws4_c00453{word-spacing:0.420000px;}
.ws2_c00453{word-spacing:0.600000px;}
.ws10_c00453{word-spacing:0.960000px;}
.ws5_c00453{word-spacing:1.200000px;}
.ws17_c00453{word-spacing:3.780000px;}
.ws7_c00453{word-spacing:5.820000px;}
.ws11_c00453{word-spacing:10.500000px;}
.wsd_c00453{word-spacing:11.700000px;}
.ws0_c00453{word-spacing:1580.491200px;}
._3_c00453{margin-left:-6.180000px;}
._8_c00453{margin-left:-5.040000px;}
._2_c00453{margin-left:-3.216000px;}
._0_c00453{margin-left:-1.824000px;}
._1_c00453{width:1.368000px;}
._7_c00453{width:2.640000px;}
._4_c00453{width:6.540000px;}
._5_c00453{width:11.400000px;}
._9_c00453{width:24.332400px;}
._6_c00453{width:41.932200px;}
.fc0_c00453{color:rgb(35,31,32);}
.fs0_c00453{font-size:48.000000px;}
.fs1_c00453{font-size:60.000000px;}
.y0_c00453{bottom:0.000000px;}
.y4c_c00453{bottom:116.815800px;}
.y26_c00453{bottom:137.068650px;}
.y4b_c00453{bottom:137.092350px;}
.y25_c00453{bottom:163.693650px;}
.y4a_c00453{bottom:163.717350px;}
.y24_c00453{bottom:183.952500px;}
.y49_c00453{bottom:183.967350px;}
.y23_c00453{bottom:210.577500px;}
.y48_c00453{bottom:210.592350px;}
.y22_c00453{bottom:237.202500px;}
.y47_c00453{bottom:237.217350px;}
.y21_c00453{bottom:263.827500px;}
.y46_c00453{bottom:263.842350px;}
.y20_c00453{bottom:284.095200px;}
.y45_c00453{bottom:290.467350px;}
.y1f_c00453{bottom:310.720200px;}
.y44_c00453{bottom:317.092350px;}
.y1e_c00453{bottom:337.345200px;}
.y43_c00453{bottom:343.717350px;}
.y1d_c00453{bottom:363.970200px;}
.y42_c00453{bottom:370.342350px;}
.y1c_c00453{bottom:390.595200px;}
.y41_c00453{bottom:396.967350px;}
.y1b_c00453{bottom:410.845200px;}
.y40_c00453{bottom:417.232050px;}
.y1a_c00453{bottom:437.470200px;}
.y3f_c00453{bottom:443.857050px;}
.y19_c00453{bottom:464.095200px;}
.y3e_c00453{bottom:470.482050px;}
.y18_c00453{bottom:484.348200px;}
.y3d_c00453{bottom:497.107050px;}
.y17_c00453{bottom:510.973200px;}
.y3c_c00453{bottom:523.732050px;}
.y16_c00453{bottom:531.255600px;}
.y3b_c00453{bottom:550.357050px;}
.y15_c00453{bottom:557.880600px;}
.y3a_c00453{bottom:570.627750px;}
.y14_c00453{bottom:584.505600px;}
.y39_c00453{bottom:597.252750px;}
.y13_c00453{bottom:604.755600px;}
.y38_c00453{bottom:623.877750px;}
.y12_c00453{bottom:631.380600px;}
.y37_c00453{bottom:650.502750px;}
.y11_c00453{bottom:658.005600px;}
.y36_c00453{bottom:677.127750px;}
.y10_c00453{bottom:684.630600px;}
.y35_c00453{bottom:703.752750px;}
.yf_c00453{bottom:711.255600px;}
.y34_c00453{bottom:724.002750px;}
.ye_c00453{bottom:737.880600px;}
.y33_c00453{bottom:750.627750px;}
.yd_c00453{bottom:764.505600px;}
.y32_c00453{bottom:770.877750px;}
.yc_c00453{bottom:791.130600px;}
.y31_c00453{bottom:797.502750px;}
.yb_c00453{bottom:817.755600px;}
.y30_c00453{bottom:817.773450px;}
.ya_c00453{bottom:844.380600px;}
.y2f_c00453{bottom:844.398450px;}
.y9_c00453{bottom:864.639450px;}
.y2e_c00453{bottom:871.023450px;}
.y8_c00453{bottom:891.264450px;}
.y2d_c00453{bottom:897.648450px;}
.y7_c00453{bottom:917.889450px;}
.y2c_c00453{bottom:924.273450px;}
.y6_c00453{bottom:944.514450px;}
.y2b_c00453{bottom:944.523450px;}
.y5_c00453{bottom:964.773450px;}
.y2a_c00453{bottom:971.148450px;}
.y4_c00453{bottom:991.398450px;}
.y29_c00453{bottom:997.773450px;}
.y3_c00453{bottom:1018.023450px;}
.y28_c00453{bottom:1024.398450px;}
.y2_c00453{bottom:1044.648450px;}
.y27_c00453{bottom:1044.658650px;}
.y1_c00453{bottom:1093.600950px;}
.h2_c00453{height:39.264000px;}
.h3_c00453{height:49.080000px;}
.h1_c00453{height:1135.500000px;}
.h0_c00453{height:1135.506150px;}
.w0_c00453{width:893.950200px;}
.w1_c00453{width:894.000000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:77.603100px;}
.x2_c00453{left:96.736950px;}
.x3_c00453{left:434.761950px;}
.x4_c00453{left:453.902400px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls6_c00453{letter-spacing:-1.386667pt;}
.ls4_c00453{letter-spacing:-1.066667pt;}
.ls7_c00453{letter-spacing:-0.853333pt;}
.ls2_c00453{letter-spacing:-0.533333pt;}
.ls3_c00453{letter-spacing:-0.373333pt;}
.ls0_c00453{letter-spacing:-0.256000pt;}
.ls8_c00453{letter-spacing:-0.213333pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls5_c00453{letter-spacing:0.160000pt;}
.wsf_c00453{word-spacing:-5.066667pt;}
.ws14_c00453{word-spacing:-3.626667pt;}
.ws15_c00453{word-spacing:-3.573333pt;}
.ws16_c00453{word-spacing:-3.466667pt;}
.ws9_c00453{word-spacing:-2.240000pt;}
.wsa_c00453{word-spacing:-2.186667pt;}
.wse_c00453{word-spacing:-1.440000pt;}
.wsc_c00453{word-spacing:-1.333333pt;}
.ws3_c00453{word-spacing:-1.173333pt;}
.wsb_c00453{word-spacing:-0.800000pt;}
.ws12_c00453{word-spacing:-0.640000pt;}
.ws6_c00453{word-spacing:-0.266667pt;}
.ws8_c00453{word-spacing:-0.160000pt;}
.ws1_c00453{word-spacing:0.000000pt;}
.ws13_c00453{word-spacing:0.213333pt;}
.ws4_c00453{word-spacing:0.373333pt;}
.ws2_c00453{word-spacing:0.533333pt;}
.ws10_c00453{word-spacing:0.853333pt;}
.ws5_c00453{word-spacing:1.066667pt;}
.ws17_c00453{word-spacing:3.360000pt;}
.ws7_c00453{word-spacing:5.173333pt;}
.ws11_c00453{word-spacing:9.333333pt;}
.wsd_c00453{word-spacing:10.400000pt;}
.ws0_c00453{word-spacing:1404.881067pt;}
._3_c00453{margin-left:-5.493333pt;}
._8_c00453{margin-left:-4.480000pt;}
._2_c00453{margin-left:-2.858667pt;}
._0_c00453{margin-left:-1.621333pt;}
._1_c00453{width:1.216000pt;}
._7_c00453{width:2.346667pt;}
._4_c00453{width:5.813333pt;}
._5_c00453{width:10.133333pt;}
._9_c00453{width:21.628800pt;}
._6_c00453{width:37.273067pt;}
.fs0_c00453{font-size:42.666667pt;}
.fs1_c00453{font-size:53.333333pt;}
.y0_c00453{bottom:0.000000pt;}
.y4c_c00453{bottom:103.836267pt;}
.y26_c00453{bottom:121.838800pt;}
.y4b_c00453{bottom:121.859867pt;}
.y25_c00453{bottom:145.505467pt;}
.y4a_c00453{bottom:145.526533pt;}
.y24_c00453{bottom:163.513333pt;}
.y49_c00453{bottom:163.526533pt;}
.y23_c00453{bottom:187.180000pt;}
.y48_c00453{bottom:187.193200pt;}
.y22_c00453{bottom:210.846667pt;}
.y47_c00453{bottom:210.859867pt;}
.y21_c00453{bottom:234.513333pt;}
.y46_c00453{bottom:234.526533pt;}
.y20_c00453{bottom:252.529067pt;}
.y45_c00453{bottom:258.193200pt;}
.y1f_c00453{bottom:276.195733pt;}
.y44_c00453{bottom:281.859867pt;}
.y1e_c00453{bottom:299.862400pt;}
.y43_c00453{bottom:305.526533pt;}
.y1d_c00453{bottom:323.529067pt;}
.y42_c00453{bottom:329.193200pt;}
.y1c_c00453{bottom:347.195733pt;}
.y41_c00453{bottom:352.859867pt;}
.y1b_c00453{bottom:365.195733pt;}
.y40_c00453{bottom:370.872933pt;}
.y1a_c00453{bottom:388.862400pt;}
.y3f_c00453{bottom:394.539600pt;}
.y19_c00453{bottom:412.529067pt;}
.y3e_c00453{bottom:418.206267pt;}
.y18_c00453{bottom:430.531733pt;}
.y3d_c00453{bottom:441.872933pt;}
.y17_c00453{bottom:454.198400pt;}
.y3c_c00453{bottom:465.539600pt;}
.y16_c00453{bottom:472.227200pt;}
.y3b_c00453{bottom:489.206267pt;}
.y15_c00453{bottom:495.893867pt;}
.y3a_c00453{bottom:507.224667pt;}
.y14_c00453{bottom:519.560533pt;}
.y39_c00453{bottom:530.891333pt;}
.y13_c00453{bottom:537.560533pt;}
.y38_c00453{bottom:554.558000pt;}
.y12_c00453{bottom:561.227200pt;}
.y37_c00453{bottom:578.224667pt;}
.y11_c00453{bottom:584.893867pt;}
.y36_c00453{bottom:601.891333pt;}
.y10_c00453{bottom:608.560533pt;}
.y35_c00453{bottom:625.558000pt;}
.yf_c00453{bottom:632.227200pt;}
.y34_c00453{bottom:643.558000pt;}
.ye_c00453{bottom:655.893867pt;}
.y33_c00453{bottom:667.224667pt;}
.yd_c00453{bottom:679.560533pt;}
.y32_c00453{bottom:685.224667pt;}
.yc_c00453{bottom:703.227200pt;}
.y31_c00453{bottom:708.891333pt;}
.yb_c00453{bottom:726.893867pt;}
.y30_c00453{bottom:726.909733pt;}
.ya_c00453{bottom:750.560533pt;}
.y2f_c00453{bottom:750.576400pt;}
.y9_c00453{bottom:768.568400pt;}
.y2e_c00453{bottom:774.243067pt;}
.y8_c00453{bottom:792.235067pt;}
.y2d_c00453{bottom:797.909733pt;}
.y7_c00453{bottom:815.901733pt;}
.y2c_c00453{bottom:821.576400pt;}
.y6_c00453{bottom:839.568400pt;}
.y2b_c00453{bottom:839.576400pt;}
.y5_c00453{bottom:857.576400pt;}
.y2a_c00453{bottom:863.243067pt;}
.y4_c00453{bottom:881.243067pt;}
.y29_c00453{bottom:886.909733pt;}
.y3_c00453{bottom:904.909733pt;}
.y28_c00453{bottom:910.576400pt;}
.y2_c00453{bottom:928.576400pt;}
.y27_c00453{bottom:928.585467pt;}
.y1_c00453{bottom:972.089733pt;}
.h2_c00453{height:34.901333pt;}
.h3_c00453{height:43.626667pt;}
.h1_c00453{height:1009.333333pt;}
.h0_c00453{height:1009.338800pt;}
.w0_c00453{width:794.622400pt;}
.w1_c00453{width:794.666667pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:68.980533pt;}
.x2_c00453{left:85.988400pt;}
.x3_c00453{left:386.455067pt;}
.x4_c00453{left:403.468800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.067000;font-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_c00454{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls9_c00454{letter-spacing:-4.200000px;}
.ls6_c00454{letter-spacing:-1.920000px;}
.lsc_c00454{letter-spacing:-1.560000px;}
.ls5_c00454{letter-spacing:-1.500000px;}
.ls8_c00454{letter-spacing:-0.900000px;}
.ls3_c00454{letter-spacing:-0.600000px;}
.lsb_c00454{letter-spacing:-0.540000px;}
.ls4_c00454{letter-spacing:-0.420000px;}
.ls7_c00454{letter-spacing:-0.300000px;}
.ls2_c00454{letter-spacing:-0.240000px;}
.ls1_c00454{letter-spacing:0.000000px;}
.lsa_c00454{letter-spacing:0.180000px;}
.ls0_c00454{letter-spacing:0.480000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-10.896000px;}
.ws21_c00454{word-spacing:-5.160000px;}
.ws2_c00454{word-spacing:-5.040000px;}
.ws3_c00454{word-spacing:-4.980000px;}
.ws12_c00454{word-spacing:-3.540000px;}
.ws11_c00454{word-spacing:-3.180000px;}
.wsc_c00454{word-spacing:-2.160000px;}
.wsd_c00454{word-spacing:-2.100000px;}
.ws1e_c00454{word-spacing:-1.980000px;}
.ws16_c00454{word-spacing:-1.920000px;}
.ws7_c00454{word-spacing:-1.320000px;}
.ws8_c00454{word-spacing:-1.260000px;}
.ws19_c00454{word-spacing:-0.840000px;}
.ws10_c00454{word-spacing:-0.420000px;}
.ws5_c00454{word-spacing:-0.240000px;}
.ws14_c00454{word-spacing:-0.180000px;}
.ws1f_c00454{word-spacing:-0.120000px;}
.ws1_c00454{word-spacing:0.000000px;}
.ws4_c00454{word-spacing:0.240000px;}
.ws15_c00454{word-spacing:0.300000px;}
.wsb_c00454{word-spacing:0.420000px;}
.ws1c_c00454{word-spacing:0.540000px;}
.ws6_c00454{word-spacing:0.600000px;}
.wsa_c00454{word-spacing:0.840000px;}
.ws18_c00454{word-spacing:0.900000px;}
.ws13_c00454{word-spacing:1.500000px;}
.ws20_c00454{word-spacing:1.560000px;}
.ws1b_c00454{word-spacing:2.220000px;}
.ws17_c00454{word-spacing:2.460000px;}
.ws1d_c00454{word-spacing:3.660000px;}
.ws1a_c00454{word-spacing:4.200000px;}
.ws9_c00454{word-spacing:4.800000px;}
.wsf_c00454{word-spacing:8.580000px;}
.wse_c00454{word-spacing:8.640000px;}
._0_c00454{margin-left:-2755.276200px;}
._a_c00454{margin-left:-6.960000px;}
._3_c00454{margin-left:-5.940000px;}
._5_c00454{margin-left:-4.440000px;}
._1_c00454{margin-left:-2.256000px;}
._4_c00454{margin-left:-1.080000px;}
._2_c00454{width:1.008000px;}
._9_c00454{width:2.820000px;}
._6_c00454{width:4.860000px;}
._7_c00454{width:6.879600px;}
._8_c00454{width:9.000000px;}
.fc0_c00454{color:rgb(35,31,32);}
.fs0_c00454{font-size:48.000000px;}
.fs1_c00454{font-size:60.000000px;}
.y0_c00454{bottom:0.000000px;}
.y27_c00454{bottom:116.818650px;}
.y4d_c00454{bottom:135.955500px;}
.y26_c00454{bottom:137.068650px;}
.y4c_c00454{bottom:156.205500px;}
.y25_c00454{bottom:163.693650px;}
.y4b_c00454{bottom:182.830500px;}
.y24_c00454{bottom:183.949650px;}
.y4a_c00454{bottom:209.455500px;}
.y23_c00454{bottom:210.574650px;}
.y49_c00454{bottom:229.717350px;}
.y22_c00454{bottom:237.199650px;}
.y48_c00454{bottom:256.342350px;}
.y21_c00454{bottom:257.479050px;}
.y47_c00454{bottom:282.967350px;}
.y20_c00454{bottom:284.104050px;}
.y46_c00454{bottom:303.217350px;}
.y1f_c00454{bottom:310.729050px;}
.y45_c00454{bottom:329.842350px;}
.y1e_c00454{bottom:337.354050px;}
.y44_c00454{bottom:356.467350px;}
.y1d_c00454{bottom:363.979050px;}
.y43_c00454{bottom:376.746900px;}
.y1c_c00454{bottom:390.604050px;}
.y42_c00454{bottom:403.371900px;}
.y1b_c00454{bottom:410.854050px;}
.y41_c00454{bottom:429.996900px;}
.y1a_c00454{bottom:437.479050px;}
.y40_c00454{bottom:456.621900px;}
.y19_c00454{bottom:464.104050px;}
.y3f_c00454{bottom:483.246900px;}
.y18_c00454{bottom:490.729050px;}
.y3e_c00454{bottom:503.496900px;}
.y17_c00454{bottom:510.979050px;}
.y3d_c00454{bottom:530.121900px;}
.y16_c00454{bottom:537.604050px;}
.y3c_c00454{bottom:556.746900px;}
.y15_c00454{bottom:564.229050px;}
.y3b_c00454{bottom:583.371900px;}
.y14_c00454{bottom:584.496900px;}
.y3a_c00454{bottom:603.621900px;}
.y13_c00454{bottom:611.121900px;}
.y39_c00454{bottom:630.246900px;}
.y12_c00454{bottom:637.746900px;}
.y38_c00454{bottom:650.496900px;}
.y11_c00454{bottom:664.371900px;}
.y37_c00454{bottom:677.121900px;}
.y10_c00454{bottom:690.996900px;}
.y36_c00454{bottom:703.746900px;}
.yf_c00454{bottom:717.621900px;}
.y35_c00454{bottom:723.999750px;}
.ye_c00454{bottom:744.246900px;}
.y34_c00454{bottom:750.624750px;}
.yd_c00454{bottom:764.523450px;}
.y33_c00454{bottom:770.877750px;}
.yc_c00454{bottom:791.148450px;}
.y32_c00454{bottom:797.502750px;}
.yb_c00454{bottom:811.398450px;}
.y31_c00454{bottom:817.755600px;}
.ya_c00454{bottom:838.023450px;}
.y30_c00454{bottom:844.380600px;}
.y9_c00454{bottom:858.273450px;}
.y2f_c00454{bottom:864.658650px;}
.y8_c00454{bottom:884.898450px;}
.y2e_c00454{bottom:891.283650px;}
.y7_c00454{bottom:911.523450px;}
.y2d_c00454{bottom:917.908650px;}
.y6_c00454{bottom:938.148450px;}
.y2c_c00454{bottom:944.533650px;}
.y5_c00454{bottom:964.773450px;}
.y2b_c00454{bottom:964.783650px;}
.y4_c00454{bottom:991.398450px;}
.y2a_c00454{bottom:991.408650px;}
.y3_c00454{bottom:1018.023450px;}
.y29_c00454{bottom:1018.033650px;}
.y2_c00454{bottom:1044.648450px;}
.y28_c00454{bottom:1044.658650px;}
.y1_c00454{bottom:1093.600950px;}
.h2_c00454{height:39.264000px;}
.h3_c00454{height:39.984000px;}
.h4_c00454{height:49.080000px;}
.h1_c00454{height:1135.500000px;}
.h0_c00454{height:1135.506150px;}
.w0_c00454{width:893.950200px;}
.w1_c00454{width:894.000000px;}
.x0_c00454{left:0.000000px;}
.x4_c00454{left:128.626800px;}
.x5_c00454{left:147.751800px;}
.x2_c00454{left:188.061900px;}
.x3_c00454{left:190.513350px;}
.x6_c00454{left:485.770650px;}
.x7_c00454{left:504.910650px;}
.x1_c00454{left:801.905850px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls9_c00454{letter-spacing:-3.733333pt;}
.ls6_c00454{letter-spacing:-1.706667pt;}
.lsc_c00454{letter-spacing:-1.386667pt;}
.ls5_c00454{letter-spacing:-1.333333pt;}
.ls8_c00454{letter-spacing:-0.800000pt;}
.ls3_c00454{letter-spacing:-0.533333pt;}
.lsb_c00454{letter-spacing:-0.480000pt;}
.ls4_c00454{letter-spacing:-0.373333pt;}
.ls7_c00454{letter-spacing:-0.266667pt;}
.ls2_c00454{letter-spacing:-0.213333pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.lsa_c00454{letter-spacing:0.160000pt;}
.ls0_c00454{letter-spacing:0.426667pt;}
.ws0_c00454{word-spacing:-9.685333pt;}
.ws21_c00454{word-spacing:-4.586667pt;}
.ws2_c00454{word-spacing:-4.480000pt;}
.ws3_c00454{word-spacing:-4.426667pt;}
.ws12_c00454{word-spacing:-3.146667pt;}
.ws11_c00454{word-spacing:-2.826667pt;}
.wsc_c00454{word-spacing:-1.920000pt;}
.wsd_c00454{word-spacing:-1.866667pt;}
.ws1e_c00454{word-spacing:-1.760000pt;}
.ws16_c00454{word-spacing:-1.706667pt;}
.ws7_c00454{word-spacing:-1.173333pt;}
.ws8_c00454{word-spacing:-1.120000pt;}
.ws19_c00454{word-spacing:-0.746667pt;}
.ws10_c00454{word-spacing:-0.373333pt;}
.ws5_c00454{word-spacing:-0.213333pt;}
.ws14_c00454{word-spacing:-0.160000pt;}
.ws1f_c00454{word-spacing:-0.106667pt;}
.ws1_c00454{word-spacing:0.000000pt;}
.ws4_c00454{word-spacing:0.213333pt;}
.ws15_c00454{word-spacing:0.266667pt;}
.wsb_c00454{word-spacing:0.373333pt;}
.ws1c_c00454{word-spacing:0.480000pt;}
.ws6_c00454{word-spacing:0.533333pt;}
.wsa_c00454{word-spacing:0.746667pt;}
.ws18_c00454{word-spacing:0.800000pt;}
.ws13_c00454{word-spacing:1.333333pt;}
.ws20_c00454{word-spacing:1.386667pt;}
.ws1b_c00454{word-spacing:1.973333pt;}
.ws17_c00454{word-spacing:2.186667pt;}
.ws1d_c00454{word-spacing:3.253333pt;}
.ws1a_c00454{word-spacing:3.733333pt;}
.ws9_c00454{word-spacing:4.266667pt;}
.wsf_c00454{word-spacing:7.626667pt;}
.wse_c00454{word-spacing:7.680000pt;}
._0_c00454{margin-left:-2449.134400pt;}
._a_c00454{margin-left:-6.186667pt;}
._3_c00454{margin-left:-5.280000pt;}
._5_c00454{margin-left:-3.946667pt;}
._1_c00454{margin-left:-2.005333pt;}
._4_c00454{margin-left:-0.960000pt;}
._2_c00454{width:0.896000pt;}
._9_c00454{width:2.506667pt;}
._6_c00454{width:4.320000pt;}
._7_c00454{width:6.115200pt;}
._8_c00454{width:8.000000pt;}
.fs0_c00454{font-size:42.666667pt;}
.fs1_c00454{font-size:53.333333pt;}
.y0_c00454{bottom:0.000000pt;}
.y27_c00454{bottom:103.838800pt;}
.y4d_c00454{bottom:120.849333pt;}
.y26_c00454{bottom:121.838800pt;}
.y4c_c00454{bottom:138.849333pt;}
.y25_c00454{bottom:145.505467pt;}
.y4b_c00454{bottom:162.516000pt;}
.y24_c00454{bottom:163.510800pt;}
.y4a_c00454{bottom:186.182667pt;}
.y23_c00454{bottom:187.177467pt;}
.y49_c00454{bottom:204.193200pt;}
.y22_c00454{bottom:210.844133pt;}
.y48_c00454{bottom:227.859867pt;}
.y21_c00454{bottom:228.870267pt;}
.y47_c00454{bottom:251.526533pt;}
.y20_c00454{bottom:252.536933pt;}
.y46_c00454{bottom:269.526533pt;}
.y1f_c00454{bottom:276.203600pt;}
.y45_c00454{bottom:293.193200pt;}
.y1e_c00454{bottom:299.870267pt;}
.y44_c00454{bottom:316.859867pt;}
.y1d_c00454{bottom:323.536933pt;}
.y43_c00454{bottom:334.886133pt;}
.y1c_c00454{bottom:347.203600pt;}
.y42_c00454{bottom:358.552800pt;}
.y1b_c00454{bottom:365.203600pt;}
.y41_c00454{bottom:382.219467pt;}
.y1a_c00454{bottom:388.870267pt;}
.y40_c00454{bottom:405.886133pt;}
.y19_c00454{bottom:412.536933pt;}
.y3f_c00454{bottom:429.552800pt;}
.y18_c00454{bottom:436.203600pt;}
.y3e_c00454{bottom:447.552800pt;}
.y17_c00454{bottom:454.203600pt;}
.y3d_c00454{bottom:471.219467pt;}
.y16_c00454{bottom:477.870267pt;}
.y3c_c00454{bottom:494.886133pt;}
.y15_c00454{bottom:501.536933pt;}
.y3b_c00454{bottom:518.552800pt;}
.y14_c00454{bottom:519.552800pt;}
.y3a_c00454{bottom:536.552800pt;}
.y13_c00454{bottom:543.219467pt;}
.y39_c00454{bottom:560.219467pt;}
.y12_c00454{bottom:566.886133pt;}
.y38_c00454{bottom:578.219467pt;}
.y11_c00454{bottom:590.552800pt;}
.y37_c00454{bottom:601.886133pt;}
.y10_c00454{bottom:614.219467pt;}
.y36_c00454{bottom:625.552800pt;}
.yf_c00454{bottom:637.886133pt;}
.y35_c00454{bottom:643.555333pt;}
.ye_c00454{bottom:661.552800pt;}
.y34_c00454{bottom:667.222000pt;}
.yd_c00454{bottom:679.576400pt;}
.y33_c00454{bottom:685.224667pt;}
.yc_c00454{bottom:703.243067pt;}
.y32_c00454{bottom:708.891333pt;}
.yb_c00454{bottom:721.243067pt;}
.y31_c00454{bottom:726.893867pt;}
.ya_c00454{bottom:744.909733pt;}
.y30_c00454{bottom:750.560533pt;}
.y9_c00454{bottom:762.909733pt;}
.y2f_c00454{bottom:768.585467pt;}
.y8_c00454{bottom:786.576400pt;}
.y2e_c00454{bottom:792.252133pt;}
.y7_c00454{bottom:810.243067pt;}
.y2d_c00454{bottom:815.918800pt;}
.y6_c00454{bottom:833.909733pt;}
.y2c_c00454{bottom:839.585467pt;}
.y5_c00454{bottom:857.576400pt;}
.y2b_c00454{bottom:857.585467pt;}
.y4_c00454{bottom:881.243067pt;}
.y2a_c00454{bottom:881.252133pt;}
.y3_c00454{bottom:904.909733pt;}
.y29_c00454{bottom:904.918800pt;}
.y2_c00454{bottom:928.576400pt;}
.y28_c00454{bottom:928.585467pt;}
.y1_c00454{bottom:972.089733pt;}
.h2_c00454{height:34.901333pt;}
.h3_c00454{height:35.541333pt;}
.h4_c00454{height:43.626667pt;}
.h1_c00454{height:1009.333333pt;}
.h0_c00454{height:1009.338800pt;}
.w0_c00454{width:794.622400pt;}
.w1_c00454{width:794.666667pt;}
.x0_c00454{left:0.000000pt;}
.x4_c00454{left:114.334933pt;}
.x5_c00454{left:131.334933pt;}
.x2_c00454{left:167.166133pt;}
.x3_c00454{left:169.345200pt;}
.x6_c00454{left:431.796133pt;}
.x7_c00454{left:448.809467pt;}
.x1_c00454{left:712.805200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls2_c00455{letter-spacing:-1.500000px;}
.ls6_c00455{letter-spacing:-1.440000px;}
.ls3_c00455{letter-spacing:-1.200000px;}
.ls1_c00455{letter-spacing:-0.600000px;}
.ls4_c00455{letter-spacing:-0.420000px;}
.ls8_c00455{letter-spacing:-0.300000px;}
.ls5_c00455{letter-spacing:-0.240000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.ls7_c00455{letter-spacing:0.180000px;}
.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;}
}
.ws3_c00455{word-spacing:-4.800000px;}
.ws4_c00455{word-spacing:-4.740000px;}
.ws6_c00455{word-spacing:-4.620000px;}
.ws8_c00455{word-spacing:-4.440000px;}
.wsf_c00455{word-spacing:-4.380000px;}
.wsc_c00455{word-spacing:-3.840000px;}
.wsd_c00455{word-spacing:-3.780000px;}
.ws16_c00455{word-spacing:-3.000000px;}
.ws11_c00455{word-spacing:-2.580000px;}
.ws15_c00455{word-spacing:-1.800000px;}
.ws13_c00455{word-spacing:-1.380000px;}
.ws18_c00455{word-spacing:-0.900000px;}
.ws10_c00455{word-spacing:-0.240000px;}
.ws17_c00455{word-spacing:-0.180000px;}
.ws1_c00455{word-spacing:0.000000px;}
.ws12_c00455{word-spacing:0.240000px;}
.ws19_c00455{word-spacing:0.300000px;}
.wse_c00455{word-spacing:0.420000px;}
.ws2_c00455{word-spacing:0.600000px;}
.ws9_c00455{word-spacing:1.200000px;}
.ws5_c00455{word-spacing:1.500000px;}
.ws7_c00455{word-spacing:1.620000px;}
.wsb_c00455{word-spacing:6.780000px;}
.wsa_c00455{word-spacing:6.840000px;}
.ws14_c00455{word-spacing:20.400000px;}
.ws0_c00455{word-spacing:1577.707200px;}
._6_c00455{margin-left:-7.080000px;}
._3_c00455{margin-left:-5.700000px;}
._5_c00455{margin-left:-4.392000px;}
._4_c00455{margin-left:-3.180000px;}
._0_c00455{margin-left:-2.112000px;}
._1_c00455{margin-left:-1.104000px;}
._2_c00455{width:1.140000px;}
._8_c00455{width:4.353000px;}
._9_c00455{width:5.940000px;}
._7_c00455{width:15.052200px;}
._b_c00455{width:21.060000px;}
._c_c00455{width:39.727200px;}
._a_c00455{width:67.148400px;}
.fc0_c00455{color:rgb(35,31,32);}
.fs0_c00455{font-size:48.000000px;}
.fs1_c00455{font-size:60.000000px;}
.y0_c00455{bottom:0.000000px;}
.y4d_c00455{bottom:116.818650px;}
.y27_c00455{bottom:123.193650px;}
.y4c_c00455{bottom:143.443650px;}
.y26_c00455{bottom:143.476200px;}
.y4b_c00455{bottom:163.723200px;}
.y25_c00455{bottom:170.101200px;}
.y4a_c00455{bottom:190.348200px;}
.y24_c00455{bottom:196.726200px;}
.y49_c00455{bottom:210.598200px;}
.y23_c00455{bottom:223.351200px;}
.y48_c00455{bottom:237.223200px;}
.y22_c00455{bottom:249.976200px;}
.y47_c00455{bottom:263.848200px;}
.y21_c00455{bottom:276.601200px;}
.y46_c00455{bottom:284.098200px;}
.y20_c00455{bottom:303.226200px;}
.y45_c00455{bottom:310.723200px;}
.y1f_c00455{bottom:329.851200px;}
.y44_c00455{bottom:337.348200px;}
.y1e_c00455{bottom:350.101200px;}
.y43_c00455{bottom:357.598200px;}
.y1d_c00455{bottom:376.726200px;}
.y42_c00455{bottom:384.223200px;}
.y1c_c00455{bottom:403.351200px;}
.y41_c00455{bottom:410.848200px;}
.y1b_c00455{bottom:429.976200px;}
.y40_c00455{bottom:437.473200px;}
.y1a_c00455{bottom:456.601200px;}
.y3f_c00455{bottom:464.098200px;}
.y19_c00455{bottom:476.854050px;}
.y3e_c00455{bottom:490.723200px;}
.y18_c00455{bottom:503.479050px;}
.y3d_c00455{bottom:510.987900px;}
.y17_c00455{bottom:523.735050px;}
.y3c_c00455{bottom:537.612900px;}
.y16_c00455{bottom:550.360050px;}
.y3b_c00455{bottom:564.237900px;}
.y15_c00455{bottom:576.985050px;}
.y3a_c00455{bottom:590.862900px;}
.y14_c00455{bottom:597.237900px;}
.y39_c00455{bottom:617.487900px;}
.y13_c00455{bottom:623.862900px;}
.y38_c00455{bottom:644.112900px;}
.y12_c00455{bottom:644.136600px;}
.y37_c00455{bottom:664.371900px;}
.y11_c00455{bottom:670.761600px;}
.y36_c00455{bottom:690.996900px;}
.y10_c00455{bottom:691.011600px;}
.y35_c00455{bottom:717.621900px;}
.yf_c00455{bottom:717.636600px;}
.y34_c00455{bottom:744.246900px;}
.ye_c00455{bottom:744.261600px;}
.y33_c00455{bottom:764.499750px;}
.yd_c00455{bottom:770.886600px;}
.y32_c00455{bottom:791.124750px;}
.yc_c00455{bottom:797.511600px;}
.y31_c00455{bottom:811.383600px;}
.yb_c00455{bottom:824.136600px;}
.y30_c00455{bottom:838.008600px;}
.ya_c00455{bottom:850.761600px;}
.y2f_c00455{bottom:864.633600px;}
.y9_c00455{bottom:877.386600px;}
.y2e_c00455{bottom:891.258600px;}
.y8_c00455{bottom:897.642600px;}
.y2d_c00455{bottom:911.518650px;}
.y7_c00455{bottom:924.267600px;}
.y2c_c00455{bottom:938.143650px;}
.y6_c00455{bottom:950.892600px;}
.y2b_c00455{bottom:964.768650px;}
.y5_c00455{bottom:971.145600px;}
.y2a_c00455{bottom:991.393650px;}
.y4_c00455{bottom:997.770600px;}
.y29_c00455{bottom:1018.018650px;}
.y3_c00455{bottom:1018.023450px;}
.y28_c00455{bottom:1044.643650px;}
.y2_c00455{bottom:1044.648450px;}
.y1_c00455{bottom:1093.600950px;}
.h2_c00455{height:39.264000px;}
.h3_c00455{height:49.080000px;}
.h1_c00455{height:1135.500000px;}
.h0_c00455{height:1135.506150px;}
.w0_c00455{width:893.950200px;}
.w1_c00455{width:894.000000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:77.603100px;}
.x2_c00455{left:96.736950px;}
.x3_c00455{left:439.022100px;}
.x4_c00455{left:458.154300px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls2_c00455{letter-spacing:-1.333333pt;}
.ls6_c00455{letter-spacing:-1.280000pt;}
.ls3_c00455{letter-spacing:-1.066667pt;}
.ls1_c00455{letter-spacing:-0.533333pt;}
.ls4_c00455{letter-spacing:-0.373333pt;}
.ls8_c00455{letter-spacing:-0.266667pt;}
.ls5_c00455{letter-spacing:-0.213333pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ls7_c00455{letter-spacing:0.160000pt;}
.ws3_c00455{word-spacing:-4.266667pt;}
.ws4_c00455{word-spacing:-4.213333pt;}
.ws6_c00455{word-spacing:-4.106667pt;}
.ws8_c00455{word-spacing:-3.946667pt;}
.wsf_c00455{word-spacing:-3.893333pt;}
.wsc_c00455{word-spacing:-3.413333pt;}
.wsd_c00455{word-spacing:-3.360000pt;}
.ws16_c00455{word-spacing:-2.666667pt;}
.ws11_c00455{word-spacing:-2.293333pt;}
.ws15_c00455{word-spacing:-1.600000pt;}
.ws13_c00455{word-spacing:-1.226667pt;}
.ws18_c00455{word-spacing:-0.800000pt;}
.ws10_c00455{word-spacing:-0.213333pt;}
.ws17_c00455{word-spacing:-0.160000pt;}
.ws1_c00455{word-spacing:0.000000pt;}
.ws12_c00455{word-spacing:0.213333pt;}
.ws19_c00455{word-spacing:0.266667pt;}
.wse_c00455{word-spacing:0.373333pt;}
.ws2_c00455{word-spacing:0.533333pt;}
.ws9_c00455{word-spacing:1.066667pt;}
.ws5_c00455{word-spacing:1.333333pt;}
.ws7_c00455{word-spacing:1.440000pt;}
.wsb_c00455{word-spacing:6.026667pt;}
.wsa_c00455{word-spacing:6.080000pt;}
.ws14_c00455{word-spacing:18.133333pt;}
.ws0_c00455{word-spacing:1402.406400pt;}
._6_c00455{margin-left:-6.293333pt;}
._3_c00455{margin-left:-5.066667pt;}
._5_c00455{margin-left:-3.904000pt;}
._4_c00455{margin-left:-2.826667pt;}
._0_c00455{margin-left:-1.877333pt;}
._1_c00455{margin-left:-0.981333pt;}
._2_c00455{width:1.013333pt;}
._8_c00455{width:3.869333pt;}
._9_c00455{width:5.280000pt;}
._7_c00455{width:13.379733pt;}
._b_c00455{width:18.720000pt;}
._c_c00455{width:35.313067pt;}
._a_c00455{width:59.687467pt;}
.fs0_c00455{font-size:42.666667pt;}
.fs1_c00455{font-size:53.333333pt;}
.y0_c00455{bottom:0.000000pt;}
.y4d_c00455{bottom:103.838800pt;}
.y27_c00455{bottom:109.505467pt;}
.y4c_c00455{bottom:127.505467pt;}
.y26_c00455{bottom:127.534400pt;}
.y4b_c00455{bottom:145.531733pt;}
.y25_c00455{bottom:151.201067pt;}
.y4a_c00455{bottom:169.198400pt;}
.y24_c00455{bottom:174.867733pt;}
.y49_c00455{bottom:187.198400pt;}
.y23_c00455{bottom:198.534400pt;}
.y48_c00455{bottom:210.865067pt;}
.y22_c00455{bottom:222.201067pt;}
.y47_c00455{bottom:234.531733pt;}
.y21_c00455{bottom:245.867733pt;}
.y46_c00455{bottom:252.531733pt;}
.y20_c00455{bottom:269.534400pt;}
.y45_c00455{bottom:276.198400pt;}
.y1f_c00455{bottom:293.201067pt;}
.y44_c00455{bottom:299.865067pt;}
.y1e_c00455{bottom:311.201067pt;}
.y43_c00455{bottom:317.865067pt;}
.y1d_c00455{bottom:334.867733pt;}
.y42_c00455{bottom:341.531733pt;}
.y1c_c00455{bottom:358.534400pt;}
.y41_c00455{bottom:365.198400pt;}
.y1b_c00455{bottom:382.201067pt;}
.y40_c00455{bottom:388.865067pt;}
.y1a_c00455{bottom:405.867733pt;}
.y3f_c00455{bottom:412.531733pt;}
.y19_c00455{bottom:423.870267pt;}
.y3e_c00455{bottom:436.198400pt;}
.y18_c00455{bottom:447.536933pt;}
.y3d_c00455{bottom:454.211467pt;}
.y17_c00455{bottom:465.542267pt;}
.y3c_c00455{bottom:477.878133pt;}
.y16_c00455{bottom:489.208933pt;}
.y3b_c00455{bottom:501.544800pt;}
.y15_c00455{bottom:512.875600pt;}
.y3a_c00455{bottom:525.211467pt;}
.y14_c00455{bottom:530.878133pt;}
.y39_c00455{bottom:548.878133pt;}
.y13_c00455{bottom:554.544800pt;}
.y38_c00455{bottom:572.544800pt;}
.y12_c00455{bottom:572.565867pt;}
.y37_c00455{bottom:590.552800pt;}
.y11_c00455{bottom:596.232533pt;}
.y36_c00455{bottom:614.219467pt;}
.y10_c00455{bottom:614.232533pt;}
.y35_c00455{bottom:637.886133pt;}
.yf_c00455{bottom:637.899200pt;}
.y34_c00455{bottom:661.552800pt;}
.ye_c00455{bottom:661.565867pt;}
.y33_c00455{bottom:679.555333pt;}
.yd_c00455{bottom:685.232533pt;}
.y32_c00455{bottom:703.222000pt;}
.yc_c00455{bottom:708.899200pt;}
.y31_c00455{bottom:721.229867pt;}
.yb_c00455{bottom:732.565867pt;}
.y30_c00455{bottom:744.896533pt;}
.ya_c00455{bottom:756.232533pt;}
.y2f_c00455{bottom:768.563200pt;}
.y9_c00455{bottom:779.899200pt;}
.y2e_c00455{bottom:792.229867pt;}
.y8_c00455{bottom:797.904533pt;}
.y2d_c00455{bottom:810.238800pt;}
.y7_c00455{bottom:821.571200pt;}
.y2c_c00455{bottom:833.905467pt;}
.y6_c00455{bottom:845.237867pt;}
.y2b_c00455{bottom:857.572133pt;}
.y5_c00455{bottom:863.240533pt;}
.y2a_c00455{bottom:881.238800pt;}
.y4_c00455{bottom:886.907200pt;}
.y29_c00455{bottom:904.905467pt;}
.y3_c00455{bottom:904.909733pt;}
.y28_c00455{bottom:928.572133pt;}
.y2_c00455{bottom:928.576400pt;}
.y1_c00455{bottom:972.089733pt;}
.h2_c00455{height:34.901333pt;}
.h3_c00455{height:43.626667pt;}
.h1_c00455{height:1009.333333pt;}
.h0_c00455{height:1009.338800pt;}
.w0_c00455{width:794.622400pt;}
.w1_c00455{width:794.666667pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:68.980533pt;}
.x2_c00455{left:85.988400pt;}
.x3_c00455{left:390.241867pt;}
.x4_c00455{left:407.248267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:1.067000;font-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_c00456{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls4_c00456{letter-spacing:-1.200000px;}
.ls2_c00456{letter-spacing:-1.140000px;}
.ls8_c00456{letter-spacing:-0.960000px;}
.ls7_c00456{letter-spacing:-0.900000px;}
.ls3_c00456{letter-spacing:-0.600000px;}
.ls5_c00456{letter-spacing:-0.420000px;}
.ls6_c00456{letter-spacing:-0.240000px;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.480000px;}
.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.896000px;}
.ws20_c00456{word-spacing:-5.280000px;}
.ws21_c00456{word-spacing:-5.220000px;}
.ws1e_c00456{word-spacing:-4.740000px;}
.ws18_c00456{word-spacing:-4.260000px;}
.ws19_c00456{word-spacing:-4.200000px;}
.ws4_c00456{word-spacing:-4.140000px;}
.ws5_c00456{word-spacing:-4.080000px;}
.ws13_c00456{word-spacing:-3.900000px;}
.ws14_c00456{word-spacing:-3.840000px;}
.ws1c_c00456{word-spacing:-3.180000px;}
.ws1d_c00456{word-spacing:-3.120000px;}
.ws16_c00456{word-spacing:-3.000000px;}
.wsb_c00456{word-spacing:-2.940000px;}
.wsc_c00456{word-spacing:-2.880000px;}
.ws12_c00456{word-spacing:-2.820000px;}
.ws15_c00456{word-spacing:-2.760000px;}
.ws1b_c00456{word-spacing:-1.500000px;}
.ws7_c00456{word-spacing:-1.440000px;}
.ws1f_c00456{word-spacing:-0.960000px;}
.wsd_c00456{word-spacing:-0.900000px;}
.wse_c00456{word-spacing:-0.360000px;}
.ws1_c00456{word-spacing:0.000000px;}
.wsf_c00456{word-spacing:0.240000px;}
.ws8_c00456{word-spacing:0.420000px;}
.ws3_c00456{word-spacing:0.600000px;}
.ws17_c00456{word-spacing:0.840000px;}
.ws1a_c00456{word-spacing:0.900000px;}
.ws22_c00456{word-spacing:0.960000px;}
.ws2_c00456{word-spacing:1.140000px;}
.ws6_c00456{word-spacing:1.200000px;}
.ws11_c00456{word-spacing:5.940000px;}
.ws10_c00456{word-spacing:6.000000px;}
.wsa_c00456{word-spacing:6.480000px;}
.ws9_c00456{word-spacing:6.540000px;}
._0_c00456{margin-left:-2755.275600px;}
._5_c00456{margin-left:-5.928000px;}
._b_c00456{margin-left:-4.812000px;}
._6_c00456{margin-left:-3.648000px;}
._1_c00456{margin-left:-2.256000px;}
._3_c00456{margin-left:-1.188000px;}
._2_c00456{width:1.008000px;}
._9_c00456{width:2.040000px;}
._a_c00456{width:6.132000px;}
._7_c00456{width:7.248000px;}
._8_c00456{width:15.903000px;}
._c_c00456{width:35.215800px;}
._4_c00456{width:38.824800px;}
.fc0_c00456{color:rgb(35,31,32);}
.fs0_c00456{font-size:48.000000px;}
.fs1_c00456{font-size:60.000000px;}
.y0_c00456{bottom:0.000000px;}
.y27_c00456{bottom:129.574650px;}
.y4c_c00456{bottom:130.687800px;}
.y26_c00456{bottom:149.824650px;}
.y4b_c00456{bottom:150.970200px;}
.y25_c00456{bottom:176.449650px;}
.y4a_c00456{bottom:177.595200px;}
.y24_c00456{bottom:196.711350px;}
.y49_c00456{bottom:204.220200px;}
.y23_c00456{bottom:223.336350px;}
.y48_c00456{bottom:230.845200px;}
.y22_c00456{bottom:249.961350px;}
.y47_c00456{bottom:257.470200px;}
.y21_c00456{bottom:276.586350px;}
.y46_c00456{bottom:284.095200px;}
.y20_c00456{bottom:303.211350px;}
.y45_c00456{bottom:310.720200px;}
.y1f_c00456{bottom:323.470200px;}
.y44_c00456{bottom:337.345200px;}
.y1e_c00456{bottom:350.095200px;}
.y43_c00456{bottom:363.970200px;}
.y1d_c00456{bottom:376.720200px;}
.y42_c00456{bottom:390.595200px;}
.y1c_c00456{bottom:403.345200px;}
.y41_c00456{bottom:417.220200px;}
.y1b_c00456{bottom:423.601200px;}
.y40_c00456{bottom:443.845200px;}
.y1a_c00456{bottom:450.226200px;}
.y3f_c00456{bottom:464.121900px;}
.y19_c00456{bottom:476.851200px;}
.y3e_c00456{bottom:490.746900px;}
.y18_c00456{bottom:497.110050px;}
.y3d_c00456{bottom:517.371900px;}
.y17_c00456{bottom:523.735050px;}
.y3c_c00456{bottom:543.996900px;}
.y16_c00456{bottom:550.360050px;}
.y3b_c00456{bottom:570.621900px;}
.y15_c00456{bottom:576.985050px;}
.y14_c00456{bottom:597.243900px;}
.y3a_c00456{bottom:597.246900px;}
.y13_c00456{bottom:623.868900px;}
.y39_c00456{bottom:623.871900px;}
.y12_c00456{bottom:650.493900px;}
.y38_c00456{bottom:650.496900px;}
.y11_c00456{bottom:670.743900px;}
.y37_c00456{bottom:677.121900px;}
.y10_c00456{bottom:697.368900px;}
.y36_c00456{bottom:697.371900px;}
.yf_c00456{bottom:717.642600px;}
.y35_c00456{bottom:723.996900px;}
.y34_c00456{bottom:744.255600px;}
.ye_c00456{bottom:744.267600px;}
.y33_c00456{bottom:770.880600px;}
.yd_c00456{bottom:770.892600px;}
.y32_c00456{bottom:791.130600px;}
.yc_c00456{bottom:797.517600px;}
.y31_c00456{bottom:817.755600px;}
.yb_c00456{bottom:824.142600px;}
.y30_c00456{bottom:844.380600px;}
.ya_c00456{bottom:850.767600px;}
.y2f_c00456{bottom:864.639450px;}
.y9_c00456{bottom:877.392600px;}
.y2e_c00456{bottom:891.264450px;}
.y8_c00456{bottom:904.017600px;}
.y2d_c00456{bottom:917.889450px;}
.y7_c00456{bottom:930.642600px;}
.y2c_c00456{bottom:944.514450px;}
.y6_c00456{bottom:950.895600px;}
.y2b_c00456{bottom:964.774650px;}
.y5_c00456{bottom:977.520600px;}
.y2a_c00456{bottom:991.399650px;}
.y4_c00456{bottom:997.773450px;}
.y29_c00456{bottom:1018.024650px;}
.y3_c00456{bottom:1024.398450px;}
.y2_c00456{bottom:1044.648450px;}
.y28_c00456{bottom:1044.649650px;}
.y1_c00456{bottom:1093.600950px;}
.h2_c00456{height:39.264000px;}
.h3_c00456{height:39.984000px;}
.h4_c00456{height:49.080000px;}
.h1_c00456{height:1135.500000px;}
.h0_c00456{height:1135.506150px;}
.w0_c00456{width:893.950200px;}
.w1_c00456{width:894.000000px;}
.x0_c00456{left:0.000000px;}
.x4_c00456{left:128.626800px;}
.x5_c00456{left:147.760650px;}
.x2_c00456{left:188.061900px;}
.x3_c00456{left:190.513350px;}
.x6_c00456{left:490.045500px;}
.x7_c00456{left:509.178000px;}
.x1_c00456{left:801.941700px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls4_c00456{letter-spacing:-1.066667pt;}
.ls2_c00456{letter-spacing:-1.013333pt;}
.ls8_c00456{letter-spacing:-0.853333pt;}
.ls7_c00456{letter-spacing:-0.800000pt;}
.ls3_c00456{letter-spacing:-0.533333pt;}
.ls5_c00456{letter-spacing:-0.373333pt;}
.ls6_c00456{letter-spacing:-0.213333pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.426667pt;}
.ws0_c00456{word-spacing:-9.685333pt;}
.ws20_c00456{word-spacing:-4.693333pt;}
.ws21_c00456{word-spacing:-4.640000pt;}
.ws1e_c00456{word-spacing:-4.213333pt;}
.ws18_c00456{word-spacing:-3.786667pt;}
.ws19_c00456{word-spacing:-3.733333pt;}
.ws4_c00456{word-spacing:-3.680000pt;}
.ws5_c00456{word-spacing:-3.626667pt;}
.ws13_c00456{word-spacing:-3.466667pt;}
.ws14_c00456{word-spacing:-3.413333pt;}
.ws1c_c00456{word-spacing:-2.826667pt;}
.ws1d_c00456{word-spacing:-2.773333pt;}
.ws16_c00456{word-spacing:-2.666667pt;}
.wsb_c00456{word-spacing:-2.613333pt;}
.wsc_c00456{word-spacing:-2.560000pt;}
.ws12_c00456{word-spacing:-2.506667pt;}
.ws15_c00456{word-spacing:-2.453333pt;}
.ws1b_c00456{word-spacing:-1.333333pt;}
.ws7_c00456{word-spacing:-1.280000pt;}
.ws1f_c00456{word-spacing:-0.853333pt;}
.wsd_c00456{word-spacing:-0.800000pt;}
.wse_c00456{word-spacing:-0.320000pt;}
.ws1_c00456{word-spacing:0.000000pt;}
.wsf_c00456{word-spacing:0.213333pt;}
.ws8_c00456{word-spacing:0.373333pt;}
.ws3_c00456{word-spacing:0.533333pt;}
.ws17_c00456{word-spacing:0.746667pt;}
.ws1a_c00456{word-spacing:0.800000pt;}
.ws22_c00456{word-spacing:0.853333pt;}
.ws2_c00456{word-spacing:1.013333pt;}
.ws6_c00456{word-spacing:1.066667pt;}
.ws11_c00456{word-spacing:5.280000pt;}
.ws10_c00456{word-spacing:5.333333pt;}
.wsa_c00456{word-spacing:5.760000pt;}
.ws9_c00456{word-spacing:5.813333pt;}
._0_c00456{margin-left:-2449.133867pt;}
._5_c00456{margin-left:-5.269333pt;}
._b_c00456{margin-left:-4.277333pt;}
._6_c00456{margin-left:-3.242667pt;}
._1_c00456{margin-left:-2.005333pt;}
._3_c00456{margin-left:-1.056000pt;}
._2_c00456{width:0.896000pt;}
._9_c00456{width:1.813333pt;}
._a_c00456{width:5.450667pt;}
._7_c00456{width:6.442667pt;}
._8_c00456{width:14.136000pt;}
._c_c00456{width:31.302933pt;}
._4_c00456{width:34.510933pt;}
.fs0_c00456{font-size:42.666667pt;}
.fs1_c00456{font-size:53.333333pt;}
.y0_c00456{bottom:0.000000pt;}
.y27_c00456{bottom:115.177467pt;}
.y4c_c00456{bottom:116.166933pt;}
.y26_c00456{bottom:133.177467pt;}
.y4b_c00456{bottom:134.195733pt;}
.y25_c00456{bottom:156.844133pt;}
.y4a_c00456{bottom:157.862400pt;}
.y24_c00456{bottom:174.854533pt;}
.y49_c00456{bottom:181.529067pt;}
.y23_c00456{bottom:198.521200pt;}
.y48_c00456{bottom:205.195733pt;}
.y22_c00456{bottom:222.187867pt;}
.y47_c00456{bottom:228.862400pt;}
.y21_c00456{bottom:245.854533pt;}
.y46_c00456{bottom:252.529067pt;}
.y20_c00456{bottom:269.521200pt;}
.y45_c00456{bottom:276.195733pt;}
.y1f_c00456{bottom:287.529067pt;}
.y44_c00456{bottom:299.862400pt;}
.y1e_c00456{bottom:311.195733pt;}
.y43_c00456{bottom:323.529067pt;}
.y1d_c00456{bottom:334.862400pt;}
.y42_c00456{bottom:347.195733pt;}
.y1c_c00456{bottom:358.529067pt;}
.y41_c00456{bottom:370.862400pt;}
.y1b_c00456{bottom:376.534400pt;}
.y40_c00456{bottom:394.529067pt;}
.y1a_c00456{bottom:400.201067pt;}
.y3f_c00456{bottom:412.552800pt;}
.y19_c00456{bottom:423.867733pt;}
.y3e_c00456{bottom:436.219467pt;}
.y18_c00456{bottom:441.875600pt;}
.y3d_c00456{bottom:459.886133pt;}
.y17_c00456{bottom:465.542267pt;}
.y3c_c00456{bottom:483.552800pt;}
.y16_c00456{bottom:489.208933pt;}
.y3b_c00456{bottom:507.219467pt;}
.y15_c00456{bottom:512.875600pt;}
.y14_c00456{bottom:530.883467pt;}
.y3a_c00456{bottom:530.886133pt;}
.y13_c00456{bottom:554.550133pt;}
.y39_c00456{bottom:554.552800pt;}
.y12_c00456{bottom:578.216800pt;}
.y38_c00456{bottom:578.219467pt;}
.y11_c00456{bottom:596.216800pt;}
.y37_c00456{bottom:601.886133pt;}
.y10_c00456{bottom:619.883467pt;}
.y36_c00456{bottom:619.886133pt;}
.yf_c00456{bottom:637.904533pt;}
.y35_c00456{bottom:643.552800pt;}
.y34_c00456{bottom:661.560533pt;}
.ye_c00456{bottom:661.571200pt;}
.y33_c00456{bottom:685.227200pt;}
.yd_c00456{bottom:685.237867pt;}
.y32_c00456{bottom:703.227200pt;}
.yc_c00456{bottom:708.904533pt;}
.y31_c00456{bottom:726.893867pt;}
.yb_c00456{bottom:732.571200pt;}
.y30_c00456{bottom:750.560533pt;}
.ya_c00456{bottom:756.237867pt;}
.y2f_c00456{bottom:768.568400pt;}
.y9_c00456{bottom:779.904533pt;}
.y2e_c00456{bottom:792.235067pt;}
.y8_c00456{bottom:803.571200pt;}
.y2d_c00456{bottom:815.901733pt;}
.y7_c00456{bottom:827.237867pt;}
.y2c_c00456{bottom:839.568400pt;}
.y6_c00456{bottom:845.240533pt;}
.y2b_c00456{bottom:857.577467pt;}
.y5_c00456{bottom:868.907200pt;}
.y2a_c00456{bottom:881.244133pt;}
.y4_c00456{bottom:886.909733pt;}
.y29_c00456{bottom:904.910800pt;}
.y3_c00456{bottom:910.576400pt;}
.y2_c00456{bottom:928.576400pt;}
.y28_c00456{bottom:928.577467pt;}
.y1_c00456{bottom:972.089733pt;}
.h2_c00456{height:34.901333pt;}
.h3_c00456{height:35.541333pt;}
.h4_c00456{height:43.626667pt;}
.h1_c00456{height:1009.333333pt;}
.h0_c00456{height:1009.338800pt;}
.w0_c00456{width:794.622400pt;}
.w1_c00456{width:794.666667pt;}
.x0_c00456{left:0.000000pt;}
.x4_c00456{left:114.334933pt;}
.x5_c00456{left:131.342800pt;}
.x2_c00456{left:167.166133pt;}
.x3_c00456{left:169.345200pt;}
.x6_c00456{left:435.596000pt;}
.x7_c00456{left:452.602667pt;}
.x1_c00456{left:712.837067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.lsc_c00457{letter-spacing:-1.500000px;}
.ls9_c00457{letter-spacing:-1.320000px;}
.ls4_c00457{letter-spacing:-1.200000px;}
.lsb_c00457{letter-spacing:-0.960000px;}
.ls8_c00457{letter-spacing:-0.900000px;}
.ls7_c00457{letter-spacing:-0.600000px;}
.lsa_c00457{letter-spacing:-0.420000px;}
.ls5_c00457{letter-spacing:-0.300000px;}
.ls2_c00457{letter-spacing:-0.240000px;}
.ls0_c00457{letter-spacing:-0.192000px;}
.ls6_c00457{letter-spacing:-0.120000px;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls3_c00457{letter-spacing:0.180000px;}
.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;}
}
.wsb_c00457{word-spacing:-5.340000px;}
.wsa_c00457{word-spacing:-5.100000px;}
.ws18_c00457{word-spacing:-4.860000px;}
.ws19_c00457{word-spacing:-4.800000px;}
.ws1c_c00457{word-spacing:-4.440000px;}
.ws14_c00457{word-spacing:-4.020000px;}
.ws24_c00457{word-spacing:-3.780000px;}
.ws25_c00457{word-spacing:-3.720000px;}
.ws10_c00457{word-spacing:-3.060000px;}
.ws21_c00457{word-spacing:-2.880000px;}
.ws22_c00457{word-spacing:-2.820000px;}
.ws17_c00457{word-spacing:-2.640000px;}
.ws20_c00457{word-spacing:-2.520000px;}
.ws16_c00457{word-spacing:-2.280000px;}
.ws1b_c00457{word-spacing:-2.160000px;}
.ws1e_c00457{word-spacing:-1.980000px;}
.ws13_c00457{word-spacing:-1.860000px;}
.ws1a_c00457{word-spacing:-1.740000px;}
.ws6_c00457{word-spacing:-1.680000px;}
.ws26_c00457{word-spacing:-1.500000px;}
.ws3_c00457{word-spacing:-0.840000px;}
.ws29_c00457{word-spacing:-0.780000px;}
.ws4_c00457{word-spacing:-0.180000px;}
.ws1_c00457{word-spacing:0.000000px;}
.ws11_c00457{word-spacing:0.120000px;}
.ws2_c00457{word-spacing:0.240000px;}
.wsf_c00457{word-spacing:0.300000px;}
.ws1d_c00457{word-spacing:0.420000px;}
.ws12_c00457{word-spacing:0.600000px;}
.ws15_c00457{word-spacing:0.900000px;}
.ws1f_c00457{word-spacing:0.960000px;}
.ws5_c00457{word-spacing:1.200000px;}
.ws23_c00457{word-spacing:1.500000px;}
.wse_c00457{word-spacing:1.740000px;}
.ws7_c00457{word-spacing:1.860000px;}
.wsd_c00457{word-spacing:4.800000px;}
.wsc_c00457{word-spacing:4.860000px;}
.ws28_c00457{word-spacing:7.980000px;}
.ws27_c00457{word-spacing:8.640000px;}
.ws9_c00457{word-spacing:8.700000px;}
.ws8_c00457{word-spacing:8.760000px;}
.ws0_c00457{word-spacing:1577.659200px;}
._1_c00457{margin-left:-6.360000px;}
._3_c00457{margin-left:-4.380000px;}
._4_c00457{margin-left:-3.240000px;}
._0_c00457{margin-left:-1.920000px;}
._2_c00457{width:1.080000px;}
._5_c00457{width:2.580000px;}
._7_c00457{width:4.200000px;}
._6_c00457{width:8.340000px;}
.fc0_c00457{color:rgb(35,31,32);}
.fs0_c00457{font-size:48.000000px;}
.fs1_c00457{font-size:60.000000px;}
.y0_c00457{bottom:0.000000px;}
.y4d_c00457{bottom:116.833500px;}
.y27_c00457{bottom:123.217350px;}
.y4c_c00457{bottom:143.458500px;}
.y26_c00457{bottom:149.842350px;}
.y4b_c00457{bottom:170.083500px;}
.y25_c00457{bottom:176.467350px;}
.y4a_c00457{bottom:196.708500px;}
.y24_c00457{bottom:196.717350px;}
.y49_c00457{bottom:216.958500px;}
.y23_c00457{bottom:223.342350px;}
.y48_c00457{bottom:243.583500px;}
.y22_c00457{bottom:249.967350px;}
.y47_c00457{bottom:270.208500px;}
.y21_c00457{bottom:276.592350px;}
.y46_c00457{bottom:296.833500px;}
.y20_c00457{bottom:303.217350px;}
.y45_c00457{bottom:317.089350px;}
.y1f_c00457{bottom:329.842350px;}
.y44_c00457{bottom:343.714350px;}
.y1e_c00457{bottom:356.467350px;}
.y43_c00457{bottom:370.339350px;}
.y1d_c00457{bottom:376.752750px;}
.y42_c00457{bottom:390.598200px;}
.y1c_c00457{bottom:403.377750px;}
.y41_c00457{bottom:417.223200px;}
.y1b_c00457{bottom:430.002750px;}
.y40_c00457{bottom:443.848200px;}
.y1a_c00457{bottom:456.627750px;}
.y3f_c00457{bottom:470.473200px;}
.y19_c00457{bottom:483.252750px;}
.y3e_c00457{bottom:490.737900px;}
.y18_c00457{bottom:509.877750px;}
.y3d_c00457{bottom:517.362900px;}
.y17_c00457{bottom:536.502750px;}
.y3c_c00457{bottom:543.987900px;}
.y16_c00457{bottom:563.127750px;}
.y3b_c00457{bottom:570.612900px;}
.y15_c00457{bottom:589.752750px;}
.y3a_c00457{bottom:597.237900px;}
.y14_c00457{bottom:610.002750px;}
.y39_c00457{bottom:623.862900px;}
.y13_c00457{bottom:636.627750px;}
.y38_c00457{bottom:644.118900px;}
.y12_c00457{bottom:656.877750px;}
.y37_c00457{bottom:670.743900px;}
.y11_c00457{bottom:683.502750px;}
.y36_c00457{bottom:697.368900px;}
.y10_c00457{bottom:703.752750px;}
.y35_c00457{bottom:717.624750px;}
.yf_c00457{bottom:730.377750px;}
.y34_c00457{bottom:744.249750px;}
.ye_c00457{bottom:757.002750px;}
.y33_c00457{bottom:770.874750px;}
.yd_c00457{bottom:777.270450px;}
.y32_c00457{bottom:791.148450px;}
.yc_c00457{bottom:803.895450px;}
.y31_c00457{bottom:817.773450px;}
.yb_c00457{bottom:824.145450px;}
.y30_c00457{bottom:844.398450px;}
.ya_c00457{bottom:850.770450px;}
.y9_c00457{bottom:871.020450px;}
.y2f_c00457{bottom:871.023450px;}
.y2e_c00457{bottom:891.273450px;}
.y8_c00457{bottom:897.645450px;}
.y2d_c00457{bottom:917.898450px;}
.y7_c00457{bottom:924.270450px;}
.y6_c00457{bottom:944.520450px;}
.y2c_c00457{bottom:944.523450px;}
.y5_c00457{bottom:971.145450px;}
.y2b_c00457{bottom:971.148450px;}
.y4_c00457{bottom:997.770450px;}
.y2a_c00457{bottom:997.773450px;}
.y3_c00457{bottom:1018.023450px;}
.y29_c00457{bottom:1024.398450px;}
.y2_c00457{bottom:1044.648450px;}
.y28_c00457{bottom:1044.667350px;}
.y1_c00457{bottom:1093.600950px;}
.h2_c00457{height:39.264000px;}
.h3_c00457{height:49.080000px;}
.h1_c00457{height:1135.500000px;}
.h0_c00457{height:1135.506150px;}
.w0_c00457{width:893.950200px;}
.w1_c00457{width:894.000000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:77.603100px;}
.x2_c00457{left:96.736950px;}
.x3_c00457{left:439.006950px;}
.x4_c00457{left:458.154300px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.lsc_c00457{letter-spacing:-1.333333pt;}
.ls9_c00457{letter-spacing:-1.173333pt;}
.ls4_c00457{letter-spacing:-1.066667pt;}
.lsb_c00457{letter-spacing:-0.853333pt;}
.ls8_c00457{letter-spacing:-0.800000pt;}
.ls7_c00457{letter-spacing:-0.533333pt;}
.lsa_c00457{letter-spacing:-0.373333pt;}
.ls5_c00457{letter-spacing:-0.266667pt;}
.ls2_c00457{letter-spacing:-0.213333pt;}
.ls0_c00457{letter-spacing:-0.170667pt;}
.ls6_c00457{letter-spacing:-0.106667pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls3_c00457{letter-spacing:0.160000pt;}
.wsb_c00457{word-spacing:-4.746667pt;}
.wsa_c00457{word-spacing:-4.533333pt;}
.ws18_c00457{word-spacing:-4.320000pt;}
.ws19_c00457{word-spacing:-4.266667pt;}
.ws1c_c00457{word-spacing:-3.946667pt;}
.ws14_c00457{word-spacing:-3.573333pt;}
.ws24_c00457{word-spacing:-3.360000pt;}
.ws25_c00457{word-spacing:-3.306667pt;}
.ws10_c00457{word-spacing:-2.720000pt;}
.ws21_c00457{word-spacing:-2.560000pt;}
.ws22_c00457{word-spacing:-2.506667pt;}
.ws17_c00457{word-spacing:-2.346667pt;}
.ws20_c00457{word-spacing:-2.240000pt;}
.ws16_c00457{word-spacing:-2.026667pt;}
.ws1b_c00457{word-spacing:-1.920000pt;}
.ws1e_c00457{word-spacing:-1.760000pt;}
.ws13_c00457{word-spacing:-1.653333pt;}
.ws1a_c00457{word-spacing:-1.546667pt;}
.ws6_c00457{word-spacing:-1.493333pt;}
.ws26_c00457{word-spacing:-1.333333pt;}
.ws3_c00457{word-spacing:-0.746667pt;}
.ws29_c00457{word-spacing:-0.693333pt;}
.ws4_c00457{word-spacing:-0.160000pt;}
.ws1_c00457{word-spacing:0.000000pt;}
.ws11_c00457{word-spacing:0.106667pt;}
.ws2_c00457{word-spacing:0.213333pt;}
.wsf_c00457{word-spacing:0.266667pt;}
.ws1d_c00457{word-spacing:0.373333pt;}
.ws12_c00457{word-spacing:0.533333pt;}
.ws15_c00457{word-spacing:0.800000pt;}
.ws1f_c00457{word-spacing:0.853333pt;}
.ws5_c00457{word-spacing:1.066667pt;}
.ws23_c00457{word-spacing:1.333333pt;}
.wse_c00457{word-spacing:1.546667pt;}
.ws7_c00457{word-spacing:1.653333pt;}
.wsd_c00457{word-spacing:4.266667pt;}
.wsc_c00457{word-spacing:4.320000pt;}
.ws28_c00457{word-spacing:7.093333pt;}
.ws27_c00457{word-spacing:7.680000pt;}
.ws9_c00457{word-spacing:7.733333pt;}
.ws8_c00457{word-spacing:7.786667pt;}
.ws0_c00457{word-spacing:1402.363733pt;}
._1_c00457{margin-left:-5.653333pt;}
._3_c00457{margin-left:-3.893333pt;}
._4_c00457{margin-left:-2.880000pt;}
._0_c00457{margin-left:-1.706667pt;}
._2_c00457{width:0.960000pt;}
._5_c00457{width:2.293333pt;}
._7_c00457{width:3.733333pt;}
._6_c00457{width:7.413333pt;}
.fs0_c00457{font-size:42.666667pt;}
.fs1_c00457{font-size:53.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y4d_c00457{bottom:103.852000pt;}
.y27_c00457{bottom:109.526533pt;}
.y4c_c00457{bottom:127.518667pt;}
.y26_c00457{bottom:133.193200pt;}
.y4b_c00457{bottom:151.185333pt;}
.y25_c00457{bottom:156.859867pt;}
.y4a_c00457{bottom:174.852000pt;}
.y24_c00457{bottom:174.859867pt;}
.y49_c00457{bottom:192.852000pt;}
.y23_c00457{bottom:198.526533pt;}
.y48_c00457{bottom:216.518667pt;}
.y22_c00457{bottom:222.193200pt;}
.y47_c00457{bottom:240.185333pt;}
.y21_c00457{bottom:245.859867pt;}
.y46_c00457{bottom:263.852000pt;}
.y20_c00457{bottom:269.526533pt;}
.y45_c00457{bottom:281.857200pt;}
.y1f_c00457{bottom:293.193200pt;}
.y44_c00457{bottom:305.523867pt;}
.y1e_c00457{bottom:316.859867pt;}
.y43_c00457{bottom:329.190533pt;}
.y1d_c00457{bottom:334.891333pt;}
.y42_c00457{bottom:347.198400pt;}
.y1c_c00457{bottom:358.558000pt;}
.y41_c00457{bottom:370.865067pt;}
.y1b_c00457{bottom:382.224667pt;}
.y40_c00457{bottom:394.531733pt;}
.y1a_c00457{bottom:405.891333pt;}
.y3f_c00457{bottom:418.198400pt;}
.y19_c00457{bottom:429.558000pt;}
.y3e_c00457{bottom:436.211467pt;}
.y18_c00457{bottom:453.224667pt;}
.y3d_c00457{bottom:459.878133pt;}
.y17_c00457{bottom:476.891333pt;}
.y3c_c00457{bottom:483.544800pt;}
.y16_c00457{bottom:500.558000pt;}
.y3b_c00457{bottom:507.211467pt;}
.y15_c00457{bottom:524.224667pt;}
.y3a_c00457{bottom:530.878133pt;}
.y14_c00457{bottom:542.224667pt;}
.y39_c00457{bottom:554.544800pt;}
.y13_c00457{bottom:565.891333pt;}
.y38_c00457{bottom:572.550133pt;}
.y12_c00457{bottom:583.891333pt;}
.y37_c00457{bottom:596.216800pt;}
.y11_c00457{bottom:607.558000pt;}
.y36_c00457{bottom:619.883467pt;}
.y10_c00457{bottom:625.558000pt;}
.y35_c00457{bottom:637.888667pt;}
.yf_c00457{bottom:649.224667pt;}
.y34_c00457{bottom:661.555333pt;}
.ye_c00457{bottom:672.891333pt;}
.y33_c00457{bottom:685.222000pt;}
.yd_c00457{bottom:690.907067pt;}
.y32_c00457{bottom:703.243067pt;}
.yc_c00457{bottom:714.573733pt;}
.y31_c00457{bottom:726.909733pt;}
.yb_c00457{bottom:732.573733pt;}
.y30_c00457{bottom:750.576400pt;}
.ya_c00457{bottom:756.240400pt;}
.y9_c00457{bottom:774.240400pt;}
.y2f_c00457{bottom:774.243067pt;}
.y2e_c00457{bottom:792.243067pt;}
.y8_c00457{bottom:797.907067pt;}
.y2d_c00457{bottom:815.909733pt;}
.y7_c00457{bottom:821.573733pt;}
.y6_c00457{bottom:839.573733pt;}
.y2c_c00457{bottom:839.576400pt;}
.y5_c00457{bottom:863.240400pt;}
.y2b_c00457{bottom:863.243067pt;}
.y4_c00457{bottom:886.907067pt;}
.y2a_c00457{bottom:886.909733pt;}
.y3_c00457{bottom:904.909733pt;}
.y29_c00457{bottom:910.576400pt;}
.y2_c00457{bottom:928.576400pt;}
.y28_c00457{bottom:928.593200pt;}
.y1_c00457{bottom:972.089733pt;}
.h2_c00457{height:34.901333pt;}
.h3_c00457{height:43.626667pt;}
.h1_c00457{height:1009.333333pt;}
.h0_c00457{height:1009.338800pt;}
.w0_c00457{width:794.622400pt;}
.w1_c00457{width:794.666667pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:68.980533pt;}
.x2_c00457{left:85.988400pt;}
.x3_c00457{left:390.228400pt;}
.x4_c00457{left:407.248267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_7bd1ea8e74f4385114d39f40.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.067000;font-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_c00458{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.lsa_c00458{letter-spacing:-2.040000px;}
.ls7_c00458{letter-spacing:-1.500000px;}
.ls8_c00458{letter-spacing:-1.200000px;}
.lsb_c00458{letter-spacing:-0.900000px;}
.ls9_c00458{letter-spacing:-0.840000px;}
.ls5_c00458{letter-spacing:-0.720000px;}
.ls4_c00458{letter-spacing:-0.600000px;}
.ls6_c00458{letter-spacing:-0.420000px;}
.ls2_c00458{letter-spacing:-0.240000px;}
.ls1_c00458{letter-spacing:0.000000px;}
.ls3_c00458{letter-spacing:0.180000px;}
.ls0_c00458{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00458{word-spacing:-12.900000px;}
.ws2_c00458{word-spacing:-11.580000px;}
.ws0_c00458{word-spacing:-10.896000px;}
.ws1c_c00458{word-spacing:-4.560000px;}
.ws1e_c00458{word-spacing:-4.320000px;}
.ws1d_c00458{word-spacing:-4.140000px;}
.ws18_c00458{word-spacing:-4.080000px;}
.ws6_c00458{word-spacing:-4.020000px;}
.ws7_c00458{word-spacing:-3.960000px;}
.ws19_c00458{word-spacing:-3.660000px;}
.ws1f_c00458{word-spacing:-3.600000px;}
.ws20_c00458{word-spacing:-3.540000px;}
.ws22_c00458{word-spacing:-3.420000px;}
.wse_c00458{word-spacing:-2.940000px;}
.wsf_c00458{word-spacing:-2.880000px;}
.ws11_c00458{word-spacing:-2.640000px;}
.ws5_c00458{word-spacing:-2.580000px;}
.ws25_c00458{word-spacing:-2.460000px;}
.ws15_c00458{word-spacing:-2.400000px;}
.ws4_c00458{word-spacing:-2.340000px;}
.ws8_c00458{word-spacing:-1.320000px;}
.ws13_c00458{word-spacing:-1.080000px;}
.ws1b_c00458{word-spacing:-0.540000px;}
.ws17_c00458{word-spacing:-0.480000px;}
.ws9_c00458{word-spacing:-0.240000px;}
.wsa_c00458{word-spacing:-0.180000px;}
.ws3_c00458{word-spacing:0.000000px;}
.ws14_c00458{word-spacing:0.240000px;}
.ws10_c00458{word-spacing:0.420000px;}
.wsb_c00458{word-spacing:0.600000px;}
.ws24_c00458{word-spacing:0.900000px;}
.ws1a_c00458{word-spacing:1.200000px;}
.ws12_c00458{word-spacing:1.500000px;}
.ws23_c00458{word-spacing:2.760000px;}
.wsd_c00458{word-spacing:3.420000px;}
.wsc_c00458{word-spacing:3.480000px;}
.ws16_c00458{word-spacing:3.660000px;}
.ws26_c00458{word-spacing:4.500000px;}
.ws21_c00458{word-spacing:6.420000px;}
._0_c00458{margin-left:-2754.555600px;}
._5_c00458{margin-left:-6.000000px;}
._7_c00458{margin-left:-4.980000px;}
._4_c00458{margin-left:-3.360000px;}
._1_c00458{margin-left:-2.256000px;}
._3_c00458{margin-left:-1.044000px;}
._2_c00458{width:1.008000px;}
._6_c00458{width:2.484000px;}
._a_c00458{width:4.320000px;}
._9_c00458{width:6.060000px;}
._8_c00458{width:7.614000px;}
.fc0_c00458{color:rgb(35,31,32);}
.fs0_c00458{font-size:48.000000px;}
.fs1_c00458{font-size:60.000000px;}
.y0_c00458{bottom:0.000000px;}
.y26_c00458{bottom:130.693650px;}
.y49_c00458{bottom:137.086350px;}
.y25_c00458{bottom:157.318650px;}
.y48_c00458{bottom:157.336350px;}
.y24_c00458{bottom:183.943650px;}
.y47_c00458{bottom:183.961350px;}
.y23_c00458{bottom:204.208500px;}
.y46_c00458{bottom:210.586350px;}
.y22_c00458{bottom:230.833500px;}
.y45_c00458{bottom:237.211350px;}
.y21_c00458{bottom:257.458500px;}
.y44_c00458{bottom:257.461350px;}
.y20_c00458{bottom:284.083500px;}
.y43_c00458{bottom:284.086350px;}
.y1f_c00458{bottom:310.708500px;}
.y42_c00458{bottom:310.711350px;}
.y1e_c00458{bottom:330.958500px;}
.y41_c00458{bottom:337.336350px;}
.y1d_c00458{bottom:357.583500px;}
.y40_c00458{bottom:363.961350px;}
.y1c_c00458{bottom:377.836350px;}
.y3f_c00458{bottom:384.229050px;}
.y1b_c00458{bottom:404.461350px;}
.y3e_c00458{bottom:410.854050px;}
.y1a_c00458{bottom:424.761600px;}
.y3d_c00458{bottom:437.479050px;}
.y19_c00458{bottom:451.386600px;}
.y3c_c00458{bottom:464.104050px;}
.y18_c00458{bottom:478.011600px;}
.y3b_c00458{bottom:484.354050px;}
.y17_c00458{bottom:504.636600px;}
.y3a_c00458{bottom:510.979050px;}
.y16_c00458{bottom:531.261600px;}
.y39_c00458{bottom:537.604050px;}
.y15_c00458{bottom:557.886600px;}
.y38_c00458{bottom:564.229050px;}
.y37_c00458{bottom:584.493900px;}
.y14_c00458{bottom:584.511600px;}
.y36_c00458{bottom:611.118900px;}
.y13_c00458{bottom:611.136600px;}
.y35_c00458{bottom:637.743900px;}
.y12_c00458{bottom:637.761600px;}
.y34_c00458{bottom:664.368900px;}
.y11_c00458{bottom:664.386600px;}
.y33_c00458{bottom:690.993900px;}
.y10_c00458{bottom:691.011600px;}
.y32_c00458{bottom:717.618900px;}
.yf_c00458{bottom:717.636600px;}
.y31_c00458{bottom:737.874750px;}
.ye_c00458{bottom:737.886600px;}
.y30_c00458{bottom:764.499750px;}
.yd_c00458{bottom:764.511600px;}
.y2f_c00458{bottom:791.124750px;}
.yc_c00458{bottom:791.136600px;}
.y2e_c00458{bottom:811.398450px;}
.yb_c00458{bottom:817.761600px;}
.y2d_c00458{bottom:838.023450px;}
.ya_c00458{bottom:844.386600px;}
.y2c_c00458{bottom:864.648450px;}
.y9_c00458{bottom:871.011600px;}
.y2b_c00458{bottom:891.273450px;}
.y8_c00458{bottom:897.636600px;}
.y7_c00458{bottom:917.898450px;}
.y6_c00458{bottom:944.523450px;}
.y5_c00458{bottom:964.773450px;}
.y2a_c00458{bottom:971.148450px;}
.y4_c00458{bottom:991.398450px;}
.y29_c00458{bottom:997.773450px;}
.y3_c00458{bottom:1018.023450px;}
.y28_c00458{bottom:1024.398450px;}
.y2_c00458{bottom:1044.648450px;}
.y27_c00458{bottom:1044.658650px;}
.y1_c00458{bottom:1093.600950px;}
.h2_c00458{height:39.264000px;}
.h3_c00458{height:39.984000px;}
.h4_c00458{height:49.080000px;}
.h1_c00458{height:1135.500000px;}
.h0_c00458{height:1135.506150px;}
.w0_c00458{width:893.950200px;}
.w1_c00458{width:894.000000px;}
.x0_c00458{left:0.000000px;}
.x4_c00458{left:128.626800px;}
.x5_c00458{left:147.766800px;}
.x2_c00458{left:188.061900px;}
.x3_c00458{left:190.513350px;}
.x6_c00458{left:490.030650px;}
.x7_c00458{left:509.178000px;}
.x1_c00458{left:801.353700px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.lsa_c00458{letter-spacing:-1.813333pt;}
.ls7_c00458{letter-spacing:-1.333333pt;}
.ls8_c00458{letter-spacing:-1.066667pt;}
.lsb_c00458{letter-spacing:-0.800000pt;}
.ls9_c00458{letter-spacing:-0.746667pt;}
.ls5_c00458{letter-spacing:-0.640000pt;}
.ls4_c00458{letter-spacing:-0.533333pt;}
.ls6_c00458{letter-spacing:-0.373333pt;}
.ls2_c00458{letter-spacing:-0.213333pt;}
.ls1_c00458{letter-spacing:0.000000pt;}
.ls3_c00458{letter-spacing:0.160000pt;}
.ls0_c00458{letter-spacing:0.426667pt;}
.ws1_c00458{word-spacing:-11.466667pt;}
.ws2_c00458{word-spacing:-10.293333pt;}
.ws0_c00458{word-spacing:-9.685333pt;}
.ws1c_c00458{word-spacing:-4.053333pt;}
.ws1e_c00458{word-spacing:-3.840000pt;}
.ws1d_c00458{word-spacing:-3.680000pt;}
.ws18_c00458{word-spacing:-3.626667pt;}
.ws6_c00458{word-spacing:-3.573333pt;}
.ws7_c00458{word-spacing:-3.520000pt;}
.ws19_c00458{word-spacing:-3.253333pt;}
.ws1f_c00458{word-spacing:-3.200000pt;}
.ws20_c00458{word-spacing:-3.146667pt;}
.ws22_c00458{word-spacing:-3.040000pt;}
.wse_c00458{word-spacing:-2.613333pt;}
.wsf_c00458{word-spacing:-2.560000pt;}
.ws11_c00458{word-spacing:-2.346667pt;}
.ws5_c00458{word-spacing:-2.293333pt;}
.ws25_c00458{word-spacing:-2.186667pt;}
.ws15_c00458{word-spacing:-2.133333pt;}
.ws4_c00458{word-spacing:-2.080000pt;}
.ws8_c00458{word-spacing:-1.173333pt;}
.ws13_c00458{word-spacing:-0.960000pt;}
.ws1b_c00458{word-spacing:-0.480000pt;}
.ws17_c00458{word-spacing:-0.426667pt;}
.ws9_c00458{word-spacing:-0.213333pt;}
.wsa_c00458{word-spacing:-0.160000pt;}
.ws3_c00458{word-spacing:0.000000pt;}
.ws14_c00458{word-spacing:0.213333pt;}
.ws10_c00458{word-spacing:0.373333pt;}
.wsb_c00458{word-spacing:0.533333pt;}
.ws24_c00458{word-spacing:0.800000pt;}
.ws1a_c00458{word-spacing:1.066667pt;}
.ws12_c00458{word-spacing:1.333333pt;}
.ws23_c00458{word-spacing:2.453333pt;}
.wsd_c00458{word-spacing:3.040000pt;}
.wsc_c00458{word-spacing:3.093333pt;}
.ws16_c00458{word-spacing:3.253333pt;}
.ws26_c00458{word-spacing:4.000000pt;}
.ws21_c00458{word-spacing:5.706667pt;}
._0_c00458{margin-left:-2448.493867pt;}
._5_c00458{margin-left:-5.333333pt;}
._7_c00458{margin-left:-4.426667pt;}
._4_c00458{margin-left:-2.986667pt;}
._1_c00458{margin-left:-2.005333pt;}
._3_c00458{margin-left:-0.928000pt;}
._2_c00458{width:0.896000pt;}
._6_c00458{width:2.208000pt;}
._a_c00458{width:3.840000pt;}
._9_c00458{width:5.386667pt;}
._8_c00458{width:6.768000pt;}
.fs0_c00458{font-size:42.666667pt;}
.fs1_c00458{font-size:53.333333pt;}
.y0_c00458{bottom:0.000000pt;}
.y26_c00458{bottom:116.172133pt;}
.y49_c00458{bottom:121.854533pt;}
.y25_c00458{bottom:139.838800pt;}
.y48_c00458{bottom:139.854533pt;}
.y24_c00458{bottom:163.505467pt;}
.y47_c00458{bottom:163.521200pt;}
.y23_c00458{bottom:181.518667pt;}
.y46_c00458{bottom:187.187867pt;}
.y22_c00458{bottom:205.185333pt;}
.y45_c00458{bottom:210.854533pt;}
.y21_c00458{bottom:228.852000pt;}
.y44_c00458{bottom:228.854533pt;}
.y20_c00458{bottom:252.518667pt;}
.y43_c00458{bottom:252.521200pt;}
.y1f_c00458{bottom:276.185333pt;}
.y42_c00458{bottom:276.187867pt;}
.y1e_c00458{bottom:294.185333pt;}
.y41_c00458{bottom:299.854533pt;}
.y1d_c00458{bottom:317.852000pt;}
.y40_c00458{bottom:323.521200pt;}
.y1c_c00458{bottom:335.854533pt;}
.y3f_c00458{bottom:341.536933pt;}
.y1b_c00458{bottom:359.521200pt;}
.y3e_c00458{bottom:365.203600pt;}
.y1a_c00458{bottom:377.565867pt;}
.y3d_c00458{bottom:388.870267pt;}
.y19_c00458{bottom:401.232533pt;}
.y3c_c00458{bottom:412.536933pt;}
.y18_c00458{bottom:424.899200pt;}
.y3b_c00458{bottom:430.536933pt;}
.y17_c00458{bottom:448.565867pt;}
.y3a_c00458{bottom:454.203600pt;}
.y16_c00458{bottom:472.232533pt;}
.y39_c00458{bottom:477.870267pt;}
.y15_c00458{bottom:495.899200pt;}
.y38_c00458{bottom:501.536933pt;}
.y37_c00458{bottom:519.550133pt;}
.y14_c00458{bottom:519.565867pt;}
.y36_c00458{bottom:543.216800pt;}
.y13_c00458{bottom:543.232533pt;}
.y35_c00458{bottom:566.883467pt;}
.y12_c00458{bottom:566.899200pt;}
.y34_c00458{bottom:590.550133pt;}
.y11_c00458{bottom:590.565867pt;}
.y33_c00458{bottom:614.216800pt;}
.y10_c00458{bottom:614.232533pt;}
.y32_c00458{bottom:637.883467pt;}
.yf_c00458{bottom:637.899200pt;}
.y31_c00458{bottom:655.888667pt;}
.ye_c00458{bottom:655.899200pt;}
.y30_c00458{bottom:679.555333pt;}
.yd_c00458{bottom:679.565867pt;}
.y2f_c00458{bottom:703.222000pt;}
.yc_c00458{bottom:703.232533pt;}
.y2e_c00458{bottom:721.243067pt;}
.yb_c00458{bottom:726.899200pt;}
.y2d_c00458{bottom:744.909733pt;}
.ya_c00458{bottom:750.565867pt;}
.y2c_c00458{bottom:768.576400pt;}
.y9_c00458{bottom:774.232533pt;}
.y2b_c00458{bottom:792.243067pt;}
.y8_c00458{bottom:797.899200pt;}
.y7_c00458{bottom:815.909733pt;}
.y6_c00458{bottom:839.576400pt;}
.y5_c00458{bottom:857.576400pt;}
.y2a_c00458{bottom:863.243067pt;}
.y4_c00458{bottom:881.243067pt;}
.y29_c00458{bottom:886.909733pt;}
.y3_c00458{bottom:904.909733pt;}
.y28_c00458{bottom:910.576400pt;}
.y2_c00458{bottom:928.576400pt;}
.y27_c00458{bottom:928.585467pt;}
.y1_c00458{bottom:972.089733pt;}
.h2_c00458{height:34.901333pt;}
.h3_c00458{height:35.541333pt;}
.h4_c00458{height:43.626667pt;}
.h1_c00458{height:1009.333333pt;}
.h0_c00458{height:1009.338800pt;}
.w0_c00458{width:794.622400pt;}
.w1_c00458{width:794.666667pt;}
.x0_c00458{left:0.000000pt;}
.x4_c00458{left:114.334933pt;}
.x5_c00458{left:131.348267pt;}
.x2_c00458{left:167.166133pt;}
.x3_c00458{left:169.345200pt;}
.x6_c00458{left:435.582800pt;}
.x7_c00458{left:452.602667pt;}
.x1_c00458{left:712.314400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dab80a4da15d9d31cf86ecc.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls6_c00459{letter-spacing:-1.500000px;}
.ls5_c00459{letter-spacing:-1.200000px;}
.ls4_c00459{letter-spacing:-0.900000px;}
.ls2_c00459{letter-spacing:-0.600000px;}
.ls7_c00459{letter-spacing:-0.420000px;}
.ls1_c00459{letter-spacing:-0.240000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.ls3_c00459{letter-spacing:0.180000px;}
.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;}
}
.ws12_c00459{word-spacing:-4.920000px;}
.ws13_c00459{word-spacing:-4.860000px;}
.ws26_c00459{word-spacing:-4.080000px;}
.ws4_c00459{word-spacing:-3.360000px;}
.ws24_c00459{word-spacing:-3.120000px;}
.ws25_c00459{word-spacing:-3.060000px;}
.ws10_c00459{word-spacing:-2.880000px;}
.ws11_c00459{word-spacing:-2.820000px;}
.ws1a_c00459{word-spacing:-2.400000px;}
.ws23_c00459{word-spacing:-2.340000px;}
.ws6_c00459{word-spacing:-2.100000px;}
.ws20_c00459{word-spacing:-2.040000px;}
.ws22_c00459{word-spacing:-1.920000px;}
.ws19_c00459{word-spacing:-1.800000px;}
.ws14_c00459{word-spacing:-1.500000px;}
.ws16_c00459{word-spacing:-1.380000px;}
.ws17_c00459{word-spacing:-1.320000px;}
.ws8_c00459{word-spacing:-1.140000px;}
.ws1c_c00459{word-spacing:-1.020000px;}
.ws1d_c00459{word-spacing:-0.960000px;}
.ws9_c00459{word-spacing:-0.300000px;}
.ws5_c00459{word-spacing:-0.180000px;}
.ws21_c00459{word-spacing:-0.060000px;}
.ws1_c00459{word-spacing:0.000000px;}
.ws15_c00459{word-spacing:0.240000px;}
.ws3_c00459{word-spacing:0.600000px;}
.ws1e_c00459{word-spacing:0.840000px;}
.ws7_c00459{word-spacing:0.900000px;}
.wsc_c00459{word-spacing:1.200000px;}
.wsf_c00459{word-spacing:1.500000px;}
.ws1f_c00459{word-spacing:4.680000px;}
.wse_c00459{word-spacing:6.360000px;}
.wsd_c00459{word-spacing:6.420000px;}
.ws1b_c00459{word-spacing:6.600000px;}
.wsb_c00459{word-spacing:8.160000px;}
.wsa_c00459{word-spacing:8.280000px;}
.ws18_c00459{word-spacing:14.820000px;}
.ws2_c00459{word-spacing:20.820000px;}
.ws0_c00459{word-spacing:1578.667200px;}
._4_c00459{margin-left:-5.820000px;}
._9_c00459{margin-left:-4.380000px;}
._5_c00459{margin-left:-3.300000px;}
._0_c00459{margin-left:-2.112000px;}
._1_c00459{margin-left:-1.104000px;}
._2_c00459{width:1.344000px;}
._b_c00459{width:2.352000px;}
._a_c00459{width:4.500000px;}
._8_c00459{width:6.360000px;}
._7_c00459{width:8.160000px;}
._6_c00459{width:14.743800px;}
._3_c00459{width:20.760000px;}
.fc0_c00459{color:rgb(35,31,32);}
.fs0_c00459{font-size:48.000000px;}
.fs1_c00459{font-size:60.000000px;}
.y0_c00459{bottom:0.000000px;}
.y4c_c00459{bottom:123.205500px;}
.y26_c00459{bottom:137.092350px;}
.y4b_c00459{bottom:149.830500px;}
.y25_c00459{bottom:163.717350px;}
.y4a_c00459{bottom:176.455500px;}
.y24_c00459{bottom:190.342350px;}
.y49_c00459{bottom:203.080500px;}
.y23_c00459{bottom:216.967350px;}
.y48_c00459{bottom:229.705500px;}
.y22_c00459{bottom:243.592350px;}
.y47_c00459{bottom:249.970200px;}
.y21_c00459{bottom:270.217350px;}
.y46_c00459{bottom:276.595200px;}
.y20_c00459{bottom:296.842350px;}
.y45_c00459{bottom:303.220200px;}
.y1f_c00459{bottom:323.467350px;}
.y44_c00459{bottom:329.845200px;}
.y1e_c00459{bottom:350.092350px;}
.y43_c00459{bottom:356.470200px;}
.y1d_c00459{bottom:370.342350px;}
.y42_c00459{bottom:383.095200px;}
.y1c_c00459{bottom:396.967350px;}
.y41_c00459{bottom:403.354050px;}
.y1b_c00459{bottom:417.226200px;}
.y40_c00459{bottom:429.979050px;}
.y1a_c00459{bottom:443.851200px;}
.y3f_c00459{bottom:456.604050px;}
.y19_c00459{bottom:470.476200px;}
.y3e_c00459{bottom:476.854050px;}
.y18_c00459{bottom:490.726200px;}
.y3d_c00459{bottom:503.479050px;}
.y17_c00459{bottom:517.351200px;}
.y3c_c00459{bottom:523.743900px;}
.y16_c00459{bottom:537.610050px;}
.y3b_c00459{bottom:550.368900px;}
.y15_c00459{bottom:564.235050px;}
.y3a_c00459{bottom:576.993900px;}
.y14_c00459{bottom:590.860050px;}
.y39_c00459{bottom:603.618900px;}
.y13_c00459{bottom:617.485050px;}
.y38_c00459{bottom:630.243900px;}
.y12_c00459{bottom:637.773450px;}
.y37_c00459{bottom:656.868900px;}
.y11_c00459{bottom:664.398450px;}
.y36_c00459{bottom:677.139450px;}
.y10_c00459{bottom:691.023450px;}
.y35_c00459{bottom:703.764450px;}
.yf_c00459{bottom:717.648450px;}
.y34_c00459{bottom:724.014450px;}
.ye_c00459{bottom:744.273450px;}
.y33_c00459{bottom:750.639450px;}
.yd_c00459{bottom:764.523450px;}
.y32_c00459{bottom:770.889450px;}
.yc_c00459{bottom:791.148450px;}
.y31_c00459{bottom:797.514450px;}
.yb_c00459{bottom:817.773450px;}
.y30_c00459{bottom:824.139450px;}
.ya_c00459{bottom:844.398450px;}
.y2f_c00459{bottom:850.764450px;}
.y9_c00459{bottom:864.648450px;}
.y2e_c00459{bottom:871.014450px;}
.y8_c00459{bottom:891.273450px;}
.y2d_c00459{bottom:897.639450px;}
.y7_c00459{bottom:917.898450px;}
.y2c_c00459{bottom:924.264450px;}
.y6_c00459{bottom:944.523450px;}
.y2b_c00459{bottom:944.557350px;}
.y5_c00459{bottom:971.148450px;}
.y2a_c00459{bottom:971.182350px;}
.y4_c00459{bottom:991.398450px;}
.y29_c00459{bottom:997.807350px;}
.y3_c00459{bottom:1018.023450px;}
.y28_c00459{bottom:1024.432350px;}
.y2_c00459{bottom:1044.648450px;}
.y27_c00459{bottom:1044.682350px;}
.y1_c00459{bottom:1093.600950px;}
.h2_c00459{height:39.264000px;}
.h3_c00459{height:49.080000px;}
.h1_c00459{height:1135.500000px;}
.h0_c00459{height:1135.506150px;}
.w0_c00459{width:893.950200px;}
.w1_c00459{width:894.000000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:77.603100px;}
.x2_c00459{left:96.728100px;}
.x3_c00459{left:439.006950px;}
.x4_c00459{left:458.146950px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls6_c00459{letter-spacing:-1.333333pt;}
.ls5_c00459{letter-spacing:-1.066667pt;}
.ls4_c00459{letter-spacing:-0.800000pt;}
.ls2_c00459{letter-spacing:-0.533333pt;}
.ls7_c00459{letter-spacing:-0.373333pt;}
.ls1_c00459{letter-spacing:-0.213333pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ls3_c00459{letter-spacing:0.160000pt;}
.ws12_c00459{word-spacing:-4.373333pt;}
.ws13_c00459{word-spacing:-4.320000pt;}
.ws26_c00459{word-spacing:-3.626667pt;}
.ws4_c00459{word-spacing:-2.986667pt;}
.ws24_c00459{word-spacing:-2.773333pt;}
.ws25_c00459{word-spacing:-2.720000pt;}
.ws10_c00459{word-spacing:-2.560000pt;}
.ws11_c00459{word-spacing:-2.506667pt;}
.ws1a_c00459{word-spacing:-2.133333pt;}
.ws23_c00459{word-spacing:-2.080000pt;}
.ws6_c00459{word-spacing:-1.866667pt;}
.ws20_c00459{word-spacing:-1.813333pt;}
.ws22_c00459{word-spacing:-1.706667pt;}
.ws19_c00459{word-spacing:-1.600000pt;}
.ws14_c00459{word-spacing:-1.333333pt;}
.ws16_c00459{word-spacing:-1.226667pt;}
.ws17_c00459{word-spacing:-1.173333pt;}
.ws8_c00459{word-spacing:-1.013333pt;}
.ws1c_c00459{word-spacing:-0.906667pt;}
.ws1d_c00459{word-spacing:-0.853333pt;}
.ws9_c00459{word-spacing:-0.266667pt;}
.ws5_c00459{word-spacing:-0.160000pt;}
.ws21_c00459{word-spacing:-0.053333pt;}
.ws1_c00459{word-spacing:0.000000pt;}
.ws15_c00459{word-spacing:0.213333pt;}
.ws3_c00459{word-spacing:0.533333pt;}
.ws1e_c00459{word-spacing:0.746667pt;}
.ws7_c00459{word-spacing:0.800000pt;}
.wsc_c00459{word-spacing:1.066667pt;}
.wsf_c00459{word-spacing:1.333333pt;}
.ws1f_c00459{word-spacing:4.160000pt;}
.wse_c00459{word-spacing:5.653333pt;}
.wsd_c00459{word-spacing:5.706667pt;}
.ws1b_c00459{word-spacing:5.866667pt;}
.wsb_c00459{word-spacing:7.253333pt;}
.wsa_c00459{word-spacing:7.360000pt;}
.ws18_c00459{word-spacing:13.173333pt;}
.ws2_c00459{word-spacing:18.506667pt;}
.ws0_c00459{word-spacing:1403.259733pt;}
._4_c00459{margin-left:-5.173333pt;}
._9_c00459{margin-left:-3.893333pt;}
._5_c00459{margin-left:-2.933333pt;}
._0_c00459{margin-left:-1.877333pt;}
._1_c00459{margin-left:-0.981333pt;}
._2_c00459{width:1.194667pt;}
._b_c00459{width:2.090667pt;}
._a_c00459{width:4.000000pt;}
._8_c00459{width:5.653333pt;}
._7_c00459{width:7.253333pt;}
._6_c00459{width:13.105600pt;}
._3_c00459{width:18.453333pt;}
.fs0_c00459{font-size:42.666667pt;}
.fs1_c00459{font-size:53.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y4c_c00459{bottom:109.516000pt;}
.y26_c00459{bottom:121.859867pt;}
.y4b_c00459{bottom:133.182667pt;}
.y25_c00459{bottom:145.526533pt;}
.y4a_c00459{bottom:156.849333pt;}
.y24_c00459{bottom:169.193200pt;}
.y49_c00459{bottom:180.516000pt;}
.y23_c00459{bottom:192.859867pt;}
.y48_c00459{bottom:204.182667pt;}
.y22_c00459{bottom:216.526533pt;}
.y47_c00459{bottom:222.195733pt;}
.y21_c00459{bottom:240.193200pt;}
.y46_c00459{bottom:245.862400pt;}
.y20_c00459{bottom:263.859867pt;}
.y45_c00459{bottom:269.529067pt;}
.y1f_c00459{bottom:287.526533pt;}
.y44_c00459{bottom:293.195733pt;}
.y1e_c00459{bottom:311.193200pt;}
.y43_c00459{bottom:316.862400pt;}
.y1d_c00459{bottom:329.193200pt;}
.y42_c00459{bottom:340.529067pt;}
.y1c_c00459{bottom:352.859867pt;}
.y41_c00459{bottom:358.536933pt;}
.y1b_c00459{bottom:370.867733pt;}
.y40_c00459{bottom:382.203600pt;}
.y1a_c00459{bottom:394.534400pt;}
.y3f_c00459{bottom:405.870267pt;}
.y19_c00459{bottom:418.201067pt;}
.y3e_c00459{bottom:423.870267pt;}
.y18_c00459{bottom:436.201067pt;}
.y3d_c00459{bottom:447.536933pt;}
.y17_c00459{bottom:459.867733pt;}
.y3c_c00459{bottom:465.550133pt;}
.y16_c00459{bottom:477.875600pt;}
.y3b_c00459{bottom:489.216800pt;}
.y15_c00459{bottom:501.542267pt;}
.y3a_c00459{bottom:512.883467pt;}
.y14_c00459{bottom:525.208933pt;}
.y39_c00459{bottom:536.550133pt;}
.y13_c00459{bottom:548.875600pt;}
.y38_c00459{bottom:560.216800pt;}
.y12_c00459{bottom:566.909733pt;}
.y37_c00459{bottom:583.883467pt;}
.y11_c00459{bottom:590.576400pt;}
.y36_c00459{bottom:601.901733pt;}
.y10_c00459{bottom:614.243067pt;}
.y35_c00459{bottom:625.568400pt;}
.yf_c00459{bottom:637.909733pt;}
.y34_c00459{bottom:643.568400pt;}
.ye_c00459{bottom:661.576400pt;}
.y33_c00459{bottom:667.235067pt;}
.yd_c00459{bottom:679.576400pt;}
.y32_c00459{bottom:685.235067pt;}
.yc_c00459{bottom:703.243067pt;}
.y31_c00459{bottom:708.901733pt;}
.yb_c00459{bottom:726.909733pt;}
.y30_c00459{bottom:732.568400pt;}
.ya_c00459{bottom:750.576400pt;}
.y2f_c00459{bottom:756.235067pt;}
.y9_c00459{bottom:768.576400pt;}
.y2e_c00459{bottom:774.235067pt;}
.y8_c00459{bottom:792.243067pt;}
.y2d_c00459{bottom:797.901733pt;}
.y7_c00459{bottom:815.909733pt;}
.y2c_c00459{bottom:821.568400pt;}
.y6_c00459{bottom:839.576400pt;}
.y2b_c00459{bottom:839.606533pt;}
.y5_c00459{bottom:863.243067pt;}
.y2a_c00459{bottom:863.273200pt;}
.y4_c00459{bottom:881.243067pt;}
.y29_c00459{bottom:886.939867pt;}
.y3_c00459{bottom:904.909733pt;}
.y28_c00459{bottom:910.606533pt;}
.y2_c00459{bottom:928.576400pt;}
.y27_c00459{bottom:928.606533pt;}
.y1_c00459{bottom:972.089733pt;}
.h2_c00459{height:34.901333pt;}
.h3_c00459{height:43.626667pt;}
.h1_c00459{height:1009.333333pt;}
.h0_c00459{height:1009.338800pt;}
.w0_c00459{width:794.622400pt;}
.w1_c00459{width:794.666667pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:68.980533pt;}
.x2_c00459{left:85.980533pt;}
.x3_c00459{left:390.228400pt;}
.x4_c00459{left:407.241733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc52351aac034836b453bc98.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.067000;font-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_c00460{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls7_c00460{letter-spacing:-4.200000px;}
.lsa_c00460{letter-spacing:-1.800000px;}
.ls4_c00460{letter-spacing:-1.440000px;}
.ls3_c00460{letter-spacing:-1.200000px;}
.lsb_c00460{letter-spacing:-0.900000px;}
.ls5_c00460{letter-spacing:-0.600000px;}
.ls6_c00460{letter-spacing:-0.300000px;}
.ls9_c00460{letter-spacing:-0.240000px;}
.ls1_c00460{letter-spacing:-0.192000px;}
.ls2_c00460{letter-spacing:0.000000px;}
.ls8_c00460{letter-spacing:0.180000px;}
.ls0_c00460{letter-spacing:0.480000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00460{word-spacing:-13.620000px;}
.ws0_c00460{word-spacing:-10.704000px;}
.ws1b_c00460{word-spacing:-5.940000px;}
.ws1c_c00460{word-spacing:-5.880000px;}
.ws15_c00460{word-spacing:-5.760000px;}
.ws14_c00460{word-spacing:-5.580000px;}
.wsc_c00460{word-spacing:-4.740000px;}
.ws7_c00460{word-spacing:-4.680000px;}
.ws8_c00460{word-spacing:-4.620000px;}
.ws19_c00460{word-spacing:-4.260000px;}
.ws1a_c00460{word-spacing:-4.200000px;}
.wse_c00460{word-spacing:-3.720000px;}
.ws12_c00460{word-spacing:-3.660000px;}
.ws16_c00460{word-spacing:-3.000000px;}
.ws10_c00460{word-spacing:-2.940000px;}
.ws9_c00460{word-spacing:-2.820000px;}
.wsa_c00460{word-spacing:-2.760000px;}
.ws6_c00460{word-spacing:-2.040000px;}
.wsf_c00460{word-spacing:-0.180000px;}
.ws17_c00460{word-spacing:-0.120000px;}
.ws2_c00460{word-spacing:0.000000px;}
.ws11_c00460{word-spacing:0.060000px;}
.ws4_c00460{word-spacing:0.240000px;}
.wsb_c00460{word-spacing:0.300000px;}
.ws5_c00460{word-spacing:0.600000px;}
.ws18_c00460{word-spacing:0.900000px;}
.ws3_c00460{word-spacing:1.200000px;}
.wsd_c00460{word-spacing:4.200000px;}
.ws1e_c00460{word-spacing:5.100000px;}
.ws13_c00460{word-spacing:6.120000px;}
.ws1d_c00460{word-spacing:8.340000px;}
._0_c00460{margin-left:-2754.892200px;}
._c_c00460{margin-left:-8.928000px;}
._9_c00460{margin-left:-6.600000px;}
._4_c00460{margin-left:-5.220000px;}
._5_c00460{margin-left:-3.360000px;}
._1_c00460{margin-left:-2.256000px;}
._3_c00460{margin-left:-1.200000px;}
._2_c00460{width:1.008000px;}
._7_c00460{width:2.820000px;}
._8_c00460{width:3.960000px;}
._6_c00460{width:5.376000px;}
._b_c00460{width:17.387400px;}
._a_c00460{width:41.155800px;}
.fc0_c00460{color:rgb(35,31,32);}
.fs0_c00460{font-size:48.000000px;}
.fs1_c00460{font-size:60.000000px;}
.y0_c00460{bottom:0.000000px;}
.y4c_c00460{bottom:123.208500px;}
.y26_c00460{bottom:130.690800px;}
.y4b_c00460{bottom:149.833500px;}
.y25_c00460{bottom:157.315800px;}
.y4a_c00460{bottom:176.458500px;}
.y24_c00460{bottom:177.577500px;}
.y49_c00460{bottom:196.708500px;}
.y23_c00460{bottom:204.202500px;}
.y48_c00460{bottom:223.333500px;}
.y22_c00460{bottom:230.827500px;}
.y47_c00460{bottom:243.583500px;}
.y21_c00460{bottom:257.452500px;}
.y46_c00460{bottom:270.208500px;}
.y20_c00460{bottom:284.077500px;}
.y45_c00460{bottom:296.833500px;}
.y1f_c00460{bottom:304.330500px;}
.y44_c00460{bottom:317.089350px;}
.y1e_c00460{bottom:330.955500px;}
.y43_c00460{bottom:343.714350px;}
.y1d_c00460{bottom:351.220200px;}
.y42_c00460{bottom:370.339350px;}
.y1c_c00460{bottom:377.845200px;}
.y41_c00460{bottom:390.592350px;}
.y1b_c00460{bottom:404.470200px;}
.y40_c00460{bottom:417.217350px;}
.y1a_c00460{bottom:431.095200px;}
.y3f_c00460{bottom:437.470200px;}
.y19_c00460{bottom:451.345200px;}
.y3e_c00460{bottom:464.095200px;}
.y18_c00460{bottom:477.970200px;}
.y3d_c00460{bottom:484.348200px;}
.y17_c00460{bottom:504.595200px;}
.y3c_c00460{bottom:510.973200px;}
.y16_c00460{bottom:524.898450px;}
.y3b_c00460{bottom:531.246900px;}
.y15_c00460{bottom:551.523450px;}
.y3a_c00460{bottom:557.871900px;}
.y14_c00460{bottom:578.148450px;}
.y39_c00460{bottom:584.496900px;}
.y13_c00460{bottom:604.773450px;}
.y38_c00460{bottom:611.121900px;}
.y12_c00460{bottom:631.398450px;}
.y37_c00460{bottom:637.746900px;}
.y11_c00460{bottom:651.648450px;}
.y36_c00460{bottom:664.371900px;}
.y10_c00460{bottom:678.273450px;}
.y35_c00460{bottom:690.996900px;}
.yf_c00460{bottom:704.898450px;}
.y34_c00460{bottom:717.621900px;}
.ye_c00460{bottom:731.523450px;}
.y33_c00460{bottom:744.246900px;}
.yd_c00460{bottom:758.148450px;}
.y32_c00460{bottom:764.499750px;}
.yc_c00460{bottom:784.773450px;}
.y31_c00460{bottom:791.124750px;}
.yb_c00460{bottom:805.023450px;}
.y30_c00460{bottom:811.380600px;}
.ya_c00460{bottom:831.648450px;}
.y2f_c00460{bottom:838.005600px;}
.y9_c00460{bottom:858.273450px;}
.y2e_c00460{bottom:864.630600px;}
.y8_c00460{bottom:884.898450px;}
.y2d_c00460{bottom:884.905800px;}
.y7_c00460{bottom:911.523450px;}
.y2c_c00460{bottom:911.530800px;}
.y6_c00460{bottom:938.148450px;}
.y2b_c00460{bottom:938.155800px;}
.y5_c00460{bottom:964.773450px;}
.y2a_c00460{bottom:964.780800px;}
.y4_c00460{bottom:991.398450px;}
.y29_c00460{bottom:991.405800px;}
.y3_c00460{bottom:1018.023450px;}
.y28_c00460{bottom:1018.030800px;}
.y2_c00460{bottom:1044.648450px;}
.y27_c00460{bottom:1044.655800px;}
.y1_c00460{bottom:1093.600950px;}
.h2_c00460{height:39.264000px;}
.h3_c00460{height:39.984000px;}
.h4_c00460{height:49.080000px;}
.h1_c00460{height:1135.500000px;}
.h0_c00460{height:1135.506150px;}
.w0_c00460{width:893.950200px;}
.w1_c00460{width:894.000000px;}
.x0_c00460{left:0.000000px;}
.x4_c00460{left:128.626800px;}
.x5_c00460{left:147.781800px;}
.x2_c00460{left:188.061900px;}
.x3_c00460{left:190.513350px;}
.x6_c00460{left:490.030650px;}
.x7_c00460{left:509.178000px;}
.x1_c00460{left:800.993850px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls7_c00460{letter-spacing:-3.733333pt;}
.lsa_c00460{letter-spacing:-1.600000pt;}
.ls4_c00460{letter-spacing:-1.280000pt;}
.ls3_c00460{letter-spacing:-1.066667pt;}
.lsb_c00460{letter-spacing:-0.800000pt;}
.ls5_c00460{letter-spacing:-0.533333pt;}
.ls6_c00460{letter-spacing:-0.266667pt;}
.ls9_c00460{letter-spacing:-0.213333pt;}
.ls1_c00460{letter-spacing:-0.170667pt;}
.ls2_c00460{letter-spacing:0.000000pt;}
.ls8_c00460{letter-spacing:0.160000pt;}
.ls0_c00460{letter-spacing:0.426667pt;}
.ws1_c00460{word-spacing:-12.106667pt;}
.ws0_c00460{word-spacing:-9.514667pt;}
.ws1b_c00460{word-spacing:-5.280000pt;}
.ws1c_c00460{word-spacing:-5.226667pt;}
.ws15_c00460{word-spacing:-5.120000pt;}
.ws14_c00460{word-spacing:-4.960000pt;}
.wsc_c00460{word-spacing:-4.213333pt;}
.ws7_c00460{word-spacing:-4.160000pt;}
.ws8_c00460{word-spacing:-4.106667pt;}
.ws19_c00460{word-spacing:-3.786667pt;}
.ws1a_c00460{word-spacing:-3.733333pt;}
.wse_c00460{word-spacing:-3.306667pt;}
.ws12_c00460{word-spacing:-3.253333pt;}
.ws16_c00460{word-spacing:-2.666667pt;}
.ws10_c00460{word-spacing:-2.613333pt;}
.ws9_c00460{word-spacing:-2.506667pt;}
.wsa_c00460{word-spacing:-2.453333pt;}
.ws6_c00460{word-spacing:-1.813333pt;}
.wsf_c00460{word-spacing:-0.160000pt;}
.ws17_c00460{word-spacing:-0.106667pt;}
.ws2_c00460{word-spacing:0.000000pt;}
.ws11_c00460{word-spacing:0.053333pt;}
.ws4_c00460{word-spacing:0.213333pt;}
.wsb_c00460{word-spacing:0.266667pt;}
.ws5_c00460{word-spacing:0.533333pt;}
.ws18_c00460{word-spacing:0.800000pt;}
.ws3_c00460{word-spacing:1.066667pt;}
.wsd_c00460{word-spacing:3.733333pt;}
.ws1e_c00460{word-spacing:4.533333pt;}
.ws13_c00460{word-spacing:5.440000pt;}
.ws1d_c00460{word-spacing:7.413333pt;}
._0_c00460{margin-left:-2448.793067pt;}
._c_c00460{margin-left:-7.936000pt;}
._9_c00460{margin-left:-5.866667pt;}
._4_c00460{margin-left:-4.640000pt;}
._5_c00460{margin-left:-2.986667pt;}
._1_c00460{margin-left:-2.005333pt;}
._3_c00460{margin-left:-1.066667pt;}
._2_c00460{width:0.896000pt;}
._7_c00460{width:2.506667pt;}
._8_c00460{width:3.520000pt;}
._6_c00460{width:4.778667pt;}
._b_c00460{width:15.455467pt;}
._a_c00460{width:36.582933pt;}
.fs0_c00460{font-size:42.666667pt;}
.fs1_c00460{font-size:53.333333pt;}
.y0_c00460{bottom:0.000000pt;}
.y4c_c00460{bottom:109.518667pt;}
.y26_c00460{bottom:116.169600pt;}
.y4b_c00460{bottom:133.185333pt;}
.y25_c00460{bottom:139.836267pt;}
.y4a_c00460{bottom:156.852000pt;}
.y24_c00460{bottom:157.846667pt;}
.y49_c00460{bottom:174.852000pt;}
.y23_c00460{bottom:181.513333pt;}
.y48_c00460{bottom:198.518667pt;}
.y22_c00460{bottom:205.180000pt;}
.y47_c00460{bottom:216.518667pt;}
.y21_c00460{bottom:228.846667pt;}
.y46_c00460{bottom:240.185333pt;}
.y20_c00460{bottom:252.513333pt;}
.y45_c00460{bottom:263.852000pt;}
.y1f_c00460{bottom:270.516000pt;}
.y44_c00460{bottom:281.857200pt;}
.y1e_c00460{bottom:294.182667pt;}
.y43_c00460{bottom:305.523867pt;}
.y1d_c00460{bottom:312.195733pt;}
.y42_c00460{bottom:329.190533pt;}
.y1c_c00460{bottom:335.862400pt;}
.y41_c00460{bottom:347.193200pt;}
.y1b_c00460{bottom:359.529067pt;}
.y40_c00460{bottom:370.859867pt;}
.y1a_c00460{bottom:383.195733pt;}
.y3f_c00460{bottom:388.862400pt;}
.y19_c00460{bottom:401.195733pt;}
.y3e_c00460{bottom:412.529067pt;}
.y18_c00460{bottom:424.862400pt;}
.y3d_c00460{bottom:430.531733pt;}
.y17_c00460{bottom:448.529067pt;}
.y3c_c00460{bottom:454.198400pt;}
.y16_c00460{bottom:466.576400pt;}
.y3b_c00460{bottom:472.219467pt;}
.y15_c00460{bottom:490.243067pt;}
.y3a_c00460{bottom:495.886133pt;}
.y14_c00460{bottom:513.909733pt;}
.y39_c00460{bottom:519.552800pt;}
.y13_c00460{bottom:537.576400pt;}
.y38_c00460{bottom:543.219467pt;}
.y12_c00460{bottom:561.243067pt;}
.y37_c00460{bottom:566.886133pt;}
.y11_c00460{bottom:579.243067pt;}
.y36_c00460{bottom:590.552800pt;}
.y10_c00460{bottom:602.909733pt;}
.y35_c00460{bottom:614.219467pt;}
.yf_c00460{bottom:626.576400pt;}
.y34_c00460{bottom:637.886133pt;}
.ye_c00460{bottom:650.243067pt;}
.y33_c00460{bottom:661.552800pt;}
.yd_c00460{bottom:673.909733pt;}
.y32_c00460{bottom:679.555333pt;}
.yc_c00460{bottom:697.576400pt;}
.y31_c00460{bottom:703.222000pt;}
.yb_c00460{bottom:715.576400pt;}
.y30_c00460{bottom:721.227200pt;}
.ya_c00460{bottom:739.243067pt;}
.y2f_c00460{bottom:744.893867pt;}
.y9_c00460{bottom:762.909733pt;}
.y2e_c00460{bottom:768.560533pt;}
.y8_c00460{bottom:786.576400pt;}
.y2d_c00460{bottom:786.582933pt;}
.y7_c00460{bottom:810.243067pt;}
.y2c_c00460{bottom:810.249600pt;}
.y6_c00460{bottom:833.909733pt;}
.y2b_c00460{bottom:833.916267pt;}
.y5_c00460{bottom:857.576400pt;}
.y2a_c00460{bottom:857.582933pt;}
.y4_c00460{bottom:881.243067pt;}
.y29_c00460{bottom:881.249600pt;}
.y3_c00460{bottom:904.909733pt;}
.y28_c00460{bottom:904.916267pt;}
.y2_c00460{bottom:928.576400pt;}
.y27_c00460{bottom:928.582933pt;}
.y1_c00460{bottom:972.089733pt;}
.h2_c00460{height:34.901333pt;}
.h3_c00460{height:35.541333pt;}
.h4_c00460{height:43.626667pt;}
.h1_c00460{height:1009.333333pt;}
.h0_c00460{height:1009.338800pt;}
.w0_c00460{width:794.622400pt;}
.w1_c00460{width:794.666667pt;}
.x0_c00460{left:0.000000pt;}
.x4_c00460{left:114.334933pt;}
.x5_c00460{left:131.361600pt;}
.x2_c00460{left:167.166133pt;}
.x3_c00460{left:169.345200pt;}
.x6_c00460{left:435.582800pt;}
.x7_c00460{left:452.602667pt;}
.x1_c00460{left:711.994533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc52351aac034836b453bc98.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls1_c00461{letter-spacing:-1.200000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00461{word-spacing:-13.620000px;}
.ws6_c00461{word-spacing:-3.060000px;}
.ws5_c00461{word-spacing:-1.680000px;}
.ws4_c00461{word-spacing:-0.900000px;}
.ws2_c00461{word-spacing:0.000000px;}
.ws3_c00461{word-spacing:1.200000px;}
.ws0_c00461{word-spacing:1570.987200px;}
._4_c00461{margin-left:-5.460000px;}
._2_c00461{margin-left:-4.248000px;}
._5_c00461{margin-left:-3.156000px;}
._0_c00461{margin-left:-2.112000px;}
._1_c00461{margin-left:-1.104000px;}
._3_c00461{width:1.092000px;}
.fc0_c00461{color:rgb(35,31,32);}
.fs0_c00461{font-size:48.000000px;}
.fs1_c00461{font-size:60.000000px;}
.y0_c00461{bottom:0.000000px;}
.yb_c00461{bottom:824.139450px;}
.y15_c00461{bottom:830.508600px;}
.ya_c00461{bottom:850.764450px;}
.y14_c00461{bottom:850.776450px;}
.y9_c00461{bottom:877.389450px;}
.y13_c00461{bottom:877.401450px;}
.y8_c00461{bottom:904.014450px;}
.y12_c00461{bottom:904.026450px;}
.y7_c00461{bottom:924.279300px;}
.y11_c00461{bottom:930.651450px;}
.y6_c00461{bottom:950.904300px;}
.y10_c00461{bottom:957.276450px;}
.y5_c00461{bottom:977.529300px;}
.yf_c00461{bottom:983.901450px;}
.y4_c00461{bottom:1004.154300px;}
.ye_c00461{bottom:1010.526450px;}
.y3_c00461{bottom:1030.779300px;}
.yd_c00461{bottom:1030.794450px;}
.y2_c00461{bottom:1057.404300px;}
.yc_c00461{bottom:1057.419450px;}
.y1_c00461{bottom:1093.600950px;}
.h2_c00461{height:39.264000px;}
.h3_c00461{height:49.080000px;}
.h1_c00461{height:1135.500000px;}
.h0_c00461{height:1135.506150px;}
.w0_c00461{width:893.950200px;}
.w1_c00461{width:894.000000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:77.603100px;}
.x2_c00461{left:96.736950px;}
.x3_c00461{left:439.006950px;}
.x4_c00461{left:458.154300px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls1_c00461{letter-spacing:-1.066667pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws1_c00461{word-spacing:-12.106667pt;}
.ws6_c00461{word-spacing:-2.720000pt;}
.ws5_c00461{word-spacing:-1.493333pt;}
.ws4_c00461{word-spacing:-0.800000pt;}
.ws2_c00461{word-spacing:0.000000pt;}
.ws3_c00461{word-spacing:1.066667pt;}
.ws0_c00461{word-spacing:1396.433067pt;}
._4_c00461{margin-left:-4.853333pt;}
._2_c00461{margin-left:-3.776000pt;}
._5_c00461{margin-left:-2.805333pt;}
._0_c00461{margin-left:-1.877333pt;}
._1_c00461{margin-left:-0.981333pt;}
._3_c00461{width:0.970667pt;}
.fs0_c00461{font-size:42.666667pt;}
.fs1_c00461{font-size:53.333333pt;}
.y0_c00461{bottom:0.000000pt;}
.yb_c00461{bottom:732.568400pt;}
.y15_c00461{bottom:738.229867pt;}
.ya_c00461{bottom:756.235067pt;}
.y14_c00461{bottom:756.245733pt;}
.y9_c00461{bottom:779.901733pt;}
.y13_c00461{bottom:779.912400pt;}
.y8_c00461{bottom:803.568400pt;}
.y12_c00461{bottom:803.579067pt;}
.y7_c00461{bottom:821.581600pt;}
.y11_c00461{bottom:827.245733pt;}
.y6_c00461{bottom:845.248267pt;}
.y10_c00461{bottom:850.912400pt;}
.y5_c00461{bottom:868.914933pt;}
.yf_c00461{bottom:874.579067pt;}
.y4_c00461{bottom:892.581600pt;}
.ye_c00461{bottom:898.245733pt;}
.y3_c00461{bottom:916.248267pt;}
.yd_c00461{bottom:916.261733pt;}
.y2_c00461{bottom:939.914933pt;}
.yc_c00461{bottom:939.928400pt;}
.y1_c00461{bottom:972.089733pt;}
.h2_c00461{height:34.901333pt;}
.h3_c00461{height:43.626667pt;}
.h1_c00461{height:1009.333333pt;}
.h0_c00461{height:1009.338800pt;}
.w0_c00461{width:794.622400pt;}
.w1_c00461{width:794.666667pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:68.980533pt;}
.x2_c00461{left:85.988400pt;}
.x3_c00461{left:390.228400pt;}
.x4_c00461{left:407.248267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d0fa9397d7a413073c4c409.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_c041572013f7203bf6c62200.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:0.934000;font-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_c00462{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls2_c00462{letter-spacing:-0.288000px;}
.ls3_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:0.480000px;}
.ls1_c00462{letter-spacing:0.720000px;}
.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;}
}
.ws7_c00462{word-spacing:-23.676760px;}
.ws3_c00462{word-spacing:-23.327314px;}
.ws5_c00462{word-spacing:-13.811374px;}
.ws1_c00462{word-spacing:-13.607544px;}
.ws0_c00462{word-spacing:-10.608000px;}
.wsf_c00462{word-spacing:-2.304000px;}
.ws10_c00462{word-spacing:-0.432000px;}
.ws9_c00462{word-spacing:0.000000px;}
.wse_c00462{word-spacing:0.144000px;}
.wsc_c00462{word-spacing:1.512000px;}
.ws11_c00462{word-spacing:2.376000px;}
.ws12_c00462{word-spacing:2.808000px;}
.wsb_c00462{word-spacing:2.880000px;}
.wsa_c00462{word-spacing:5.400000px;}
.ws13_c00462{word-spacing:5.616000px;}
.wsd_c00462{word-spacing:6.048000px;}
.ws4_c00462{word-spacing:2254.442210px;}
.ws8_c00462{word-spacing:2288.214029px;}
.ws2_c00462{word-spacing:2499.295092px;}
.ws6_c00462{word-spacing:2536.734837px;}
._0_c00462{margin-left:-2754.700200px;}
._6_c00462{margin-left:-6.216000px;}
._5_c00462{margin-left:-4.296000px;}
._1_c00462{margin-left:-2.256000px;}
._4_c00462{margin-left:-1.080000px;}
._2_c00462{width:1.008000px;}
._3_c00462{width:39.384000px;}
._8_c00462{width:49.878012px;}
._9_c00462{width:98.434428px;}
._b_c00462{width:99.908893px;}
._7_c00462{width:815.237724px;}
._a_c00462{width:827.381716px;}
.fc1_c00462{color:transparent;}
.fc0_c00462{color:rgb(35,31,32);}
.fs5_c00462{font-size:27.970200px;}
.fs9_c00462{font-size:28.389600px;}
.fs0_c00462{font-size:48.000000px;}
.fs2_c00462{font-size:48.948000px;}
.fs6_c00462{font-size:49.681200px;}
.fs1_c00462{font-size:72.000000px;}
.fs4_c00462{font-size:83.911200px;}
.fs8_c00462{font-size:85.168200px;}
.fs3_c00462{font-size:104.889000px;}
.fs7_c00462{font-size:106.459800px;}
.y43_c00462{bottom:-355.673250px;}
.y29_c00462{bottom:-350.903700px;}
.y3b_c00462{bottom:-292.072106px;}
.y35_c00462{bottom:-292.058574px;}
.y21_c00462{bottom:-288.240150px;}
.y1a_c00462{bottom:-288.227010px;}
.y3a_c00462{bottom:-276.099600px;}
.y34_c00462{bottom:-276.086068px;}
.y20_c00462{bottom:-272.503368px;}
.y19_c00462{bottom:-272.490228px;}
.y42_c00462{bottom:-34.526156px;}
.y28_c00462{bottom:-34.495632px;}
.y26_c00462{bottom:-30.965792px;}
.y40_c00462{bottom:-30.943050px;}
.y27_c00462{bottom:-18.758850px;}
.y41_c00462{bottom:-18.553650px;}
.y0_c00462{bottom:0.000000px;}
.y1f_c00462{bottom:6.231018px;}
.y37_c00462{bottom:6.811105px;}
.y1d_c00462{bottom:21.967800px;}
.y36_c00462{bottom:22.783611px;}
.y2a_c00462{bottom:106.300650px;}
.y39_c00462{bottom:113.111194px;}
.y38_c00462{bottom:129.083700px;}
.y25_c00462{bottom:265.471500px;}
.y3e_c00462{bottom:269.933047px;}
.y18_c00462{bottom:308.852931px;}
.y11_c00462{bottom:308.865168px;}
.y33_c00462{bottom:313.965124px;}
.y2c_c00462{bottom:313.977544px;}
.y17_c00462{bottom:324.589713px;}
.y10_c00462{bottom:324.601950px;}
.y32_c00462{bottom:329.937630px;}
.y2b_c00462{bottom:329.950050px;}
.y3f_c00462{bottom:376.234650px;}
.yf_c00462{bottom:398.937150px;}
.y1e_c00462{bottom:405.168000px;}
.y1c_c00462{bottom:405.168168px;}
.y16_c00462{bottom:413.283489px;}
.y31_c00462{bottom:419.959964px;}
.y1b_c00462{bottom:420.904950px;}
.y15_c00462{bottom:429.020271px;}
.y30_c00462{bottom:435.932470px;}
.y14_c00462{bottom:444.757053px;}
.y2f_c00462{bottom:451.904976px;}
.y13_c00462{bottom:460.493835px;}
.y2e_c00462{bottom:467.877481px;}
.y12_c00462{bottom:476.230617px;}
.y2d_c00462{bottom:483.849987px;}
.y23_c00462{bottom:566.145900px;}
.y3d_c00462{bottom:575.112000px;}
.y22_c00462{bottom:604.398000px;}
.y3c_c00462{bottom:613.936800px;}
.y24_c00462{bottom:664.408650px;}
.ye_c00462{bottom:715.473450px;}
.yd_c00462{bottom:740.223450px;}
.yc_c00462{bottom:764.973450px;}
.yb_c00462{bottom:789.723450px;}
.ya_c00462{bottom:814.473450px;}
.y9_c00462{bottom:839.223450px;}
.y8_c00462{bottom:863.973450px;}
.y7_c00462{bottom:888.723450px;}
.y6_c00462{bottom:928.467450px;}
.y5_c00462{bottom:953.217450px;}
.y4_c00462{bottom:977.967450px;}
.y3_c00462{bottom:1002.717450px;}
.y2_c00462{bottom:1042.467450px;}
.y1_c00462{bottom:1093.600950px;}
.h9_c00462{height:20.390276px;}
.he_c00462{height:20.696018px;}
.h6_c00462{height:35.683092px;}
.hb_c00462{height:36.217595px;}
.h2_c00462{height:39.264000px;}
.h3_c00462{height:39.984000px;}
.h4_c00462{height:58.896000px;}
.h8_c00462{height:61.171265px;}
.hd_c00462{height:62.087618px;}
.h7_c00462{height:76.464081px;}
.hc_c00462{height:77.609194px;}
.h5_c00462{height:293.110500px;}
.ha_c00462{height:297.501000px;}
.h1_c00462{height:1135.500000px;}
.h0_c00462{height:1135.506150px;}
.w2_c00462{width:657.655500px;}
.w0_c00462{width:893.950200px;}
.w1_c00462{width:894.000000px;}
.x25_c00462{left:-670.108650px;}
.x18_c00462{left:-667.460250px;}
.x21_c00462{left:-666.230640px;}
.x28_c00462{left:-659.216700px;}
.x19_c00462{left:-500.556259px;}
.x1a_c00462{left:-331.751961px;}
.x1b_c00462{left:-165.021854px;}
.x26_c00462{left:-123.505200px;}
.x27_c00462{left:-114.972454px;}
.x0_c00462{left:0.000000px;}
.x14_c00462{left:3.969000px;}
.x1c_c00462{left:5.310140px;}
.x6_c00462{left:6.578400px;}
.xf_c00462{left:7.789863px;}
.x17_c00462{left:14.700300px;}
.x5_c00462{left:124.073700px;}
.x4_c00462{left:128.626800px;}
.x10_c00462{left:130.774200px;}
.x1e_c00462{left:168.860650px;}
.x7_c00462{left:171.019206px;}
.x2_c00462{left:188.061900px;}
.x3_c00462{left:190.513350px;}
.x23_c00462{left:293.096874px;}
.x11_c00462{left:295.215006px;}
.x8_c00462{left:337.332273px;}
.x1f_c00462{left:339.627355px;}
.x12_c00462{left:461.234385px;}
.x22_c00462{left:463.702115px;}
.x9_c00462{left:501.601761px;}
.x20_c00462{left:508.444073px;}
.x15_c00462{left:542.506200px;}
.x16_c00462{left:550.913019px;}
.x13_c00462{left:625.676700px;}
.x24_c00462{left:632.518833px;}
.x1d_c00462{left:667.399072px;}
.xa_c00462{left:669.419979px;}
.x1_c00462{left:801.617850px;}
.xc_c00462{left:830.556795px;}
.xd_c00462{left:998.803308px;}
.xe_c00462{left:1165.128612px;}
.xb_c00462{left:1321.737738px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls2_c00462{letter-spacing:-0.256000pt;}
.ls3_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:0.426667pt;}
.ls1_c00462{letter-spacing:0.640000pt;}
.ws7_c00462{word-spacing:-21.046009pt;}
.ws3_c00462{word-spacing:-20.735390pt;}
.ws5_c00462{word-spacing:-12.276777pt;}
.ws1_c00462{word-spacing:-12.095595pt;}
.ws0_c00462{word-spacing:-9.429333pt;}
.wsf_c00462{word-spacing:-2.048000pt;}
.ws10_c00462{word-spacing:-0.384000pt;}
.ws9_c00462{word-spacing:0.000000pt;}
.wse_c00462{word-spacing:0.128000pt;}
.wsc_c00462{word-spacing:1.344000pt;}
.ws11_c00462{word-spacing:2.112000pt;}
.ws12_c00462{word-spacing:2.496000pt;}
.wsb_c00462{word-spacing:2.560000pt;}
.wsa_c00462{word-spacing:4.800000pt;}
.ws13_c00462{word-spacing:4.992000pt;}
.wsd_c00462{word-spacing:5.376000pt;}
.ws4_c00462{word-spacing:2003.948631pt;}
.ws8_c00462{word-spacing:2033.968026pt;}
.ws2_c00462{word-spacing:2221.595637pt;}
.ws6_c00462{word-spacing:2254.875411pt;}
._0_c00462{margin-left:-2448.622400pt;}
._6_c00462{margin-left:-5.525333pt;}
._5_c00462{margin-left:-3.818667pt;}
._1_c00462{margin-left:-2.005333pt;}
._4_c00462{margin-left:-0.960000pt;}
._2_c00462{width:0.896000pt;}
._3_c00462{width:35.008000pt;}
._8_c00462{width:44.336011pt;}
._9_c00462{width:87.497269pt;}
._b_c00462{width:88.807905pt;}
._7_c00462{width:724.655755pt;}
._a_c00462{width:735.450414pt;}
.fs5_c00462{font-size:24.862400pt;}
.fs9_c00462{font-size:25.235200pt;}
.fs0_c00462{font-size:42.666667pt;}
.fs2_c00462{font-size:43.509333pt;}
.fs6_c00462{font-size:44.161067pt;}
.fs1_c00462{font-size:64.000000pt;}
.fs4_c00462{font-size:74.587733pt;}
.fs8_c00462{font-size:75.705067pt;}
.fs3_c00462{font-size:93.234667pt;}
.fs7_c00462{font-size:94.630933pt;}
.y43_c00462{bottom:-316.154000pt;}
.y29_c00462{bottom:-311.914400pt;}
.y3b_c00462{bottom:-259.619650pt;}
.y35_c00462{bottom:-259.607621pt;}
.y21_c00462{bottom:-256.213467pt;}
.y1a_c00462{bottom:-256.201787pt;}
.y3a_c00462{bottom:-245.421867pt;}
.y34_c00462{bottom:-245.409838pt;}
.y20_c00462{bottom:-242.225216pt;}
.y19_c00462{bottom:-242.213536pt;}
.y42_c00462{bottom:-30.689916pt;}
.y28_c00462{bottom:-30.662784pt;}
.y26_c00462{bottom:-27.525148pt;}
.y40_c00462{bottom:-27.504933pt;}
.y27_c00462{bottom:-16.674533pt;}
.y41_c00462{bottom:-16.492133pt;}
.y0_c00462{bottom:0.000000pt;}
.y1f_c00462{bottom:5.538683pt;}
.y37_c00462{bottom:6.054315pt;}
.y1d_c00462{bottom:19.526933pt;}
.y36_c00462{bottom:20.252098pt;}
.y2a_c00462{bottom:94.489467pt;}
.y39_c00462{bottom:100.543284pt;}
.y38_c00462{bottom:114.741067pt;}
.y25_c00462{bottom:235.974667pt;}
.y3e_c00462{bottom:239.940487pt;}
.y18_c00462{bottom:274.535939pt;}
.y11_c00462{bottom:274.546816pt;}
.y33_c00462{bottom:279.080110pt;}
.y2c_c00462{bottom:279.091150pt;}
.y17_c00462{bottom:288.524189pt;}
.y10_c00462{bottom:288.535067pt;}
.y32_c00462{bottom:293.277893pt;}
.y2b_c00462{bottom:293.288933pt;}
.y3f_c00462{bottom:334.430800pt;}
.yf_c00462{bottom:354.610800pt;}
.y1e_c00462{bottom:360.149333pt;}
.y1c_c00462{bottom:360.149483pt;}
.y16_c00462{bottom:367.363101pt;}
.y31_c00462{bottom:373.297746pt;}
.y1b_c00462{bottom:374.137733pt;}
.y15_c00462{bottom:381.351352pt;}
.y30_c00462{bottom:387.495529pt;}
.y14_c00462{bottom:395.339603pt;}
.y2f_c00462{bottom:401.693312pt;}
.y13_c00462{bottom:409.327853pt;}
.y2e_c00462{bottom:415.891095pt;}
.y12_c00462{bottom:423.316104pt;}
.y2d_c00462{bottom:430.088878pt;}
.y23_c00462{bottom:503.240800pt;}
.y3d_c00462{bottom:511.210667pt;}
.y22_c00462{bottom:537.242667pt;}
.y3c_c00462{bottom:545.721600pt;}
.y24_c00462{bottom:590.585467pt;}
.ye_c00462{bottom:635.976400pt;}
.yd_c00462{bottom:657.976400pt;}
.yc_c00462{bottom:679.976400pt;}
.yb_c00462{bottom:701.976400pt;}
.ya_c00462{bottom:723.976400pt;}
.y9_c00462{bottom:745.976400pt;}
.y8_c00462{bottom:767.976400pt;}
.y7_c00462{bottom:789.976400pt;}
.y6_c00462{bottom:825.304400pt;}
.y5_c00462{bottom:847.304400pt;}
.y4_c00462{bottom:869.304400pt;}
.y3_c00462{bottom:891.304400pt;}
.y2_c00462{bottom:926.637733pt;}
.y1_c00462{bottom:972.089733pt;}
.h9_c00462{height:18.124690pt;}
.he_c00462{height:18.396461pt;}
.h6_c00462{height:31.718304pt;}
.hb_c00462{height:32.193418pt;}
.h2_c00462{height:34.901333pt;}
.h3_c00462{height:35.541333pt;}
.h4_c00462{height:52.352000pt;}
.h8_c00462{height:54.374458pt;}
.hd_c00462{height:55.188994pt;}
.h7_c00462{height:67.968072pt;}
.hc_c00462{height:68.985950pt;}
.h5_c00462{height:260.542667pt;}
.ha_c00462{height:264.445333pt;}
.h1_c00462{height:1009.333333pt;}
.h0_c00462{height:1009.338800pt;}
.w2_c00462{width:584.582667pt;}
.w0_c00462{width:794.622400pt;}
.w1_c00462{width:794.666667pt;}
.x25_c00462{left:-595.652133pt;}
.x18_c00462{left:-593.298000pt;}
.x21_c00462{left:-592.205014pt;}
.x28_c00462{left:-585.970400pt;}
.x19_c00462{left:-444.938897pt;}
.x1a_c00462{left:-294.890632pt;}
.x1b_c00462{left:-146.686093pt;}
.x26_c00462{left:-109.782400pt;}
.x27_c00462{left:-102.197737pt;}
.x0_c00462{left:0.000000pt;}
.x14_c00462{left:3.528000pt;}
.x1c_c00462{left:4.720125pt;}
.x6_c00462{left:5.847467pt;}
.xf_c00462{left:6.924323pt;}
.x17_c00462{left:13.066933pt;}
.x5_c00462{left:110.287733pt;}
.x4_c00462{left:114.334933pt;}
.x10_c00462{left:116.243733pt;}
.x1e_c00462{left:150.098356pt;}
.x7_c00462{left:152.017072pt;}
.x2_c00462{left:167.166133pt;}
.x3_c00462{left:169.345200pt;}
.x23_c00462{left:260.530555pt;}
.x11_c00462{left:262.413339pt;}
.x8_c00462{left:299.850909pt;}
.x1f_c00462{left:301.890982pt;}
.x12_c00462{left:409.986120pt;}
.x22_c00462{left:412.179658pt;}
.x9_c00462{left:445.868232pt;}
.x20_c00462{left:451.950287pt;}
.x15_c00462{left:482.227733pt;}
.x16_c00462{left:489.700461pt;}
.x13_c00462{left:556.157067pt;}
.x24_c00462{left:562.238962pt;}
.x1d_c00462{left:593.243620pt;}
.xa_c00462{left:595.039981pt;}
.x1_c00462{left:712.549200pt;}
.xc_c00462{left:738.272707pt;}
.xd_c00462{left:887.825163pt;}
.xe_c00462{left:1035.669877pt;}
.xb_c00462{left:1174.877989pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c12d0b7faf95a09ecc374c5.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_a309187e40196a5d5ae9855c.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_39cdc4fe5bf52b66cf49f34c.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_72027de6a1a3025dc26e1e80.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:0.934000;font-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_c00463{transform:matrix(0.214312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214312,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls1_c00463{letter-spacing:-1.056000px;}
.ls3_c00463{letter-spacing:-0.001951px;}
.ls2_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:0.001951px;}
.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:-6.230314px;}
.ws5_c00463{word-spacing:-6.217970px;}
.wsa_c00463{word-spacing:-0.001951px;}
.ws9_c00463{word-spacing:0.000000px;}
.wsb_c00463{word-spacing:0.001951px;}
.ws7_c00463{word-spacing:1021.304148px;}
.ws8_c00463{word-spacing:1030.161381px;}
.ws3_c00463{word-spacing:1104.436742px;}
.ws4_c00463{word-spacing:1113.349997px;}
.ws2_c00463{word-spacing:1114.348896px;}
.ws6_c00463{word-spacing:1142.046255px;}
.ws0_c00463{word-spacing:1578.187200px;}
._1_c00463{margin-left:-2.112000px;}
._2_c00463{margin-left:-1.104000px;}
._0_c00463{width:1.056000px;}
._3_c00463{width:57.058915px;}
.fc3_c00463{color:transparent;}
.fc1_c00463{color:rgb(237,28,36);}
.fc2_c00463{color:rgb(255,255,255);}
.fc0_c00463{color:rgb(35,31,32);}
.fs7_c00463{font-size:1.950600px;}
.fs4_c00463{font-size:12.756000px;}
.fsa_c00463{font-size:12.781200px;}
.fs5_c00463{font-size:12.806400px;}
.fs6_c00463{font-size:22.366800px;}
.fs1_c00463{font-size:22.411200px;}
.fs9_c00463{font-size:38.343000px;}
.fs3_c00463{font-size:38.419200px;}
.fs8_c00463{font-size:47.929200px;}
.fs0_c00463{font-size:48.000000px;}
.fs2_c00463{font-size:48.024000px;}
.y0_c00463{bottom:0.000000px;}
.y16_c00463{bottom:1.034700px;}
.y3e_c00463{bottom:123.676800px;}
.y32_c00463{bottom:152.289205px;}
.y20_c00463{bottom:152.317164px;}
.y39_c00463{bottom:159.468948px;}
.y31_c00463{bottom:159.480132px;}
.y1f_c00463{bottom:159.508090px;}
.y38_c00463{bottom:190.145014px;}
.y37_c00463{bottom:197.335941px;}
.y36_c00463{bottom:204.526867px;}
.y35_c00463{bottom:211.717793px;}
.y34_c00463{bottom:218.908719px;}
.y33_c00463{bottom:226.099645px;}
.y3d_c00463{bottom:269.874312px;}
.y26_c00463{bottom:279.673723px;}
.y23_c00463{bottom:279.679315px;}
.y28_c00463{bottom:286.859058px;}
.y25_c00463{bottom:286.864649px;}
.y22_c00463{bottom:286.870241px;}
.y18_c00463{bottom:286.874174px;}
.y27_c00463{bottom:294.049984px;}
.y24_c00463{bottom:294.055576px;}
.y21_c00463{bottom:294.061167px;}
.y17_c00463{bottom:294.065100px;}
.y30_c00463{bottom:312.116767px;}
.y2f_c00463{bottom:319.307693px;}
.y2e_c00463{bottom:326.498619px;}
.y2d_c00463{bottom:333.689545px;}
.y2c_c00463{bottom:340.880471px;}
.y2b_c00463{bottom:348.071398px;}
.y2a_c00463{bottom:355.262324px;}
.y29_c00463{bottom:362.453250px;}
.y3c_c00463{bottom:405.330545px;}
.y1c_c00463{bottom:425.158574px;}
.y1b_c00463{bottom:432.349500px;}
.y1a_c00463{bottom:496.187132px;}
.y19_c00463{bottom:496.814250px;}
.y3b_c00463{bottom:542.723100px;}
.y1e_c00463{bottom:548.645677px;}
.y1d_c00463{bottom:555.836603px;}
.y3a_c00463{bottom:560.202450px;}
.y15_c00463{bottom:597.333150px;}
.ya_c00463{bottom:619.852622px;}
.yc_c00463{bottom:627.052220px;}
.y9_c00463{bottom:627.057823px;}
.y5_c00463{bottom:627.063426px;}
.yb_c00463{bottom:634.257421px;}
.y8_c00463{bottom:634.263024px;}
.y4_c00463{bottom:634.268627px;}
.y14_c00463{bottom:740.317650px;}
.y10_c00463{bottom:744.852773px;}
.y7_c00463{bottom:761.883602px;}
.y6_c00463{bottom:769.088803px;}
.y13_c00463{bottom:822.003848px;}
.y12_c00463{bottom:829.209049px;}
.y11_c00463{bottom:836.414250px;}
.yf_c00463{bottom:880.578202px;}
.y3_c00463{bottom:900.446449px;}
.y2_c00463{bottom:907.651650px;}
.ye_c00463{bottom:1018.243800px;}
.yd_c00463{bottom:1035.757650px;}
.y1_c00463{bottom:1093.600950px;}
.ha_c00463{height:1.421987px;}
.hd_c00463{height:9.317495px;}
.h8_c00463{height:9.335866px;}
.h6_c00463{height:13.111158px;}
.h9_c00463{height:16.305397px;}
.h3_c00463{height:16.337765px;}
.hc_c00463{height:27.952047px;}
.h5_c00463{height:28.007597px;}
.hb_c00463{height:34.940387px;}
.h4_c00463{height:35.009496px;}
.h2_c00463{height:39.264000px;}
.h7_c00463{height:455.031000px;}
.h1_c00463{height:1135.500000px;}
.h0_c00463{height:1135.506150px;}
.w2_c00463{width:658.698000px;}
.w0_c00463{width:893.950200px;}
.w1_c00463{width:894.000000px;}
.x0_c00463{left:0.000000px;}
.xd_c00463{left:33.413700px;}
.x1_c00463{left:77.603100px;}
.xc_c00463{left:106.034700px;}
.xa_c00463{left:134.534550px;}
.x2_c00463{left:135.729300px;}
.xf_c00463{left:137.241000px;}
.x15_c00463{left:140.952750px;}
.x3_c00463{left:211.019726px;}
.x10_c00463{left:212.382265px;}
.xe_c00463{left:224.137800px;}
.x4_c00463{left:287.165700px;}
.x11_c00463{left:288.378150px;}
.x5_c00463{left:362.377687px;}
.x12_c00463{left:363.441131px;}
.x13_c00463{left:366.147514px;}
.x6_c00463{left:439.213800px;}
.x7_c00463{left:512.997073px;}
.x14_c00463{left:517.187579px;}
.x8_c00463{left:590.026050px;}
.x9_c00463{left:666.179308px;}
.xb_c00463{left:737.883600px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls1_c00463{letter-spacing:-0.938667pt;}
.ls3_c00463{letter-spacing:-0.001734pt;}
.ls2_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:0.001734pt;}
.ws1_c00463{word-spacing:-5.538057pt;}
.ws5_c00463{word-spacing:-5.527085pt;}
.wsa_c00463{word-spacing:-0.001734pt;}
.ws9_c00463{word-spacing:0.000000pt;}
.wsb_c00463{word-spacing:0.001734pt;}
.ws7_c00463{word-spacing:907.825909pt;}
.ws8_c00463{word-spacing:915.699005pt;}
.ws3_c00463{word-spacing:981.721549pt;}
.ws4_c00463{word-spacing:989.644442pt;}
.ws2_c00463{word-spacing:990.532352pt;}
.ws6_c00463{word-spacing:1015.152227pt;}
.ws0_c00463{word-spacing:1402.833067pt;}
._1_c00463{margin-left:-1.877333pt;}
._2_c00463{margin-left:-0.981333pt;}
._0_c00463{width:0.938667pt;}
._3_c00463{width:50.719036pt;}
.fs7_c00463{font-size:1.733867pt;}
.fs4_c00463{font-size:11.338667pt;}
.fsa_c00463{font-size:11.361067pt;}
.fs5_c00463{font-size:11.383467pt;}
.fs6_c00463{font-size:19.881600pt;}
.fs1_c00463{font-size:19.921067pt;}
.fs9_c00463{font-size:34.082667pt;}
.fs3_c00463{font-size:34.150400pt;}
.fs8_c00463{font-size:42.603733pt;}
.fs0_c00463{font-size:42.666667pt;}
.fs2_c00463{font-size:42.688000pt;}
.y0_c00463{bottom:0.000000pt;}
.y16_c00463{bottom:0.919733pt;}
.y3e_c00463{bottom:109.934933pt;}
.y32_c00463{bottom:135.368183pt;}
.y20_c00463{bottom:135.393035pt;}
.y39_c00463{bottom:141.750176pt;}
.y31_c00463{bottom:141.760117pt;}
.y1f_c00463{bottom:141.784969pt;}
.y38_c00463{bottom:169.017791pt;}
.y37_c00463{bottom:175.409725pt;}
.y36_c00463{bottom:181.801659pt;}
.y35_c00463{bottom:188.193594pt;}
.y34_c00463{bottom:194.585528pt;}
.y33_c00463{bottom:200.977463pt;}
.y3d_c00463{bottom:239.888277pt;}
.y26_c00463{bottom:248.598865pt;}
.y23_c00463{bottom:248.603835pt;}
.y28_c00463{bottom:254.985829pt;}
.y25_c00463{bottom:254.990799pt;}
.y22_c00463{bottom:254.995770pt;}
.y18_c00463{bottom:254.999266pt;}
.y27_c00463{bottom:261.377763pt;}
.y24_c00463{bottom:261.382734pt;}
.y21_c00463{bottom:261.387704pt;}
.y17_c00463{bottom:261.391200pt;}
.y30_c00463{bottom:277.437126pt;}
.y2f_c00463{bottom:283.829060pt;}
.y2e_c00463{bottom:290.220995pt;}
.y2d_c00463{bottom:296.612929pt;}
.y2c_c00463{bottom:303.004863pt;}
.y2b_c00463{bottom:309.396798pt;}
.y2a_c00463{bottom:315.788732pt;}
.y29_c00463{bottom:322.180667pt;}
.y3c_c00463{bottom:360.293818pt;}
.y1c_c00463{bottom:377.918732pt;}
.y1b_c00463{bottom:384.310667pt;}
.y1a_c00463{bottom:441.055229pt;}
.y19_c00463{bottom:441.612667pt;}
.y3b_c00463{bottom:482.420533pt;}
.y1e_c00463{bottom:487.685046pt;}
.y1d_c00463{bottom:494.076980pt;}
.y3a_c00463{bottom:497.957733pt;}
.y15_c00463{bottom:530.962800pt;}
.ya_c00463{bottom:550.980109pt;}
.yc_c00463{bottom:557.379751pt;}
.y9_c00463{bottom:557.384732pt;}
.y5_c00463{bottom:557.389712pt;}
.yb_c00463{bottom:563.784374pt;}
.y8_c00463{bottom:563.789355pt;}
.y4_c00463{bottom:563.794335pt;}
.y14_c00463{bottom:658.060133pt;}
.y10_c00463{bottom:662.091354pt;}
.y7_c00463{bottom:677.229869pt;}
.y6_c00463{bottom:683.634492pt;}
.y13_c00463{bottom:730.670087pt;}
.y12_c00463{bottom:737.074710pt;}
.y11_c00463{bottom:743.479333pt;}
.yf_c00463{bottom:782.736179pt;}
.y3_c00463{bottom:800.396844pt;}
.y2_c00463{bottom:806.801467pt;}
.ye_c00463{bottom:905.105600pt;}
.yd_c00463{bottom:920.673467pt;}
.y1_c00463{bottom:972.089733pt;}
.ha_c00463{height:1.263989pt;}
.hd_c00463{height:8.282218pt;}
.h8_c00463{height:8.298547pt;}
.h6_c00463{height:11.654363pt;}
.h9_c00463{height:14.493686pt;}
.h3_c00463{height:14.522458pt;}
.hc_c00463{height:24.846264pt;}
.h5_c00463{height:24.895642pt;}
.hb_c00463{height:31.058122pt;}
.h4_c00463{height:31.119552pt;}
.h2_c00463{height:34.901333pt;}
.h7_c00463{height:404.472000pt;}
.h1_c00463{height:1009.333333pt;}
.h0_c00463{height:1009.338800pt;}
.w2_c00463{width:585.509333pt;}
.w0_c00463{width:794.622400pt;}
.w1_c00463{width:794.666667pt;}
.x0_c00463{left:0.000000pt;}
.xd_c00463{left:29.701067pt;}
.x1_c00463{left:68.980533pt;}
.xc_c00463{left:94.253067pt;}
.xa_c00463{left:119.586267pt;}
.x2_c00463{left:120.648267pt;}
.xf_c00463{left:121.992000pt;}
.x15_c00463{left:125.291333pt;}
.x3_c00463{left:187.573090pt;}
.x10_c00463{left:188.784235pt;}
.xe_c00463{left:199.233600pt;}
.x4_c00463{left:255.258400pt;}
.x11_c00463{left:256.336133pt;}
.x5_c00463{left:322.113500pt;}
.x12_c00463{left:323.058783pt;}
.x13_c00463{left:325.464457pt;}
.x6_c00463{left:390.412267pt;}
.x7_c00463{left:455.997398pt;}
.x14_c00463{left:459.722292pt;}
.x8_c00463{left:524.467600pt;}
.x9_c00463{left:592.159385pt;}
.xb_c00463{left:655.896533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f56b77cf6c687ea71671d1dc.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_8183c695304923d24beed4bd.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00464;src:url('chunks/assets/font_00c1c589e31b0d6f8622c622.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:0.934000;font-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_c00464{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls1_c00464{letter-spacing:-0.864000px;}
.ls2_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:0.480000px;}
.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:-10.032000px;}
.ws7_c00464{word-spacing:0.000000px;}
.ws8_c00464{word-spacing:3.013824px;}
.ws2_c00464{word-spacing:1020.613974px;}
.ws3_c00464{word-spacing:1029.471207px;}
.ws5_c00464{word-spacing:1104.436742px;}
.ws6_c00464{word-spacing:1113.349997px;}
.ws4_c00464{word-spacing:1114.310477px;}
.ws1_c00464{word-spacing:1142.046255px;}
._0_c00464{margin-left:-2753.548200px;}
._1_c00464{margin-left:-2.256000px;}
._2_c00464{width:1.008000px;}
._7_c00464{width:5.629515px;}
._6_c00464{width:17.372298px;}
._4_c00464{width:33.684401px;}
._3_c00464{width:37.799892px;}
._9_c00464{width:54.055814px;}
._5_c00464{width:92.978788px;}
._a_c00464{width:376.889150px;}
._b_c00464{width:383.455632px;}
._8_c00464{width:660.592531px;}
.fc1_c00464{color:transparent;}
.fc0_c00464{color:rgb(35,31,32);}
.fs7_c00464{font-size:4.281000px;}
.fs5_c00464{font-size:12.781200px;}
.fsa_c00464{font-size:12.806400px;}
.fs2_c00464{font-size:21.173400px;}
.fs1_c00464{font-size:22.366800px;}
.fs6_c00464{font-size:22.411200px;}
.fs4_c00464{font-size:38.343000px;}
.fs9_c00464{font-size:38.419200px;}
.fs3_c00464{font-size:47.929200px;}
.fs0_c00464{font-size:48.000000px;}
.fs8_c00464{font-size:48.024000px;}
.y37_c00464{bottom:-2.872950px;}
.y0_c00464{bottom:0.000000px;}
.y12_c00464{bottom:109.075050px;}
.y11_c00464{bottom:111.691650px;}
.y19_c00464{bottom:123.170100px;}
.yf_c00464{bottom:152.285758px;}
.y8_c00464{bottom:152.291350px;}
.ye_c00464{bottom:158.995798px;}
.y7_c00464{bottom:159.001390px;}
.y14_c00464{bottom:208.062630px;}
.y13_c00464{bottom:214.414650px;}
.y10_c00464{bottom:227.118600px;}
.y2c_c00464{bottom:227.424750px;}
.y18_c00464{bottom:269.367762px;}
.ya_c00464{bottom:286.844427px;}
.y9_c00464{bottom:293.554467px;}
.yd_c00464{bottom:402.861019px;}
.y17_c00464{bottom:404.823995px;}
.yc_c00464{bottom:409.571059px;}
.yb_c00464{bottom:416.281099px;}
.y3_c00464{bottom:425.132760px;}
.y2_c00464{bottom:431.842800px;}
.y16_c00464{bottom:542.216550px;}
.y6_c00464{bottom:557.527441px;}
.y15_c00464{bottom:559.695750px;}
.y5_c00464{bottom:564.237481px;}
.y4_c00464{bottom:570.947521px;}
.y2b_c00464{bottom:599.458650px;}
.y31_c00464{bottom:625.272605px;}
.y32_c00464{bottom:625.754446px;}
.y1b_c00464{bottom:625.757640px;}
.y30_c00464{bottom:632.477806px;}
.y1a_c00464{bottom:632.481000px;}
.y26_c00464{bottom:632.486477px;}
.y36_c00464{bottom:743.070773px;}
.y28_c00464{bottom:760.101452px;}
.y29_c00464{bottom:760.583293px;}
.y1d_c00464{bottom:760.583419px;}
.y27_c00464{bottom:767.306653px;}
.y1c_c00464{bottom:767.306779px;}
.y2f_c00464{bottom:806.713680px;}
.y2e_c00464{bottom:813.437040px;}
.y2d_c00464{bottom:820.160400px;}
.y2a_c00464{bottom:833.604586px;}
.y35_c00464{bottom:878.796202px;}
.y1f_c00464{bottom:898.664299px;}
.y22_c00464{bottom:899.146140px;}
.y1e_c00464{bottom:905.869500px;}
.y21_c00464{bottom:937.540259px;}
.y20_c00464{bottom:938.916600px;}
.y34_c00464{bottom:1016.461800px;}
.y25_c00464{bottom:1033.293980px;}
.y33_c00464{bottom:1033.975650px;}
.y24_c00464{bottom:1040.017340px;}
.y23_c00464{bottom:1046.740700px;}
.y1_c00464{bottom:1093.600950px;}
.hb_c00464{height:3.120849px;}
.h9_c00464{height:9.317495px;}
.hf_c00464{height:9.335866px;}
.h5_c00464{height:15.435409px;}
.h4_c00464{height:16.305397px;}
.ha_c00464{height:16.337765px;}
.h8_c00464{height:27.952047px;}
.he_c00464{height:28.007597px;}
.h7_c00464{height:34.940387px;}
.hd_c00464{height:35.009496px;}
.h2_c00464{height:39.264000px;}
.h3_c00464{height:39.984000px;}
.hc_c00464{height:455.031000px;}
.h6_c00464{height:466.990500px;}
.h1_c00464{height:1135.500000px;}
.h0_c00464{height:1135.506150px;}
.w3_c00464{width:658.698000px;}
.w2_c00464{width:672.516000px;}
.w0_c00464{width:893.950200px;}
.w1_c00464{width:894.000000px;}
.x0_c00464{left:0.000000px;}
.x20_c00464{left:33.412950px;}
.x13_c00464{left:115.871700px;}
.x1d_c00464{left:129.421200px;}
.x1f_c00464{left:157.920450px;}
.x15_c00464{left:159.434550px;}
.x4_c00464{left:160.626900px;}
.x16_c00464{left:164.338500px;}
.x2_c00464{left:188.061900px;}
.x3_c00464{left:190.513350px;}
.x18_c00464{left:234.405626px;}
.x5_c00464{left:235.768165px;}
.x1b_c00464{left:310.476476px;}
.x6_c00464{left:311.546883px;}
.x17_c00464{left:385.731150px;}
.x7_c00464{left:386.827940px;}
.x8_c00464{left:391.346034px;}
.x9_c00464{left:398.911604px;}
.xd_c00464{left:402.261032px;}
.xe_c00464{left:408.182642px;}
.xa_c00464{left:411.554438px;}
.xf_c00464{left:419.265392px;}
.x10_c00464{left:463.518106px;}
.x19_c00464{left:512.829150px;}
.x1a_c00464{left:514.286239px;}
.x11_c00464{left:537.222303px;}
.xb_c00464{left:614.029895px;}
.x1e_c00464{left:631.251150px;}
.x14_c00464{left:646.090350px;}
.xc_c00464{left:690.032281px;}
.x1c_c00464{left:760.672662px;}
.x12_c00464{left:761.962050px;}
.x1_c00464{left:800.969850px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:-0.768000pt;}
.ls2_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:0.426667pt;}
.ws0_c00464{word-spacing:-8.917333pt;}
.ws7_c00464{word-spacing:0.000000pt;}
.ws8_c00464{word-spacing:2.678955pt;}
.ws2_c00464{word-spacing:907.212421pt;}
.ws3_c00464{word-spacing:915.085517pt;}
.ws5_c00464{word-spacing:981.721549pt;}
.ws6_c00464{word-spacing:989.644442pt;}
.ws4_c00464{word-spacing:990.498202pt;}
.ws1_c00464{word-spacing:1015.152227pt;}
._0_c00464{margin-left:-2447.598400pt;}
._1_c00464{margin-left:-2.005333pt;}
._2_c00464{width:0.896000pt;}
._7_c00464{width:5.004013pt;}
._6_c00464{width:15.442043pt;}
._4_c00464{width:29.941690pt;}
._3_c00464{width:33.599904pt;}
._9_c00464{width:48.049613pt;}
._5_c00464{width:82.647811pt;}
._a_c00464{width:335.012578pt;}
._b_c00464{width:340.849451pt;}
._8_c00464{width:587.193361pt;}
.fs7_c00464{font-size:3.805333pt;}
.fs5_c00464{font-size:11.361067pt;}
.fsa_c00464{font-size:11.383467pt;}
.fs2_c00464{font-size:18.820800pt;}
.fs1_c00464{font-size:19.881600pt;}
.fs6_c00464{font-size:19.921067pt;}
.fs4_c00464{font-size:34.082667pt;}
.fs9_c00464{font-size:34.150400pt;}
.fs3_c00464{font-size:42.603733pt;}
.fs0_c00464{font-size:42.666667pt;}
.fs8_c00464{font-size:42.688000pt;}
.y37_c00464{bottom:-2.553733pt;}
.y0_c00464{bottom:0.000000pt;}
.y12_c00464{bottom:96.955600pt;}
.y11_c00464{bottom:99.281467pt;}
.y19_c00464{bottom:109.484533pt;}
.yf_c00464{bottom:135.365119pt;}
.y8_c00464{bottom:135.370089pt;}
.ye_c00464{bottom:141.329599pt;}
.y7_c00464{bottom:141.334569pt;}
.y14_c00464{bottom:184.944560pt;}
.y13_c00464{bottom:190.590800pt;}
.y10_c00464{bottom:201.883200pt;}
.y2c_c00464{bottom:202.155333pt;}
.y18_c00464{bottom:239.438011pt;}
.ya_c00464{bottom:254.972824pt;}
.y9_c00464{bottom:260.937304pt;}
.yd_c00464{bottom:358.098683pt;}
.y17_c00464{bottom:359.843551pt;}
.yc_c00464{bottom:364.063163pt;}
.yb_c00464{bottom:370.027643pt;}
.y3_c00464{bottom:377.895787pt;}
.y2_c00464{bottom:383.860267pt;}
.y16_c00464{bottom:481.970267pt;}
.y6_c00464{bottom:495.579947pt;}
.y15_c00464{bottom:497.507333pt;}
.y5_c00464{bottom:501.544427pt;}
.y4_c00464{bottom:507.508907pt;}
.y2b_c00464{bottom:532.852133pt;}
.y31_c00464{bottom:555.797871pt;}
.y32_c00464{bottom:556.226174pt;}
.y1b_c00464{bottom:556.229013pt;}
.y30_c00464{bottom:562.202494pt;}
.y1a_c00464{bottom:562.205333pt;}
.y26_c00464{bottom:562.210202pt;}
.y36_c00464{bottom:660.507354pt;}
.y28_c00464{bottom:675.645735pt;}
.y29_c00464{bottom:676.074038pt;}
.y1d_c00464{bottom:676.074150pt;}
.y27_c00464{bottom:682.050358pt;}
.y1c_c00464{bottom:682.050470pt;}
.y2f_c00464{bottom:717.078827pt;}
.y2e_c00464{bottom:723.055147pt;}
.y2d_c00464{bottom:729.031467pt;}
.y2a_c00464{bottom:740.981854pt;}
.y35_c00464{bottom:781.152179pt;}
.y1f_c00464{bottom:798.812710pt;}
.y22_c00464{bottom:799.241013pt;}
.y1e_c00464{bottom:805.217333pt;}
.y21_c00464{bottom:833.369119pt;}
.y20_c00464{bottom:834.592533pt;}
.y34_c00464{bottom:903.521600pt;}
.y25_c00464{bottom:918.483538pt;}
.y33_c00464{bottom:919.089467pt;}
.y24_c00464{bottom:924.459858pt;}
.y23_c00464{bottom:930.436178pt;}
.y1_c00464{bottom:972.089733pt;}
.hb_c00464{height:2.774088pt;}
.h9_c00464{height:8.282218pt;}
.hf_c00464{height:8.298547pt;}
.h5_c00464{height:13.720363pt;}
.h4_c00464{height:14.493686pt;}
.ha_c00464{height:14.522458pt;}
.h8_c00464{height:24.846264pt;}
.he_c00464{height:24.895642pt;}
.h7_c00464{height:31.058122pt;}
.hd_c00464{height:31.119552pt;}
.h2_c00464{height:34.901333pt;}
.h3_c00464{height:35.541333pt;}
.hc_c00464{height:404.472000pt;}
.h6_c00464{height:415.102667pt;}
.h1_c00464{height:1009.333333pt;}
.h0_c00464{height:1009.338800pt;}
.w3_c00464{width:585.509333pt;}
.w2_c00464{width:597.792000pt;}
.w0_c00464{width:794.622400pt;}
.w1_c00464{width:794.666667pt;}
.x0_c00464{left:0.000000pt;}
.x20_c00464{left:29.700400pt;}
.x13_c00464{left:102.997067pt;}
.x1d_c00464{left:115.041067pt;}
.x1f_c00464{left:140.373733pt;}
.x15_c00464{left:141.719600pt;}
.x4_c00464{left:142.779467pt;}
.x16_c00464{left:146.078667pt;}
.x2_c00464{left:167.166133pt;}
.x3_c00464{left:169.345200pt;}
.x18_c00464{left:208.360557pt;}
.x5_c00464{left:209.571702pt;}
.x1b_c00464{left:275.979090pt;}
.x6_c00464{left:276.930563pt;}
.x17_c00464{left:342.872133pt;}
.x7_c00464{left:343.847058pt;}
.x8_c00464{left:347.863141pt;}
.x9_c00464{left:354.588092pt;}
.xd_c00464{left:357.565362pt;}
.xe_c00464{left:362.829015pt;}
.xa_c00464{left:365.826167pt;}
.xf_c00464{left:372.680348pt;}
.x10_c00464{left:412.016094pt;}
.x19_c00464{left:455.848133pt;}
.x1a_c00464{left:457.143324pt;}
.x11_c00464{left:477.530936pt;}
.xb_c00464{left:545.804351pt;}
.x1e_c00464{left:561.112133pt;}
.x14_c00464{left:574.302533pt;}
.xc_c00464{left:613.362027pt;}
.x1c_c00464{left:676.153477pt;}
.x12_c00464{left:677.299600pt;}
.x1_c00464{left:711.973200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3deb9f092ce02864a2cb6889.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.067000;font-style:normal;font-weight:normal;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_23ad37b22f29fb405bf6e924.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00465;src:url('chunks/assets/font_43ba36a6bd54efac0e2e3101.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;line-height:0.934000;font-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_c00465{transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:-0.480000px;}
.ls1_c00465{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00465{word-spacing:-6.230314px;}
.ws5_c00465{word-spacing:-6.217970px;}
.ws9_c00465{word-spacing:0.000000px;}
.wsa_c00465{word-spacing:3.013824px;}
.ws7_c00465{word-spacing:1021.265805px;}
.ws8_c00465{word-spacing:1030.161381px;}
.ws3_c00465{word-spacing:1104.436742px;}
.ws4_c00465{word-spacing:1113.349997px;}
.ws2_c00465{word-spacing:1114.310477px;}
.ws6_c00465{word-spacing:1142.046255px;}
.ws0_c00465{word-spacing:1574.539200px;}
._2_c00465{margin-left:-3.408000px;}
._1_c00465{margin-left:-1.056000px;}
._0_c00465{width:1.056000px;}
._4_c00465{width:5.629515px;}
._3_c00465{width:17.372298px;}
._7_c00465{width:25.055722px;}
._5_c00465{width:49.733126px;}
._6_c00465{width:56.969270px;}
._8_c00465{width:64.863720px;}
._9_c00465{width:76.091854px;}
._c_c00465{width:81.840121px;}
._a_c00465{width:92.509085px;}
._b_c00465{width:350.062787px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(35,31,32);}
.fs2_c00465{font-size:4.281000px;}
.fs9_c00465{font-size:12.781200px;}
.fs5_c00465{font-size:12.806400px;}
.fs6_c00465{font-size:22.366800px;}
.fs1_c00465{font-size:22.411200px;}
.fs8_c00465{font-size:38.343000px;}
.fs4_c00465{font-size:38.419200px;}
.fs7_c00465{font-size:47.929200px;}
.fs0_c00465{font-size:48.000000px;}
.fs3_c00465{font-size:48.024000px;}
.y0_c00465{bottom:0.000000px;}
.y1c_c00465{bottom:1.035000px;}
.y33_c00465{bottom:124.521450px;}
.y29_c00465{bottom:153.155022px;}
.y2a_c00465{bottom:153.635908px;}
.y23_c00465{bottom:153.641500px;}
.y28_c00465{bottom:160.345948px;}
.y22_c00465{bottom:160.351540px;}
.y32_c00465{bottom:205.445430px;}
.y31_c00465{bottom:212.155470px;}
.y30_c00465{bottom:218.865510px;}
.y2f_c00465{bottom:225.575550px;}
.y2e_c00465{bottom:270.717912px;}
.y27_c00465{bottom:287.713691px;}
.y21_c00465{bottom:288.194577px;}
.y20_c00465{bottom:294.904617px;}
.y26_c00465{bottom:403.003362px;}
.y2d_c00465{bottom:406.174145px;}
.y25_c00465{bottom:409.713402px;}
.y24_c00465{bottom:416.423442px;}
.y1e_c00465{bottom:426.002024px;}
.y1f_c00465{bottom:426.482910px;}
.y1d_c00465{bottom:433.192950px;}
.y2c_c00465{bottom:543.566700px;}
.y2b_c00465{bottom:561.045750px;}
.y1b_c00465{bottom:597.333150px;}
.y10_c00465{bottom:627.057673px;}
.y8_c00465{bottom:627.063276px;}
.y11_c00465{bottom:627.539514px;}
.yf_c00465{bottom:634.262874px;}
.y7_c00465{bottom:634.268477px;}
.y15_c00465{bottom:683.511486px;}
.y14_c00465{bottom:690.234846px;}
.y13_c00465{bottom:696.958206px;}
.y12_c00465{bottom:703.681566px;}
.y19_c00465{bottom:744.852773px;}
.ye_c00465{bottom:761.883452px;}
.yd_c00465{bottom:762.365293px;}
.y9_c00465{bottom:769.088653px;}
.y1a_c00465{bottom:769.093950px;}
.yc_c00465{bottom:876.600782px;}
.y18_c00465{bottom:880.578202px;}
.yb_c00465{bottom:883.324142px;}
.ya_c00465{bottom:890.047502px;}
.y3_c00465{bottom:900.446299px;}
.y6_c00465{bottom:900.928140px;}
.y2_c00465{bottom:907.651500px;}
.y5_c00465{bottom:939.321358px;}
.y4_c00465{bottom:940.697700px;}
.y17_c00465{bottom:1018.243800px;}
.y16_c00465{bottom:1035.757650px;}
.y1_c00465{bottom:1093.600950px;}
.h4_c00465{height:3.120849px;}
.hc_c00465{height:9.317495px;}
.h8_c00465{height:9.335866px;}
.h9_c00465{height:16.305397px;}
.h3_c00465{height:16.337765px;}
.hb_c00465{height:27.952047px;}
.h6_c00465{height:28.007597px;}
.ha_c00465{height:34.940387px;}
.h5_c00465{height:35.009496px;}
.h2_c00465{height:39.264000px;}
.h7_c00465{height:455.031000px;}
.h1_c00465{height:1135.500000px;}
.h0_c00465{height:1135.506150px;}
.w2_c00465{width:658.698000px;}
.w0_c00465{width:893.950200px;}
.w1_c00465{width:894.000000px;}
.x0_c00465{left:0.000000px;}
.x12_c00465{left:33.412500px;}
.x1_c00465{left:77.603100px;}
.x11_c00465{left:106.483200px;}
.x10_c00465{left:134.981550px;}
.x2_c00465{left:136.176300px;}
.x13_c00465{left:137.241750px;}
.x18_c00465{left:140.952300px;}
.x3_c00465{left:211.466726px;}
.x16_c00465{left:212.529546px;}
.x6_c00465{left:287.613300px;}
.xe_c00465{left:362.792516px;}
.xc_c00465{left:374.479957px;}
.xa_c00465{left:376.749091px;}
.x15_c00465{left:389.333508px;}
.xb_c00465{left:390.352690px;}
.x14_c00465{left:405.079736px;}
.xd_c00465{left:439.662932px;}
.x4_c00465{left:489.890700px;}
.x5_c00465{left:491.347789px;}
.x7_c00465{left:513.442050px;}
.x8_c00465{left:590.473500px;}
.x9_c00465{left:666.626758px;}
.xf_c00465{left:737.222038px;}
.x17_c00465{left:738.682350px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:-0.426667pt;}
.ls1_c00465{letter-spacing:0.000000pt;}
.ws1_c00465{word-spacing:-5.538057pt;}
.ws5_c00465{word-spacing:-5.527085pt;}
.ws9_c00465{word-spacing:0.000000pt;}
.wsa_c00465{word-spacing:2.678955pt;}
.ws7_c00465{word-spacing:907.791827pt;}
.ws8_c00465{word-spacing:915.699005pt;}
.ws3_c00465{word-spacing:981.721549pt;}
.ws4_c00465{word-spacing:989.644442pt;}
.ws2_c00465{word-spacing:990.498202pt;}
.ws6_c00465{word-spacing:1015.152227pt;}
.ws0_c00465{word-spacing:1399.590400pt;}
._2_c00465{margin-left:-3.029333pt;}
._1_c00465{margin-left:-0.938667pt;}
._0_c00465{width:0.938667pt;}
._4_c00465{width:5.004013pt;}
._3_c00465{width:15.442043pt;}
._7_c00465{width:22.271753pt;}
._5_c00465{width:44.207223pt;}
._6_c00465{width:50.639351pt;}
._8_c00465{width:57.656640pt;}
._9_c00465{width:67.637203pt;}
._c_c00465{width:72.746774pt;}
._a_c00465{width:82.230298pt;}
._b_c00465{width:311.166922pt;}
.fs2_c00465{font-size:3.805333pt;}
.fs9_c00465{font-size:11.361067pt;}
.fs5_c00465{font-size:11.383467pt;}
.fs6_c00465{font-size:19.881600pt;}
.fs1_c00465{font-size:19.921067pt;}
.fs8_c00465{font-size:34.082667pt;}
.fs4_c00465{font-size:34.150400pt;}
.fs7_c00465{font-size:42.603733pt;}
.fs0_c00465{font-size:42.666667pt;}
.fs3_c00465{font-size:42.688000pt;}
.y0_c00465{bottom:0.000000pt;}
.y1c_c00465{bottom:0.920000pt;}
.y33_c00465{bottom:110.685733pt;}
.y29_c00465{bottom:136.137798pt;}
.y2a_c00465{bottom:136.565252pt;}
.y23_c00465{bottom:136.570222pt;}
.y28_c00465{bottom:142.529732pt;}
.y22_c00465{bottom:142.534702pt;}
.y32_c00465{bottom:182.618160pt;}
.y31_c00465{bottom:188.582640pt;}
.y30_c00465{bottom:194.547120pt;}
.y2f_c00465{bottom:200.511600pt;}
.y2e_c00465{bottom:240.638144pt;}
.y27_c00465{bottom:255.745503pt;}
.y21_c00465{bottom:256.172958pt;}
.y20_c00465{bottom:262.137438pt;}
.y26_c00465{bottom:358.225210pt;}
.y2d_c00465{bottom:361.043685pt;}
.y25_c00465{bottom:364.189690pt;}
.y24_c00465{bottom:370.154170pt;}
.y1e_c00465{bottom:378.668466pt;}
.y1f_c00465{bottom:379.095920pt;}
.y1d_c00465{bottom:385.060400pt;}
.y2c_c00465{bottom:483.170400pt;}
.y2b_c00465{bottom:498.707333pt;}
.y1b_c00465{bottom:530.962800pt;}
.y10_c00465{bottom:557.384598pt;}
.y8_c00465{bottom:557.389579pt;}
.y11_c00465{bottom:557.812901pt;}
.yf_c00465{bottom:563.789221pt;}
.y7_c00465{bottom:563.794202pt;}
.y15_c00465{bottom:607.565765pt;}
.y14_c00465{bottom:613.542085pt;}
.y13_c00465{bottom:619.518405pt;}
.y12_c00465{bottom:625.494725pt;}
.y19_c00465{bottom:662.091354pt;}
.ye_c00465{bottom:677.229735pt;}
.yd_c00465{bottom:677.658038pt;}
.y9_c00465{bottom:683.634358pt;}
.y1a_c00465{bottom:683.639067pt;}
.yc_c00465{bottom:779.200695pt;}
.y18_c00465{bottom:782.736179pt;}
.yb_c00465{bottom:785.177015pt;}
.ya_c00465{bottom:791.153335pt;}
.y3_c00465{bottom:800.396710pt;}
.y6_c00465{bottom:800.825013pt;}
.y2_c00465{bottom:806.801333pt;}
.y5_c00465{bottom:834.952319pt;}
.y4_c00465{bottom:836.175733pt;}
.y17_c00465{bottom:905.105600pt;}
.y16_c00465{bottom:920.673467pt;}
.y1_c00465{bottom:972.089733pt;}
.h4_c00465{height:2.774088pt;}
.hc_c00465{height:8.282218pt;}
.h8_c00465{height:8.298547pt;}
.h9_c00465{height:14.493686pt;}
.h3_c00465{height:14.522458pt;}
.hb_c00465{height:24.846264pt;}
.h6_c00465{height:24.895642pt;}
.ha_c00465{height:31.058122pt;}
.h5_c00465{height:31.119552pt;}
.h2_c00465{height:34.901333pt;}
.h7_c00465{height:404.472000pt;}
.h1_c00465{height:1009.333333pt;}
.h0_c00465{height:1009.338800pt;}
.w2_c00465{width:585.509333pt;}
.w0_c00465{width:794.622400pt;}
.w1_c00465{width:794.666667pt;}
.x0_c00465{left:0.000000pt;}
.x12_c00465{left:29.700000pt;}
.x1_c00465{left:68.980533pt;}
.x11_c00465{left:94.651733pt;}
.x10_c00465{left:119.983600pt;}
.x2_c00465{left:121.045600pt;}
.x13_c00465{left:121.992667pt;}
.x18_c00465{left:125.290933pt;}
.x3_c00465{left:187.970423pt;}
.x16_c00465{left:188.915152pt;}
.x6_c00465{left:255.656267pt;}
.xe_c00465{left:322.482237pt;}
.xc_c00465{left:332.871073pt;}
.xa_c00465{left:334.888081pt;}
.x15_c00465{left:346.074230pt;}
.xb_c00465{left:346.980169pt;}
.x14_c00465{left:360.070876pt;}
.xd_c00465{left:390.811495pt;}
.x4_c00465{left:435.458400pt;}
.x5_c00465{left:436.753590pt;}
.x7_c00465{left:456.392933pt;}
.x8_c00465{left:524.865333pt;}
.x9_c00465{left:592.557118pt;}
.xf_c00465{left:655.308478pt;}
.x17_c00465{left:656.606533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba702e4ec2e7874e0ef249d8.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:0.955000;font-style:normal;font-weight:normal;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_88eae78d2fe84237eef275f7.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00466;src:url('chunks/assets/font_c041572013f7203bf6c62200.woff2')format("woff");}.ff6_c00466{font-family:ff6_c00466;line-height:0.934000;font-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_c00466{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241906,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls2_c00466{letter-spacing:-0.192000px;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls1_c00466{letter-spacing:0.001876px;}
.ls0_c00466{letter-spacing:0.480000px;}
.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:-10.704000px;}
.ws1_c00466{word-spacing:-6.230314px;}
.ws6_c00466{word-spacing:-6.217970px;}
.ws2_c00466{word-spacing:-0.521417px;}
.wsb_c00466{word-spacing:-0.001876px;}
.wsa_c00466{word-spacing:0.000000px;}
.ws8_c00466{word-spacing:1021.304148px;}
.ws9_c00466{word-spacing:1030.161381px;}
.ws4_c00466{word-spacing:1104.436742px;}
.ws5_c00466{word-spacing:1113.349997px;}
.ws3_c00466{word-spacing:1114.348896px;}
.ws7_c00466{word-spacing:1142.046255px;}
._0_c00466{margin-left:-2754.892200px;}
._1_c00466{margin-left:-2.256000px;}
._5_c00466{margin-left:-1.230174px;}
._2_c00466{width:1.008000px;}
._7_c00466{width:22.791769px;}
._8_c00466{width:44.979635px;}
._4_c00466{width:57.439906px;}
._3_c00466{width:345.872050px;}
._6_c00466{width:371.691482px;}
.fc1_c00466{color:transparent;}
.fc0_c00466{color:rgb(35,31,32);}
.fs1_c00466{font-size:1.626000px;}
.fs4_c00466{font-size:1.875600px;}
.fs3_c00466{font-size:4.281000px;}
.fsb_c00466{font-size:12.781200px;}
.fs7_c00466{font-size:12.806400px;}
.fs8_c00466{font-size:22.366800px;}
.fs2_c00466{font-size:22.411200px;}
.fsa_c00466{font-size:38.343000px;}
.fs6_c00466{font-size:38.419200px;}
.fs9_c00466{font-size:47.929200px;}
.fs0_c00466{font-size:48.000000px;}
.fs5_c00466{font-size:48.024000px;}
.y0_c00466{bottom:0.000000px;}
.y28_c00466{bottom:1.035750px;}
.y3e_c00466{bottom:123.457050px;}
.y37_c00466{bottom:152.091972px;}
.y33_c00466{bottom:152.097564px;}
.y36_c00466{bottom:159.282898px;}
.y32_c00466{bottom:159.288490px;}
.y3d_c00466{bottom:268.040024px;}
.y3b_c00466{bottom:269.654712px;}
.y3c_c00466{bottom:275.230950px;}
.y35_c00466{bottom:286.650641px;}
.y34_c00466{bottom:293.841567px;}
.y3a_c00466{bottom:405.110945px;}
.y31_c00466{bottom:424.933382px;}
.y2a_c00466{bottom:424.938974px;}
.y30_c00466{bottom:432.124308px;}
.y29_c00466{bottom:432.129900px;}
.y2f_c00466{bottom:472.652950px;}
.y2e_c00466{bottom:479.843876px;}
.y2d_c00466{bottom:487.034802px;}
.y2c_c00466{bottom:494.225728px;}
.y2b_c00466{bottom:501.416655px;}
.y39_c00466{bottom:542.503500px;}
.y38_c00466{bottom:559.982850px;}
.y27_c00466{bottom:595.206150px;}
.y1d_c00466{bottom:624.930967px;}
.yc_c00466{bottom:624.937326px;}
.y1c_c00466{bottom:632.136168px;}
.yb_c00466{bottom:632.142527px;}
.y22_c00466{bottom:670.453717px;}
.y10_c00466{bottom:677.159713px;}
.y21_c00466{bottom:677.658918px;}
.yf_c00466{bottom:677.762250px;}
.y20_c00466{bottom:684.864119px;}
.y1f_c00466{bottom:692.069320px;}
.y1e_c00466{bottom:699.274520px;}
.y26_c00466{bottom:742.726823px;}
.y1b_c00466{bottom:759.028382px;}
.y14_c00466{bottom:759.033985px;}
.y19_c00466{bottom:759.756746px;}
.ye_c00466{bottom:759.757502px;}
.y12_c00466{bottom:759.762349px;}
.y1a_c00466{bottom:766.233583px;}
.y13_c00466{bottom:766.239186px;}
.y15_c00466{bottom:766.961947px;}
.yd_c00466{bottom:766.962703px;}
.y11_c00466{bottom:766.967550px;}
.y3_c00466{bottom:813.965734px;}
.y2_c00466{bottom:814.488900px;}
.y18_c00466{bottom:873.695287px;}
.y25_c00466{bottom:878.452252px;}
.y17_c00466{bottom:880.900488px;}
.y16_c00466{bottom:888.105689px;}
.y6_c00466{bottom:891.115148px;}
.y8_c00466{bottom:898.314746px;}
.y5_c00466{bottom:898.320349px;}
.y7_c00466{bottom:905.519947px;}
.y4_c00466{bottom:905.525550px;}
.ya_c00466{bottom:937.195859px;}
.y9_c00466{bottom:938.572200px;}
.y24_c00466{bottom:1016.117850px;}
.y23_c00466{bottom:1033.631700px;}
.y1_c00466{bottom:1093.600950px;}
.h4_c00466{height:1.185354px;}
.h7_c00466{height:1.367312px;}
.h6_c00466{height:3.120849px;}
.hf_c00466{height:9.317495px;}
.hb_c00466{height:9.335866px;}
.hc_c00466{height:16.305397px;}
.h5_c00466{height:16.337765px;}
.he_c00466{height:27.952047px;}
.h9_c00466{height:28.007597px;}
.hd_c00466{height:34.940387px;}
.h8_c00466{height:35.009496px;}
.h2_c00466{height:39.264000px;}
.h3_c00466{height:39.984000px;}
.ha_c00466{height:455.032500px;}
.h1_c00466{height:1135.500000px;}
.h0_c00466{height:1135.506150px;}
.w2_c00466{width:658.698000px;}
.w0_c00466{width:893.950200px;}
.w1_c00466{width:894.000000px;}
.x0_c00466{left:0.000000px;}
.x16_c00466{left:33.412650px;}
.x15_c00466{left:129.421200px;}
.x14_c00466{left:157.920450px;}
.x7_c00466{left:159.061448px;}
.x17_c00466{left:160.626900px;}
.x1d_c00466{left:164.338200px;}
.x2_c00466{left:188.061900px;}
.x3_c00466{left:190.513350px;}
.xe_c00466{left:233.397883px;}
.x5_c00466{left:234.402300px;}
.x18_c00466{left:235.768165px;}
.xd_c00466{left:253.598550px;}
.x6_c00466{left:310.549955px;}
.x19_c00466{left:311.764050px;}
.x9_c00466{left:385.761300px;}
.x1a_c00466{left:386.827031px;}
.x10_c00466{left:398.730908px;}
.xf_c00466{left:403.807045px;}
.x1b_c00466{left:405.519450px;}
.x1c_c00466{left:409.360948px;}
.x11_c00466{left:422.705290px;}
.x12_c00466{left:462.597226px;}
.x4_c00466{left:473.127900px;}
.x8_c00466{left:510.814200px;}
.xa_c00466{left:536.380050px;}
.xb_c00466{left:613.411800px;}
.xc_c00466{left:689.565058px;}
.x13_c00466{left:761.260082px;}
.x1_c00466{left:800.837850px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls2_c00466{letter-spacing:-0.170667pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls1_c00466{letter-spacing:0.001667pt;}
.ls0_c00466{letter-spacing:0.426667pt;}
.ws0_c00466{word-spacing:-9.514667pt;}
.ws1_c00466{word-spacing:-5.538057pt;}
.ws6_c00466{word-spacing:-5.527085pt;}
.ws2_c00466{word-spacing:-0.463482pt;}
.wsb_c00466{word-spacing:-0.001667pt;}
.wsa_c00466{word-spacing:0.000000pt;}
.ws8_c00466{word-spacing:907.825909pt;}
.ws9_c00466{word-spacing:915.699005pt;}
.ws4_c00466{word-spacing:981.721549pt;}
.ws5_c00466{word-spacing:989.644442pt;}
.ws3_c00466{word-spacing:990.532352pt;}
.ws7_c00466{word-spacing:1015.152227pt;}
._0_c00466{margin-left:-2448.793067pt;}
._1_c00466{margin-left:-2.005333pt;}
._5_c00466{margin-left:-1.093488pt;}
._2_c00466{width:0.896000pt;}
._7_c00466{width:20.259350pt;}
._8_c00466{width:39.981898pt;}
._4_c00466{width:51.057694pt;}
._3_c00466{width:307.441822pt;}
._6_c00466{width:330.392429pt;}
.fs1_c00466{font-size:1.445333pt;}
.fs4_c00466{font-size:1.667200pt;}
.fs3_c00466{font-size:3.805333pt;}
.fsb_c00466{font-size:11.361067pt;}
.fs7_c00466{font-size:11.383467pt;}
.fs8_c00466{font-size:19.881600pt;}
.fs2_c00466{font-size:19.921067pt;}
.fsa_c00466{font-size:34.082667pt;}
.fs6_c00466{font-size:34.150400pt;}
.fs9_c00466{font-size:42.603733pt;}
.fs0_c00466{font-size:42.666667pt;}
.fs5_c00466{font-size:42.688000pt;}
.y0_c00466{bottom:0.000000pt;}
.y28_c00466{bottom:0.920667pt;}
.y3e_c00466{bottom:109.739600pt;}
.y37_c00466{bottom:135.192864pt;}
.y33_c00466{bottom:135.197835pt;}
.y36_c00466{bottom:141.584799pt;}
.y32_c00466{bottom:141.589769pt;}
.y3d_c00466{bottom:238.257799pt;}
.y3b_c00466{bottom:239.693077pt;}
.y3c_c00466{bottom:244.649733pt;}
.y35_c00466{bottom:254.800570pt;}
.y34_c00466{bottom:261.192504pt;}
.y3a_c00466{bottom:360.098618pt;}
.y31_c00466{bottom:377.718562pt;}
.y2a_c00466{bottom:377.723532pt;}
.y30_c00466{bottom:384.110496pt;}
.y29_c00466{bottom:384.115467pt;}
.y2f_c00466{bottom:420.135955pt;}
.y2e_c00466{bottom:426.527890pt;}
.y2d_c00466{bottom:432.919824pt;}
.y2c_c00466{bottom:439.311759pt;}
.y2b_c00466{bottom:445.703693pt;}
.y39_c00466{bottom:482.225333pt;}
.y38_c00466{bottom:497.762533pt;}
.y27_c00466{bottom:529.072133pt;}
.y1d_c00466{bottom:555.494193pt;}
.yc_c00466{bottom:555.499845pt;}
.y1c_c00466{bottom:561.898816pt;}
.yb_c00466{bottom:561.904468pt;}
.y22_c00466{bottom:595.958860pt;}
.y10_c00466{bottom:601.919745pt;}
.y21_c00466{bottom:602.363483pt;}
.yf_c00466{bottom:602.455333pt;}
.y20_c00466{bottom:608.768106pt;}
.y1f_c00466{bottom:615.172729pt;}
.y1e_c00466{bottom:621.577351pt;}
.y26_c00466{bottom:660.201620pt;}
.y1b_c00466{bottom:674.691895pt;}
.y14_c00466{bottom:674.696876pt;}
.y19_c00466{bottom:675.339330pt;}
.ye_c00466{bottom:675.340002pt;}
.y12_c00466{bottom:675.344310pt;}
.y1a_c00466{bottom:681.096518pt;}
.y13_c00466{bottom:681.101499pt;}
.y15_c00466{bottom:681.743953pt;}
.yd_c00466{bottom:681.744625pt;}
.y11_c00466{bottom:681.748933pt;}
.y3_c00466{bottom:723.525097pt;}
.y2_c00466{bottom:723.990133pt;}
.y18_c00466{bottom:776.618033pt;}
.y25_c00466{bottom:780.846446pt;}
.y17_c00466{bottom:783.022656pt;}
.y16_c00466{bottom:789.427279pt;}
.y6_c00466{bottom:792.102354pt;}
.y8_c00466{bottom:798.501997pt;}
.y5_c00466{bottom:798.506977pt;}
.y7_c00466{bottom:804.906620pt;}
.y4_c00466{bottom:804.911600pt;}
.ya_c00466{bottom:833.062985pt;}
.y9_c00466{bottom:834.286400pt;}
.y24_c00466{bottom:903.215867pt;}
.y23_c00466{bottom:918.783733pt;}
.y1_c00466{bottom:972.089733pt;}
.h4_c00466{height:1.053648pt;}
.h7_c00466{height:1.215389pt;}
.h6_c00466{height:2.774088pt;}
.hf_c00466{height:8.282218pt;}
.hb_c00466{height:8.298547pt;}
.hc_c00466{height:14.493686pt;}
.h5_c00466{height:14.522458pt;}
.he_c00466{height:24.846264pt;}
.h9_c00466{height:24.895642pt;}
.hd_c00466{height:31.058122pt;}
.h8_c00466{height:31.119552pt;}
.h2_c00466{height:34.901333pt;}
.h3_c00466{height:35.541333pt;}
.ha_c00466{height:404.473333pt;}
.h1_c00466{height:1009.333333pt;}
.h0_c00466{height:1009.338800pt;}
.w2_c00466{width:585.509333pt;}
.w0_c00466{width:794.622400pt;}
.w1_c00466{width:794.666667pt;}
.x0_c00466{left:0.000000pt;}
.x16_c00466{left:29.700133pt;}
.x15_c00466{left:115.041067pt;}
.x14_c00466{left:140.373733pt;}
.x7_c00466{left:141.387954pt;}
.x17_c00466{left:142.779467pt;}
.x1d_c00466{left:146.078400pt;}
.x2_c00466{left:167.166133pt;}
.x3_c00466{left:169.345200pt;}
.xe_c00466{left:207.464785pt;}
.x5_c00466{left:208.357600pt;}
.x18_c00466{left:209.571702pt;}
.xd_c00466{left:225.420933pt;}
.x6_c00466{left:276.044404pt;}
.x19_c00466{left:277.123600pt;}
.x9_c00466{left:342.898933pt;}
.x1a_c00466{left:343.846250pt;}
.x10_c00466{left:354.427474pt;}
.xf_c00466{left:358.939596pt;}
.x1b_c00466{left:360.461733pt;}
.x1c_c00466{left:363.876398pt;}
.x11_c00466{left:375.738035pt;}
.x12_c00466{left:411.197534pt;}
.x4_c00466{left:420.558133pt;}
.x8_c00466{left:454.057067pt;}
.xa_c00466{left:476.782267pt;}
.xb_c00466{left:545.254933pt;}
.xc_c00466{left:612.946718pt;}
.x13_c00466{left:676.675629pt;}
.x1_c00466{left:711.855867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3deb9f092ce02864a2cb6889.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.067000;font-style:normal;font-weight:normal;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_b7d15e0fad25548684470adc.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00467;src:url('chunks/assets/font_fb1da957c5ac08b4b6805a1e.woff2')format("woff");}.ff5_c00467{font-family:ff5_c00467;line-height:0.934000;font-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_c00467{transform:matrix(0.241952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241952,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00467{word-spacing:-6.212633px;}
.ws5_c00467{word-spacing:-6.210965px;}
.ws9_c00467{word-spacing:0.000000px;}
.wsa_c00467{word-spacing:3.004954px;}
.ws7_c00467{word-spacing:1020.137491px;}
.ws8_c00467{word-spacing:1028.984606px;}
.ws3_c00467{word-spacing:1101.297570px;}
.ws4_c00467{word-spacing:1110.185490px;}
.ws2_c00467{word-spacing:1111.181550px;}
.ws6_c00467{word-spacing:1140.741672px;}
.ws0_c00467{word-spacing:1572.475200px;}
._0_c00467{margin-left:-2.112000px;}
._1_c00467{margin-left:-1.104000px;}
._4_c00467{width:5.612946px;}
._3_c00467{width:17.321167px;}
._7_c00467{width:26.750077px;}
._8_c00467{width:29.521180px;}
._6_c00467{width:38.543458px;}
._b_c00467{width:45.152374px;}
._c_c00467{width:59.696755px;}
._e_c00467{width:63.115020px;}
._9_c00467{width:75.087936px;}
._2_c00467{width:77.121568px;}
._a_c00467{width:83.088410px;}
._d_c00467{width:368.725766px;}
._5_c00467{width:405.308690px;}
.fc1_c00467{color:transparent;}
.fc0_c00467{color:rgb(35,31,32);}
.fs2_c00467{font-size:4.268400px;}
.fs5_c00467{font-size:22.341600px;}
.fs1_c00467{font-size:22.347600px;}
.fs7_c00467{font-size:38.299200px;}
.fs4_c00467{font-size:38.310000px;}
.fs6_c00467{font-size:47.874000px;}
.fs3_c00467{font-size:47.887200px;}
.fs0_c00467{font-size:48.000000px;}
.y19_c00467{bottom:-10.780403px;}
.y18_c00467{bottom:-3.595650px;}
.y15_c00467{bottom:-0.534000px;}
.y0_c00467{bottom:0.000000px;}
.y2b_c00467{bottom:150.737797px;}
.y24_c00467{bottom:150.748968px;}
.y2a_c00467{bottom:157.920622px;}
.y23_c00467{bottom:157.931792px;}
.y2f_c00467{bottom:268.176143px;}
.y27_c00467{bottom:277.967624px;}
.y29_c00467{bottom:285.144863px;}
.y26_c00467{bottom:285.150448px;}
.y35_c00467{bottom:285.157576px;}
.y28_c00467{bottom:292.327687px;}
.y25_c00467{bottom:292.333273px;}
.y34_c00467{bottom:292.340400px;}
.y33_c00467{bottom:339.617327px;}
.y32_c00467{bottom:346.800151px;}
.y31_c00467{bottom:353.982976px;}
.y30_c00467{bottom:361.165800px;}
.y2e_c00467{bottom:403.477642px;}
.y1f_c00467{bottom:423.282976px;}
.y1e_c00467{bottom:430.465800px;}
.y2d_c00467{bottom:540.713250px;}
.y22_c00467{bottom:556.578547px;}
.y2c_c00467{bottom:558.172500px;}
.y21_c00467{bottom:563.761371px;}
.y20_c00467{bottom:570.944195px;}
.y14_c00467{bottom:620.884650px;}
.y17_c00467{bottom:627.529747px;}
.y13_c00467{bottom:627.533074px;}
.yd_c00467{bottom:627.538661px;}
.y16_c00467{bottom:634.714500px;}
.y12_c00467{bottom:634.717828px;}
.yc_c00467{bottom:634.723415px;}
.y1d_c00467{bottom:744.999840px;}
.y11_c00467{bottom:761.249939px;}
.yf_c00467{bottom:761.976236px;}
.y10_c00467{bottom:768.434692px;}
.ye_c00467{bottom:769.160989px;}
.y1c_c00467{bottom:880.339493px;}
.y3_c00467{bottom:900.151447px;}
.y2_c00467{bottom:907.336200px;}
.yb_c00467{bottom:936.918836px;}
.y5_c00467{bottom:938.916359px;}
.y4_c00467{bottom:940.288650px;}
.ya_c00467{bottom:944.103589px;}
.y9_c00467{bottom:951.288342px;}
.y8_c00467{bottom:958.473096px;}
.y7_c00467{bottom:965.657849px;}
.y6_c00467{bottom:972.842603px;}
.y1b_c00467{bottom:1017.613800px;}
.y1a_c00467{bottom:1035.077850px;}
.y1_c00467{bottom:1093.600950px;}
.h4_c00467{height:3.111664px;}
.h8_c00467{height:16.287026px;}
.h3_c00467{height:16.291400px;}
.ha_c00467{height:27.920117px;}
.h7_c00467{height:27.927990px;}
.h9_c00467{height:34.900146px;}
.h6_c00467{height:34.909769px;}
.h2_c00467{height:39.264000px;}
.h5_c00467{height:430.752000px;}
.h1_c00467{height:1135.500000px;}
.h0_c00467{height:1135.506150px;}
.w2_c00467{width:637.894500px;}
.w0_c00467{width:893.950200px;}
.w1_c00467{width:894.000000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:77.603100px;}
.xe_c00467{left:85.900200px;}
.xd_c00467{left:128.171700px;}
.x11_c00467{left:137.659350px;}
.x2_c00467{left:138.850650px;}
.x3_c00467{left:213.927412px;}
.x10_c00467{left:244.443909px;}
.xf_c00467{left:245.578050px;}
.x9_c00467{left:289.776904px;}
.x6_c00467{left:364.852050px;}
.xa_c00467{left:441.472413px;}
.x12_c00467{left:462.716248px;}
.x4_c00467{left:491.558700px;}
.x5_c00467{left:493.011779px;}
.xb_c00467{left:515.113342px;}
.xc_c00467{left:591.469504px;}
.x13_c00467{left:666.761904px;}
.x7_c00467{left:667.792145px;}
.x14_c00467{left:738.205050px;}
.x8_c00467{left:739.293291px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws1_c00467{word-spacing:-5.522340pt;}
.ws5_c00467{word-spacing:-5.520858pt;}
.ws9_c00467{word-spacing:0.000000pt;}
.wsa_c00467{word-spacing:2.671070pt;}
.ws7_c00467{word-spacing:906.788881pt;}
.ws8_c00467{word-spacing:914.652983pt;}
.ws3_c00467{word-spacing:978.931173pt;}
.ws4_c00467{word-spacing:986.831547pt;}
.ws2_c00467{word-spacing:987.716933pt;}
.ws6_c00467{word-spacing:1013.992597pt;}
.ws0_c00467{word-spacing:1397.755733pt;}
._0_c00467{margin-left:-1.877333pt;}
._1_c00467{margin-left:-0.981333pt;}
._4_c00467{width:4.989285pt;}
._3_c00467{width:15.396593pt;}
._7_c00467{width:23.777846pt;}
._8_c00467{width:26.241049pt;}
._6_c00467{width:34.260851pt;}
._b_c00467{width:40.135443pt;}
._c_c00467{width:53.063782pt;}
._e_c00467{width:56.102240pt;}
._9_c00467{width:66.744832pt;}
._2_c00467{width:68.552505pt;}
._a_c00467{width:73.856365pt;}
._d_c00467{width:327.756237pt;}
._5_c00467{width:360.274391pt;}
.fs2_c00467{font-size:3.794133pt;}
.fs5_c00467{font-size:19.859200pt;}
.fs1_c00467{font-size:19.864533pt;}
.fs7_c00467{font-size:34.043733pt;}
.fs4_c00467{font-size:34.053333pt;}
.fs6_c00467{font-size:42.554667pt;}
.fs3_c00467{font-size:42.566400pt;}
.fs0_c00467{font-size:42.666667pt;}
.y19_c00467{bottom:-9.582581pt;}
.y18_c00467{bottom:-3.196133pt;}
.y15_c00467{bottom:-0.474667pt;}
.y0_c00467{bottom:0.000000pt;}
.y2b_c00467{bottom:133.989153pt;}
.y24_c00467{bottom:133.999083pt;}
.y2a_c00467{bottom:140.373886pt;}
.y23_c00467{bottom:140.383815pt;}
.y2f_c00467{bottom:238.378794pt;}
.y27_c00467{bottom:247.082332pt;}
.y29_c00467{bottom:253.462100pt;}
.y26_c00467{bottom:253.467065pt;}
.y35_c00467{bottom:253.473401pt;}
.y28_c00467{bottom:259.846833pt;}
.y25_c00467{bottom:259.851798pt;}
.y34_c00467{bottom:259.858133pt;}
.y33_c00467{bottom:301.882068pt;}
.y32_c00467{bottom:308.266801pt;}
.y31_c00467{bottom:314.651534pt;}
.y30_c00467{bottom:321.036267pt;}
.y2e_c00467{bottom:358.646793pt;}
.y1f_c00467{bottom:376.251534pt;}
.y1e_c00467{bottom:382.636267pt;}
.y2d_c00467{bottom:480.634000pt;}
.y22_c00467{bottom:494.736486pt;}
.y2c_c00467{bottom:496.153333pt;}
.y21_c00467{bottom:501.121219pt;}
.y20_c00467{bottom:507.505951pt;}
.y14_c00467{bottom:551.897467pt;}
.y17_c00467{bottom:557.804219pt;}
.y13_c00467{bottom:557.807177pt;}
.yd_c00467{bottom:557.812143pt;}
.y16_c00467{bottom:564.190667pt;}
.y12_c00467{bottom:564.193625pt;}
.yc_c00467{bottom:564.198591pt;}
.y1d_c00467{bottom:662.222080pt;}
.y11_c00467{bottom:676.666612pt;}
.yf_c00467{bottom:677.312210pt;}
.y10_c00467{bottom:683.053060pt;}
.ye_c00467{bottom:683.698657pt;}
.y1c_c00467{bottom:782.523993pt;}
.y3_c00467{bottom:800.134619pt;}
.y2_c00467{bottom:806.521067pt;}
.yb_c00467{bottom:832.816743pt;}
.y5_c00467{bottom:834.592319pt;}
.y4_c00467{bottom:835.812133pt;}
.ya_c00467{bottom:839.203190pt;}
.y9_c00467{bottom:845.589638pt;}
.y8_c00467{bottom:851.976085pt;}
.y7_c00467{bottom:858.362533pt;}
.y6_c00467{bottom:864.748980pt;}
.y1b_c00467{bottom:904.545600pt;}
.y1a_c00467{bottom:920.069200pt;}
.y1_c00467{bottom:972.089733pt;}
.h4_c00467{height:2.765923pt;}
.h8_c00467{height:14.477357pt;}
.h3_c00467{height:14.481245pt;}
.ha_c00467{height:24.817882pt;}
.h7_c00467{height:24.824880pt;}
.h9_c00467{height:31.022352pt;}
.h6_c00467{height:31.030906pt;}
.h2_c00467{height:34.901333pt;}
.h5_c00467{height:382.890667pt;}
.h1_c00467{height:1009.333333pt;}
.h0_c00467{height:1009.338800pt;}
.w2_c00467{width:567.017333pt;}
.w0_c00467{width:794.622400pt;}
.w1_c00467{width:794.666667pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:68.980533pt;}
.xe_c00467{left:76.355733pt;}
.xd_c00467{left:113.930400pt;}
.x11_c00467{left:122.363867pt;}
.x2_c00467{left:123.422800pt;}
.x3_c00467{left:190.157700pt;}
.x10_c00467{left:217.283475pt;}
.xf_c00467{left:218.291600pt;}
.x9_c00467{left:257.579470pt;}
.x6_c00467{left:324.312933pt;}
.xa_c00467{left:392.419922pt;}
.x12_c00467{left:411.303331pt;}
.x4_c00467{left:436.941067pt;}
.x5_c00467{left:438.232693pt;}
.xb_c00467{left:457.878526pt;}
.xc_c00467{left:525.750670pt;}
.x13_c00467{left:592.677248pt;}
.x7_c00467{left:593.593018pt;}
.x14_c00467{left:656.182267pt;}
.x8_c00467{left:657.149592pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8be75173218868c461e3a1d9.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_0419d2c2384d7393b7884811.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00468;src:url('chunks/assets/font_e6c8ee6f209669684a4c27ca.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;line-height:0.934000;font-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_c00468{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.241928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241928,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.v1_c00468{vertical-align:2.908854px;}
.ls1_c00468{letter-spacing:-0.672000px;}
.ls2_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:0.480000px;}
.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;}
}
.ws0_c00468{word-spacing:-10.224000px;}
.ws5_c00468{word-spacing:-6.228312px;}
.ws1_c00468{word-spacing:-6.220472px;}
.ws9_c00468{word-spacing:0.000000px;}
.wsa_c00468{word-spacing:3.008755px;}
.ws7_c00468{word-spacing:1022.998198px;}
.ws8_c00468{word-spacing:1031.870122px;}
.ws3_c00468{word-spacing:1102.677426px;}
.ws4_c00468{word-spacing:1111.576482px;}
.ws2_c00468{word-spacing:1112.573790px;}
.ws6_c00468{word-spacing:1143.940581px;}
._0_c00468{margin-left:-2753.931600px;}
._1_c00468{margin-left:-2.256000px;}
._2_c00468{width:1.008000px;}
._4_c00468{width:5.620047px;}
._3_c00468{width:17.343080px;}
._6_c00468{width:28.283011px;}
._5_c00468{width:43.767065px;}
._8_c00468{width:48.977076px;}
._7_c00468{width:59.519628px;}
._a_c00468{width:63.560148px;}
._9_c00468{width:348.673452px;}
.fc1_c00468{color:transparent;}
.fc0_c00468{color:rgb(35,31,32);}
.fs2_c00468{font-size:4.273800px;}
.fs1_c00468{font-size:22.375800px;}
.fs5_c00468{font-size:22.404000px;}
.fs4_c00468{font-size:38.358000px;}
.fs7_c00468{font-size:38.406600px;}
.fs3_c00468{font-size:47.947800px;}
.fs0_c00468{font-size:48.000000px;}
.fs6_c00468{font-size:48.008400px;}
.y13_c00468{bottom:-28.046094px;}
.y12_c00468{bottom:-20.852274px;}
.y11_c00468{bottom:-13.658454px;}
.y15_c00468{bottom:-5.004614px;}
.y10_c00468{bottom:-4.999020px;}
.y8_c00468{bottom:-4.987920px;}
.y0_c00468{bottom:0.000000px;}
.y14_c00468{bottom:2.189206px;}
.yf_c00468{bottom:2.194800px;}
.y7_c00468{bottom:2.205900px;}
.y2a_c00468{bottom:141.847731px;}
.y2c_c00468{bottom:149.045016px;}
.y29_c00468{bottom:149.050617px;}
.y1f_c00468{bottom:149.067420px;}
.y2b_c00468{bottom:156.247902px;}
.y28_c00468{bottom:156.253503px;}
.y1e_c00468{bottom:156.270306px;}
.y30_c00468{bottom:266.819984px;}
.y21_c00468{bottom:283.844283px;}
.y20_c00468{bottom:291.047169px;}
.y27_c00468{bottom:322.211133px;}
.y26_c00468{bottom:329.414019px;}
.y25_c00468{bottom:336.616905px;}
.y24_c00468{bottom:343.819791px;}
.y23_c00468{bottom:351.022677px;}
.y22_c00468{bottom:358.225563px;}
.y2f_c00468{bottom:402.500901px;}
.y1d_c00468{bottom:422.362614px;}
.y1c_c00468{bottom:429.565500px;}
.y2e_c00468{bottom:540.121350px;}
.y33_c00468{bottom:549.512928px;}
.y32_c00468{bottom:556.715814px;}
.y2d_c00468{bottom:557.629350px;}
.y31_c00468{bottom:563.918700px;}
.y6_c00468{bottom:628.509150px;}
.y19_c00468{bottom:741.124422px;}
.yb_c00468{bottom:750.933211px;}
.yd_c00468{bottom:758.121436px;}
.ya_c00468{bottom:758.127030px;}
.ye_c00468{bottom:764.588043px;}
.yc_c00468{bottom:765.315256px;}
.y9_c00468{bottom:765.320850px;}
.y18_c00468{bottom:876.633646px;}
.y3_c00468{bottom:896.469630px;}
.y2_c00468{bottom:903.663450px;}
.y5_c00468{bottom:935.283423px;}
.y4_c00468{bottom:936.657450px;}
.y17_c00468{bottom:1014.079950px;}
.y1b_c00468{bottom:1028.953830px;}
.y16_c00468{bottom:1031.565900px;}
.y1a_c00468{bottom:1036.147650px;}
.y1_c00468{bottom:1093.600950px;}
.h5_c00468{height:3.115600px;}
.h4_c00468{height:16.311958px;}
.ha_c00468{height:16.332516px;}
.h7_c00468{height:19.220812px;}
.h9_c00468{height:27.962982px;}
.hc_c00468{height:27.998411px;}
.h8_c00468{height:34.953946px;}
.hb_c00468{height:34.998124px;}
.h2_c00468{height:39.264000px;}
.h3_c00468{height:39.984000px;}
.h6_c00468{height:419.637000px;}
.h1_c00468{height:1135.500000px;}
.h0_c00468{height:1135.506150px;}
.w2_c00468{width:621.430500px;}
.w0_c00468{width:893.950200px;}
.w1_c00468{width:894.000000px;}
.x0_c00468{left:0.000000px;}
.xe_c00468{left:11.245800px;}
.x10_c00468{left:86.002350px;}
.xd_c00468{left:152.432700px;}
.x21_c00468{left:158.396700px;}
.x18_c00468{left:159.591000px;}
.x11_c00468{left:161.800372px;}
.x4_c00468{left:163.124700px;}
.x2_c00468{left:188.061900px;}
.x3_c00468{left:190.513350px;}
.x19_c00468{left:234.857238px;}
.x12_c00468{left:236.943903px;}
.x5_c00468{left:238.296200px;}
.x13_c00468{left:247.633941px;}
.x14_c00468{left:259.968601px;}
.x1a_c00468{left:310.977600px;}
.x6_c00468{left:314.323575px;}
.x1b_c00468{left:386.165424px;}
.x15_c00468{left:387.426752px;}
.x9_c00468{left:389.410800px;}
.x22_c00468{left:409.885350px;}
.x17_c00468{left:413.297550px;}
.x1c_c00468{left:462.975600px;}
.x16_c00468{left:464.265249px;}
.xf_c00468{left:466.126456px;}
.x7_c00468{left:516.277200px;}
.x8_c00468{left:517.731968px;}
.x1d_c00468{left:536.735169px;}
.xa_c00468{left:539.790300px;}
.x1e_c00468{left:613.738200px;}
.xb_c00468{left:616.699800px;}
.x1f_c00468{left:689.866992px;}
.xc_c00468{left:692.732768px;}
.x20_c00468{left:761.548590px;}
.x1_c00468{left:800.549700px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:2.585648pt;}
.ls1_c00468{letter-spacing:-0.597333pt;}
.ls2_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.426667pt;}
.ws0_c00468{word-spacing:-9.088000pt;}
.ws5_c00468{word-spacing:-5.536277pt;}
.ws1_c00468{word-spacing:-5.529309pt;}
.ws9_c00468{word-spacing:0.000000pt;}
.wsa_c00468{word-spacing:2.674449pt;}
.ws7_c00468{word-spacing:909.331731pt;}
.ws8_c00468{word-spacing:917.217886pt;}
.ws3_c00468{word-spacing:980.157712pt;}
.ws4_c00468{word-spacing:988.067984pt;}
.ws2_c00468{word-spacing:988.954480pt;}
.ws6_c00468{word-spacing:1016.836072pt;}
._0_c00468{margin-left:-2447.939200pt;}
._1_c00468{margin-left:-2.005333pt;}
._2_c00468{width:0.896000pt;}
._4_c00468{width:4.995597pt;}
._3_c00468{width:15.416071pt;}
._6_c00468{width:25.140454pt;}
._5_c00468{width:38.904058pt;}
._8_c00468{width:43.535179pt;}
._7_c00468{width:52.906336pt;}
._a_c00468{width:56.497909pt;}
._9_c00468{width:309.931957pt;}
.fs2_c00468{font-size:3.798933pt;}
.fs1_c00468{font-size:19.889600pt;}
.fs5_c00468{font-size:19.914667pt;}
.fs4_c00468{font-size:34.096000pt;}
.fs7_c00468{font-size:34.139200pt;}
.fs3_c00468{font-size:42.620267pt;}
.fs0_c00468{font-size:42.666667pt;}
.fs6_c00468{font-size:42.674133pt;}
.y13_c00468{bottom:-24.929861pt;}
.y12_c00468{bottom:-18.535355pt;}
.y11_c00468{bottom:-12.140848pt;}
.y15_c00468{bottom:-4.448545pt;}
.y10_c00468{bottom:-4.443573pt;}
.y8_c00468{bottom:-4.433706pt;}
.y0_c00468{bottom:0.000000pt;}
.y14_c00468{bottom:1.945961pt;}
.yf_c00468{bottom:1.950933pt;}
.y7_c00468{bottom:1.960800pt;}
.y2a_c00468{bottom:126.086872pt;}
.y2c_c00468{bottom:132.484459pt;}
.y29_c00468{bottom:132.489437pt;}
.y1f_c00468{bottom:132.504373pt;}
.y2b_c00468{bottom:138.887024pt;}
.y28_c00468{bottom:138.892003pt;}
.y1e_c00468{bottom:138.906939pt;}
.y30_c00468{bottom:237.173319pt;}
.y21_c00468{bottom:252.306029pt;}
.y20_c00468{bottom:258.708595pt;}
.y27_c00468{bottom:286.409896pt;}
.y26_c00468{bottom:292.812461pt;}
.y25_c00468{bottom:299.215027pt;}
.y24_c00468{bottom:305.617592pt;}
.y23_c00468{bottom:312.020157pt;}
.y22_c00468{bottom:318.422723pt;}
.y2f_c00468{bottom:357.778578pt;}
.y1d_c00468{bottom:375.433435pt;}
.y1c_c00468{bottom:381.836000pt;}
.y2e_c00468{bottom:480.107867pt;}
.y33_c00468{bottom:488.455936pt;}
.y32_c00468{bottom:494.858501pt;}
.y2d_c00468{bottom:495.670533pt;}
.y31_c00468{bottom:501.261067pt;}
.y6_c00468{bottom:558.674800pt;}
.y19_c00468{bottom:658.777264pt;}
.yb_c00468{bottom:667.496187pt;}
.yd_c00468{bottom:673.885721pt;}
.ya_c00468{bottom:673.890694pt;}
.ye_c00468{bottom:679.633816pt;}
.yc_c00468{bottom:680.280228pt;}
.y9_c00468{bottom:680.285200pt;}
.y18_c00468{bottom:779.229908pt;}
.y3_c00468{bottom:796.861894pt;}
.y2_c00468{bottom:803.256400pt;}
.y5_c00468{bottom:831.363043pt;}
.y4_c00468{bottom:832.584400pt;}
.y17_c00468{bottom:901.404400pt;}
.y1b_c00468{bottom:914.625627pt;}
.y16_c00468{bottom:916.947467pt;}
.y1a_c00468{bottom:921.020133pt;}
.y1_c00468{bottom:972.089733pt;}
.h5_c00468{height:2.769422pt;}
.h4_c00468{height:14.499518pt;}
.ha_c00468{height:14.517792pt;}
.h7_c00468{height:17.085166pt;}
.h9_c00468{height:24.855984pt;}
.hc_c00468{height:24.887477pt;}
.h8_c00468{height:31.070174pt;}
.hb_c00468{height:31.109443pt;}
.h2_c00468{height:34.901333pt;}
.h3_c00468{height:35.541333pt;}
.h6_c00468{height:373.010667pt;}
.h1_c00468{height:1009.333333pt;}
.h0_c00468{height:1009.338800pt;}
.w2_c00468{width:552.382667pt;}
.w0_c00468{width:794.622400pt;}
.w1_c00468{width:794.666667pt;}
.x0_c00468{left:0.000000pt;}
.xe_c00468{left:9.996267pt;}
.x10_c00468{left:76.446533pt;}
.xd_c00468{left:135.495733pt;}
.x21_c00468{left:140.797067pt;}
.x18_c00468{left:141.858667pt;}
.x11_c00468{left:143.822553pt;}
.x4_c00468{left:144.999733pt;}
.x2_c00468{left:167.166133pt;}
.x3_c00468{left:169.345200pt;}
.x19_c00468{left:208.761989pt;}
.x12_c00468{left:210.616803pt;}
.x5_c00468{left:211.818845pt;}
.x13_c00468{left:220.119059pt;}
.x14_c00468{left:231.083201pt;}
.x1a_c00468{left:276.424533pt;}
.x6_c00468{left:279.398733pt;}
.x1b_c00468{left:343.258155pt;}
.x15_c00468{left:344.379335pt;}
.x9_c00468{left:346.142933pt;}
.x22_c00468{left:364.342533pt;}
.x17_c00468{left:367.375600pt;}
.x1c_c00468{left:411.533867pt;}
.x16_c00468{left:412.680221pt;}
.xf_c00468{left:414.334628pt;}
.x7_c00468{left:458.913067pt;}
.x8_c00468{left:460.206193pt;}
.x1d_c00468{left:477.097928pt;}
.xa_c00468{left:479.813600pt;}
.x1e_c00468{left:545.545067pt;}
.xb_c00468{left:548.177600pt;}
.x1f_c00468{left:613.215104pt;}
.xc_c00468{left:615.762461pt;}
.x20_c00468{left:676.932080pt;}
.x1_c00468{left:711.599733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_518d33854ec194dd185af67a.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.067000;font-style:normal;font-weight:normal;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_ec6e18f0a0efa32a657df95f.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00469;src:url('chunks/assets/font_78a840c5ba93bf864d47772d.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00469;src:url('chunks/assets/font_20f4c013742660469b9d460a.woff2')format("woff");}.ff6_c00469{font-family:ff6_c00469;line-height:1.432129;font-style:normal;font-weight: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_c00469;src:url('chunks/assets/font_67540c9e5dc006dd0e0b4f13.woff2')format("woff");}.ff7_c00469{font-family:ff7_c00469;line-height:0.934000;font-style:normal;font-weight: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_c00469;src:url('chunks/assets/font_20f4c013742660469b9d460a.woff2')format("woff");}.ff8_c00469{font-family:ff8_c00469;line-height:1.432129;font-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_c00469{transform:matrix(0.241913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241913,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.ls1_c00469{letter-spacing:10.703448px;}
.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;}
}
.wsa_c00469{word-spacing:-7.713278px;}
.ws1_c00469{word-spacing:-6.217970px;}
.ws5_c00469{word-spacing:-6.181274px;}
.ws9_c00469{word-spacing:0.000000px;}
.ws3_c00469{word-spacing:1021.304148px;}
.ws4_c00469{word-spacing:1030.161381px;}
.ws7_c00469{word-spacing:1095.726401px;}
.ws8_c00469{word-spacing:1104.455011px;}
.ws6_c00469{word-spacing:1105.560381px;}
.ws2_c00469{word-spacing:1142.046255px;}
.ws0_c00469{word-spacing:1574.059200px;}
._5_c00469{margin-left:-568.720624px;}
._0_c00469{margin-left:-2.112000px;}
._1_c00469{margin-left:-1.104000px;}
._6_c00469{width:5.585331px;}
._7_c00469{width:23.190896px;}
._8_c00469{width:26.125890px;}
._2_c00469{width:36.726286px;}
._4_c00469{width:50.973937px;}
._3_c00469{width:640.003615px;}
.fc3_c00469{color:transparent;}
.fc1_c00469{color:rgb(237,28,36);}
.fc2_c00469{color:rgb(255,255,255);}
.fc0_c00469{color:rgb(35,31,32);}
.fs6_c00469{font-size:4.247400px;}
.fs1_c00469{font-size:15.976200px;}
.fs5_c00469{font-size:22.234800px;}
.fs2_c00469{font-size:22.366800px;}
.fs8_c00469{font-size:38.116200px;}
.fs4_c00469{font-size:38.343000px;}
.fs7_c00469{font-size:47.645400px;}
.fs3_c00469{font-size:47.929200px;}
.fs0_c00469{font-size:48.000000px;}
.y44_c00469{bottom:-0.429150px;}
.y0_c00469{bottom:0.000000px;}
.y3_c00469{bottom:1.297350px;}
.y27_c00469{bottom:121.481550px;}
.y16_c00469{bottom:142.050813px;}
.y18_c00469{bottom:149.236147px;}
.y15_c00469{bottom:149.241739px;}
.y17_c00469{bottom:156.427073px;}
.y14_c00469{bottom:156.432665px;}
.ya_c00469{bottom:156.449440px;}
.y1d_c00469{bottom:194.338799px;}
.y1c_c00469{bottom:201.529726px;}
.y1b_c00469{bottom:208.720652px;}
.y1a_c00469{bottom:215.911578px;}
.y24_c00469{bottom:222.872848px;}
.y19_c00469{bottom:223.102504px;}
.y23_c00469{bottom:230.063774px;}
.y22_c00469{bottom:237.254700px;}
.y2_c00469{bottom:263.647650px;}
.y21_c00469{bottom:266.814912px;}
.yc_c00469{bottom:283.811591px;}
.y26_c00469{bottom:283.816274px;}
.yb_c00469{bottom:291.002517px;}
.y25_c00469{bottom:291.007200px;}
.y13_c00469{bottom:317.194040px;}
.y12_c00469{bottom:324.384966px;}
.y11_c00469{bottom:331.575892px;}
.y10_c00469{bottom:338.766819px;}
.y2f_c00469{bottom:341.201524px;}
.yf_c00469{bottom:345.957745px;}
.y2e_c00469{bottom:348.350012px;}
.ye_c00469{bottom:353.148671px;}
.y2d_c00469{bottom:355.498500px;}
.yd_c00469{bottom:360.339597px;}
.y20_c00469{bottom:402.271145px;}
.y5_c00469{bottom:422.099924px;}
.y4_c00469{bottom:429.290850px;}
.y1f_c00469{bottom:539.663700px;}
.y9_c00469{bottom:554.835698px;}
.y1e_c00469{bottom:557.143650px;}
.y8_c00469{bottom:562.026625px;}
.y7_c00469{bottom:569.217551px;}
.y6_c00469{bottom:576.408477px;}
.y2c_c00469{bottom:601.585650px;}
.y3f_c00469{bottom:628.732228px;}
.y46_c00469{bottom:628.753412px;}
.y3e_c00469{bottom:635.880716px;}
.y33_c00469{bottom:635.897392px;}
.y45_c00469{bottom:635.901900px;}
.y43_c00469{bottom:745.566126px;}
.y3d_c00469{bottom:761.774154px;}
.y35_c00469{bottom:762.507902px;}
.y29_c00469{bottom:762.513812px;}
.y3c_c00469{bottom:768.922642px;}
.y34_c00469{bottom:769.656390px;}
.y28_c00469{bottom:769.662300px;}
.y3b_c00469{bottom:797.444332px;}
.y3a_c00469{bottom:804.592820px;}
.y39_c00469{bottom:811.741308px;}
.y38_c00469{bottom:818.889796px;}
.y37_c00469{bottom:826.038284px;}
.y36_c00469{bottom:833.186773px;}
.y42_c00469{bottom:880.268776px;}
.y32_c00469{bottom:892.831624px;}
.y2b_c00469{bottom:899.980112px;}
.y2a_c00469{bottom:907.128600px;}
.y31_c00469{bottom:938.549311px;}
.y30_c00469{bottom:939.914850px;}
.y41_c00469{bottom:1016.848650px;}
.y40_c00469{bottom:1034.225250px;}
.y1_c00469{bottom:1093.600950px;}
.hb_c00469{height:3.096355px;}
.h3_c00469{height:5.505000px;}
.h9_c00469{height:16.209169px;}
.h5_c00469{height:16.305397px;}
.h4_c00469{height:17.046605px;}
.hf_c00469{height:23.190202px;}
.h8_c00469{height:23.327873px;}
.hd_c00469{height:27.786710px;}
.h7_c00469{height:27.952047px;}
.he_c00469{height:27.977291px;}
.hc_c00469{height:34.733497px;}
.h6_c00469{height:34.940387px;}
.h2_c00469{height:39.264000px;}
.ha_c00469{height:449.115000px;}
.h1_c00469{height:1135.500000px;}
.h0_c00469{height:1135.506150px;}
.w2_c00469{width:56.320500px;}
.w3_c00469{width:650.134500px;}
.w0_c00469{width:893.950200px;}
.w1_c00469{width:894.000000px;}
.x14_c00469{left:-10.547100px;}
.x0_c00469{left:0.000000px;}
.x3_c00469{left:7.247100px;}
.x1d_c00469{left:34.345500px;}
.x1_c00469{left:77.603100px;}
.x13_c00469{left:115.660200px;}
.xe_c00469{left:137.236350px;}
.x4_c00469{left:138.428850px;}
.x1c_c00469{left:140.687100px;}
.x12_c00469{left:141.872550px;}
.x10_c00469{left:146.610450px;}
.x5_c00469{left:213.570115px;}
.x11_c00469{left:215.641950px;}
.x1b_c00469{left:216.715815px;}
.xf_c00469{left:217.924050px;}
.x6_c00469{left:289.566000px;}
.x15_c00469{left:291.572400px;}
.x7_c00469{left:364.628981px;}
.x18_c00469{left:366.732750px;}
.x8_c00469{left:379.167401px;}
.x9_c00469{left:441.313650px;}
.x1a_c00469{left:442.966022px;}
.x16_c00469{left:492.799800px;}
.x17_c00469{left:494.245493px;}
.xa_c00469{left:514.950747px;}
.x19_c00469{left:516.167282px;}
.x2_c00469{left:591.830700px;}
.xd_c00469{left:666.437903px;}
.xb_c00469{left:667.830236px;}
.xc_c00469{left:738.598792px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ls1_c00469{letter-spacing:9.514176pt;}
.wsa_c00469{word-spacing:-6.856247pt;}
.ws1_c00469{word-spacing:-5.527085pt;}
.ws5_c00469{word-spacing:-5.494466pt;}
.ws9_c00469{word-spacing:0.000000pt;}
.ws3_c00469{word-spacing:907.825909pt;}
.ws4_c00469{word-spacing:915.699005pt;}
.ws7_c00469{word-spacing:973.979023pt;}
.ws8_c00469{word-spacing:981.737788pt;}
.ws6_c00469{word-spacing:982.720339pt;}
.ws2_c00469{word-spacing:1015.152227pt;}
.ws0_c00469{word-spacing:1399.163733pt;}
._5_c00469{margin-left:-505.529443pt;}
._0_c00469{margin-left:-1.877333pt;}
._1_c00469{margin-left:-0.981333pt;}
._6_c00469{width:4.964739pt;}
._7_c00469{width:20.614130pt;}
._8_c00469{width:23.223013pt;}
._2_c00469{width:32.645587pt;}
._4_c00469{width:45.310166pt;}
._3_c00469{width:568.892102pt;}
.fs6_c00469{font-size:3.775467pt;}
.fs1_c00469{font-size:14.201067pt;}
.fs5_c00469{font-size:19.764267pt;}
.fs2_c00469{font-size:19.881600pt;}
.fs8_c00469{font-size:33.881067pt;}
.fs4_c00469{font-size:34.082667pt;}
.fs7_c00469{font-size:42.351467pt;}
.fs3_c00469{font-size:42.603733pt;}
.fs0_c00469{font-size:42.666667pt;}
.y44_c00469{bottom:-0.381467pt;}
.y0_c00469{bottom:0.000000pt;}
.y3_c00469{bottom:1.153200pt;}
.y27_c00469{bottom:107.983600pt;}
.y16_c00469{bottom:126.267389pt;}
.y18_c00469{bottom:132.654353pt;}
.y15_c00469{bottom:132.659323pt;}
.y17_c00469{bottom:139.046287pt;}
.y14_c00469{bottom:139.051258pt;}
.ya_c00469{bottom:139.066169pt;}
.y1d_c00469{bottom:172.745599pt;}
.y1c_c00469{bottom:179.137534pt;}
.y1b_c00469{bottom:185.529468pt;}
.y1a_c00469{bottom:191.921403pt;}
.y24_c00469{bottom:198.109198pt;}
.y19_c00469{bottom:198.313337pt;}
.y23_c00469{bottom:204.501132pt;}
.y22_c00469{bottom:210.893067pt;}
.y2_c00469{bottom:234.353467pt;}
.y21_c00469{bottom:237.168811pt;}
.yc_c00469{bottom:252.276970pt;}
.y26_c00469{bottom:252.281132pt;}
.yb_c00469{bottom:258.668904pt;}
.y25_c00469{bottom:258.673067pt;}
.y13_c00469{bottom:281.950258pt;}
.y12_c00469{bottom:288.342192pt;}
.y11_c00469{bottom:294.734127pt;}
.y10_c00469{bottom:301.126061pt;}
.y2f_c00469{bottom:303.290243pt;}
.yf_c00469{bottom:307.517995pt;}
.y2e_c00469{bottom:309.644455pt;}
.ye_c00469{bottom:313.909930pt;}
.y2d_c00469{bottom:315.998667pt;}
.yd_c00469{bottom:320.301864pt;}
.y20_c00469{bottom:357.574351pt;}
.y5_c00469{bottom:375.199932pt;}
.y4_c00469{bottom:381.591867pt;}
.y1f_c00469{bottom:479.701067pt;}
.y9_c00469{bottom:493.187287pt;}
.y1e_c00469{bottom:495.238800pt;}
.y8_c00469{bottom:499.579222pt;}
.y7_c00469{bottom:505.971156pt;}
.y6_c00469{bottom:512.363091pt;}
.y2c_c00469{bottom:534.742800pt;}
.y3f_c00469{bottom:558.873091pt;}
.y46_c00469{bottom:558.891922pt;}
.y3e_c00469{bottom:565.227303pt;}
.y33_c00469{bottom:565.242126pt;}
.y45_c00469{bottom:565.246133pt;}
.y43_c00469{bottom:662.725445pt;}
.y3d_c00469{bottom:677.132581pt;}
.y35_c00469{bottom:677.784802pt;}
.y29_c00469{bottom:677.790055pt;}
.y3c_c00469{bottom:683.486793pt;}
.y34_c00469{bottom:684.139014pt;}
.y28_c00469{bottom:684.144267pt;}
.y3b_c00469{bottom:708.839406pt;}
.y3a_c00469{bottom:715.193618pt;}
.y39_c00469{bottom:721.547829pt;}
.y38_c00469{bottom:727.902041pt;}
.y37_c00469{bottom:734.256253pt;}
.y36_c00469{bottom:740.610465pt;}
.y42_c00469{bottom:782.461135pt;}
.y32_c00469{bottom:793.628110pt;}
.y2b_c00469{bottom:799.982322pt;}
.y2a_c00469{bottom:806.336533pt;}
.y31_c00469{bottom:834.266054pt;}
.y30_c00469{bottom:835.479867pt;}
.y41_c00469{bottom:903.865467pt;}
.y40_c00469{bottom:919.311333pt;}
.y1_c00469{bottom:972.089733pt;}
.hb_c00469{height:2.752315pt;}
.h3_c00469{height:4.893333pt;}
.h9_c00469{height:14.408150pt;}
.h5_c00469{height:14.493686pt;}
.h4_c00469{height:15.152538pt;}
.hf_c00469{height:20.613512pt;}
.h8_c00469{height:20.735888pt;}
.hd_c00469{height:24.699298pt;}
.h7_c00469{height:24.846264pt;}
.he_c00469{height:24.868703pt;}
.hc_c00469{height:30.874219pt;}
.h6_c00469{height:31.058122pt;}
.h2_c00469{height:34.901333pt;}
.ha_c00469{height:399.213333pt;}
.h1_c00469{height:1009.333333pt;}
.h0_c00469{height:1009.338800pt;}
.w2_c00469{width:50.062667pt;}
.w3_c00469{width:577.897333pt;}
.w0_c00469{width:794.622400pt;}
.w1_c00469{width:794.666667pt;}
.x14_c00469{left:-9.375200pt;}
.x0_c00469{left:0.000000pt;}
.x3_c00469{left:6.441867pt;}
.x1d_c00469{left:30.529333pt;}
.x1_c00469{left:68.980533pt;}
.x13_c00469{left:102.809067pt;}
.xe_c00469{left:121.987867pt;}
.x4_c00469{left:123.047867pt;}
.x1c_c00469{left:125.055200pt;}
.x12_c00469{left:126.108933pt;}
.x10_c00469{left:130.320400pt;}
.x5_c00469{left:189.840102pt;}
.x11_c00469{left:191.681733pt;}
.x1b_c00469{left:192.636280pt;}
.xf_c00469{left:193.710267pt;}
.x6_c00469{left:257.392000pt;}
.x15_c00469{left:259.175467pt;}
.x7_c00469{left:324.114650pt;}
.x18_c00469{left:325.984667pt;}
.x8_c00469{left:337.037690pt;}
.x9_c00469{left:392.278800pt;}
.x1a_c00469{left:393.747575pt;}
.x16_c00469{left:438.044267pt;}
.x17_c00469{left:439.329327pt;}
.xa_c00469{left:457.733998pt;}
.x19_c00469{left:458.815362pt;}
.x2_c00469{left:526.071733pt;}
.xd_c00469{left:592.389247pt;}
.xb_c00469{left:593.626877pt;}
.xc_c00469{left:656.532259pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab5d4e722673f7bb32583ecf.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_e997bda0d91b04e65cd59931.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_7237f2ebf38fb341366f77ee.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:0.934000;font-style:normal;font-weight: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_c00470;src:url('chunks/assets/font_e997bda0d91b04e65cd59931.woff2')format("woff");}.ff7_c00470{font-family:ff7_c00470;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00470;src:url('chunks/assets/font_89d27149ea9a6c8ae3f543f9.woff2')format("woff");}.ff8_c00470{font-family:ff8_c00470;line-height:0.934000;font-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_c00470{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00470{vertical-align:-11.004600px;}
.v1_c00470{vertical-align:-5.488800px;}
.v0_c00470{vertical-align:0.000000px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.480000px;}
.ls2_c00470{letter-spacing:0.858624px;}
.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.896000px;}
.ws5_c00470{word-spacing:-6.233483px;}
.ws4_c00470{word-spacing:-6.217970px;}
.wsa_c00470{word-spacing:-0.858624px;}
.ws9_c00470{word-spacing:0.000000px;}
.wsb_c00470{word-spacing:3.015091px;}
.ws2_c00470{word-spacing:1021.304148px;}
.ws3_c00470{word-spacing:1030.161381px;}
.ws7_c00470{word-spacing:1105.005933px;}
.ws8_c00470{word-spacing:1113.923781px;}
.ws6_c00470{word-spacing:1114.923195px;}
.ws1_c00470{word-spacing:1142.046255px;}
._0_c00470{margin-left:-2755.276200px;}
._6_c00470{margin-left:-516.091543px;}
._1_c00470{margin-left:-2.256000px;}
._2_c00470{width:1.008000px;}
._5_c00470{width:2.083046px;}
._4_c00470{width:4.681152px;}
._b_c00470{width:17.379602px;}
._d_c00470{width:19.709465px;}
._a_c00470{width:33.454519px;}
._3_c00470{width:52.025177px;}
._7_c00470{width:58.847051px;}
._8_c00470{width:67.704304px;}
._c_c00470{width:80.205640px;}
._9_c00470{width:408.278359px;}
._e_c00470{width:411.323942px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(237,28,36);}
.fc0_c00470{color:rgb(35,31,32);}
.fs3_c00470{font-size:1.651200px;}
.fs9_c00470{font-size:4.282800px;}
.fs6_c00470{font-size:12.781200px;}
.fsc_c00470{font-size:12.813000px;}
.fs1_c00470{font-size:15.976200px;}
.fs7_c00470{font-size:16.016400px;}
.fs2_c00470{font-size:22.366800px;}
.fs8_c00470{font-size:22.422600px;}
.fs5_c00470{font-size:38.343000px;}
.fsb_c00470{font-size:38.439000px;}
.fs4_c00470{font-size:47.929200px;}
.fs0_c00470{font-size:48.000000px;}
.fsa_c00470{font-size:48.049200px;}
.y0_c00470{bottom:0.000000px;}
.y3d_c00470{bottom:0.799050px;}
.y21_c00470{bottom:125.583150px;}
.y13_c00470{bottom:154.221855px;}
.y12_c00470{bottom:161.412781px;}
.yc_c00470{bottom:161.414440px;}
.y1d_c00470{bottom:189.707619px;}
.y1c_c00470{bottom:196.898545px;}
.y1b_c00470{bottom:204.089471px;}
.y1a_c00470{bottom:211.280398px;}
.y19_c00470{bottom:218.471324px;}
.y18_c00470{bottom:225.662250px;}
.y17_c00470{bottom:271.780812px;}
.ye_c00470{bottom:288.776591px;}
.y11_c00470{bottom:288.780524px;}
.yd_c00470{bottom:295.967517px;}
.y10_c00470{bottom:295.971450px;}
.yf_c00470{bottom:332.710050px;}
.y2_c00470{bottom:402.368250px;}
.y20_c00470{bottom:403.231948px;}
.y22_c00470{bottom:403.339500px;}
.y16_c00470{bottom:407.237045px;}
.y1f_c00470{bottom:410.422874px;}
.y1e_c00470{bottom:417.613800px;}
.yb_c00470{bottom:427.059332px;}
.y5_c00470{bottom:427.064924px;}
.ya_c00470{bottom:434.250258px;}
.y4_c00470{bottom:434.255850px;}
.y3_c00470{bottom:542.332950px;}
.y15_c00470{bottom:544.629600px;}
.y9_c00470{bottom:547.493367px;}
.y8_c00470{bottom:554.684293px;}
.y7_c00470{bottom:561.875219px;}
.y14_c00470{bottom:562.108800px;}
.y6_c00470{bottom:569.066145px;}
.y3c_c00470{bottom:596.269650px;}
.y30_c00470{bottom:618.562421px;}
.y32_c00470{bottom:625.765681px;}
.y2f_c00470{bottom:625.771287px;}
.y29_c00470{bottom:625.782498px;}
.y31_c00470{bottom:632.974547px;}
.y2e_c00470{bottom:632.980153px;}
.y28_c00470{bottom:632.991364px;}
.y37_c00470{bottom:676.104418px;}
.y36_c00470{bottom:683.313284px;}
.y35_c00470{bottom:690.522150px;}
.y34_c00470{bottom:697.731016px;}
.y33_c00470{bottom:704.939882px;}
.y3f_c00470{bottom:738.581100px;}
.y3b_c00470{bottom:743.631276px;}
.y2c_c00470{bottom:753.462388px;}
.y2b_c00470{bottom:760.671254px;}
.y2d_c00470{bottom:767.874514px;}
.y2a_c00470{bottom:767.880120px;}
.y23_c00470{bottom:876.163350px;}
.y3a_c00470{bottom:879.426653px;}
.y25_c00470{bottom:899.304584px;}
.y24_c00470{bottom:906.513450px;}
.y27_c00470{bottom:938.200280px;}
.y26_c00470{bottom:939.577200px;}
.y3e_c00470{bottom:1014.860850px;}
.y39_c00470{bottom:1017.163200px;}
.y38_c00470{bottom:1034.686200px;}
.y1_c00470{bottom:1093.600950px;}
.h6_c00470{height:1.203725px;}
.hc_c00470{height:3.122161px;}
.h9_c00470{height:9.317495px;}
.h10_c00470{height:9.340677px;}
.h5_c00470{height:16.305397px;}
.hb_c00470{height:16.346075px;}
.h4_c00470{height:17.046605px;}
.ha_c00470{height:17.089499px;}
.h8_c00470{height:27.952047px;}
.he_c00470{height:28.022031px;}
.h7_c00470{height:34.940387px;}
.hd_c00470{height:35.027867px;}
.h2_c00470{height:39.264000px;}
.h3_c00470{height:39.984000px;}
.hf_c00470{height:455.031000px;}
.h1_c00470{height:1135.500000px;}
.h0_c00470{height:1135.506150px;}
.w2_c00470{width:658.698000px;}
.w0_c00470{width:893.950200px;}
.w1_c00470{width:894.000000px;}
.x0_c00470{left:0.000000px;}
.x23_c00470{left:33.438750px;}
.x22_c00470{left:129.421200px;}
.x21_c00470{left:157.592400px;}
.x12_c00470{left:159.434550px;}
.x5_c00470{left:160.626900px;}
.x25_c00470{left:162.477450px;}
.x17_c00470{left:164.338500px;}
.x2_c00470{left:188.061900px;}
.x3_c00470{left:190.513350px;}
.x19_c00470{left:234.116475px;}
.x6_c00470{left:235.768165px;}
.x1a_c00470{left:310.302864px;}
.x7_c00470{left:311.764959px;}
.x24_c00470{left:314.402400px;}
.x18_c00470{left:315.449250px;}
.xb_c00470{left:331.654636px;}
.x9_c00470{left:334.019925px;}
.xa_c00470{left:338.375860px;}
.x8_c00470{left:345.102675px;}
.x1d_c00470{left:385.551900px;}
.xc_c00470{left:386.827940px;}
.x15_c00470{left:411.716357px;}
.x16_c00470{left:415.960458px;}
.x14_c00470{left:430.045950px;}
.x11_c00470{left:435.958800px;}
.x1e_c00470{left:462.433901px;}
.xd_c00470{left:463.511700px;}
.x1b_c00470{left:512.686200px;}
.x1c_c00470{left:514.144133px;}
.xe_c00470{left:537.148797px;}
.x1f_c00470{left:612.934392px;}
.xf_c00470{left:614.026050px;}
.x10_c00470{left:690.028436px;}
.x4_c00470{left:694.100400px;}
.x13_c00470{left:760.468950px;}
.x20_c00470{left:762.050288px;}
.x1_c00470{left:799.793850px;}
@media print{
.v2_c00470{vertical-align:-9.781867pt;}
.v1_c00470{vertical-align:-4.878933pt;}
.v0_c00470{vertical-align:0.000000pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.426667pt;}
.ls2_c00470{letter-spacing:0.763221pt;}
.ws0_c00470{word-spacing:-9.685333pt;}
.ws5_c00470{word-spacing:-5.540874pt;}
.ws4_c00470{word-spacing:-5.527085pt;}
.wsa_c00470{word-spacing:-0.763221pt;}
.ws9_c00470{word-spacing:0.000000pt;}
.wsb_c00470{word-spacing:2.680081pt;}
.ws2_c00470{word-spacing:907.825909pt;}
.ws3_c00470{word-spacing:915.699005pt;}
.ws7_c00470{word-spacing:982.227496pt;}
.ws8_c00470{word-spacing:990.154472pt;}
.ws6_c00470{word-spacing:991.042840pt;}
.ws1_c00470{word-spacing:1015.152227pt;}
._0_c00470{margin-left:-2449.134400pt;}
._6_c00470{margin-left:-458.748038pt;}
._1_c00470{margin-left:-2.005333pt;}
._2_c00470{width:0.896000pt;}
._5_c00470{width:1.851597pt;}
._4_c00470{width:4.161024pt;}
._b_c00470{width:15.448535pt;}
._d_c00470{width:17.519525pt;}
._a_c00470{width:29.737350pt;}
._3_c00470{width:46.244602pt;}
._7_c00470{width:52.308490pt;}
._8_c00470{width:60.181603pt;}
._c_c00470{width:71.293902pt;}
._9_c00470{width:362.914097pt;}
._e_c00470{width:365.621282pt;}
.fs3_c00470{font-size:1.467733pt;}
.fs9_c00470{font-size:3.806933pt;}
.fs6_c00470{font-size:11.361067pt;}
.fsc_c00470{font-size:11.389333pt;}
.fs1_c00470{font-size:14.201067pt;}
.fs7_c00470{font-size:14.236800pt;}
.fs2_c00470{font-size:19.881600pt;}
.fs8_c00470{font-size:19.931200pt;}
.fs5_c00470{font-size:34.082667pt;}
.fsb_c00470{font-size:34.168000pt;}
.fs4_c00470{font-size:42.603733pt;}
.fs0_c00470{font-size:42.666667pt;}
.fsa_c00470{font-size:42.710400pt;}
.y0_c00470{bottom:0.000000pt;}
.y3d_c00470{bottom:0.710267pt;}
.y21_c00470{bottom:111.629467pt;}
.y13_c00470{bottom:137.086093pt;}
.y12_c00470{bottom:143.478028pt;}
.yc_c00470{bottom:143.479502pt;}
.y1d_c00470{bottom:168.628995pt;}
.y1c_c00470{bottom:175.020929pt;}
.y1b_c00470{bottom:181.412863pt;}
.y1a_c00470{bottom:187.804798pt;}
.y19_c00470{bottom:194.196732pt;}
.y18_c00470{bottom:200.588667pt;}
.y17_c00470{bottom:241.582944pt;}
.ye_c00470{bottom:256.690303pt;}
.y11_c00470{bottom:256.693799pt;}
.yd_c00470{bottom:263.082238pt;}
.y10_c00470{bottom:263.085733pt;}
.yf_c00470{bottom:295.742267pt;}
.y2_c00470{bottom:357.660667pt;}
.y20_c00470{bottom:358.428398pt;}
.y22_c00470{bottom:358.524000pt;}
.y16_c00470{bottom:361.988485pt;}
.y1f_c00470{bottom:364.820332pt;}
.y1e_c00470{bottom:371.212267pt;}
.yb_c00470{bottom:379.608295pt;}
.y5_c00470{bottom:379.613266pt;}
.ya_c00470{bottom:386.000230pt;}
.y4_c00470{bottom:386.005200pt;}
.y3_c00470{bottom:482.073733pt;}
.y15_c00470{bottom:484.115200pt;}
.y9_c00470{bottom:486.660770pt;}
.y8_c00470{bottom:493.052705pt;}
.y7_c00470{bottom:499.444639pt;}
.y14_c00470{bottom:499.652267pt;}
.y6_c00470{bottom:505.836574pt;}
.y3c_c00470{bottom:530.017467pt;}
.y30_c00470{bottom:549.833263pt;}
.y32_c00470{bottom:556.236161pt;}
.y2f_c00470{bottom:556.241144pt;}
.y29_c00470{bottom:556.251109pt;}
.y31_c00470{bottom:562.644042pt;}
.y2e_c00470{bottom:562.649025pt;}
.y28_c00470{bottom:562.658990pt;}
.y37_c00470{bottom:600.981705pt;}
.y36_c00470{bottom:607.389586pt;}
.y35_c00470{bottom:613.797467pt;}
.y34_c00470{bottom:620.205347pt;}
.y33_c00470{bottom:626.613228pt;}
.y3f_c00470{bottom:656.516533pt;}
.y3b_c00470{bottom:661.005579pt;}
.y2c_c00470{bottom:669.744345pt;}
.y2b_c00470{bottom:676.152226pt;}
.y2d_c00470{bottom:682.555124pt;}
.y2a_c00470{bottom:682.560107pt;}
.y23_c00470{bottom:778.811867pt;}
.y3a_c00470{bottom:781.712581pt;}
.y25_c00470{bottom:799.381853pt;}
.y24_c00470{bottom:805.789733pt;}
.y27_c00470{bottom:833.955804pt;}
.y26_c00470{bottom:835.179733pt;}
.y3e_c00470{bottom:902.098533pt;}
.y39_c00470{bottom:904.145067pt;}
.y38_c00470{bottom:919.721067pt;}
.y1_c00470{bottom:972.089733pt;}
.h6_c00470{height:1.069978pt;}
.hc_c00470{height:2.775254pt;}
.h9_c00470{height:8.282218pt;}
.h10_c00470{height:8.302824pt;}
.h5_c00470{height:14.493686pt;}
.hb_c00470{height:14.529845pt;}
.h4_c00470{height:15.152538pt;}
.ha_c00470{height:15.190666pt;}
.h8_c00470{height:24.846264pt;}
.he_c00470{height:24.908472pt;}
.h7_c00470{height:31.058122pt;}
.hd_c00470{height:31.135882pt;}
.h2_c00470{height:34.901333pt;}
.h3_c00470{height:35.541333pt;}
.hf_c00470{height:404.472000pt;}
.h1_c00470{height:1009.333333pt;}
.h0_c00470{height:1009.338800pt;}
.w2_c00470{width:585.509333pt;}
.w0_c00470{width:794.622400pt;}
.w1_c00470{width:794.666667pt;}
.x0_c00470{left:0.000000pt;}
.x23_c00470{left:29.723333pt;}
.x22_c00470{left:115.041067pt;}
.x21_c00470{left:140.082133pt;}
.x12_c00470{left:141.719600pt;}
.x5_c00470{left:142.779467pt;}
.x25_c00470{left:144.424400pt;}
.x17_c00470{left:146.078667pt;}
.x2_c00470{left:167.166133pt;}
.x3_c00470{left:169.345200pt;}
.x19_c00470{left:208.103533pt;}
.x6_c00470{left:209.571702pt;}
.x1a_c00470{left:275.824768pt;}
.x7_c00470{left:277.124408pt;}
.x24_c00470{left:279.468800pt;}
.x18_c00470{left:280.399333pt;}
.xb_c00470{left:294.804121pt;}
.x9_c00470{left:296.906600pt;}
.xa_c00470{left:300.778542pt;}
.x8_c00470{left:306.757933pt;}
.x1d_c00470{left:342.712800pt;}
.xc_c00470{left:343.847058pt;}
.x15_c00470{left:365.970095pt;}
.x16_c00470{left:369.742629pt;}
.x14_c00470{left:382.263067pt;}
.x11_c00470{left:387.518933pt;}
.x1e_c00470{left:411.052356pt;}
.xd_c00470{left:412.010400pt;}
.x1b_c00470{left:455.721067pt;}
.x1c_c00470{left:457.017007pt;}
.xe_c00470{left:477.465598pt;}
.x1f_c00470{left:544.830571pt;}
.xf_c00470{left:545.800933pt;}
.x10_c00470{left:613.358610pt;}
.x4_c00470{left:616.978133pt;}
.x13_c00470{left:675.972400pt;}
.x20_c00470{left:677.378033pt;}
.x1_c00470{left:710.927867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70cad1f8b5f6247850fcf6ac.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.067000;font-style:normal;font-weight:normal;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_d86c4b74d64adf421f8f943d.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00471;src:url('chunks/assets/font_4add5ead878383813a9b105d.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00471;src:url('chunks/assets/font_d86c4b74d64adf421f8f943d.woff2')format("woff");}.ff6_c00471{font-family:ff6_c00471;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00471;src:url('chunks/assets/font_2a5e7186d43f9af3284ff4cf.woff2')format("woff");}.ff7_c00471{font-family:ff7_c00471;line-height:0.934000;font-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_c00471{transform:matrix(0.241937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241937,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls3_c00471{letter-spacing:-0.402602px;}
.ls2_c00471{letter-spacing:-0.401447px;}
.ls0_c00471{letter-spacing:-0.144000px;}
.ls1_c00471{letter-spacing:0.000000px;}
.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;}
}
.ws7_c00471{word-spacing:-6.217970px;}
.ws1_c00471{word-spacing:-6.200123px;}
.ws6_c00471{word-spacing:-5.815368px;}
.ws2_c00471{word-spacing:-5.798676px;}
.wsb_c00471{word-spacing:0.000000px;}
.wsc_c00471{word-spacing:2.999040px;}
.ws9_c00471{word-spacing:1021.304148px;}
.wsa_c00471{word-spacing:1030.161381px;}
.ws4_c00471{word-spacing:1099.072552px;}
.ws5_c00471{word-spacing:1107.942515px;}
.ws3_c00471{word-spacing:1108.936563px;}
.ws8_c00471{word-spacing:1142.046255px;}
.ws0_c00471{word-spacing:1573.771200px;}
._9_c00471{margin-left:-806.605841px;}
._2_c00471{margin-left:-3.408000px;}
._1_c00471{margin-left:-1.056000px;}
._0_c00471{width:1.344000px;}
._5_c00471{width:5.601900px;}
._7_c00471{width:12.980113px;}
._4_c00471{width:17.287080px;}
._6_c00471{width:29.037985px;}
._8_c00471{width:34.056070px;}
._3_c00471{width:41.928888px;}
._a_c00471{width:58.176047px;}
.fc1_c00471{color:transparent;}
.fc0_c00471{color:rgb(35,31,32);}
.fs3_c00471{font-size:4.260000px;}
.fs6_c00471{font-size:12.744000px;}
.fsb_c00471{font-size:12.781200px;}
.fs1_c00471{font-size:15.930600px;}
.fs7_c00471{font-size:15.976200px;}
.fs2_c00471{font-size:22.302600px;}
.fs8_c00471{font-size:22.366800px;}
.fs5_c00471{font-size:38.232600px;}
.fsa_c00471{font-size:38.343000px;}
.fs4_c00471{font-size:47.791200px;}
.fs9_c00471{font-size:47.929200px;}
.fs0_c00471{font-size:48.000000px;}
.y0_c00471{bottom:0.000000px;}
.y3d_c00471{bottom:124.520100px;}
.y3f_c00471{bottom:137.124824px;}
.y3e_c00471{bottom:144.315750px;}
.y38_c00471{bottom:153.143689px;}
.y31_c00471{bottom:153.154872px;}
.y37_c00471{bottom:160.334615px;}
.y30_c00471{bottom:160.345799px;}
.y11_c00471{bottom:220.179600px;}
.y41_c00471{bottom:265.679550px;}
.y3c_c00471{bottom:270.717762px;}
.y34_c00471{bottom:280.517023px;}
.y36_c00471{bottom:287.702358px;}
.y33_c00471{bottom:287.707949px;}
.y35_c00471{bottom:294.893284px;}
.y32_c00471{bottom:294.898876px;}
.y3b_c00471{bottom:406.173995px;}
.y26_c00471{bottom:418.810948px;}
.y28_c00471{bottom:425.996282px;}
.y25_c00471{bottom:426.001874px;}
.y27_c00471{bottom:433.187208px;}
.y24_c00471{bottom:433.192800px;}
.y2f_c00471{bottom:458.629443px;}
.y2e_c00471{bottom:465.820369px;}
.y2d_c00471{bottom:473.011296px;}
.y2c_c00471{bottom:480.202222px;}
.y2b_c00471{bottom:487.393148px;}
.y2a_c00471{bottom:494.584074px;}
.y29_c00471{bottom:501.775000px;}
.y40_c00471{bottom:538.999800px;}
.y23_c00471{bottom:540.371250px;}
.y22_c00471{bottom:541.269900px;}
.y3a_c00471{bottom:543.566550px;}
.y39_c00471{bottom:561.045750px;}
.y10_c00471{bottom:588.993150px;}
.y1e_c00471{bottom:598.444050px;}
.y17_c00471{bottom:609.849224px;}
.y16_c00471{bottom:617.019510px;}
.y3_c00471{bottom:618.824850px;}
.y19_c00471{bottom:626.983197px;}
.y15_c00471{bottom:626.988772px;}
.yb_c00471{bottom:626.998998px;}
.y18_c00471{bottom:634.153483px;}
.y14_c00471{bottom:634.159058px;}
.ya_c00471{bottom:634.169284px;}
.y21_c00471{bottom:740.564400px;}
.y2_c00471{bottom:741.933150px;}
.y1d_c00471{bottom:744.220118px;}
.y13_c00471{bottom:761.161214px;}
.yd_c00471{bottom:761.165864px;}
.y12_c00471{bottom:768.331500px;}
.yc_c00471{bottom:768.336150px;}
.yf_c00471{bottom:816.342496px;}
.ye_c00471{bottom:823.512782px;}
.y20_c00471{bottom:875.667631px;}
.y1c_c00471{bottom:879.286336px;}
.y9_c00471{bottom:891.886978px;}
.y6_c00471{bottom:899.057264px;}
.y5_c00471{bottom:906.227550px;}
.y8_c00471{bottom:937.744260px;}
.y7_c00471{bottom:939.113850px;}
.y1f_c00471{bottom:1011.256950px;}
.y4_c00471{bottom:1013.993400px;}
.y1b_c00471{bottom:1016.283300px;}
.y1a_c00471{bottom:1033.712250px;}
.y1_c00471{bottom:1093.600950px;}
.h5_c00471{height:3.105540px;}
.h9_c00471{height:9.290376px;}
.he_c00471{height:9.317495px;}
.h4_c00471{height:16.258595px;}
.hb_c00471{height:16.305397px;}
.h3_c00471{height:16.997950px;}
.ha_c00471{height:17.046605px;}
.h8_c00471{height:27.871565px;}
.hd_c00471{height:27.952047px;}
.h7_c00471{height:34.839785px;}
.hc_c00471{height:34.940387px;}
.h2_c00471{height:39.264000px;}
.h6_c00471{height:461.247000px;}
.h1_c00471{height:1135.500000px;}
.h0_c00471{height:1135.506150px;}
.w2_c00471{width:639.687000px;}
.w0_c00471{width:893.950200px;}
.w1_c00471{width:894.000000px;}
.x11_c00471{left:-3.652200px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:77.603100px;}
.x10_c00471{left:110.285700px;}
.xf_c00471{left:111.476159px;}
.xe_c00471{left:122.527097px;}
.x1c_c00471{left:137.111700px;}
.x14_c00471{left:138.797100px;}
.x5_c00471{left:139.986000px;}
.x1d_c00471{left:142.015650px;}
.x15_c00471{left:143.902350px;}
.x17_c00471{left:213.445165px;}
.x6_c00471{left:214.911585px;}
.x18_c00471{left:289.441200px;}
.x7_c00471{left:290.690244px;}
.x16_c00471{left:293.511300px;}
.x19_c00471{left:364.504181px;}
.xa_c00471{left:365.532750px;}
.x4_c00471{left:369.654150px;}
.x12_c00471{left:372.998374px;}
.x13_c00471{left:377.659617px;}
.x1e_c00471{left:383.847900px;}
.x1a_c00471{left:441.188850px;}
.x3_c00471{left:442.205550px;}
.x1f_c00471{left:445.114650px;}
.x8_c00471{left:491.984550px;}
.x9_c00471{left:493.434675px;}
.xb_c00471{left:515.420850px;}
.xc_c00471{left:592.080462px;}
.xd_c00471{left:667.864697px;}
.x2_c00471{left:671.739600px;}
.x1b_c00471{left:740.593246px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls3_c00471{letter-spacing:-0.357869pt;}
.ls2_c00471{letter-spacing:-0.356842pt;}
.ls0_c00471{letter-spacing:-0.128000pt;}
.ls1_c00471{letter-spacing:0.000000pt;}
.ws7_c00471{word-spacing:-5.527085pt;}
.ws1_c00471{word-spacing:-5.511220pt;}
.ws6_c00471{word-spacing:-5.169216pt;}
.ws2_c00471{word-spacing:-5.154379pt;}
.wsb_c00471{word-spacing:0.000000pt;}
.wsc_c00471{word-spacing:2.665813pt;}
.ws9_c00471{word-spacing:907.825909pt;}
.wsa_c00471{word-spacing:915.699005pt;}
.ws4_c00471{word-spacing:976.953380pt;}
.ws5_c00471{word-spacing:984.837791pt;}
.ws3_c00471{word-spacing:985.721389pt;}
.ws8_c00471{word-spacing:1015.152227pt;}
.ws0_c00471{word-spacing:1398.907733pt;}
._9_c00471{margin-left:-716.982970pt;}
._2_c00471{margin-left:-3.029333pt;}
._1_c00471{margin-left:-0.938667pt;}
._0_c00471{width:1.194667pt;}
._5_c00471{width:4.979467pt;}
._7_c00471{width:11.537878pt;}
._4_c00471{width:15.366293pt;}
._6_c00471{width:25.811542pt;}
._8_c00471{width:30.272062pt;}
._3_c00471{width:37.270123pt;}
._a_c00471{width:51.712042pt;}
.fs3_c00471{font-size:3.786667pt;}
.fs6_c00471{font-size:11.328000pt;}
.fsb_c00471{font-size:11.361067pt;}
.fs1_c00471{font-size:14.160533pt;}
.fs7_c00471{font-size:14.201067pt;}
.fs2_c00471{font-size:19.824533pt;}
.fs8_c00471{font-size:19.881600pt;}
.fs5_c00471{font-size:33.984533pt;}
.fsa_c00471{font-size:34.082667pt;}
.fs4_c00471{font-size:42.481067pt;}
.fs9_c00471{font-size:42.603733pt;}
.fs0_c00471{font-size:42.666667pt;}
.y0_c00471{bottom:0.000000pt;}
.y3d_c00471{bottom:110.684533pt;}
.y3f_c00471{bottom:121.888732pt;}
.y3e_c00471{bottom:128.280667pt;}
.y38_c00471{bottom:136.127723pt;}
.y31_c00471{bottom:136.137664pt;}
.y37_c00471{bottom:142.519658pt;}
.y30_c00471{bottom:142.529599pt;}
.y11_c00471{bottom:195.715200pt;}
.y41_c00471{bottom:236.159600pt;}
.y3c_c00471{bottom:240.638011pt;}
.y34_c00471{bottom:249.348465pt;}
.y36_c00471{bottom:255.735429pt;}
.y33_c00471{bottom:255.740399pt;}
.y35_c00471{bottom:262.127363pt;}
.y32_c00471{bottom:262.132334pt;}
.y3b_c00471{bottom:361.043551pt;}
.y26_c00471{bottom:372.276398pt;}
.y28_c00471{bottom:378.663362pt;}
.y25_c00471{bottom:378.668332pt;}
.y27_c00471{bottom:385.055296pt;}
.y24_c00471{bottom:385.060267pt;}
.y2f_c00471{bottom:407.670616pt;}
.y2e_c00471{bottom:414.062551pt;}
.y2d_c00471{bottom:420.454485pt;}
.y2c_c00471{bottom:426.846419pt;}
.y2b_c00471{bottom:433.238354pt;}
.y2a_c00471{bottom:439.630288pt;}
.y29_c00471{bottom:446.022223pt;}
.y40_c00471{bottom:479.110933pt;}
.y23_c00471{bottom:480.330000pt;}
.y22_c00471{bottom:481.128800pt;}
.y3a_c00471{bottom:483.170267pt;}
.y39_c00471{bottom:498.707333pt;}
.y10_c00471{bottom:523.549467pt;}
.y1e_c00471{bottom:531.950267pt;}
.y17_c00471{bottom:542.088199pt;}
.y16_c00471{bottom:548.461787pt;}
.y3_c00471{bottom:550.066533pt;}
.y19_c00471{bottom:557.318397pt;}
.y15_c00471{bottom:557.323353pt;}
.yb_c00471{bottom:557.332443pt;}
.y18_c00471{bottom:563.691985pt;}
.y14_c00471{bottom:563.696941pt;}
.ya_c00471{bottom:563.706030pt;}
.y21_c00471{bottom:658.279467pt;}
.y2_c00471{bottom:659.496133pt;}
.y1d_c00471{bottom:661.528994pt;}
.y13_c00471{bottom:676.587746pt;}
.yd_c00471{bottom:676.591879pt;}
.y12_c00471{bottom:682.961333pt;}
.yc_c00471{bottom:682.965467pt;}
.yf_c00471{bottom:725.637775pt;}
.ye_c00471{bottom:732.011362pt;}
.y20_c00471{bottom:778.371227pt;}
.y1c_c00471{bottom:781.587854pt;}
.y9_c00471{bottom:792.788425pt;}
.y6_c00471{bottom:799.162013pt;}
.y5_c00471{bottom:805.535600pt;}
.y8_c00471{bottom:833.550453pt;}
.y7_c00471{bottom:834.767867pt;}
.y1f_c00471{bottom:898.895067pt;}
.y4_c00471{bottom:901.327467pt;}
.y1b_c00471{bottom:903.362933pt;}
.y1a_c00471{bottom:918.855333pt;}
.y1_c00471{bottom:972.089733pt;}
.h5_c00471{height:2.760480pt;}
.h9_c00471{height:8.258112pt;}
.he_c00471{height:8.282218pt;}
.h4_c00471{height:14.452085pt;}
.hb_c00471{height:14.493686pt;}
.h3_c00471{height:15.109289pt;}
.ha_c00471{height:15.152538pt;}
.h8_c00471{height:24.774725pt;}
.hd_c00471{height:24.846264pt;}
.h7_c00471{height:30.968698pt;}
.hc_c00471{height:31.058122pt;}
.h2_c00471{height:34.901333pt;}
.h6_c00471{height:409.997333pt;}
.h1_c00471{height:1009.333333pt;}
.h0_c00471{height:1009.338800pt;}
.w2_c00471{width:568.610667pt;}
.w0_c00471{width:794.622400pt;}
.w1_c00471{width:794.666667pt;}
.x11_c00471{left:-3.246400pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:68.980533pt;}
.x10_c00471{left:98.031733pt;}
.xf_c00471{left:99.089919pt;}
.xe_c00471{left:108.912975pt;}
.x1c_c00471{left:121.877067pt;}
.x14_c00471{left:123.375200pt;}
.x5_c00471{left:124.432000pt;}
.x1d_c00471{left:126.236133pt;}
.x15_c00471{left:127.913200pt;}
.x17_c00471{left:189.729035pt;}
.x6_c00471{left:191.032520pt;}
.x18_c00471{left:257.281067pt;}
.x7_c00471{left:258.391328pt;}
.x16_c00471{left:260.898933pt;}
.x19_c00471{left:324.003716pt;}
.xa_c00471{left:324.918000pt;}
.x4_c00471{left:328.581467pt;}
.x12_c00471{left:331.554110pt;}
.x13_c00471{left:335.697437pt;}
.x1e_c00471{left:341.198133pt;}
.x1a_c00471{left:392.167867pt;}
.x3_c00471{left:393.071600pt;}
.x1f_c00471{left:395.657467pt;}
.x8_c00471{left:437.319600pt;}
.x9_c00471{left:438.608600pt;}
.xb_c00471{left:458.151867pt;}
.xc_c00471{left:526.293744pt;}
.xd_c00471{left:593.657508pt;}
.x2_c00471{left:597.101867pt;}
.x1b_c00471{left:658.305107pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fc8f9fa83335c11cc987291.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_520f64c60a93ac26d6bf98d1.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_38c1ebed63d88d04fd45eb9a.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:0.934000;font-style:normal;font-weight: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_c00472;src:url('chunks/assets/font_520f64c60a93ac26d6bf98d1.woff2')format("woff");}.ff7_c00472{font-family:ff7_c00472;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00472;src:url('chunks/assets/font_7122550165d76d8e51a21f4e.woff2')format("woff");}.ff8_c00472{font-family:ff8_c00472;line-height:0.934000;font-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_c00472{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.241912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241912,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls2_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:0.480000px;}
.ls1_c00472{letter-spacing:0.624000px;}
.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;}
}
.ws0_c00472{word-spacing:-11.520000px;}
.ws1_c00472{word-spacing:-6.234817px;}
.ws5_c00472{word-spacing:-6.217970px;}
.ws9_c00472{word-spacing:0.000000px;}
.wsa_c00472{word-spacing:3.015936px;}
.ws7_c00472{word-spacing:1021.304148px;}
.ws8_c00472{word-spacing:1030.161381px;}
.ws3_c00472{word-spacing:1105.247408px;}
.ws4_c00472{word-spacing:1114.167205px;}
.ws2_c00472{word-spacing:1115.166837px;}
.ws6_c00472{word-spacing:1142.046255px;}
._0_c00472{margin-left:-2754.941400px;}
._d_c00472{margin-left:-542.618568px;}
._1_c00472{margin-left:-2.256000px;}
._2_c00472{width:1.008000px;}
._4_c00472{width:5.633460px;}
._3_c00472{width:17.384472px;}
._5_c00472{width:31.824481px;}
._b_c00472{width:35.093509px;}
._f_c00472{width:40.372074px;}
._8_c00472{width:43.038181px;}
._c_c00472{width:56.028834px;}
._a_c00472{width:65.691292px;}
._6_c00472{width:87.758416px;}
._9_c00472{width:105.424159px;}
._e_c00472{width:329.865566px;}
._7_c00472{width:332.822616px;}
.fc1_c00472{color:transparent;}
.fc0_c00472{color:rgb(35,31,32);}
.fs3_c00472{font-size:4.284000px;}
.fsb_c00472{font-size:12.781200px;}
.fs6_c00472{font-size:12.816000px;}
.fs7_c00472{font-size:15.976200px;}
.fs1_c00472{font-size:16.020000px;}
.fs8_c00472{font-size:22.366800px;}
.fs2_c00472{font-size:22.427400px;}
.fsa_c00472{font-size:38.343000px;}
.fs5_c00472{font-size:38.447400px;}
.fs9_c00472{font-size:47.929200px;}
.fs0_c00472{font-size:48.000000px;}
.fs4_c00472{font-size:48.059400px;}
.y1d_c00472{bottom:-9.585900px;}
.y0_c00472{bottom:0.000000px;}
.y36_c00472{bottom:124.918800px;}
.y2e_c00472{bottom:153.149281px;}
.y2a_c00472{bottom:153.154872px;}
.y2d_c00472{bottom:160.340207px;}
.y29_c00472{bottom:160.345798px;}
.y31_c00472{bottom:269.104363px;}
.y35_c00472{bottom:270.717762px;}
.y30_c00472{bottom:276.295290px;}
.y2f_c00472{bottom:283.486216px;}
.y2c_c00472{bottom:287.707949px;}
.y2b_c00472{bottom:294.898876px;}
.y20_c00472{bottom:402.604800px;}
.y34_c00472{bottom:406.173995px;}
.y23_c00472{bottom:426.001874px;}
.y22_c00472{bottom:433.192800px;}
.y28_c00472{bottom:470.165120px;}
.y27_c00472{bottom:477.356047px;}
.y26_c00472{bottom:484.546973px;}
.y25_c00472{bottom:491.737899px;}
.y24_c00472{bottom:498.928825px;}
.y37_c00472{bottom:538.516950px;}
.y21_c00472{bottom:540.258900px;}
.y33_c00472{bottom:543.566550px;}
.y32_c00472{bottom:561.045750px;}
.y1c_c00472{bottom:605.788650px;}
.y17_c00472{bottom:624.611031px;}
.y16_c00472{bottom:631.821441px;}
.y7_c00472{bottom:631.838261px;}
.yc_c00472{bottom:657.540061px;}
.yb_c00472{bottom:664.750471px;}
.ya_c00472{bottom:671.960880px;}
.y9_c00472{bottom:679.171289px;}
.y8_c00472{bottom:686.381698px;}
.y1f_c00472{bottom:738.015000px;}
.y1b_c00472{bottom:742.501102px;}
.y15_c00472{bottom:758.805379px;}
.y13_c00472{bottom:759.534270px;}
.ye_c00472{bottom:759.539877px;}
.y14_c00472{bottom:766.015788px;}
.y12_c00472{bottom:766.744679px;}
.yd_c00472{bottom:766.750286px;}
.y11_c00472{bottom:874.300882px;}
.y1a_c00472{bottom:878.326154px;}
.y10_c00472{bottom:881.511292px;}
.yf_c00472{bottom:888.721701px;}
.y4_c00472{bottom:898.208491px;}
.y3_c00472{bottom:905.418900px;}
.y6_c00472{bottom:937.112544px;}
.y5_c00472{bottom:938.489850px;}
.y1e_c00472{bottom:1012.405500px;}
.y2_c00472{bottom:1013.785200px;}
.y19_c00472{bottom:1016.092800px;}
.y18_c00472{bottom:1033.619550px;}
.y1_c00472{bottom:1093.600950px;}
.h6_c00472{height:3.123036px;}
.hf_c00472{height:9.317495px;}
.ha_c00472{height:9.342864px;}
.hc_c00472{height:16.305397px;}
.h5_c00472{height:16.349575px;}
.hb_c00472{height:17.046605px;}
.h4_c00472{height:17.093340px;}
.he_c00472{height:27.952047px;}
.h8_c00472{height:28.028155px;}
.hd_c00472{height:34.940387px;}
.h7_c00472{height:35.035303px;}
.h2_c00472{height:39.264000px;}
.h3_c00472{height:39.984000px;}
.h9_c00472{height:444.450000px;}
.h1_c00472{height:1135.500000px;}
.h0_c00472{height:1135.506150px;}
.w2_c00472{width:643.378500px;}
.w0_c00472{width:893.950200px;}
.w1_c00472{width:894.000000px;}
.x0_c00472{left:0.000000px;}
.x18_c00472{left:33.801600px;}
.x17_c00472{left:131.546700px;}
.xf_c00472{left:133.777694px;}
.x11_c00472{left:135.134552px;}
.xe_c00472{left:144.890470px;}
.x10_c00472{left:152.067239px;}
.x16_c00472{left:160.431000px;}
.x5_c00472{left:161.626500px;}
.x26_c00472{left:164.338500px;}
.x2_c00472{left:188.061900px;}
.x3_c00472{left:190.513350px;}
.x1b_c00472{left:235.768165px;}
.x6_c00472{left:236.971350px;}
.x1c_c00472{left:311.764959px;}
.xa_c00472{left:313.173496px;}
.x1d_c00472{left:386.827940px;}
.x9_c00472{left:388.439850px;}
.x23_c00472{left:399.869532px;}
.x12_c00472{left:402.895280px;}
.x24_c00472{left:408.273857px;}
.x14_c00472{left:410.800939px;}
.x25_c00472{left:422.985620px;}
.x13_c00472{left:427.313112px;}
.x1e_c00472{left:463.511700px;}
.x15_c00472{left:465.333162px;}
.x19_c00472{left:469.513800px;}
.x7_c00472{left:515.601900px;}
.x8_c00472{left:517.060044px;}
.x1f_c00472{left:537.148797px;}
.xb_c00472{left:539.169750px;}
.x20_c00472{left:614.026050px;}
.xc_c00472{left:616.258350px;}
.x1a_c00472{left:617.944050px;}
.x21_c00472{left:690.028436px;}
.xd_c00472{left:692.466655px;}
.x4_c00472{left:696.836100px;}
.x22_c00472{left:761.591013px;}
.x1_c00472{left:801.738150px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls2_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:0.426667pt;}
.ls1_c00472{letter-spacing:0.554667pt;}
.ws0_c00472{word-spacing:-10.240000pt;}
.ws1_c00472{word-spacing:-5.542060pt;}
.ws5_c00472{word-spacing:-5.527085pt;}
.ws9_c00472{word-spacing:0.000000pt;}
.wsa_c00472{word-spacing:2.680832pt;}
.ws7_c00472{word-spacing:907.825909pt;}
.ws8_c00472{word-spacing:915.699005pt;}
.ws3_c00472{word-spacing:982.442140pt;}
.ws4_c00472{word-spacing:990.370849pt;}
.ws2_c00472{word-spacing:991.259411pt;}
.ws6_c00472{word-spacing:1015.152227pt;}
._0_c00472{margin-left:-2448.836800pt;}
._d_c00472{margin-left:-482.327616pt;}
._1_c00472{margin-left:-2.005333pt;}
._2_c00472{width:0.896000pt;}
._4_c00472{width:5.007520pt;}
._3_c00472{width:15.452864pt;}
._5_c00472{width:28.288427pt;}
._b_c00472{width:31.194230pt;}
._f_c00472{width:35.886288pt;}
._8_c00472{width:38.256161pt;}
._c_c00472{width:49.803408pt;}
._a_c00472{width:58.392259pt;}
._6_c00472{width:78.007481pt;}
._9_c00472{width:93.710364pt;}
._e_c00472{width:293.213837pt;}
._7_c00472{width:295.842325pt;}
.fs3_c00472{font-size:3.808000pt;}
.fsb_c00472{font-size:11.361067pt;}
.fs6_c00472{font-size:11.392000pt;}
.fs7_c00472{font-size:14.201067pt;}
.fs1_c00472{font-size:14.240000pt;}
.fs8_c00472{font-size:19.881600pt;}
.fs2_c00472{font-size:19.935467pt;}
.fsa_c00472{font-size:34.082667pt;}
.fs5_c00472{font-size:34.175467pt;}
.fs9_c00472{font-size:42.603733pt;}
.fs0_c00472{font-size:42.666667pt;}
.fs4_c00472{font-size:42.719467pt;}
.y1d_c00472{bottom:-8.520800pt;}
.y0_c00472{bottom:0.000000pt;}
.y36_c00472{bottom:111.038933pt;}
.y2e_c00472{bottom:136.132694pt;}
.y2a_c00472{bottom:136.137664pt;}
.y2d_c00472{bottom:142.524628pt;}
.y29_c00472{bottom:142.529599pt;}
.y31_c00472{bottom:239.203879pt;}
.y35_c00472{bottom:240.638011pt;}
.y30_c00472{bottom:245.595813pt;}
.y2f_c00472{bottom:251.987747pt;}
.y2c_c00472{bottom:255.740399pt;}
.y2b_c00472{bottom:262.132334pt;}
.y20_c00472{bottom:357.870933pt;}
.y34_c00472{bottom:361.043551pt;}
.y23_c00472{bottom:378.668332pt;}
.y22_c00472{bottom:385.060267pt;}
.y28_c00472{bottom:417.924551pt;}
.y27_c00472{bottom:424.316486pt;}
.y26_c00472{bottom:430.708420pt;}
.y25_c00472{bottom:437.100355pt;}
.y24_c00472{bottom:443.492289pt;}
.y37_c00472{bottom:478.681733pt;}
.y21_c00472{bottom:480.230133pt;}
.y33_c00472{bottom:483.170267pt;}
.y32_c00472{bottom:498.707333pt;}
.y1c_c00472{bottom:538.478800pt;}
.y17_c00472{bottom:555.209806pt;}
.y16_c00472{bottom:561.619058pt;}
.y7_c00472{bottom:561.634010pt;}
.yc_c00472{bottom:584.480055pt;}
.yb_c00472{bottom:590.889307pt;}
.ya_c00472{bottom:597.298560pt;}
.y9_c00472{bottom:603.707812pt;}
.y8_c00472{bottom:610.117065pt;}
.y1f_c00472{bottom:656.013333pt;}
.y1b_c00472{bottom:660.000979pt;}
.y15_c00472{bottom:674.493671pt;}
.y13_c00472{bottom:675.141573pt;}
.ye_c00472{bottom:675.146557pt;}
.y14_c00472{bottom:680.902923pt;}
.y12_c00472{bottom:681.550826pt;}
.yd_c00472{bottom:681.555810pt;}
.y11_c00472{bottom:777.156340pt;}
.y1a_c00472{bottom:780.734359pt;}
.y10_c00472{bottom:783.565593pt;}
.yf_c00472{bottom:789.974845pt;}
.y4_c00472{bottom:798.407547pt;}
.y3_c00472{bottom:804.816800pt;}
.y6_c00472{bottom:832.988928pt;}
.y5_c00472{bottom:834.213200pt;}
.y1e_c00472{bottom:899.916000pt;}
.y2_c00472{bottom:901.142400pt;}
.y19_c00472{bottom:903.193600pt;}
.y18_c00472{bottom:918.772933pt;}
.y1_c00472{bottom:972.089733pt;}
.h6_c00472{height:2.776032pt;}
.hf_c00472{height:8.282218pt;}
.ha_c00472{height:8.304768pt;}
.hc_c00472{height:14.493686pt;}
.h5_c00472{height:14.532955pt;}
.hb_c00472{height:15.152538pt;}
.h4_c00472{height:15.194080pt;}
.he_c00472{height:24.846264pt;}
.h8_c00472{height:24.913915pt;}
.hd_c00472{height:31.058122pt;}
.h7_c00472{height:31.142491pt;}
.h2_c00472{height:34.901333pt;}
.h3_c00472{height:35.541333pt;}
.h9_c00472{height:395.066667pt;}
.h1_c00472{height:1009.333333pt;}
.h0_c00472{height:1009.338800pt;}
.w2_c00472{width:571.892000pt;}
.w0_c00472{width:794.622400pt;}
.w1_c00472{width:794.666667pt;}
.x0_c00472{left:0.000000pt;}
.x18_c00472{left:30.045867pt;}
.x17_c00472{left:116.930400pt;}
.xf_c00472{left:118.913506pt;}
.x11_c00472{left:120.119601pt;}
.xe_c00472{left:128.791529pt;}
.x10_c00472{left:135.170879pt;}
.x16_c00472{left:142.605333pt;}
.x5_c00472{left:143.668000pt;}
.x26_c00472{left:146.078667pt;}
.x2_c00472{left:167.166133pt;}
.x3_c00472{left:169.345200pt;}
.x1b_c00472{left:209.571702pt;}
.x6_c00472{left:210.641200pt;}
.x1c_c00472{left:277.124408pt;}
.xa_c00472{left:278.376441pt;}
.x1d_c00472{left:343.847058pt;}
.x9_c00472{left:345.279867pt;}
.x23_c00472{left:355.439584pt;}
.x12_c00472{left:358.129138pt;}
.x24_c00472{left:362.910095pt;}
.x14_c00472{left:365.156390pt;}
.x25_c00472{left:375.987217pt;}
.x13_c00472{left:379.833877pt;}
.x1e_c00472{left:412.010400pt;}
.x15_c00472{left:413.629477pt;}
.x19_c00472{left:417.345600pt;}
.x7_c00472{left:458.312800pt;}
.x8_c00472{left:459.608928pt;}
.x1f_c00472{left:477.465598pt;}
.xb_c00472{left:479.262000pt;}
.x20_c00472{left:545.800933pt;}
.xc_c00472{left:547.785200pt;}
.x1a_c00472{left:549.283600pt;}
.x21_c00472{left:613.358610pt;}
.xd_c00472{left:615.525916pt;}
.x4_c00472{left:619.409867pt;}
.x22_c00472{left:676.969789pt;}
.x1_c00472{left:712.656133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55f2e00e5407721a3bb98f20.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.067000;font-style:normal;font-weight:normal;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_f93473ebf456ff682673b807.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00473;src:url('chunks/assets/font_18e8279852fd817c86af8efd.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00473;src:url('chunks/assets/font_c77bcecebdc7dd915d388950.woff2')format("woff");}.ff6_c00473{font-family:ff6_c00473;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00473;src:url('chunks/assets/font_9518c0b04199d37c44f94846.woff2')format("woff");}.ff7_c00473{font-family:ff7_c00473;line-height:0.934000;font-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_c00473{transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00473{word-spacing:-6.217970px;}
.ws1_c00473{word-spacing:-6.202625px;}
.ws9_c00473{word-spacing:0.000000px;}
.wsa_c00473{word-spacing:3.000307px;}
.ws7_c00473{word-spacing:1021.304148px;}
.ws8_c00473{word-spacing:1030.161381px;}
.ws3_c00473{word-spacing:1099.521005px;}
.ws4_c00473{word-spacing:1108.394588px;}
.ws2_c00473{word-spacing:1109.389041px;}
.ws6_c00473{word-spacing:1142.046255px;}
.ws0_c00473{word-spacing:1577.371200px;}
._3_c00473{margin-left:-502.238594px;}
._2_c00473{margin-left:-3.408000px;}
._1_c00473{margin-left:-1.056000px;}
._0_c00473{width:1.200000px;}
._5_c00473{width:5.604267px;}
._4_c00473{width:17.294384px;}
._7_c00473{width:43.641490px;}
._a_c00473{width:49.408261px;}
._9_c00473{width:66.327206px;}
._8_c00473{width:68.263474px;}
._6_c00473{width:84.895638px;}
._b_c00473{width:329.015628px;}
.fc1_c00473{color:transparent;}
.fc0_c00473{color:rgb(35,31,32);}
.fs3_c00473{font-size:4.261800px;}
.fs6_c00473{font-size:12.749400px;}
.fsb_c00473{font-size:12.781200px;}
.fs1_c00473{font-size:15.936600px;}
.fs7_c00473{font-size:15.976200px;}
.fs2_c00473{font-size:22.311600px;}
.fs8_c00473{font-size:22.366800px;}
.fs5_c00473{font-size:38.248200px;}
.fsa_c00473{font-size:38.343000px;}
.fs4_c00473{font-size:47.810400px;}
.fs9_c00473{font-size:47.929200px;}
.fs0_c00473{font-size:48.000000px;}
.y0_c00473{bottom:0.000000px;}
.y37_c00473{bottom:126.646050px;}
.y32_c00473{bottom:155.264197px;}
.y2a_c00473{bottom:155.275381px;}
.y31_c00473{bottom:162.455123px;}
.y29_c00473{bottom:162.466307px;}
.y36_c00473{bottom:272.843712px;}
.y2c_c00473{bottom:289.828458px;}
.y2b_c00473{bottom:297.019384px;}
.y30_c00473{bottom:343.877830px;}
.y2f_c00473{bottom:351.068756px;}
.y2e_c00473{bottom:358.259682px;}
.y2d_c00473{bottom:365.450608px;}
.y1f_c00473{bottom:405.199050px;}
.y35_c00473{bottom:408.299945px;}
.y22_c00473{bottom:428.127974px;}
.y21_c00473{bottom:435.318900px;}
.y9_c00473{bottom:452.772750px;}
.y28_c00473{bottom:469.847647px;}
.y27_c00473{bottom:477.038574px;}
.y26_c00473{bottom:484.229500px;}
.y25_c00473{bottom:491.420426px;}
.y24_c00473{bottom:498.611352px;}
.y23_c00473{bottom:505.802279px;}
.y20_c00473{bottom:543.396000px;}
.y34_c00473{bottom:545.692500px;}
.y33_c00473{bottom:563.171850px;}
.y8_c00473{bottom:595.065150px;}
.y1c_c00473{bottom:599.956500px;}
.y15_c00473{bottom:609.136138px;}
.y14_c00473{bottom:616.309317px;}
.y1e_c00473{bottom:620.751900px;}
.y13_c00473{bottom:623.482496px;}
.y17_c00473{bottom:628.513762px;}
.y12_c00473{bottom:628.519340px;}
.y16_c00473{bottom:635.686942px;}
.y11_c00473{bottom:635.692520px;}
.ye_c00473{bottom:635.698097px;}
.y2_c00473{bottom:744.872550px;}
.y1b_c00473{bottom:745.792859px;}
.y10_c00473{bottom:762.745926px;}
.yf_c00473{bottom:769.919105px;}
.y1a_c00473{bottom:880.914187px;}
.yd_c00473{bottom:900.692927px;}
.y5_c00473{bottom:900.692971px;}
.yc_c00473{bottom:907.866107px;}
.y4_c00473{bottom:907.866150px;}
.y7_c00473{bottom:939.395781px;}
.y6_c00473{bottom:940.765950px;}
.y1d_c00473{bottom:1012.936950px;}
.y3_c00473{bottom:1015.676100px;}
.y19_c00473{bottom:1017.967050px;}
.yb_c00473{bottom:1033.491571px;}
.y18_c00473{bottom:1035.403050px;}
.ya_c00473{bottom:1040.664750px;}
.y1_c00473{bottom:1093.600950px;}
.h5_c00473{height:3.106852px;}
.h9_c00473{height:9.294313px;}
.he_c00473{height:9.317495px;}
.h4_c00473{height:16.265156px;}
.hb_c00473{height:16.305397px;}
.h3_c00473{height:17.004352px;}
.ha_c00473{height:17.046605px;}
.h8_c00473{height:27.882938px;}
.hd_c00473{height:27.952047px;}
.h7_c00473{height:34.853782px;}
.hc_c00473{height:34.940387px;}
.h2_c00473{height:39.264000px;}
.h6_c00473{height:460.489500px;}
.h1_c00473{height:1135.500000px;}
.h0_c00473{height:1135.506150px;}
.w2_c00473{width:639.552000px;}
.w0_c00473{width:893.950200px;}
.w1_c00473{width:894.000000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:77.603100px;}
.x9_c00473{left:108.161700px;}
.x13_c00473{left:136.906950px;}
.x3_c00473{left:138.096450px;}
.x14_c00473{left:141.798900px;}
.x4_c00473{left:213.052270px;}
.xa_c00473{left:257.096700px;}
.x5_c00473{left:289.028846px;}
.x10_c00473{left:362.394721px;}
.x8_c00473{left:363.735600px;}
.x11_c00473{left:365.306385px;}
.x18_c00473{left:368.002200px;}
.xb_c00473{left:374.255523px;}
.x12_c00473{left:394.746541px;}
.x16_c00473{left:438.397650px;}
.xf_c00473{left:440.234316px;}
.x15_c00473{left:444.389850px;}
.x6_c00473{left:490.239300px;}
.x7_c00473{left:491.690058px;}
.xc_c00473{left:513.686289px;}
.x1c_c00473{left:514.895459px;}
.x17_c00473{left:518.037900px;}
.xd_c00473{left:590.374650px;}
.x19_c00473{left:591.703050px;}
.x2_c00473{left:594.499350px;}
.xe_c00473{left:666.189467px;}
.x1a_c00473{left:667.705436px;}
.x1b_c00473{left:739.268013px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws5_c00473{word-spacing:-5.527085pt;}
.ws1_c00473{word-spacing:-5.513444pt;}
.ws9_c00473{word-spacing:0.000000pt;}
.wsa_c00473{word-spacing:2.666940pt;}
.ws7_c00473{word-spacing:907.825909pt;}
.ws8_c00473{word-spacing:915.699005pt;}
.ws3_c00473{word-spacing:977.352005pt;}
.ws4_c00473{word-spacing:985.239634pt;}
.ws2_c00473{word-spacing:986.123592pt;}
.ws6_c00473{word-spacing:1015.152227pt;}
.ws0_c00473{word-spacing:1402.107733pt;}
._3_c00473{margin-left:-446.434306pt;}
._2_c00473{margin-left:-3.029333pt;}
._1_c00473{margin-left:-0.938667pt;}
._0_c00473{width:1.066667pt;}
._5_c00473{width:4.981571pt;}
._4_c00473{width:15.372786pt;}
._7_c00473{width:38.792435pt;}
._a_c00473{width:43.918454pt;}
._9_c00473{width:58.957517pt;}
._8_c00473{width:60.678643pt;}
._6_c00473{width:75.462789pt;}
._b_c00473{width:292.458336pt;}
.fs3_c00473{font-size:3.788267pt;}
.fs6_c00473{font-size:11.332800pt;}
.fsb_c00473{font-size:11.361067pt;}
.fs1_c00473{font-size:14.165867pt;}
.fs7_c00473{font-size:14.201067pt;}
.fs2_c00473{font-size:19.832533pt;}
.fs8_c00473{font-size:19.881600pt;}
.fs5_c00473{font-size:33.998400pt;}
.fsa_c00473{font-size:34.082667pt;}
.fs4_c00473{font-size:42.498133pt;}
.fs9_c00473{font-size:42.603733pt;}
.fs0_c00473{font-size:42.666667pt;}
.y0_c00473{bottom:0.000000pt;}
.y37_c00473{bottom:112.574267pt;}
.y32_c00473{bottom:138.012620pt;}
.y2a_c00473{bottom:138.022561pt;}
.y31_c00473{bottom:144.404554pt;}
.y29_c00473{bottom:144.414495pt;}
.y36_c00473{bottom:242.527744pt;}
.y2c_c00473{bottom:257.625296pt;}
.y2b_c00473{bottom:264.017230pt;}
.y30_c00473{bottom:305.669182pt;}
.y2f_c00473{bottom:312.061117pt;}
.y2e_c00473{bottom:318.453051pt;}
.y2d_c00473{bottom:324.844985pt;}
.y1f_c00473{bottom:360.176933pt;}
.y35_c00473{bottom:362.933285pt;}
.y22_c00473{bottom:380.558199pt;}
.y21_c00473{bottom:386.950133pt;}
.y9_c00473{bottom:402.464667pt;}
.y28_c00473{bottom:417.642353pt;}
.y27_c00473{bottom:424.034288pt;}
.y26_c00473{bottom:430.426222pt;}
.y25_c00473{bottom:436.818157pt;}
.y24_c00473{bottom:443.210091pt;}
.y23_c00473{bottom:449.602025pt;}
.y20_c00473{bottom:483.018667pt;}
.y34_c00473{bottom:485.060000pt;}
.y33_c00473{bottom:500.597200pt;}
.y8_c00473{bottom:528.946800pt;}
.y1c_c00473{bottom:533.294667pt;}
.y15_c00473{bottom:541.454345pt;}
.y14_c00473{bottom:547.830504pt;}
.y1e_c00473{bottom:551.779467pt;}
.y13_c00473{bottom:554.206663pt;}
.y17_c00473{bottom:558.678900pt;}
.y12_c00473{bottom:558.683858pt;}
.y16_c00473{bottom:565.055059pt;}
.y11_c00473{bottom:565.060017pt;}
.ye_c00473{bottom:565.064975pt;}
.y2_c00473{bottom:662.108933pt;}
.y1b_c00473{bottom:662.926986pt;}
.y10_c00473{bottom:677.996378pt;}
.yf_c00473{bottom:684.372538pt;}
.y1a_c00473{bottom:783.034833pt;}
.yd_c00473{bottom:800.615935pt;}
.y5_c00473{bottom:800.615974pt;}
.yc_c00473{bottom:806.992095pt;}
.y4_c00473{bottom:806.992133pt;}
.y7_c00473{bottom:835.018472pt;}
.y6_c00473{bottom:836.236400pt;}
.y1d_c00473{bottom:900.388400pt;}
.y3_c00473{bottom:902.823200pt;}
.y19_c00473{bottom:904.859600pt;}
.yb_c00473{bottom:918.659174pt;}
.y18_c00473{bottom:920.358267pt;}
.ya_c00473{bottom:925.035333pt;}
.y1_c00473{bottom:972.089733pt;}
.h5_c00473{height:2.761646pt;}
.h9_c00473{height:8.261611pt;}
.he_c00473{height:8.282218pt;}
.h4_c00473{height:14.457917pt;}
.hb_c00473{height:14.493686pt;}
.h3_c00473{height:15.114980pt;}
.ha_c00473{height:15.152538pt;}
.h8_c00473{height:24.784834pt;}
.hd_c00473{height:24.846264pt;}
.h7_c00473{height:30.981139pt;}
.hc_c00473{height:31.058122pt;}
.h2_c00473{height:34.901333pt;}
.h6_c00473{height:409.324000pt;}
.h1_c00473{height:1009.333333pt;}
.h0_c00473{height:1009.338800pt;}
.w2_c00473{width:568.490667pt;}
.w0_c00473{width:794.622400pt;}
.w1_c00473{width:794.666667pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:68.980533pt;}
.x9_c00473{left:96.143733pt;}
.x13_c00473{left:121.695067pt;}
.x3_c00473{left:122.752400pt;}
.x14_c00473{left:126.043467pt;}
.x4_c00473{left:189.379796pt;}
.xa_c00473{left:228.530400pt;}
.x5_c00473{left:256.914530pt;}
.x10_c00473{left:322.128641pt;}
.x8_c00473{left:323.320533pt;}
.x11_c00473{left:324.716787pt;}
.x18_c00473{left:327.113067pt;}
.xb_c00473{left:332.671576pt;}
.x12_c00473{left:350.885814pt;}
.x16_c00473{left:389.686800pt;}
.xf_c00473{left:391.319392pt;}
.x15_c00473{left:395.013200pt;}
.x6_c00473{left:435.768267pt;}
.x7_c00473{left:437.057829pt;}
.xc_c00473{left:456.610035pt;}
.x1c_c00473{left:457.684852pt;}
.x17_c00473{left:460.478133pt;}
.xd_c00473{left:524.777467pt;}
.x19_c00473{left:525.958267pt;}
.x2_c00473{left:528.443867pt;}
.xe_c00473{left:592.168415pt;}
.x1a_c00473{left:593.515943pt;}
.x1b_c00473{left:657.127123pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be8c4cb119bd745eb3ddc70b.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00474;src:url('chunks/assets/font_132fd71ae206f77abc5ab5a4.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00474;src:url('chunks/assets/font_6c41d442c511dc68ab83e965.woff2')format("woff");}.ff6_c00474{font-family:ff6_c00474;line-height:0.934000;font-style:normal;font-weight: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_c00474;src:url('chunks/assets/font_132fd71ae206f77abc5ab5a4.woff2')format("woff");}.ff7_c00474{font-family:ff7_c00474;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00474;src:url('chunks/assets/font_959bf11bd3dac2961e8d02fa.woff2')format("woff");}.ff8_c00474{font-family:ff8_c00474;line-height:0.934000;font-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_c00474{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00474{vertical-align:-8.477017px;}
.v0_c00474{vertical-align:0.000000px;}
.v1_c00474{vertical-align:2.918292px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.480000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:-11.376000px;}
.ws1_c00474{word-spacing:-6.240655px;}
.ws5_c00474{word-spacing:-6.217970px;}
.ws9_c00474{word-spacing:0.000000px;}
.wsa_c00474{word-spacing:3.018893px;}
.ws7_c00474{word-spacing:1021.304148px;}
.ws8_c00474{word-spacing:1030.161381px;}
.ws3_c00474{word-spacing:1106.282300px;}
.ws4_c00474{word-spacing:1115.210449px;}
.ws2_c00474{word-spacing:1116.211017px;}
.ws6_c00474{word-spacing:1142.046255px;}
._0_c00474{margin-left:-2755.613400px;}
._8_c00474{margin-left:-508.084241px;}
._3_c00474{margin-left:-503.248740px;}
._1_c00474{margin-left:-2.256000px;}
._2_c00474{width:1.008000px;}
._5_c00474{width:5.638983px;}
._4_c00474{width:17.401516px;}
._a_c00474{width:32.327015px;}
._6_c00474{width:34.615433px;}
._9_c00474{width:36.949954px;}
._7_c00474{width:54.325128px;}
._c_c00474{width:67.391168px;}
._b_c00474{width:81.951955px;}
.fc2_c00474{color:transparent;}
.fc1_c00474{color:rgb(237,28,36);}
.fc0_c00474{color:rgb(35,31,32);}
.fs3_c00474{font-size:4.288200px;}
.fsb_c00474{font-size:12.781200px;}
.fs6_c00474{font-size:12.828000px;}
.fs7_c00474{font-size:15.976200px;}
.fs1_c00474{font-size:16.035000px;}
.fs8_c00474{font-size:22.366800px;}
.fs2_c00474{font-size:22.448400px;}
.fsa_c00474{font-size:38.343000px;}
.fs5_c00474{font-size:38.483400px;}
.fs9_c00474{font-size:47.929200px;}
.fs0_c00474{font-size:48.000000px;}
.fs4_c00474{font-size:48.104400px;}
.y0_c00474{bottom:0.000000px;}
.y3c_c00474{bottom:125.583150px;}
.y31_c00474{bottom:152.098668px;}
.y33_c00474{bottom:154.212331px;}
.y30_c00474{bottom:154.217922px;}
.y2c_c00474{bottom:154.223514px;}
.y32_c00474{bottom:161.403257px;}
.y2f_c00474{bottom:161.408848px;}
.y2b_c00474{bottom:161.414440px;}
.y3e_c00474{bottom:266.742600px;}
.y23_c00474{bottom:268.113900px;}
.y37_c00474{bottom:271.780812px;}
.y2e_c00474{bottom:288.776591px;}
.y2d_c00474{bottom:295.967517px;}
.y3b_c00474{bottom:342.057221px;}
.y3a_c00474{bottom:349.248148px;}
.y39_c00474{bottom:356.439074px;}
.y38_c00474{bottom:363.630000px;}
.y24_c00474{bottom:403.962750px;}
.y36_c00474{bottom:407.237045px;}
.y2a_c00474{bottom:427.059332px;}
.y26_c00474{bottom:427.064924px;}
.y29_c00474{bottom:434.250258px;}
.y25_c00474{bottom:434.255850px;}
.y9_c00474{bottom:458.797350px;}
.y3d_c00474{bottom:540.087150px;}
.y35_c00474{bottom:544.629600px;}
.y28_c00474{bottom:561.875219px;}
.y34_c00474{bottom:562.108800px;}
.y27_c00474{bottom:569.066145px;}
.y8_c00474{bottom:588.993150px;}
.y1b_c00474{bottom:593.096452px;}
.y22_c00474{bottom:594.789150px;}
.y1a_c00474{bottom:600.313612px;}
.y19_c00474{bottom:607.530773px;}
.y18_c00474{bottom:614.747933px;}
.y15_c00474{bottom:616.313709px;}
.y1d_c00474{bottom:623.519646px;}
.y17_c00474{bottom:623.525258px;}
.y14_c00474{bottom:623.530870px;}
.yf_c00474{bottom:623.536482px;}
.y1c_c00474{bottom:630.736806px;}
.y16_c00474{bottom:630.742418px;}
.y13_c00474{bottom:630.748030px;}
.ye_c00474{bottom:630.753643px;}
.y21_c00474{bottom:741.519826px;}
.y11_c00474{bottom:758.580444px;}
.y12_c00474{bottom:765.068032px;}
.y10_c00474{bottom:765.797605px;}
.y2_c00474{bottom:873.793650px;}
.y20_c00474{bottom:877.472057px;}
.y5_c00474{bottom:897.373289px;}
.yd_c00474{bottom:897.374906px;}
.y4_c00474{bottom:904.590450px;}
.yc_c00474{bottom:904.592067px;}
.y7_c00474{bottom:936.313644px;}
.y6_c00474{bottom:937.692300px;}
.y3_c00474{bottom:1013.062650px;}
.y1f_c00474{bottom:1015.367700px;}
.y1e_c00474{bottom:1032.910950px;}
.yb_c00474{bottom:1033.356089px;}
.ya_c00474{bottom:1040.573250px;}
.y1_c00474{bottom:1093.600950px;}
.h6_c00474{height:3.126098px;}
.h11_c00474{height:9.317495px;}
.hb_c00474{height:9.351612px;}
.hd_c00474{height:16.305397px;}
.he_c00474{height:16.327764px;}
.h5_c00474{height:16.364884px;}
.hc_c00474{height:17.046605px;}
.h4_c00474{height:17.109345px;}
.h8_c00474{height:19.283176px;}
.h10_c00474{height:27.952047px;}
.ha_c00474{height:28.054399px;}
.hf_c00474{height:34.940387px;}
.h9_c00474{height:35.068108px;}
.h2_c00474{height:39.264000px;}
.h3_c00474{height:39.984000px;}
.h7_c00474{height:466.561500px;}
.h1_c00474{height:1135.500000px;}
.h0_c00474{height:1135.506150px;}
.w2_c00474{width:643.378500px;}
.w0_c00474{width:893.950200px;}
.w1_c00474{width:894.000000px;}
.x0_c00474{left:0.000000px;}
.xc_c00474{left:129.421200px;}
.x18_c00474{left:158.345850px;}
.x6_c00474{left:159.542550px;}
.x1b_c00474{left:160.626900px;}
.x19_c00474{left:163.267800px;}
.x1f_c00474{left:164.338500px;}
.x2_c00474{left:188.061900px;}
.x3_c00474{left:190.513350px;}
.x7_c00474{left:234.957950px;}
.x1d_c00474{left:241.907851px;}
.x1c_c00474{left:248.013988px;}
.xd_c00474{left:255.137550px;}
.x8_c00474{left:310.850378px;}
.xb_c00474{left:386.567850px;}
.xe_c00474{left:390.496350px;}
.x16_c00474{left:396.583476px;}
.x15_c00474{left:401.673651px;}
.x17_c00474{left:409.160192px;}
.xf_c00474{left:413.999825px;}
.x14_c00474{left:418.307915px;}
.x13_c00474{left:463.541441px;}
.x20_c00474{left:467.391450px;}
.x9_c00474{left:513.848850px;}
.xa_c00474{left:515.308472px;}
.x10_c00474{left:537.437964px;}
.x11_c00474{left:614.598727px;}
.x1a_c00474{left:618.511650px;}
.x12_c00474{left:690.882000px;}
.x4_c00474{left:694.229100px;}
.x5_c00474{left:695.252400px;}
.x1e_c00474{left:761.591550px;}
.x1_c00474{left:801.222150px;}
@media print{
.v2_c00474{vertical-align:-7.535126pt;}
.v0_c00474{vertical-align:0.000000pt;}
.v1_c00474{vertical-align:2.594037pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.426667pt;}
.ws0_c00474{word-spacing:-10.112000pt;}
.ws1_c00474{word-spacing:-5.547249pt;}
.ws5_c00474{word-spacing:-5.527085pt;}
.ws9_c00474{word-spacing:0.000000pt;}
.wsa_c00474{word-spacing:2.683460pt;}
.ws7_c00474{word-spacing:907.825909pt;}
.ws8_c00474{word-spacing:915.699005pt;}
.ws3_c00474{word-spacing:983.362044pt;}
.ws4_c00474{word-spacing:991.298177pt;}
.ws2_c00474{word-spacing:992.187571pt;}
.ws6_c00474{word-spacing:1015.152227pt;}
._0_c00474{margin-left:-2449.434133pt;}
._8_c00474{margin-left:-451.630436pt;}
._3_c00474{margin-left:-447.332213pt;}
._1_c00474{margin-left:-2.005333pt;}
._2_c00474{width:0.896000pt;}
._5_c00474{width:5.012429pt;}
._4_c00474{width:15.468014pt;}
._a_c00474{width:28.735124pt;}
._6_c00474{width:30.769274pt;}
._9_c00474{width:32.844403pt;}
._7_c00474{width:48.289003pt;}
._c_c00474{width:59.903261pt;}
._b_c00474{width:72.846182pt;}
.fs3_c00474{font-size:3.811733pt;}
.fsb_c00474{font-size:11.361067pt;}
.fs6_c00474{font-size:11.402667pt;}
.fs7_c00474{font-size:14.201067pt;}
.fs1_c00474{font-size:14.253333pt;}
.fs8_c00474{font-size:19.881600pt;}
.fs2_c00474{font-size:19.954133pt;}
.fsa_c00474{font-size:34.082667pt;}
.fs5_c00474{font-size:34.207467pt;}
.fs9_c00474{font-size:42.603733pt;}
.fs0_c00474{font-size:42.666667pt;}
.fs4_c00474{font-size:42.759467pt;}
.y0_c00474{bottom:0.000000pt;}
.y3c_c00474{bottom:111.629467pt;}
.y31_c00474{bottom:135.198816pt;}
.y33_c00474{bottom:137.077627pt;}
.y30_c00474{bottom:137.082598pt;}
.y2c_c00474{bottom:137.087568pt;}
.y32_c00474{bottom:143.469562pt;}
.y2f_c00474{bottom:143.474532pt;}
.y2b_c00474{bottom:143.479502pt;}
.y3e_c00474{bottom:237.104533pt;}
.y23_c00474{bottom:238.323467pt;}
.y37_c00474{bottom:241.582944pt;}
.y2e_c00474{bottom:256.690303pt;}
.y2d_c00474{bottom:263.082238pt;}
.y3b_c00474{bottom:304.050863pt;}
.y3a_c00474{bottom:310.442798pt;}
.y39_c00474{bottom:316.834732pt;}
.y38_c00474{bottom:323.226667pt;}
.y24_c00474{bottom:359.078000pt;}
.y36_c00474{bottom:361.988485pt;}
.y2a_c00474{bottom:379.608295pt;}
.y26_c00474{bottom:379.613266pt;}
.y29_c00474{bottom:386.000230pt;}
.y25_c00474{bottom:386.005200pt;}
.y9_c00474{bottom:407.819867pt;}
.y3d_c00474{bottom:480.077467pt;}
.y35_c00474{bottom:484.115200pt;}
.y28_c00474{bottom:499.444639pt;}
.y34_c00474{bottom:499.652267pt;}
.y27_c00474{bottom:505.836574pt;}
.y8_c00474{bottom:523.549467pt;}
.y1b_c00474{bottom:527.196846pt;}
.y22_c00474{bottom:528.701467pt;}
.y1a_c00474{bottom:533.612100pt;}
.y19_c00474{bottom:540.027354pt;}
.y18_c00474{bottom:546.442607pt;}
.y15_c00474{bottom:547.834408pt;}
.y1d_c00474{bottom:554.239685pt;}
.y17_c00474{bottom:554.244674pt;}
.y14_c00474{bottom:554.249662pt;}
.yf_c00474{bottom:554.254651pt;}
.y1c_c00474{bottom:560.654939pt;}
.y16_c00474{bottom:560.659927pt;}
.y13_c00474{bottom:560.664916pt;}
.ye_c00474{bottom:560.669905pt;}
.y21_c00474{bottom:659.128734pt;}
.y11_c00474{bottom:674.293728pt;}
.y12_c00474{bottom:680.060473pt;}
.y10_c00474{bottom:680.708982pt;}
.y2_c00474{bottom:776.705467pt;}
.y20_c00474{bottom:779.975162pt;}
.y5_c00474{bottom:797.665146pt;}
.yd_c00474{bottom:797.666583pt;}
.y4_c00474{bottom:804.080400pt;}
.yc_c00474{bottom:804.081837pt;}
.y7_c00474{bottom:832.278794pt;}
.y6_c00474{bottom:833.504267pt;}
.y3_c00474{bottom:900.500133pt;}
.y1f_c00474{bottom:902.549067pt;}
.y1e_c00474{bottom:918.143067pt;}
.yb_c00474{bottom:918.538746pt;}
.ya_c00474{bottom:924.954000pt;}
.y1_c00474{bottom:972.089733pt;}
.h6_c00474{height:2.778754pt;}
.h11_c00474{height:8.282218pt;}
.hb_c00474{height:8.312544pt;}
.hd_c00474{height:14.493686pt;}
.he_c00474{height:14.513568pt;}
.h5_c00474{height:14.546563pt;}
.hc_c00474{height:15.152538pt;}
.h4_c00474{height:15.208307pt;}
.h8_c00474{height:17.140601pt;}
.h10_c00474{height:24.846264pt;}
.ha_c00474{height:24.937243pt;}
.hf_c00474{height:31.058122pt;}
.h9_c00474{height:31.171651pt;}
.h2_c00474{height:34.901333pt;}
.h3_c00474{height:35.541333pt;}
.h7_c00474{height:414.721333pt;}
.h1_c00474{height:1009.333333pt;}
.h0_c00474{height:1009.338800pt;}
.w2_c00474{width:571.892000pt;}
.w0_c00474{width:794.622400pt;}
.w1_c00474{width:794.666667pt;}
.x0_c00474{left:0.000000pt;}
.xc_c00474{left:115.041067pt;}
.x18_c00474{left:140.751867pt;}
.x6_c00474{left:141.815600pt;}
.x1b_c00474{left:142.779467pt;}
.x19_c00474{left:145.126933pt;}
.x1f_c00474{left:146.078667pt;}
.x2_c00474{left:167.166133pt;}
.x3_c00474{left:169.345200pt;}
.x7_c00474{left:208.851511pt;}
.x1d_c00474{left:215.029201pt;}
.x1c_c00474{left:220.456878pt;}
.xd_c00474{left:226.788933pt;}
.x8_c00474{left:276.311447pt;}
.xb_c00474{left:343.615867pt;}
.xe_c00474{left:347.107867pt;}
.x16_c00474{left:352.518645pt;}
.x15_c00474{left:357.043245pt;}
.x17_c00474{left:363.697949pt;}
.xf_c00474{left:367.999844pt;}
.x14_c00474{left:371.829258pt;}
.x13_c00474{left:412.036837pt;}
.x20_c00474{left:415.459067pt;}
.x9_c00474{left:456.754533pt;}
.xa_c00474{left:458.051975pt;}
.x10_c00474{left:477.722635pt;}
.x11_c00474{left:546.309980pt;}
.x1a_c00474{left:549.788133pt;}
.x12_c00474{left:614.117333pt;}
.x4_c00474{left:617.092533pt;}
.x5_c00474{left:618.002133pt;}
.x1e_c00474{left:676.970267pt;}
.x1_c00474{left:712.197467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ba0fa75f8ddf3178165eada.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.067000;font-style:normal;font-weight:normal;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_ad2fae7f716795db354edb2f.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_51dd0492929a3972d080dfa0.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00475;src:url('chunks/assets/font_4fbb5ad2f7b6e8b2fb7fd9bb.woff2')format("woff");}.ff6_c00475{font-family:ff6_c00475;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00475;src:url('chunks/assets/font_0d70a2cb4ae20c02b5a11689.woff2')format("woff");}.ff7_c00475{font-family:ff7_c00475;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:20.276892px;}
.ls0_c00475{letter-spacing:-2.640000px;}
.ls2_c00475{letter-spacing:-0.402408px;}
.ls1_c00475{letter-spacing:0.000000px;}
.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:-6.224809px;}
.ws5_c00475{word-spacing:-6.214968px;}
.ws6_c00475{word-spacing:-5.812560px;}
.wsa_c00475{word-spacing:0.000000px;}
.ws8_c00475{word-spacing:1020.824700px;}
.ws9_c00475{word-spacing:1029.677775px;}
.ws3_c00475{word-spacing:1103.470843px;}
.ws4_c00475{word-spacing:1112.376302px;}
.ws2_c00475{word-spacing:1113.374328px;}
.ws7_c00475{word-spacing:1141.510125px;}
.ws0_c00475{word-spacing:1583.371200px;}
._3_c00475{margin-left:-584.952934px;}
._1_c00475{margin-left:-2.112000px;}
._2_c00475{margin-left:-1.104000px;}
._0_c00475{width:3.264000px;}
._6_c00475{width:34.527539px;}
._7_c00475{width:69.706008px;}
._5_c00475{width:86.117324px;}
._9_c00475{width:145.716408px;}
._8_c00475{width:365.297040px;}
._4_c00475{width:668.271333px;}
.fc1_c00475{color:transparent;}
.fc0_c00475{color:rgb(35,31,32);}
.fsa_c00475{font-size:12.775200px;}
.fs5_c00475{font-size:12.795000px;}
.fs6_c00475{font-size:15.968400px;}
.fs1_c00475{font-size:15.994200px;}
.fs7_c00475{font-size:22.356000px;}
.fs2_c00475{font-size:22.391400px;}
.fs9_c00475{font-size:38.325000px;}
.fs4_c00475{font-size:38.385600px;}
.fs8_c00475{font-size:47.905800px;}
.fs3_c00475{font-size:47.982000px;}
.fs0_c00475{font-size:48.000000px;}
.y1d_c00475{bottom:-30.445050px;}
.y3e_c00475{bottom:-2.232300px;}
.y15_c00475{bottom:-1.791150px;}
.y7_c00475{bottom:-1.774350px;}
.y0_c00475{bottom:0.000000px;}
.y3d_c00475{bottom:128.334150px;}
.y36_c00475{bottom:152.916432px;}
.y38_c00475{bottom:155.029074px;}
.y35_c00475{bottom:155.034663px;}
.y2a_c00475{bottom:155.051430px;}
.y37_c00475{bottom:162.216528px;}
.y34_c00475{bottom:162.222117px;}
.y29_c00475{bottom:162.238884px;}
.y33_c00475{bottom:203.547183px;}
.y32_c00475{bottom:210.734637px;}
.y31_c00475{bottom:217.922091px;}
.y30_c00475{bottom:225.109545px;}
.y22_c00475{bottom:271.297350px;}
.y3c_c00475{bottom:272.548800px;}
.y2d_c00475{bottom:282.352083px;}
.y2f_c00475{bottom:289.533948px;}
.y2c_c00475{bottom:289.539537px;}
.y2e_c00475{bottom:296.721402px;}
.y2b_c00475{bottom:296.726991px;}
.y3b_c00475{bottom:407.941444px;}
.y1b_c00475{bottom:423.860850px;}
.y26_c00475{bottom:427.761096px;}
.y25_c00475{bottom:434.948550px;}
.y23_c00475{bottom:542.974800px;}
.y24_c00475{bottom:544.344600px;}
.y3a_c00475{bottom:545.269500px;}
.y28_c00475{bottom:562.506297px;}
.y39_c00475{bottom:562.740300px;}
.y27_c00475{bottom:569.693751px;}
.y6_c00475{bottom:628.201650px;}
.y16_c00475{bottom:633.609450px;}
.y14_c00475{bottom:633.610192px;}
.y5_c00475{bottom:633.627857px;}
.y1a_c00475{bottom:744.112820px;}
.yb_c00475{bottom:760.401494px;}
.yd_c00475{bottom:761.123617px;}
.y9_c00475{bottom:761.129215px;}
.ya_c00475{bottom:767.600330px;}
.yc_c00475{bottom:768.322452px;}
.y8_c00475{bottom:768.328050px;}
.y13_c00475{bottom:797.061814px;}
.y12_c00475{bottom:804.260649px;}
.y11_c00475{bottom:811.459484px;}
.y10_c00475{bottom:818.658319px;}
.yf_c00475{bottom:825.857154px;}
.ye_c00475{bottom:833.055990px;}
.y1e_c00475{bottom:874.900650px;}
.y21_c00475{bottom:875.604780px;}
.y19_c00475{bottom:879.719549px;}
.y20_c00475{bottom:880.403040px;}
.y1f_c00475{bottom:885.201300px;}
.y4_c00475{bottom:899.570515px;}
.y3_c00475{bottom:906.769350px;}
.y2_c00475{bottom:1014.426000px;}
.y18_c00475{bottom:1017.264750px;}
.y17_c00475{bottom:1034.763150px;}
.y1c_c00475{bottom:1044.863550px;}
.y1_c00475{bottom:1093.600950px;}
.hf_c00475{height:9.313121px;}
.h8_c00475{height:9.327555px;}
.ha_c00475{height:16.297524px;}
.h4_c00475{height:16.323331px;}
.h9_c00475{height:17.038283px;}
.h3_c00475{height:17.065811px;}
.hd_c00475{height:27.938925px;}
.h7_c00475{height:27.983102px;}
.hc_c00475{height:34.923328px;}
.h6_c00475{height:34.978878px;}
.hb_c00475{height:36.574416px;}
.h2_c00475{height:39.264000px;}
.h5_c00475{height:427.351500px;}
.he_c00475{height:450.972000px;}
.h1_c00475{height:1135.500000px;}
.h0_c00475{height:1135.506150px;}
.w3_c00475{width:638.143500px;}
.w2_c00475{width:639.153000px;}
.w0_c00475{width:893.950200px;}
.w1_c00475{width:894.000000px;}
.x0_c00475{left:0.000000px;}
.xa_c00475{left:11.254800px;}
.x18_c00475{left:14.416350px;}
.x1_c00475{left:77.603100px;}
.xe_c00475{left:86.076000px;}
.x9_c00475{left:126.911700px;}
.x21_c00475{left:127.921200px;}
.x15_c00475{left:136.418700px;}
.x3_c00475{left:137.612250px;}
.x1f_c00475{left:139.161135px;}
.x19_c00475{left:141.542100px;}
.xf_c00475{left:161.927250px;}
.x1e_c00475{left:210.032370px;}
.x4_c00475{left:212.836158px;}
.x20_c00475{left:213.863709px;}
.x16_c00475{left:235.270350px;}
.x10_c00475{left:237.123600px;}
.xb_c00475{left:288.838139px;}
.x1d_c00475{left:294.536700px;}
.x11_c00475{left:313.921050px;}
.x5_c00475{left:364.062076px;}
.x1b_c00475{left:368.202450px;}
.x17_c00475{left:373.820100px;}
.x12_c00475{left:387.706650px;}
.xc_c00475{left:440.830962px;}
.x13_c00475{left:464.599200px;}
.x6_c00475{left:514.549078px;}
.x14_c00475{left:540.685650px;}
.x7_c00475{left:591.511050px;}
.x2_c00475{left:596.385750px;}
.x1c_c00475{left:597.628350px;}
.x8_c00475{left:667.597027px;}
.xd_c00475{left:739.235552px;}
.x1a_c00475{left:741.985350px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:18.023904pt;}
.ls0_c00475{letter-spacing:-2.346667pt;}
.ls2_c00475{letter-spacing:-0.357696pt;}
.ls1_c00475{letter-spacing:0.000000pt;}
.ws1_c00475{word-spacing:-5.533164pt;}
.ws5_c00475{word-spacing:-5.524416pt;}
.ws6_c00475{word-spacing:-5.166720pt;}
.wsa_c00475{word-spacing:0.000000pt;}
.ws8_c00475{word-spacing:907.399733pt;}
.ws9_c00475{word-spacing:915.269133pt;}
.ws3_c00475{word-spacing:980.862972pt;}
.ws4_c00475{word-spacing:988.778935pt;}
.ws2_c00475{word-spacing:989.666069pt;}
.ws7_c00475{word-spacing:1014.675667pt;}
.ws0_c00475{word-spacing:1407.441067pt;}
._3_c00475{margin-left:-519.958163pt;}
._1_c00475{margin-left:-1.877333pt;}
._2_c00475{margin-left:-0.981333pt;}
._0_c00475{width:2.901333pt;}
._6_c00475{width:30.691146pt;}
._7_c00475{width:61.960896pt;}
._5_c00475{width:76.548733pt;}
._9_c00475{width:129.525696pt;}
._8_c00475{width:324.708480pt;}
._4_c00475{width:594.018963pt;}
.fsa_c00475{font-size:11.355733pt;}
.fs5_c00475{font-size:11.373333pt;}
.fs6_c00475{font-size:14.194133pt;}
.fs1_c00475{font-size:14.217067pt;}
.fs7_c00475{font-size:19.872000pt;}
.fs2_c00475{font-size:19.903467pt;}
.fs9_c00475{font-size:34.066667pt;}
.fs4_c00475{font-size:34.120533pt;}
.fs8_c00475{font-size:42.582933pt;}
.fs3_c00475{font-size:42.650667pt;}
.fs0_c00475{font-size:42.666667pt;}
.y1d_c00475{bottom:-27.062267pt;}
.y3e_c00475{bottom:-1.984267pt;}
.y15_c00475{bottom:-1.592133pt;}
.y7_c00475{bottom:-1.577200pt;}
.y0_c00475{bottom:0.000000pt;}
.y3d_c00475{bottom:114.074800pt;}
.y36_c00475{bottom:135.925717pt;}
.y38_c00475{bottom:137.803621pt;}
.y35_c00475{bottom:137.808589pt;}
.y2a_c00475{bottom:137.823493pt;}
.y37_c00475{bottom:144.192469pt;}
.y34_c00475{bottom:144.197437pt;}
.y29_c00475{bottom:144.212341pt;}
.y33_c00475{bottom:180.930829pt;}
.y32_c00475{bottom:187.319677pt;}
.y31_c00475{bottom:193.708525pt;}
.y30_c00475{bottom:200.097373pt;}
.y22_c00475{bottom:241.153200pt;}
.y3c_c00475{bottom:242.265600pt;}
.y2d_c00475{bottom:250.979629pt;}
.y2f_c00475{bottom:257.363509pt;}
.y2c_c00475{bottom:257.368477pt;}
.y2e_c00475{bottom:263.752357pt;}
.y2b_c00475{bottom:263.757325pt;}
.y3b_c00475{bottom:362.614617pt;}
.y1b_c00475{bottom:376.765200pt;}
.y26_c00475{bottom:380.232085pt;}
.y25_c00475{bottom:386.620933pt;}
.y23_c00475{bottom:482.644267pt;}
.y24_c00475{bottom:483.861867pt;}
.y3a_c00475{bottom:484.684000pt;}
.y28_c00475{bottom:500.005597pt;}
.y39_c00475{bottom:500.213600pt;}
.y27_c00475{bottom:506.394445pt;}
.y6_c00475{bottom:558.401467pt;}
.y16_c00475{bottom:563.208400pt;}
.y14_c00475{bottom:563.209059pt;}
.y5_c00475{bottom:563.224762pt;}
.y1a_c00475{bottom:661.433618pt;}
.yb_c00475{bottom:675.912439pt;}
.yd_c00475{bottom:676.554326pt;}
.y9_c00475{bottom:676.559302pt;}
.ya_c00475{bottom:682.311404pt;}
.yc_c00475{bottom:682.953291pt;}
.y8_c00475{bottom:682.958267pt;}
.y13_c00475{bottom:708.499390pt;}
.y12_c00475{bottom:714.898355pt;}
.y11_c00475{bottom:721.297319pt;}
.y10_c00475{bottom:727.696284pt;}
.yf_c00475{bottom:734.095248pt;}
.ye_c00475{bottom:740.494213pt;}
.y1e_c00475{bottom:777.689467pt;}
.y21_c00475{bottom:778.315360pt;}
.y19_c00475{bottom:781.972932pt;}
.y20_c00475{bottom:782.580480pt;}
.y1f_c00475{bottom:786.845600pt;}
.y4_c00475{bottom:799.618235pt;}
.y3_c00475{bottom:806.017200pt;}
.y2_c00475{bottom:901.712000pt;}
.y18_c00475{bottom:904.235333pt;}
.y17_c00475{bottom:919.789467pt;}
.y1c_c00475{bottom:928.767600pt;}
.y1_c00475{bottom:972.089733pt;}
.hf_c00475{height:8.278330pt;}
.h8_c00475{height:8.291160pt;}
.ha_c00475{height:14.486688pt;}
.h4_c00475{height:14.509627pt;}
.h9_c00475{height:15.145140pt;}
.h3_c00475{height:15.169610pt;}
.hd_c00475{height:24.834600pt;}
.h7_c00475{height:24.873869pt;}
.hc_c00475{height:31.042958pt;}
.h6_c00475{height:31.092336pt;}
.hb_c00475{height:32.510592pt;}
.h2_c00475{height:34.901333pt;}
.h5_c00475{height:379.868000pt;}
.he_c00475{height:400.864000pt;}
.h1_c00475{height:1009.333333pt;}
.h0_c00475{height:1009.338800pt;}
.w3_c00475{width:567.238667pt;}
.w2_c00475{width:568.136000pt;}
.w0_c00475{width:794.622400pt;}
.w1_c00475{width:794.666667pt;}
.x0_c00475{left:0.000000pt;}
.xa_c00475{left:10.004267pt;}
.x18_c00475{left:12.814533pt;}
.x1_c00475{left:68.980533pt;}
.xe_c00475{left:76.512000pt;}
.x9_c00475{left:112.810400pt;}
.x21_c00475{left:113.707733pt;}
.x15_c00475{left:121.261067pt;}
.x3_c00475{left:122.322000pt;}
.x1f_c00475{left:123.698787pt;}
.x19_c00475{left:125.815200pt;}
.xf_c00475{left:143.935333pt;}
.x1e_c00475{left:186.695440pt;}
.x4_c00475{left:189.187696pt;}
.x20_c00475{left:190.101075pt;}
.x16_c00475{left:209.129200pt;}
.x10_c00475{left:210.776533pt;}
.xb_c00475{left:256.745013pt;}
.x1d_c00475{left:261.810400pt;}
.x11_c00475{left:279.040933pt;}
.x5_c00475{left:323.610734pt;}
.x1b_c00475{left:327.291067pt;}
.x17_c00475{left:332.284533pt;}
.x12_c00475{left:344.628133pt;}
.xc_c00475{left:391.849744pt;}
.x13_c00475{left:412.977067pt;}
.x6_c00475{left:457.376958pt;}
.x14_c00475{left:480.609467pt;}
.x7_c00475{left:525.787600pt;}
.x2_c00475{left:530.120667pt;}
.x1c_c00475{left:531.225200pt;}
.x8_c00475{left:593.419580pt;}
.xd_c00475{left:657.098269pt;}
.x1a_c00475{left:659.542533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8798d554268d9661664d0754.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.178000;font-style:normal;font-weight:normal;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_1bb00c0a004e9adcb3f567c8.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.178000;font-style:normal;font-weight:normal;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_7343918399a15c6c10459a65.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.082000;font-style:normal;font-weight:normal;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_523b08724cb950bd4dcfa82f.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:0.955000;font-style:normal;font-weight:normal;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_e5a8dff32db4c814226abf38.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_a27e5d6669a43f14aded4464.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:0.934000;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_d0cff0c43592b1e299a2e353.woff2')format("woff");}.ff7_c00476{font-family:ff7_c00476;line-height:0.934000;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_e5a8dff32db4c814226abf38.woff2')format("woff");}.ff8_c00476{font-family:ff8_c00476;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00476{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.241903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241903,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.v2_c00476{vertical-align:8.491798px;}
.v1_c00476{vertical-align:20.322061px;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:0.480000px;}
.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:-11.376000px;}
.ws1_c00476{word-spacing:-6.254833px;}
.ws5_c00476{word-spacing:-6.228812px;}
.wsa_c00476{word-spacing:0.000000px;}
.wsb_c00476{word-spacing:3.025651px;}
.ws6_c00476{word-spacing:192.936344px;}
.ws8_c00476{word-spacing:1023.094087px;}
.ws9_c00476{word-spacing:1031.966843px;}
.ws3_c00476{word-spacing:1108.783289px;}
.ws4_c00476{word-spacing:1117.731622px;}
.ws2_c00476{word-spacing:1118.734452px;}
.ws7_c00476{word-spacing:1144.047807px;}
._0_c00476{margin-left:-2755.612800px;}
._1_c00476{margin-left:-2.256000px;}
._2_c00476{width:1.008000px;}
._6_c00476{width:5.651607px;}
._5_c00476{width:17.440472px;}
._4_c00476{width:22.476901px;}
._c_c00476{width:26.618090px;}
._a_c00476{width:70.221377px;}
._b_c00476{width:71.821670px;}
._8_c00476{width:75.170495px;}
._9_c00476{width:79.040392px;}
._3_c00476{width:107.987436px;}
._7_c00476{width:138.911296px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(237,28,36);}
.fc0_c00476{color:rgb(35,31,32);}
.fs3_c00476{font-size:4.297800px;}
.fsa_c00476{font-size:12.803400px;}
.fs6_c00476{font-size:12.856800px;}
.fsb_c00476{font-size:16.004400px;}
.fs1_c00476{font-size:16.071000px;}
.fs7_c00476{font-size:22.405800px;}
.fs2_c00476{font-size:22.499400px;}
.fs9_c00476{font-size:38.410200px;}
.fs5_c00476{font-size:38.570400px;}
.fs0_c00476{font-size:48.000000px;}
.fs8_c00476{font-size:48.012600px;}
.fs4_c00476{font-size:48.213000px;}
.y19_c00476{bottom:-34.916250px;}
.y14_c00476{bottom:-5.794307px;}
.yc_c00476{bottom:-5.783057px;}
.y30_c00476{bottom:-2.238300px;}
.y0_c00476{bottom:0.000000px;}
.y13_c00476{bottom:1.439250px;}
.yb_c00476{bottom:1.450500px;}
.y2f_c00476{bottom:125.644650px;}
.y2a_c00476{bottom:152.403230px;}
.y1d_c00476{bottom:152.420034px;}
.y29_c00476{bottom:159.606694px;}
.y1c_c00476{bottom:159.623499px;}
.y2e_c00476{bottom:270.180017px;}
.y28_c00476{bottom:287.196522px;}
.y1f_c00476{bottom:287.207725px;}
.y27_c00476{bottom:294.399987px;}
.y23_c00476{bottom:294.405589px;}
.y1e_c00476{bottom:294.411190px;}
.y22_c00476{bottom:403.930740px;}
.y2d_c00476{bottom:405.873651px;}
.y21_c00476{bottom:411.134205px;}
.y20_c00476{bottom:418.337670px;}
.y1b_c00476{bottom:425.737185px;}
.y1a_c00476{bottom:432.940650px;}
.y26_c00476{bottom:488.423012px;}
.y25_c00476{bottom:495.626477px;}
.y24_c00476{bottom:502.829942px;}
.y31_c00476{bottom:539.832000px;}
.y2c_c00476{bottom:543.507000px;}
.y2b_c00476{bottom:561.016800px;}
.ya_c00476{bottom:630.568650px;}
.y18_c00476{bottom:743.040184px;}
.y10_c00476{bottom:759.405662px;}
.y12_c00476{bottom:760.131268px;}
.ye_c00476{bottom:760.136893px;}
.yf_c00476{bottom:766.639219px;}
.y11_c00476{bottom:767.364825px;}
.yd_c00476{bottom:767.370450px;}
.y2_c00476{bottom:876.992100px;}
.y17_c00476{bottom:879.299764px;}
.y7_c00476{bottom:899.245543px;}
.y9_c00476{bottom:899.324291px;}
.y4_c00476{bottom:906.479100px;}
.y8_c00476{bottom:906.557848px;}
.y6_c00476{bottom:938.274057px;}
.y5_c00476{bottom:939.655800px;}
.y3_c00476{bottom:1016.576400px;}
.y16_c00476{bottom:1017.507150px;}
.y15_c00476{bottom:1035.090000px;}
.y1_c00476{bottom:1093.600950px;}
.h6_c00476{height:3.133096px;}
.h10_c00476{height:9.333679px;}
.ha_c00476{height:9.372607px;}
.hb_c00476{height:16.333828px;}
.h5_c00476{height:16.402063px;}
.h11_c00476{height:17.076695px;}
.h4_c00476{height:17.147757px;}
.he_c00476{height:28.001036px;}
.h9_c00476{height:28.117822px;}
.hd_c00476{height:35.001185px;}
.h8_c00476{height:35.147277px;}
.h2_c00476{height:39.264000px;}
.h3_c00476{height:39.984000px;}
.hc_c00476{height:45.147687px;}
.h7_c00476{height:421.194000px;}
.hf_c00476{height:451.975500px;}
.h1_c00476{height:1135.500000px;}
.h0_c00476{height:1135.506150px;}
.w2_c00476{width:623.737500px;}
.w3_c00476{width:639.564000px;}
.w0_c00476{width:893.950200px;}
.w1_c00476{width:894.000000px;}
.x0_c00476{left:0.000000px;}
.xf_c00476{left:11.310150px;}
.x1b_c00476{left:14.485950px;}
.x13_c00476{left:86.486550px;}
.xe_c00476{left:149.062200px;}
.x1a_c00476{left:158.615100px;}
.x6_c00476{left:159.814500px;}
.x14_c00476{left:162.703268px;}
.x2_c00476{left:188.061900px;}
.x3_c00476{left:190.513350px;}
.x10_c00476{left:235.458534px;}
.x15_c00476{left:238.261878px;}
.xa_c00476{left:311.845864px;}
.x16_c00476{left:315.429195px;}
.x5_c00476{left:316.745850px;}
.x1c_c00476{left:386.125865px;}
.x9_c00476{left:387.353850px;}
.x17_c00476{left:389.570343px;}
.x20_c00476{left:398.177754px;}
.x21_c00476{left:422.370417px;}
.x1d_c00476{left:462.944550px;}
.x11_c00476{left:464.496801px;}
.x18_c00476{left:466.833282px;}
.x7_c00476{left:514.922850px;}
.x8_c00476{left:516.385638px;}
.x1e_c00476{left:536.710045px;}
.xb_c00476{left:538.566150px;}
.x19_c00476{left:543.286243px;}
.x1f_c00476{left:613.721550px;}
.xd_c00476{left:616.700941px;}
.x4_c00476{left:620.055750px;}
.xc_c00476{left:689.981487px;}
.x12_c00476{left:692.353850px;}
.x22_c00476{left:761.543815px;}
.x1_c00476{left:801.258000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.v2_c00476{vertical-align:7.548265pt;}
.v1_c00476{vertical-align:18.064054pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:0.426667pt;}
.ws0_c00476{word-spacing:-10.112000pt;}
.ws1_c00476{word-spacing:-5.559852pt;}
.ws5_c00476{word-spacing:-5.536722pt;}
.wsa_c00476{word-spacing:0.000000pt;}
.wsb_c00476{word-spacing:2.689468pt;}
.ws6_c00476{word-spacing:171.498972pt;}
.ws8_c00476{word-spacing:909.416966pt;}
.ws9_c00476{word-spacing:917.303861pt;}
.ws3_c00476{word-spacing:985.585146pt;}
.ws4_c00476{word-spacing:993.539219pt;}
.ws2_c00476{word-spacing:994.430624pt;}
.ws7_c00476{word-spacing:1016.931384pt;}
._0_c00476{margin-left:-2449.433600pt;}
._1_c00476{margin-left:-2.005333pt;}
._2_c00476{width:0.896000pt;}
._6_c00476{width:5.023651pt;}
._5_c00476{width:15.502642pt;}
._4_c00476{width:19.979467pt;}
._c_c00476{width:23.660525pt;}
._a_c00476{width:62.419002pt;}
._b_c00476{width:63.841485pt;}
._8_c00476{width:66.818218pt;}
._9_c00476{width:70.258126pt;}
._3_c00476{width:95.988832pt;}
._7_c00476{width:123.476707pt;}
.fs3_c00476{font-size:3.820267pt;}
.fsa_c00476{font-size:11.380800pt;}
.fs6_c00476{font-size:11.428267pt;}
.fsb_c00476{font-size:14.226133pt;}
.fs1_c00476{font-size:14.285333pt;}
.fs7_c00476{font-size:19.916267pt;}
.fs2_c00476{font-size:19.999467pt;}
.fs9_c00476{font-size:34.142400pt;}
.fs5_c00476{font-size:34.284800pt;}
.fs0_c00476{font-size:42.666667pt;}
.fs8_c00476{font-size:42.677867pt;}
.fs4_c00476{font-size:42.856000pt;}
.y19_c00476{bottom:-31.036667pt;}
.y14_c00476{bottom:-5.150495pt;}
.yc_c00476{bottom:-5.140495pt;}
.y30_c00476{bottom:-1.989600pt;}
.y0_c00476{bottom:0.000000pt;}
.y13_c00476{bottom:1.279333pt;}
.yb_c00476{bottom:1.289333pt;}
.y2f_c00476{bottom:111.684133pt;}
.y2a_c00476{bottom:135.469537pt;}
.y1d_c00476{bottom:135.484475pt;}
.y29_c00476{bottom:141.872617pt;}
.y1c_c00476{bottom:141.887554pt;}
.y2e_c00476{bottom:240.160015pt;}
.y28_c00476{bottom:255.285798pt;}
.y1f_c00476{bottom:255.295756pt;}
.y27_c00476{bottom:261.688877pt;}
.y23_c00476{bottom:261.693857pt;}
.y1e_c00476{bottom:261.698836pt;}
.y22_c00476{bottom:359.049547pt;}
.y2d_c00476{bottom:360.776579pt;}
.y21_c00476{bottom:365.452627pt;}
.y20_c00476{bottom:371.855707pt;}
.y1b_c00476{bottom:378.433054pt;}
.y1a_c00476{bottom:384.836133pt;}
.y26_c00476{bottom:434.153789pt;}
.y25_c00476{bottom:440.556868pt;}
.y24_c00476{bottom:446.959948pt;}
.y31_c00476{bottom:479.850667pt;}
.y2c_c00476{bottom:483.117333pt;}
.y2b_c00476{bottom:498.681600pt;}
.ya_c00476{bottom:560.505467pt;}
.y18_c00476{bottom:660.480163pt;}
.y10_c00476{bottom:675.027255pt;}
.y12_c00476{bottom:675.672238pt;}
.ye_c00476{bottom:675.677238pt;}
.yf_c00476{bottom:681.457084pt;}
.y11_c00476{bottom:682.102067pt;}
.yd_c00476{bottom:682.107067pt;}
.y2_c00476{bottom:779.548533pt;}
.y17_c00476{bottom:781.599790pt;}
.y7_c00476{bottom:799.329371pt;}
.y9_c00476{bottom:799.399370pt;}
.y4_c00476{bottom:805.759200pt;}
.y8_c00476{bottom:805.829198pt;}
.y6_c00476{bottom:834.021384pt;}
.y5_c00476{bottom:835.249600pt;}
.y3_c00476{bottom:903.623467pt;}
.y16_c00476{bottom:904.450800pt;}
.y15_c00476{bottom:920.080000pt;}
.y1_c00476{bottom:972.089733pt;}
.h6_c00476{height:2.784974pt;}
.h10_c00476{height:8.296603pt;}
.ha_c00476{height:8.331206pt;}
.hb_c00476{height:14.518958pt;}
.h5_c00476{height:14.579611pt;}
.h11_c00476{height:15.179284pt;}
.h4_c00476{height:15.242451pt;}
.he_c00476{height:24.889810pt;}
.h9_c00476{height:24.993619pt;}
.hd_c00476{height:31.112165pt;}
.h8_c00476{height:31.242024pt;}
.h2_c00476{height:34.901333pt;}
.h3_c00476{height:35.541333pt;}
.hc_c00476{height:40.131277pt;}
.h7_c00476{height:374.394667pt;}
.hf_c00476{height:401.756000pt;}
.h1_c00476{height:1009.333333pt;}
.h0_c00476{height:1009.338800pt;}
.w2_c00476{width:554.433333pt;}
.w3_c00476{width:568.501333pt;}
.w0_c00476{width:794.622400pt;}
.w1_c00476{width:794.666667pt;}
.x0_c00476{left:0.000000pt;}
.xf_c00476{left:10.053467pt;}
.x1b_c00476{left:12.876400pt;}
.x13_c00476{left:76.876933pt;}
.xe_c00476{left:132.499733pt;}
.x1a_c00476{left:140.991200pt;}
.x6_c00476{left:142.057333pt;}
.x14_c00476{left:144.625127pt;}
.x2_c00476{left:167.166133pt;}
.x3_c00476{left:169.345200pt;}
.x10_c00476{left:209.296475pt;}
.x15_c00476{left:211.788336pt;}
.xa_c00476{left:277.196323pt;}
.x16_c00476{left:280.381506pt;}
.x5_c00476{left:281.551867pt;}
.x1c_c00476{left:343.222991pt;}
.x9_c00476{left:344.314533pt;}
.x17_c00476{left:346.284749pt;}
.x20_c00476{left:353.935781pt;}
.x21_c00476{left:375.440370pt;}
.x1d_c00476{left:411.506267pt;}
.x11_c00476{left:412.886046pt;}
.x18_c00476{left:414.962917pt;}
.x7_c00476{left:457.709200pt;}
.x8_c00476{left:459.009456pt;}
.x1e_c00476{left:477.075596pt;}
.xb_c00476{left:478.725467pt;}
.x19_c00476{left:482.921105pt;}
.x1f_c00476{left:545.530267pt;}
.xd_c00476{left:548.178615pt;}
.x4_c00476{left:551.160667pt;}
.xc_c00476{left:613.316877pt;}
.x12_c00476{left:615.425645pt;}
.x22_c00476{left:676.927836pt;}
.x1_c00476{left:712.229333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8be75173218868c461e3a1d9.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls1_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:0.336000px;}
.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;}
}
.ws1_c00477{word-spacing:0.000000px;}
.ws0_c00477{word-spacing:1573.819200px;}
._0_c00477{margin-left:-1.824000px;}
.fc1_c00477{color:transparent;}
.fc0_c00477{color:rgb(35,31,32);}
.fs0_c00477{font-size:48.000000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:1093.601100px;}
.h2_c00477{height:39.264000px;}
.h1_c00477{height:1135.500000px;}
.h0_c00477{height:1135.506150px;}
.w0_c00477{width:893.950200px;}
.w1_c00477{width:894.000000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:77.603100px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:0.298667pt;}
.ws1_c00477{word-spacing:0.000000pt;}
.ws0_c00477{word-spacing:1398.950400pt;}
._0_c00477{margin-left:-1.621333pt;}
.fs0_c00477{font-size:42.666667pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:972.089867pt;}
.h2_c00477{height:34.901333pt;}
.h1_c00477{height:1009.333333pt;}
.h0_c00477{height:1009.338800pt;}
.w0_c00477{width:794.622400pt;}
.w1_c00477{width:794.666667pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:68.980533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba8435faafa312657b701e87.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00478;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:1.082000;font-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_c00478{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls4_c00478{letter-spacing:-0.648000px;}
.ls3_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:0.480000px;}
.ls2_c00478{letter-spacing:0.624000px;}
.ls5_c00478{letter-spacing:0.990000px;}
.ls1_c00478{letter-spacing:1.560000px;}
.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;}
}
.ws2_c00478{word-spacing:-15.972000px;}
.ws1_c00478{word-spacing:-15.840000px;}
.ws0_c00478{word-spacing:-11.520000px;}
.ws11_c00478{word-spacing:-2.808000px;}
.ws10_c00478{word-spacing:-1.296000px;}
.ws5_c00478{word-spacing:-0.864000px;}
.wsa_c00478{word-spacing:-0.648000px;}
.ws12_c00478{word-spacing:-0.390000px;}
.wse_c00478{word-spacing:-0.072000px;}
.ws3_c00478{word-spacing:0.000000px;}
.wsd_c00478{word-spacing:0.504000px;}
.wsf_c00478{word-spacing:0.720000px;}
.ws8_c00478{word-spacing:0.864000px;}
.wsc_c00478{word-spacing:1.440000px;}
.wsb_c00478{word-spacing:1.872000px;}
.ws9_c00478{word-spacing:2.520000px;}
.ws6_c00478{word-spacing:3.888000px;}
.ws7_c00478{word-spacing:5.400000px;}
.ws4_c00478{word-spacing:6.120000px;}
._0_c00478{margin-left:-2755.373400px;}
._5_c00478{margin-left:-5.388000px;}
._1_c00478{margin-left:-2.640000px;}
._2_c00478{margin-left:-1.632000px;}
._3_c00478{width:1.248000px;}
._4_c00478{width:34.552800px;}
.fc1_c00478{color:transparent;}
.fc0_c00478{color:rgb(35,31,32);}
.fs0_c00478{font-size:48.000000px;}
.fs5_c00478{font-size:54.000000px;}
.fs4_c00478{font-size:60.000000px;}
.fs2_c00478{font-size:66.000000px;}
.fs1_c00478{font-size:72.000000px;}
.fs3_c00478{font-size:78.000000px;}
.y0_c00478{bottom:0.000000px;}
.y2_c00478{bottom:51.868800px;}
.y16_c00478{bottom:131.914500px;}
.y15_c00478{bottom:156.664500px;}
.y14_c00478{bottom:181.414500px;}
.y13_c00478{bottom:206.164500px;}
.y12_c00478{bottom:230.914500px;}
.y11_c00478{bottom:270.658500px;}
.y10_c00478{bottom:295.408500px;}
.yf_c00478{bottom:320.158500px;}
.ye_c00478{bottom:344.908500px;}
.yd_c00478{bottom:369.658500px;}
.yc_c00478{bottom:394.408500px;}
.yb_c00478{bottom:419.158500px;}
.ya_c00478{bottom:443.908500px;}
.y9_c00478{bottom:483.652500px;}
.y8_c00478{bottom:508.402500px;}
.y7_c00478{bottom:533.152500px;}
.y6_c00478{bottom:557.902500px;}
.y5_c00478{bottom:582.652500px;}
.y4_c00478{bottom:607.402500px;}
.y3_c00478{bottom:632.152500px;}
.y1a_c00478{bottom:749.532300px;}
.y19_c00478{bottom:774.282300px;}
.y18_c00478{bottom:793.782300px;}
.y17_c00478{bottom:955.461600px;}
.y1_c00478{bottom:1093.600950px;}
.h2_c00478{height:39.264000px;}
.h3_c00478{height:39.984000px;}
.h7_c00478{height:44.172000px;}
.h6_c00478{height:49.080000px;}
.h4_c00478{height:58.896000px;}
.h5_c00478{height:64.974000px;}
.h1_c00478{height:1135.500000px;}
.h0_c00478{height:1135.506150px;}
.w0_c00478{width:893.950200px;}
.w1_c00478{width:894.000000px;}
.x0_c00478{left:0.000000px;}
.x4_c00478{left:128.626800px;}
.x2_c00478{left:188.061900px;}
.x3_c00478{left:190.513350px;}
.x6_c00478{left:464.352150px;}
.x7_c00478{left:506.907150px;}
.x8_c00478{left:720.856050px;}
.x5_c00478{left:784.346700px;}
.x1_c00478{left:800.682150px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls4_c00478{letter-spacing:-0.576000pt;}
.ls3_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:0.426667pt;}
.ls2_c00478{letter-spacing:0.554667pt;}
.ls5_c00478{letter-spacing:0.880000pt;}
.ls1_c00478{letter-spacing:1.386667pt;}
.ws2_c00478{word-spacing:-14.197333pt;}
.ws1_c00478{word-spacing:-14.080000pt;}
.ws0_c00478{word-spacing:-10.240000pt;}
.ws11_c00478{word-spacing:-2.496000pt;}
.ws10_c00478{word-spacing:-1.152000pt;}
.ws5_c00478{word-spacing:-0.768000pt;}
.wsa_c00478{word-spacing:-0.576000pt;}
.ws12_c00478{word-spacing:-0.346667pt;}
.wse_c00478{word-spacing:-0.064000pt;}
.ws3_c00478{word-spacing:0.000000pt;}
.wsd_c00478{word-spacing:0.448000pt;}
.wsf_c00478{word-spacing:0.640000pt;}
.ws8_c00478{word-spacing:0.768000pt;}
.wsc_c00478{word-spacing:1.280000pt;}
.wsb_c00478{word-spacing:1.664000pt;}
.ws9_c00478{word-spacing:2.240000pt;}
.ws6_c00478{word-spacing:3.456000pt;}
.ws7_c00478{word-spacing:4.800000pt;}
.ws4_c00478{word-spacing:5.440000pt;}
._0_c00478{margin-left:-2449.220800pt;}
._5_c00478{margin-left:-4.789333pt;}
._1_c00478{margin-left:-2.346667pt;}
._2_c00478{margin-left:-1.450667pt;}
._3_c00478{width:1.109333pt;}
._4_c00478{width:30.713600pt;}
.fs0_c00478{font-size:42.666667pt;}
.fs5_c00478{font-size:48.000000pt;}
.fs4_c00478{font-size:53.333333pt;}
.fs2_c00478{font-size:58.666667pt;}
.fs1_c00478{font-size:64.000000pt;}
.fs3_c00478{font-size:69.333333pt;}
.y0_c00478{bottom:0.000000pt;}
.y2_c00478{bottom:46.105600pt;}
.y16_c00478{bottom:117.257333pt;}
.y15_c00478{bottom:139.257333pt;}
.y14_c00478{bottom:161.257333pt;}
.y13_c00478{bottom:183.257333pt;}
.y12_c00478{bottom:205.257333pt;}
.y11_c00478{bottom:240.585333pt;}
.y10_c00478{bottom:262.585333pt;}
.yf_c00478{bottom:284.585333pt;}
.ye_c00478{bottom:306.585333pt;}
.yd_c00478{bottom:328.585333pt;}
.yc_c00478{bottom:350.585333pt;}
.yb_c00478{bottom:372.585333pt;}
.ya_c00478{bottom:394.585333pt;}
.y9_c00478{bottom:429.913333pt;}
.y8_c00478{bottom:451.913333pt;}
.y7_c00478{bottom:473.913333pt;}
.y6_c00478{bottom:495.913333pt;}
.y5_c00478{bottom:517.913333pt;}
.y4_c00478{bottom:539.913333pt;}
.y3_c00478{bottom:561.913333pt;}
.y1a_c00478{bottom:666.250933pt;}
.y19_c00478{bottom:688.250933pt;}
.y18_c00478{bottom:705.584267pt;}
.y17_c00478{bottom:849.299200pt;}
.y1_c00478{bottom:972.089733pt;}
.h2_c00478{height:34.901333pt;}
.h3_c00478{height:35.541333pt;}
.h7_c00478{height:39.264000pt;}
.h6_c00478{height:43.626667pt;}
.h4_c00478{height:52.352000pt;}
.h5_c00478{height:57.754667pt;}
.h1_c00478{height:1009.333333pt;}
.h0_c00478{height:1009.338800pt;}
.w0_c00478{width:794.622400pt;}
.w1_c00478{width:794.666667pt;}
.x0_c00478{left:0.000000pt;}
.x4_c00478{left:114.334933pt;}
.x2_c00478{left:167.166133pt;}
.x3_c00478{left:169.345200pt;}
.x6_c00478{left:412.757467pt;}
.x7_c00478{left:450.584133pt;}
.x8_c00478{left:640.760933pt;}
.x5_c00478{left:697.197067pt;}
.x1_c00478{left:711.717467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3fb9a49773957610b86196e.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.067000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls4_c00479{letter-spacing:-0.864000px;}
.ls2_c00479{letter-spacing:-0.720000px;}
.ls3_c00479{letter-spacing:-0.360000px;}
.ls5_c00479{letter-spacing:-0.240000px;}
.ls1_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:0.624000px;}
.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;}
}
.ws1_c00479{word-spacing:-15.624000px;}
.ws2_c00479{word-spacing:-12.258000px;}
.wsc_c00479{word-spacing:-3.960000px;}
.ws6_c00479{word-spacing:-1.440000px;}
.ws10_c00479{word-spacing:-1.008000px;}
.ws3_c00479{word-spacing:0.000000px;}
.wsf_c00479{word-spacing:0.144000px;}
.ws12_c00479{word-spacing:0.240000px;}
.ws7_c00479{word-spacing:0.288000px;}
.wsb_c00479{word-spacing:0.504000px;}
.ws4_c00479{word-spacing:0.720000px;}
.wse_c00479{word-spacing:0.792000px;}
.wsd_c00479{word-spacing:1.512000px;}
.wsa_c00479{word-spacing:1.800000px;}
.ws11_c00479{word-spacing:1.920000px;}
.ws5_c00479{word-spacing:2.520000px;}
.ws9_c00479{word-spacing:4.824000px;}
.ws8_c00479{word-spacing:6.408000px;}
.ws0_c00479{word-spacing:1574.395200px;}
._5_c00479{margin-left:-2051.962200px;}
._3_c00479{margin-left:-3.000000px;}
._0_c00479{margin-left:-1.968000px;}
._2_c00479{width:1.008000px;}
._4_c00479{width:2.472000px;}
._1_c00479{width:61.416000px;}
.fc0_c00479{color:rgb(35,31,32);}
.fs0_c00479{font-size:48.000000px;}
.fs3_c00479{font-size:54.000000px;}
.fs2_c00479{font-size:60.000000px;}
.fs1_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y14_c00479{bottom:109.897050px;}
.y13_c00479{bottom:128.497050px;}
.y12_c00479{bottom:147.097050px;}
.y15_c00479{bottom:177.294900px;}
.y11_c00479{bottom:641.223450px;}
.y10_c00479{bottom:665.973450px;}
.yf_c00479{bottom:690.723450px;}
.ye_c00479{bottom:715.473450px;}
.yd_c00479{bottom:740.223450px;}
.yc_c00479{bottom:764.973450px;}
.yb_c00479{bottom:789.723450px;}
.ya_c00479{bottom:814.473450px;}
.y9_c00479{bottom:854.217450px;}
.y8_c00479{bottom:878.967450px;}
.y7_c00479{bottom:903.717450px;}
.y6_c00479{bottom:928.467450px;}
.y5_c00479{bottom:953.217450px;}
.y4_c00479{bottom:977.967450px;}
.y3_c00479{bottom:1002.717450px;}
.y2_c00479{bottom:1042.467450px;}
.y1_c00479{bottom:1093.600950px;}
.h2_c00479{height:39.264000px;}
.h6_c00479{height:44.172000px;}
.h5_c00479{height:48.600000px;}
.h4_c00479{height:49.080000px;}
.h3_c00479{height:58.896000px;}
.h1_c00479{height:1135.500000px;}
.h0_c00479{height:1135.506150px;}
.w0_c00479{width:893.950200px;}
.w1_c00479{width:894.000000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:77.603100px;}
.x2_c00479{left:599.285550px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls4_c00479{letter-spacing:-0.768000pt;}
.ls2_c00479{letter-spacing:-0.640000pt;}
.ls3_c00479{letter-spacing:-0.320000pt;}
.ls5_c00479{letter-spacing:-0.213333pt;}
.ls1_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:0.554667pt;}
.ws1_c00479{word-spacing:-13.888000pt;}
.ws2_c00479{word-spacing:-10.896000pt;}
.wsc_c00479{word-spacing:-3.520000pt;}
.ws6_c00479{word-spacing:-1.280000pt;}
.ws10_c00479{word-spacing:-0.896000pt;}
.ws3_c00479{word-spacing:0.000000pt;}
.wsf_c00479{word-spacing:0.128000pt;}
.ws12_c00479{word-spacing:0.213333pt;}
.ws7_c00479{word-spacing:0.256000pt;}
.wsb_c00479{word-spacing:0.448000pt;}
.ws4_c00479{word-spacing:0.640000pt;}
.wse_c00479{word-spacing:0.704000pt;}
.wsd_c00479{word-spacing:1.344000pt;}
.wsa_c00479{word-spacing:1.600000pt;}
.ws11_c00479{word-spacing:1.706667pt;}
.ws5_c00479{word-spacing:2.240000pt;}
.ws9_c00479{word-spacing:4.288000pt;}
.ws8_c00479{word-spacing:5.696000pt;}
.ws0_c00479{word-spacing:1399.462400pt;}
._5_c00479{margin-left:-1823.966400pt;}
._3_c00479{margin-left:-2.666667pt;}
._0_c00479{margin-left:-1.749333pt;}
._2_c00479{width:0.896000pt;}
._4_c00479{width:2.197333pt;}
._1_c00479{width:54.592000pt;}
.fs0_c00479{font-size:42.666667pt;}
.fs3_c00479{font-size:48.000000pt;}
.fs2_c00479{font-size:53.333333pt;}
.fs1_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y14_c00479{bottom:97.686267pt;}
.y13_c00479{bottom:114.219600pt;}
.y12_c00479{bottom:130.752933pt;}
.y15_c00479{bottom:157.595467pt;}
.y11_c00479{bottom:569.976400pt;}
.y10_c00479{bottom:591.976400pt;}
.yf_c00479{bottom:613.976400pt;}
.ye_c00479{bottom:635.976400pt;}
.yd_c00479{bottom:657.976400pt;}
.yc_c00479{bottom:679.976400pt;}
.yb_c00479{bottom:701.976400pt;}
.ya_c00479{bottom:723.976400pt;}
.y9_c00479{bottom:759.304400pt;}
.y8_c00479{bottom:781.304400pt;}
.y7_c00479{bottom:803.304400pt;}
.y6_c00479{bottom:825.304400pt;}
.y5_c00479{bottom:847.304400pt;}
.y4_c00479{bottom:869.304400pt;}
.y3_c00479{bottom:891.304400pt;}
.y2_c00479{bottom:926.637733pt;}
.y1_c00479{bottom:972.089733pt;}
.h2_c00479{height:34.901333pt;}
.h6_c00479{height:39.264000pt;}
.h5_c00479{height:43.200000pt;}
.h4_c00479{height:43.626667pt;}
.h3_c00479{height:52.352000pt;}
.h1_c00479{height:1009.333333pt;}
.h0_c00479{height:1009.338800pt;}
.w0_c00479{width:794.622400pt;}
.w1_c00479{width:794.666667pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:68.980533pt;}
.x2_c00479{left:532.698267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21510c4a6eeb1df51e5fd562.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.082000;font-style:normal;font-weight:normal;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_aab2311d976f7b64996ebe20.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.067000;font-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_c00480{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls6_c00480{letter-spacing:-2.160000px;}
.ls5_c00480{letter-spacing:-1.440000px;}
.ls3_c00480{letter-spacing:-0.936000px;}
.ls2_c00480{letter-spacing:-0.720000px;}
.ls4_c00480{letter-spacing:-0.504000px;}
.ls9_c00480{letter-spacing:-0.240000px;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls7_c00480{letter-spacing:0.060000px;}
.ls8_c00480{letter-spacing:0.300000px;}
.ls0_c00480{letter-spacing:0.480000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00480{word-spacing:-16.344000px;}
.ws3_c00480{word-spacing:-15.984000px;}
.ws1_c00480{word-spacing:-15.768000px;}
.ws2_c00480{word-spacing:-15.552000px;}
.ws0_c00480{word-spacing:-10.896000px;}
.wsf_c00480{word-spacing:-3.096000px;}
.ws7_c00480{word-spacing:-2.160000px;}
.ws6_c00480{word-spacing:-1.872000px;}
.ws9_c00480{word-spacing:-0.144000px;}
.ws5_c00480{word-spacing:0.000000px;}
.ws13_c00480{word-spacing:0.240000px;}
.wsc_c00480{word-spacing:0.360000px;}
.ws10_c00480{word-spacing:1.656000px;}
.ws12_c00480{word-spacing:3.528000px;}
.wsd_c00480{word-spacing:3.960000px;}
.wsa_c00480{word-spacing:4.680000px;}
.wse_c00480{word-spacing:4.752000px;}
.ws8_c00480{word-spacing:5.328000px;}
.wsb_c00480{word-spacing:7.056000px;}
.ws11_c00480{word-spacing:8.136000px;}
._0_c00480{margin-left:-2754.652800px;}
._4_c00480{margin-left:-7.608000px;}
._5_c00480{margin-left:-5.472000px;}
._1_c00480{margin-left:-2.640000px;}
._2_c00480{margin-left:-1.632000px;}
._3_c00480{width:1.080000px;}
._6_c00480{width:2.664000px;}
.fc0_c00480{color:rgb(35,31,32);}
.fs0_c00480{font-size:48.000000px;}
.fs2_c00480{font-size:60.000000px;}
.fs1_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y17_c00480{bottom:158.656350px;}
.y1a_c00480{bottom:166.092450px;}
.y16_c00480{bottom:177.256350px;}
.y19_c00480{bottom:184.692450px;}
.y15_c00480{bottom:195.856350px;}
.y18_c00480{bottom:203.292450px;}
.y14_c00480{bottom:214.456350px;}
.y13_c00480{bottom:233.056350px;}
.y12_c00480{bottom:601.485450px;}
.y11_c00480{bottom:626.235450px;}
.y10_c00480{bottom:650.985450px;}
.yf_c00480{bottom:675.735450px;}
.ye_c00480{bottom:715.479450px;}
.yd_c00480{bottom:740.229450px;}
.yc_c00480{bottom:764.979450px;}
.yb_c00480{bottom:804.723450px;}
.ya_c00480{bottom:829.473450px;}
.y9_c00480{bottom:854.223450px;}
.y8_c00480{bottom:878.973450px;}
.y7_c00480{bottom:903.723450px;}
.y6_c00480{bottom:928.473450px;}
.y5_c00480{bottom:968.217450px;}
.y4_c00480{bottom:992.967450px;}
.y3_c00480{bottom:1017.717450px;}
.y2_c00480{bottom:1042.467450px;}
.y1_c00480{bottom:1093.600950px;}
.h2_c00480{height:39.264000px;}
.h3_c00480{height:39.984000px;}
.h6_c00480{height:48.600000px;}
.h5_c00480{height:49.080000px;}
.h4_c00480{height:58.896000px;}
.h1_c00480{height:1135.500000px;}
.h0_c00480{height:1135.506150px;}
.w0_c00480{width:893.950200px;}
.w1_c00480{width:894.000000px;}
.x0_c00480{left:0.000000px;}
.x4_c00480{left:128.626800px;}
.x2_c00480{left:188.061900px;}
.x3_c00480{left:190.513350px;}
.x5_c00480{left:576.221700px;}
.x1_c00480{left:800.382000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls6_c00480{letter-spacing:-1.920000pt;}
.ls5_c00480{letter-spacing:-1.280000pt;}
.ls3_c00480{letter-spacing:-0.832000pt;}
.ls2_c00480{letter-spacing:-0.640000pt;}
.ls4_c00480{letter-spacing:-0.448000pt;}
.ls9_c00480{letter-spacing:-0.213333pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls7_c00480{letter-spacing:0.053333pt;}
.ls8_c00480{letter-spacing:0.266667pt;}
.ls0_c00480{letter-spacing:0.426667pt;}
.ws4_c00480{word-spacing:-14.528000pt;}
.ws3_c00480{word-spacing:-14.208000pt;}
.ws1_c00480{word-spacing:-14.016000pt;}
.ws2_c00480{word-spacing:-13.824000pt;}
.ws0_c00480{word-spacing:-9.685333pt;}
.wsf_c00480{word-spacing:-2.752000pt;}
.ws7_c00480{word-spacing:-1.920000pt;}
.ws6_c00480{word-spacing:-1.664000pt;}
.ws9_c00480{word-spacing:-0.128000pt;}
.ws5_c00480{word-spacing:0.000000pt;}
.ws13_c00480{word-spacing:0.213333pt;}
.wsc_c00480{word-spacing:0.320000pt;}
.ws10_c00480{word-spacing:1.472000pt;}
.ws12_c00480{word-spacing:3.136000pt;}
.wsd_c00480{word-spacing:3.520000pt;}
.wsa_c00480{word-spacing:4.160000pt;}
.wse_c00480{word-spacing:4.224000pt;}
.ws8_c00480{word-spacing:4.736000pt;}
.wsb_c00480{word-spacing:6.272000pt;}
.ws11_c00480{word-spacing:7.232000pt;}
._0_c00480{margin-left:-2448.580267pt;}
._4_c00480{margin-left:-6.762667pt;}
._5_c00480{margin-left:-4.864000pt;}
._1_c00480{margin-left:-2.346667pt;}
._2_c00480{margin-left:-1.450667pt;}
._3_c00480{width:0.960000pt;}
._6_c00480{width:2.368000pt;}
.fs0_c00480{font-size:42.666667pt;}
.fs2_c00480{font-size:53.333333pt;}
.fs1_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y17_c00480{bottom:141.027867pt;}
.y1a_c00480{bottom:147.637733pt;}
.y16_c00480{bottom:157.561200pt;}
.y19_c00480{bottom:164.171067pt;}
.y15_c00480{bottom:174.094533pt;}
.y18_c00480{bottom:180.704400pt;}
.y14_c00480{bottom:190.627867pt;}
.y13_c00480{bottom:207.161200pt;}
.y12_c00480{bottom:534.653733pt;}
.y11_c00480{bottom:556.653733pt;}
.y10_c00480{bottom:578.653733pt;}
.yf_c00480{bottom:600.653733pt;}
.ye_c00480{bottom:635.981733pt;}
.yd_c00480{bottom:657.981733pt;}
.yc_c00480{bottom:679.981733pt;}
.yb_c00480{bottom:715.309733pt;}
.ya_c00480{bottom:737.309733pt;}
.y9_c00480{bottom:759.309733pt;}
.y8_c00480{bottom:781.309733pt;}
.y7_c00480{bottom:803.309733pt;}
.y6_c00480{bottom:825.309733pt;}
.y5_c00480{bottom:860.637733pt;}
.y4_c00480{bottom:882.637733pt;}
.y3_c00480{bottom:904.637733pt;}
.y2_c00480{bottom:926.637733pt;}
.y1_c00480{bottom:972.089733pt;}
.h2_c00480{height:34.901333pt;}
.h3_c00480{height:35.541333pt;}
.h6_c00480{height:43.200000pt;}
.h5_c00480{height:43.626667pt;}
.h4_c00480{height:52.352000pt;}
.h1_c00480{height:1009.333333pt;}
.h0_c00480{height:1009.338800pt;}
.w0_c00480{width:794.622400pt;}
.w1_c00480{width:794.666667pt;}
.x0_c00480{left:0.000000pt;}
.x4_c00480{left:114.334933pt;}
.x2_c00480{left:167.166133pt;}
.x3_c00480{left:169.345200pt;}
.x5_c00480{left:512.197067pt;}
.x1_c00480{left:711.450667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57581a25e31ea980817349b4.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.067000;font-style:normal;font-weight:normal;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_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.v1_c00481{vertical-align:20.958000px;}
.ls4_c00481{letter-spacing:-0.600000px;}
.ls2_c00481{letter-spacing:-0.504000px;}
.ls3_c00481{letter-spacing:-0.336000px;}
.ls1_c00481{letter-spacing:0.000000px;}
.ls0_c00481{letter-spacing:0.000066px;}
.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:0.000000px;}
.wsc_c00481{word-spacing:1.200000px;}
.wsd_c00481{word-spacing:1.536000px;}
.wsb_c00481{word-spacing:2.520000px;}
.ws4_c00481{word-spacing:2.583000px;}
.ws8_c00481{word-spacing:3.456000px;}
.ws3_c00481{word-spacing:3.780000px;}
.ws9_c00481{word-spacing:4.032000px;}
.ws5_c00481{word-spacing:4.536000px;}
.ws6_c00481{word-spacing:4.914000px;}
.wsa_c00481{word-spacing:5.670000px;}
.ws7_c00481{word-spacing:7.128000px;}
.ws0_c00481{word-spacing:1572.427200px;}
.ws1_c00481{word-spacing:2114.791800px;}
._6_c00481{margin-left:-4.656000px;}
._3_c00481{margin-left:-3.309000px;}
._0_c00481{margin-left:-1.968000px;}
._1_c00481{width:1.275000px;}
._2_c00481{width:4.666200px;}
._5_c00481{width:24.783600px;}
._4_c00481{width:29.856000px;}
.fc0_c00481{color:rgb(35,31,32);}
.fs3_c00481{font-size:36.729000px;}
.fs0_c00481{font-size:48.000000px;}
.fs5_c00481{font-size:54.000000px;}
.fs4_c00481{font-size:60.000000px;}
.fs1_c00481{font-size:63.000000px;}
.fs2_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.yf_c00481{bottom:124.372200px;}
.ye_c00481{bottom:136.372200px;}
.yd_c00481{bottom:156.876150px;}
.yc_c00481{bottom:212.588100px;}
.yb_c00481{bottom:233.582850px;}
.ya_c00481{bottom:254.577600px;}
.y9_c00481{bottom:284.081550px;}
.y8_c00481{bottom:308.831550px;}
.y7_c00481{bottom:333.581550px;}
.y6_c00481{bottom:373.336800px;}
.y5_c00481{bottom:394.347300px;}
.y4_c00481{bottom:415.342050px;}
.y3_c00481{bottom:436.336800px;}
.y2_c00481{bottom:457.331550px;}
.y11_c00481{bottom:517.409100px;}
.y10_c00481{bottom:536.009100px;}
.y13_c00481{bottom:566.205600px;}
.y12_c00481{bottom:886.144650px;}
.y1_c00481{bottom:1093.601100px;}
.h2_c00481{height:39.264000px;}
.h8_c00481{height:44.172000px;}
.h7_c00481{height:48.600000px;}
.h6_c00481{height:49.080000px;}
.h3_c00481{height:51.534000px;}
.h4_c00481{height:58.833000px;}
.h5_c00481{height:58.896000px;}
.h1_c00481{height:1135.500000px;}
.h0_c00481{height:1135.506150px;}
.w0_c00481{width:893.950200px;}
.w1_c00481{width:894.000000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:77.603100px;}
.x4_c00481{left:91.890750px;}
.x3_c00481{left:94.611000px;}
.x2_c00481{left:98.862900px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.v1_c00481{vertical-align:18.629333pt;}
.ls4_c00481{letter-spacing:-0.533333pt;}
.ls2_c00481{letter-spacing:-0.448000pt;}
.ls3_c00481{letter-spacing:-0.298667pt;}
.ls1_c00481{letter-spacing:0.000000pt;}
.ls0_c00481{letter-spacing:0.000059pt;}
.ws2_c00481{word-spacing:0.000000pt;}
.wsc_c00481{word-spacing:1.066667pt;}
.wsd_c00481{word-spacing:1.365333pt;}
.wsb_c00481{word-spacing:2.240000pt;}
.ws4_c00481{word-spacing:2.296000pt;}
.ws8_c00481{word-spacing:3.072000pt;}
.ws3_c00481{word-spacing:3.360000pt;}
.ws9_c00481{word-spacing:3.584000pt;}
.ws5_c00481{word-spacing:4.032000pt;}
.ws6_c00481{word-spacing:4.368000pt;}
.wsa_c00481{word-spacing:5.040000pt;}
.ws7_c00481{word-spacing:6.336000pt;}
.ws0_c00481{word-spacing:1397.713067pt;}
.ws1_c00481{word-spacing:1879.814933pt;}
._6_c00481{margin-left:-4.138667pt;}
._3_c00481{margin-left:-2.941333pt;}
._0_c00481{margin-left:-1.749333pt;}
._1_c00481{width:1.133333pt;}
._2_c00481{width:4.147733pt;}
._5_c00481{width:22.029867pt;}
._4_c00481{width:26.538667pt;}
.fs3_c00481{font-size:32.648000pt;}
.fs0_c00481{font-size:42.666667pt;}
.fs5_c00481{font-size:48.000000pt;}
.fs4_c00481{font-size:53.333333pt;}
.fs1_c00481{font-size:56.000000pt;}
.fs2_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.yf_c00481{bottom:110.553067pt;}
.ye_c00481{bottom:121.219733pt;}
.yd_c00481{bottom:139.445467pt;}
.yc_c00481{bottom:188.967200pt;}
.yb_c00481{bottom:207.629200pt;}
.ya_c00481{bottom:226.291200pt;}
.y9_c00481{bottom:252.516933pt;}
.y8_c00481{bottom:274.516933pt;}
.y7_c00481{bottom:296.516933pt;}
.y6_c00481{bottom:331.854933pt;}
.y5_c00481{bottom:350.530933pt;}
.y4_c00481{bottom:369.192933pt;}
.y3_c00481{bottom:387.854933pt;}
.y2_c00481{bottom:406.516933pt;}
.y11_c00481{bottom:459.919200pt;}
.y10_c00481{bottom:476.452533pt;}
.y13_c00481{bottom:503.293867pt;}
.y12_c00481{bottom:787.684133pt;}
.y1_c00481{bottom:972.089867pt;}
.h2_c00481{height:34.901333pt;}
.h8_c00481{height:39.264000pt;}
.h7_c00481{height:43.200000pt;}
.h6_c00481{height:43.626667pt;}
.h3_c00481{height:45.808000pt;}
.h4_c00481{height:52.296000pt;}
.h5_c00481{height:52.352000pt;}
.h1_c00481{height:1009.333333pt;}
.h0_c00481{height:1009.338800pt;}
.w0_c00481{width:794.622400pt;}
.w1_c00481{width:794.666667pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:68.980533pt;}
.x4_c00481{left:81.680667pt;}
.x3_c00481{left:84.098667pt;}
.x2_c00481{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b09d7d05bd09304822db1aa2.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.082000;font-style:normal;font-weight:normal;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_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.082000;font-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_c00482{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls9_c00482{letter-spacing:-9.174000px;}
.ls5_c00482{letter-spacing:-7.260000px;}
.lsb_c00482{letter-spacing:-6.534000px;}
.lsc_c00482{letter-spacing:-6.468000px;}
.ls3_c00482{letter-spacing:-4.158000px;}
.ls4_c00482{letter-spacing:-2.640000px;}
.lsa_c00482{letter-spacing:-1.452000px;}
.ls8_c00482{letter-spacing:-1.254000px;}
.lsd_c00482{letter-spacing:-1.056000px;}
.ls6_c00482{letter-spacing:-0.792000px;}
.ls2_c00482{letter-spacing:-0.594000px;}
.ls7_c00482{letter-spacing:-0.198000px;}
.ls1_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.480000px;}
.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;}
}
.ws1_c00482{word-spacing:-14.982000px;}
.ws5_c00482{word-spacing:-14.784000px;}
.ws2_c00482{word-spacing:-14.388000px;}
.ws4_c00482{word-spacing:-14.190000px;}
.ws9_c00482{word-spacing:-13.926000px;}
.ws6_c00482{word-spacing:-13.728000px;}
.ws7_c00482{word-spacing:-13.530000px;}
.ws0_c00482{word-spacing:-10.896000px;}
.ws3_c00482{word-spacing:-10.824000px;}
.ws8_c00482{word-spacing:-8.514000px;}
.wsa_c00482{word-spacing:0.000000px;}
.wsb_c00482{word-spacing:2.640000px;}
.wse_c00482{word-spacing:6.534000px;}
.wsc_c00482{word-spacing:7.260000px;}
.wsd_c00482{word-spacing:9.174000px;}
._0_c00482{margin-left:-2755.132800px;}
._a_c00482{margin-left:-6.468000px;}
._4_c00482{margin-left:-4.356000px;}
._1_c00482{margin-left:-2.640000px;}
._2_c00482{margin-left:-1.632000px;}
._3_c00482{width:1.104000px;}
._7_c00482{width:2.640000px;}
._6_c00482{width:3.696000px;}
._5_c00482{width:5.148000px;}
._8_c00482{width:7.260000px;}
._9_c00482{width:9.174000px;}
.fc0_c00482{color:rgb(35,31,32);}
.fs0_c00482{font-size:48.000000px;}
.fs1_c00482{font-size:66.000000px;}
.fs2_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y23_c00482{bottom:123.736350px;}
.y22_c00482{bottom:148.486350px;}
.y3f_c00482{bottom:164.738850px;}
.y21_c00482{bottom:173.236350px;}
.y3e_c00482{bottom:189.488850px;}
.y20_c00482{bottom:206.483850px;}
.y3d_c00482{bottom:214.238850px;}
.y1f_c00482{bottom:231.233850px;}
.y3c_c00482{bottom:238.988850px;}
.y1e_c00482{bottom:255.983850px;}
.y3b_c00482{bottom:263.738850px;}
.y1d_c00482{bottom:280.733850px;}
.y3a_c00482{bottom:288.488850px;}
.y1c_c00482{bottom:313.981350px;}
.y39_c00482{bottom:321.736350px;}
.y1b_c00482{bottom:338.731350px;}
.y38_c00482{bottom:346.486350px;}
.y1a_c00482{bottom:363.481350px;}
.y37_c00482{bottom:371.236350px;}
.y36_c00482{bottom:395.986350px;}
.y19_c00482{bottom:396.728850px;}
.y35_c00482{bottom:420.736350px;}
.y18_c00482{bottom:421.478850px;}
.y17_c00482{bottom:446.228850px;}
.y34_c00482{bottom:453.983850px;}
.y16_c00482{bottom:470.978850px;}
.y33_c00482{bottom:478.733850px;}
.y32_c00482{bottom:503.483850px;}
.y15_c00482{bottom:504.226350px;}
.y31_c00482{bottom:528.233850px;}
.y14_c00482{bottom:528.976350px;}
.y13_c00482{bottom:553.726350px;}
.y30_c00482{bottom:561.481350px;}
.y12_c00482{bottom:578.476350px;}
.y2f_c00482{bottom:586.231350px;}
.y11_c00482{bottom:611.723850px;}
.y2e_c00482{bottom:619.478850px;}
.y10_c00482{bottom:636.473850px;}
.y2d_c00482{bottom:644.228850px;}
.yf_c00482{bottom:661.223850px;}
.y2c_c00482{bottom:677.476350px;}
.ye_c00482{bottom:685.973850px;}
.y2b_c00482{bottom:702.226350px;}
.yd_c00482{bottom:710.723850px;}
.y2a_c00482{bottom:726.976350px;}
.yc_c00482{bottom:743.971350px;}
.y29_c00482{bottom:751.726350px;}
.yb_c00482{bottom:768.721350px;}
.y28_c00482{bottom:776.476350px;}
.ya_c00482{bottom:793.471350px;}
.y27_c00482{bottom:801.226350px;}
.y9_c00482{bottom:818.221350px;}
.y26_c00482{bottom:834.473850px;}
.y8_c00482{bottom:842.971350px;}
.y25_c00482{bottom:859.223850px;}
.y7_c00482{bottom:867.721350px;}
.y24_c00482{bottom:883.973850px;}
.y6_c00482{bottom:892.471350px;}
.y5_c00482{bottom:917.221350px;}
.y4_c00482{bottom:941.971350px;}
.y3_c00482{bottom:966.721350px;}
.y2_c00482{bottom:991.471350px;}
.y40_c00482{bottom:1042.467450px;}
.y1_c00482{bottom:1093.601100px;}
.h2_c00482{height:39.264000px;}
.h3_c00482{height:39.984000px;}
.h4_c00482{height:53.988000px;}
.h5_c00482{height:59.976000px;}
.h1_c00482{height:1135.500000px;}
.h0_c00482{height:1135.506150px;}
.w0_c00482{width:893.950200px;}
.w1_c00482{width:894.000000px;}
.x0_c00482{left:0.000000px;}
.x4_c00482{left:128.626800px;}
.x5_c00482{left:149.878800px;}
.x2_c00482{left:188.061900px;}
.x3_c00482{left:190.513350px;}
.x6_c00482{left:490.044150px;}
.x7_c00482{left:511.296150px;}
.x1_c00482{left:801.906000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls9_c00482{letter-spacing:-8.154667pt;}
.ls5_c00482{letter-spacing:-6.453333pt;}
.lsb_c00482{letter-spacing:-5.808000pt;}
.lsc_c00482{letter-spacing:-5.749333pt;}
.ls3_c00482{letter-spacing:-3.696000pt;}
.ls4_c00482{letter-spacing:-2.346667pt;}
.lsa_c00482{letter-spacing:-1.290667pt;}
.ls8_c00482{letter-spacing:-1.114667pt;}
.lsd_c00482{letter-spacing:-0.938667pt;}
.ls6_c00482{letter-spacing:-0.704000pt;}
.ls2_c00482{letter-spacing:-0.528000pt;}
.ls7_c00482{letter-spacing:-0.176000pt;}
.ls1_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.426667pt;}
.ws1_c00482{word-spacing:-13.317333pt;}
.ws5_c00482{word-spacing:-13.141333pt;}
.ws2_c00482{word-spacing:-12.789333pt;}
.ws4_c00482{word-spacing:-12.613333pt;}
.ws9_c00482{word-spacing:-12.378667pt;}
.ws6_c00482{word-spacing:-12.202667pt;}
.ws7_c00482{word-spacing:-12.026667pt;}
.ws0_c00482{word-spacing:-9.685333pt;}
.ws3_c00482{word-spacing:-9.621333pt;}
.ws8_c00482{word-spacing:-7.568000pt;}
.wsa_c00482{word-spacing:0.000000pt;}
.wsb_c00482{word-spacing:2.346667pt;}
.wse_c00482{word-spacing:5.808000pt;}
.wsc_c00482{word-spacing:6.453333pt;}
.wsd_c00482{word-spacing:8.154667pt;}
._0_c00482{margin-left:-2449.006933pt;}
._a_c00482{margin-left:-5.749333pt;}
._4_c00482{margin-left:-3.872000pt;}
._1_c00482{margin-left:-2.346667pt;}
._2_c00482{margin-left:-1.450667pt;}
._3_c00482{width:0.981333pt;}
._7_c00482{width:2.346667pt;}
._6_c00482{width:3.285333pt;}
._5_c00482{width:4.576000pt;}
._8_c00482{width:6.453333pt;}
._9_c00482{width:8.154667pt;}
.fs0_c00482{font-size:42.666667pt;}
.fs1_c00482{font-size:58.666667pt;}
.fs2_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y23_c00482{bottom:109.987867pt;}
.y22_c00482{bottom:131.987867pt;}
.y3f_c00482{bottom:146.434533pt;}
.y21_c00482{bottom:153.987867pt;}
.y3e_c00482{bottom:168.434533pt;}
.y20_c00482{bottom:183.541200pt;}
.y3d_c00482{bottom:190.434533pt;}
.y1f_c00482{bottom:205.541200pt;}
.y3c_c00482{bottom:212.434533pt;}
.y1e_c00482{bottom:227.541200pt;}
.y3b_c00482{bottom:234.434533pt;}
.y1d_c00482{bottom:249.541200pt;}
.y3a_c00482{bottom:256.434533pt;}
.y1c_c00482{bottom:279.094533pt;}
.y39_c00482{bottom:285.987867pt;}
.y1b_c00482{bottom:301.094533pt;}
.y38_c00482{bottom:307.987867pt;}
.y1a_c00482{bottom:323.094533pt;}
.y37_c00482{bottom:329.987867pt;}
.y36_c00482{bottom:351.987867pt;}
.y19_c00482{bottom:352.647867pt;}
.y35_c00482{bottom:373.987867pt;}
.y18_c00482{bottom:374.647867pt;}
.y17_c00482{bottom:396.647867pt;}
.y34_c00482{bottom:403.541200pt;}
.y16_c00482{bottom:418.647867pt;}
.y33_c00482{bottom:425.541200pt;}
.y32_c00482{bottom:447.541200pt;}
.y15_c00482{bottom:448.201200pt;}
.y31_c00482{bottom:469.541200pt;}
.y14_c00482{bottom:470.201200pt;}
.y13_c00482{bottom:492.201200pt;}
.y30_c00482{bottom:499.094533pt;}
.y12_c00482{bottom:514.201200pt;}
.y2f_c00482{bottom:521.094533pt;}
.y11_c00482{bottom:543.754533pt;}
.y2e_c00482{bottom:550.647867pt;}
.y10_c00482{bottom:565.754533pt;}
.y2d_c00482{bottom:572.647867pt;}
.yf_c00482{bottom:587.754533pt;}
.y2c_c00482{bottom:602.201200pt;}
.ye_c00482{bottom:609.754533pt;}
.y2b_c00482{bottom:624.201200pt;}
.yd_c00482{bottom:631.754533pt;}
.y2a_c00482{bottom:646.201200pt;}
.yc_c00482{bottom:661.307867pt;}
.y29_c00482{bottom:668.201200pt;}
.yb_c00482{bottom:683.307867pt;}
.y28_c00482{bottom:690.201200pt;}
.ya_c00482{bottom:705.307867pt;}
.y27_c00482{bottom:712.201200pt;}
.y9_c00482{bottom:727.307867pt;}
.y26_c00482{bottom:741.754533pt;}
.y8_c00482{bottom:749.307867pt;}
.y25_c00482{bottom:763.754533pt;}
.y7_c00482{bottom:771.307867pt;}
.y24_c00482{bottom:785.754533pt;}
.y6_c00482{bottom:793.307867pt;}
.y5_c00482{bottom:815.307867pt;}
.y4_c00482{bottom:837.307867pt;}
.y3_c00482{bottom:859.307867pt;}
.y2_c00482{bottom:881.307867pt;}
.y40_c00482{bottom:926.637733pt;}
.y1_c00482{bottom:972.089867pt;}
.h2_c00482{height:34.901333pt;}
.h3_c00482{height:35.541333pt;}
.h4_c00482{height:47.989333pt;}
.h5_c00482{height:53.312000pt;}
.h1_c00482{height:1009.333333pt;}
.h0_c00482{height:1009.338800pt;}
.w0_c00482{width:794.622400pt;}
.w1_c00482{width:794.666667pt;}
.x0_c00482{left:0.000000pt;}
.x4_c00482{left:114.334933pt;}
.x5_c00482{left:133.225600pt;}
.x2_c00482{left:167.166133pt;}
.x3_c00482{left:169.345200pt;}
.x6_c00482{left:435.594800pt;}
.x7_c00482{left:454.485467pt;}
.x1_c00482{left:712.805333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_843f7b5455e924d6f864022b.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.067000;font-style:normal;font-weight:normal;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_aca22bd15622bd9dbc0586d2.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:20.916600px;}
.ls1_c00483{letter-spacing:-1.152000px;}
.ls4_c00483{letter-spacing:-0.630000px;}
.ls3_c00483{letter-spacing:-0.441000px;}
.ls5_c00483{letter-spacing:-0.336000px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:0.720000px;}
.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;}
}
.ws3_c00483{word-spacing:-14.301000px;}
.ws1_c00483{word-spacing:-13.986000px;}
.ws2_c00483{word-spacing:-13.797000px;}
.ws7_c00483{word-spacing:-2.592000px;}
.wsc_c00483{word-spacing:-2.232000px;}
.ws6_c00483{word-spacing:-2.088000px;}
.ws13_c00483{word-spacing:-0.048000px;}
.ws4_c00483{word-spacing:0.000000px;}
.ws8_c00483{word-spacing:0.126000px;}
.ws16_c00483{word-spacing:0.240000px;}
.wsf_c00483{word-spacing:0.378000px;}
.ws5_c00483{word-spacing:0.504000px;}
.ws10_c00483{word-spacing:0.630000px;}
.wsd_c00483{word-spacing:0.792000px;}
.ws9_c00483{word-spacing:1.134000px;}
.wsa_c00483{word-spacing:1.197000px;}
.ws14_c00483{word-spacing:1.200000px;}
.ws15_c00483{word-spacing:1.248000px;}
.ws11_c00483{word-spacing:1.296000px;}
.wse_c00483{word-spacing:1.449000px;}
.ws12_c00483{word-spacing:1.632000px;}
.wsb_c00483{word-spacing:3.339000px;}
.ws0_c00483{word-spacing:1579.915200px;}
._5_c00483{margin-left:-5.616000px;}
._3_c00483{margin-left:-3.792000px;}
._1_c00483{margin-left:-2.112000px;}
._2_c00483{margin-left:-1.104000px;}
._0_c00483{width:1.296000px;}
._6_c00483{width:22.863600px;}
._4_c00483{width:25.392000px;}
.fc0_c00483{color:rgb(35,31,32);}
.fs3_c00483{font-size:36.729000px;}
.fs0_c00483{font-size:48.000000px;}
.fs4_c00483{font-size:60.000000px;}
.fs2_c00483{font-size:63.000000px;}
.fs1_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y16_c00483{bottom:111.616350px;}
.y15_c00483{bottom:126.616350px;}
.y14_c00483{bottom:150.120300px;}
.y13_c00483{bottom:165.120300px;}
.y12_c00483{bottom:180.120300px;}
.y11_c00483{bottom:195.120300px;}
.y10_c00483{bottom:210.120300px;}
.y1a_c00483{bottom:243.161850px;}
.y19_c00483{bottom:261.761850px;}
.y18_c00483{bottom:280.361850px;}
.y17_c00483{bottom:298.961850px;}
.yf_c00483{bottom:714.970200px;}
.ye_c00483{bottom:735.964950px;}
.yd_c00483{bottom:756.959700px;}
.yc_c00483{bottom:786.463500px;}
.yb_c00483{bottom:811.213500px;}
.ya_c00483{bottom:835.963500px;}
.y9_c00483{bottom:875.729250px;}
.y8_c00483{bottom:896.724000px;}
.y7_c00483{bottom:917.718750px;}
.y6_c00483{bottom:938.713500px;}
.y5_c00483{bottom:968.217450px;}
.y4_c00483{bottom:992.967450px;}
.y3_c00483{bottom:1017.717450px;}
.y2_c00483{bottom:1042.467450px;}
.y1_c00483{bottom:1093.601100px;}
.h2_c00483{height:39.264000px;}
.h6_c00483{height:48.600000px;}
.h5_c00483{height:49.080000px;}
.h4_c00483{height:51.534000px;}
.h3_c00483{height:58.896000px;}
.h1_c00483{height:1135.500000px;}
.h0_c00483{height:1135.506150px;}
.w0_c00483{width:893.950200px;}
.w1_c00483{width:894.000000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:77.603100px;}
.x3_c00483{left:94.610850px;}
.x2_c00483{left:98.862900px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:18.592533pt;}
.ls1_c00483{letter-spacing:-1.024000pt;}
.ls4_c00483{letter-spacing:-0.560000pt;}
.ls3_c00483{letter-spacing:-0.392000pt;}
.ls5_c00483{letter-spacing:-0.298667pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:0.640000pt;}
.ws3_c00483{word-spacing:-12.712000pt;}
.ws1_c00483{word-spacing:-12.432000pt;}
.ws2_c00483{word-spacing:-12.264000pt;}
.ws7_c00483{word-spacing:-2.304000pt;}
.wsc_c00483{word-spacing:-1.984000pt;}
.ws6_c00483{word-spacing:-1.856000pt;}
.ws13_c00483{word-spacing:-0.042667pt;}
.ws4_c00483{word-spacing:0.000000pt;}
.ws8_c00483{word-spacing:0.112000pt;}
.ws16_c00483{word-spacing:0.213333pt;}
.wsf_c00483{word-spacing:0.336000pt;}
.ws5_c00483{word-spacing:0.448000pt;}
.ws10_c00483{word-spacing:0.560000pt;}
.wsd_c00483{word-spacing:0.704000pt;}
.ws9_c00483{word-spacing:1.008000pt;}
.wsa_c00483{word-spacing:1.064000pt;}
.ws14_c00483{word-spacing:1.066667pt;}
.ws15_c00483{word-spacing:1.109333pt;}
.ws11_c00483{word-spacing:1.152000pt;}
.wse_c00483{word-spacing:1.288000pt;}
.ws12_c00483{word-spacing:1.450667pt;}
.wsb_c00483{word-spacing:2.968000pt;}
.ws0_c00483{word-spacing:1404.369067pt;}
._5_c00483{margin-left:-4.992000pt;}
._3_c00483{margin-left:-3.370667pt;}
._1_c00483{margin-left:-1.877333pt;}
._2_c00483{margin-left:-0.981333pt;}
._0_c00483{width:1.152000pt;}
._6_c00483{width:20.323200pt;}
._4_c00483{width:22.570667pt;}
.fs3_c00483{font-size:32.648000pt;}
.fs0_c00483{font-size:42.666667pt;}
.fs4_c00483{font-size:53.333333pt;}
.fs2_c00483{font-size:56.000000pt;}
.fs1_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y16_c00483{bottom:99.214533pt;}
.y15_c00483{bottom:112.547867pt;}
.y14_c00483{bottom:133.440267pt;}
.y13_c00483{bottom:146.773600pt;}
.y12_c00483{bottom:160.106933pt;}
.y11_c00483{bottom:173.440267pt;}
.y10_c00483{bottom:186.773600pt;}
.y1a_c00483{bottom:216.143867pt;}
.y19_c00483{bottom:232.677200pt;}
.y18_c00483{bottom:249.210533pt;}
.y17_c00483{bottom:265.743867pt;}
.yf_c00483{bottom:635.529067pt;}
.ye_c00483{bottom:654.191067pt;}
.yd_c00483{bottom:672.853067pt;}
.yc_c00483{bottom:699.078667pt;}
.yb_c00483{bottom:721.078667pt;}
.ya_c00483{bottom:743.078667pt;}
.y9_c00483{bottom:778.426000pt;}
.y8_c00483{bottom:797.088000pt;}
.y7_c00483{bottom:815.750000pt;}
.y6_c00483{bottom:834.412000pt;}
.y5_c00483{bottom:860.637733pt;}
.y4_c00483{bottom:882.637733pt;}
.y3_c00483{bottom:904.637733pt;}
.y2_c00483{bottom:926.637733pt;}
.y1_c00483{bottom:972.089867pt;}
.h2_c00483{height:34.901333pt;}
.h6_c00483{height:43.200000pt;}
.h5_c00483{height:43.626667pt;}
.h4_c00483{height:45.808000pt;}
.h3_c00483{height:52.352000pt;}
.h1_c00483{height:1009.333333pt;}
.h0_c00483{height:1009.338800pt;}
.w0_c00483{width:794.622400pt;}
.w1_c00483{width:794.666667pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:68.980533pt;}
.x3_c00483{left:84.098533pt;}
.x2_c00483{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe32207e55e21dbfd113f567.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.067000;font-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_c00484{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.v1_c00484{vertical-align:20.898600px;}
.ls3_c00484{letter-spacing:-1.008000px;}
.ls6_c00484{letter-spacing:-0.360000px;}
.ls5_c00484{letter-spacing:-0.288000px;}
.ls4_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.480000px;}
.ls2_c00484{letter-spacing:0.600000px;}
.ls1_c00484{letter-spacing:0.720000px;}
.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;}
}
.ws1_c00484{word-spacing:-16.200000px;}
.ws0_c00484{word-spacing:-9.888000px;}
.ws1e_c00484{word-spacing:-2.952000px;}
.ws11_c00484{word-spacing:-2.880000px;}
.wsa_c00484{word-spacing:-2.592000px;}
.ws12_c00484{word-spacing:-2.160000px;}
.ws1d_c00484{word-spacing:-1.944000px;}
.wsf_c00484{word-spacing:-0.576000px;}
.ws2_c00484{word-spacing:0.000000px;}
.wse_c00484{word-spacing:0.360000px;}
.ws14_c00484{word-spacing:0.648000px;}
.ws1b_c00484{word-spacing:0.864000px;}
.ws5_c00484{word-spacing:1.512000px;}
.wsd_c00484{word-spacing:1.728000px;}
.ws1c_c00484{word-spacing:1.800000px;}
.ws1a_c00484{word-spacing:2.016000px;}
.ws8_c00484{word-spacing:3.600000px;}
.ws15_c00484{word-spacing:3.654000px;}
.ws3_c00484{word-spacing:4.104000px;}
.ws9_c00484{word-spacing:5.184000px;}
.ws19_c00484{word-spacing:5.400000px;}
.ws7_c00484{word-spacing:6.696000px;}
.ws16_c00484{word-spacing:7.308000px;}
.wsc_c00484{word-spacing:7.416000px;}
.ws18_c00484{word-spacing:8.136000px;}
.ws10_c00484{word-spacing:8.568000px;}
.wsb_c00484{word-spacing:8.856000px;}
.ws1f_c00484{word-spacing:9.216000px;}
.ws13_c00484{word-spacing:9.360000px;}
.ws4_c00484{word-spacing:11.952000px;}
.ws17_c00484{word-spacing:14.184000px;}
.ws6_c00484{word-spacing:17.136000px;}
._1_c00484{margin-left:-2754.268800px;}
._6_c00484{margin-left:-7.224000px;}
._5_c00484{margin-left:-5.544000px;}
._2_c00484{margin-left:-2.640000px;}
._3_c00484{margin-left:-1.632000px;}
._0_c00484{width:1.152000px;}
._4_c00484{width:2.856000px;}
._7_c00484{width:26.832000px;}
.fc0_c00484{color:rgb(35,31,32);}
.fs3_c00484{font-size:36.729000px;}
.fs0_c00484{font-size:48.000000px;}
.fs4_c00484{font-size:60.000000px;}
.fs2_c00484{font-size:63.000000px;}
.fs1_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y25_c00484{bottom:120.120300px;}
.y2a_c00484{bottom:141.929100px;}
.y29_c00484{bottom:160.529100px;}
.y24_c00484{bottom:172.709700px;}
.y28_c00484{bottom:179.129100px;}
.y23_c00484{bottom:197.459700px;}
.y27_c00484{bottom:197.729100px;}
.y26_c00484{bottom:216.329100px;}
.y22_c00484{bottom:222.209700px;}
.y21_c00484{bottom:246.959700px;}
.y20_c00484{bottom:271.709700px;}
.y1f_c00484{bottom:296.459700px;}
.y1e_c00484{bottom:321.209700px;}
.y1d_c00484{bottom:345.959700px;}
.y1c_c00484{bottom:370.709700px;}
.y1b_c00484{bottom:395.459700px;}
.y1a_c00484{bottom:420.209700px;}
.y19_c00484{bottom:459.979650px;}
.y18_c00484{bottom:480.974400px;}
.y17_c00484{bottom:501.969150px;}
.y16_c00484{bottom:527.216400px;}
.y15_c00484{bottom:552.463650px;}
.y14_c00484{bottom:581.973450px;}
.y13_c00484{bottom:606.723450px;}
.y12_c00484{bottom:631.473450px;}
.y11_c00484{bottom:656.223450px;}
.y10_c00484{bottom:680.973450px;}
.yf_c00484{bottom:705.723450px;}
.ye_c00484{bottom:730.473450px;}
.yd_c00484{bottom:770.217450px;}
.yc_c00484{bottom:794.967450px;}
.yb_c00484{bottom:819.717450px;}
.ya_c00484{bottom:844.467450px;}
.y9_c00484{bottom:869.217450px;}
.y8_c00484{bottom:893.967450px;}
.y7_c00484{bottom:918.717450px;}
.y6_c00484{bottom:943.467450px;}
.y5_c00484{bottom:968.217450px;}
.y4_c00484{bottom:992.967450px;}
.y3_c00484{bottom:1017.717450px;}
.y2_c00484{bottom:1042.467450px;}
.y1_c00484{bottom:1093.601100px;}
.h2_c00484{height:39.264000px;}
.h3_c00484{height:39.984000px;}
.h7_c00484{height:48.600000px;}
.h6_c00484{height:49.080000px;}
.h5_c00484{height:51.534000px;}
.h4_c00484{height:58.896000px;}
.h1_c00484{height:1135.500000px;}
.h0_c00484{height:1135.506150px;}
.w0_c00484{width:893.950200px;}
.w1_c00484{width:894.000000px;}
.x0_c00484{left:0.000000px;}
.x4_c00484{left:128.626800px;}
.x5_c00484{left:149.886600px;}
.x2_c00484{left:188.061900px;}
.x3_c00484{left:190.513350px;}
.x6_c00484{left:538.742700px;}
.x1_c00484{left:801.366000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.v1_c00484{vertical-align:18.576533pt;}
.ls3_c00484{letter-spacing:-0.896000pt;}
.ls6_c00484{letter-spacing:-0.320000pt;}
.ls5_c00484{letter-spacing:-0.256000pt;}
.ls4_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.426667pt;}
.ls2_c00484{letter-spacing:0.533333pt;}
.ls1_c00484{letter-spacing:0.640000pt;}
.ws1_c00484{word-spacing:-14.400000pt;}
.ws0_c00484{word-spacing:-8.789333pt;}
.ws1e_c00484{word-spacing:-2.624000pt;}
.ws11_c00484{word-spacing:-2.560000pt;}
.wsa_c00484{word-spacing:-2.304000pt;}
.ws12_c00484{word-spacing:-1.920000pt;}
.ws1d_c00484{word-spacing:-1.728000pt;}
.wsf_c00484{word-spacing:-0.512000pt;}
.ws2_c00484{word-spacing:0.000000pt;}
.wse_c00484{word-spacing:0.320000pt;}
.ws14_c00484{word-spacing:0.576000pt;}
.ws1b_c00484{word-spacing:0.768000pt;}
.ws5_c00484{word-spacing:1.344000pt;}
.wsd_c00484{word-spacing:1.536000pt;}
.ws1c_c00484{word-spacing:1.600000pt;}
.ws1a_c00484{word-spacing:1.792000pt;}
.ws8_c00484{word-spacing:3.200000pt;}
.ws15_c00484{word-spacing:3.248000pt;}
.ws3_c00484{word-spacing:3.648000pt;}
.ws9_c00484{word-spacing:4.608000pt;}
.ws19_c00484{word-spacing:4.800000pt;}
.ws7_c00484{word-spacing:5.952000pt;}
.ws16_c00484{word-spacing:6.496000pt;}
.wsc_c00484{word-spacing:6.592000pt;}
.ws18_c00484{word-spacing:7.232000pt;}
.ws10_c00484{word-spacing:7.616000pt;}
.wsb_c00484{word-spacing:7.872000pt;}
.ws1f_c00484{word-spacing:8.192000pt;}
.ws13_c00484{word-spacing:8.320000pt;}
.ws4_c00484{word-spacing:10.624000pt;}
.ws17_c00484{word-spacing:12.608000pt;}
.ws6_c00484{word-spacing:15.232000pt;}
._1_c00484{margin-left:-2448.238933pt;}
._6_c00484{margin-left:-6.421333pt;}
._5_c00484{margin-left:-4.928000pt;}
._2_c00484{margin-left:-2.346667pt;}
._3_c00484{margin-left:-1.450667pt;}
._0_c00484{width:1.024000pt;}
._4_c00484{width:2.538667pt;}
._7_c00484{width:23.850667pt;}
.fs3_c00484{font-size:32.648000pt;}
.fs0_c00484{font-size:42.666667pt;}
.fs4_c00484{font-size:53.333333pt;}
.fs2_c00484{font-size:56.000000pt;}
.fs1_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y25_c00484{bottom:106.773600pt;}
.y2a_c00484{bottom:126.159200pt;}
.y29_c00484{bottom:142.692533pt;}
.y24_c00484{bottom:153.519733pt;}
.y28_c00484{bottom:159.225867pt;}
.y23_c00484{bottom:175.519733pt;}
.y27_c00484{bottom:175.759200pt;}
.y26_c00484{bottom:192.292533pt;}
.y22_c00484{bottom:197.519733pt;}
.y21_c00484{bottom:219.519733pt;}
.y20_c00484{bottom:241.519733pt;}
.y1f_c00484{bottom:263.519733pt;}
.y1e_c00484{bottom:285.519733pt;}
.y1d_c00484{bottom:307.519733pt;}
.y1c_c00484{bottom:329.519733pt;}
.y1b_c00484{bottom:351.519733pt;}
.y1a_c00484{bottom:373.519733pt;}
.y19_c00484{bottom:408.870800pt;}
.y18_c00484{bottom:427.532800pt;}
.y17_c00484{bottom:446.194800pt;}
.y16_c00484{bottom:468.636800pt;}
.y15_c00484{bottom:491.078800pt;}
.y14_c00484{bottom:517.309733pt;}
.y13_c00484{bottom:539.309733pt;}
.y12_c00484{bottom:561.309733pt;}
.y11_c00484{bottom:583.309733pt;}
.y10_c00484{bottom:605.309733pt;}
.yf_c00484{bottom:627.309733pt;}
.ye_c00484{bottom:649.309733pt;}
.yd_c00484{bottom:684.637733pt;}
.yc_c00484{bottom:706.637733pt;}
.yb_c00484{bottom:728.637733pt;}
.ya_c00484{bottom:750.637733pt;}
.y9_c00484{bottom:772.637733pt;}
.y8_c00484{bottom:794.637733pt;}
.y7_c00484{bottom:816.637733pt;}
.y6_c00484{bottom:838.637733pt;}
.y5_c00484{bottom:860.637733pt;}
.y4_c00484{bottom:882.637733pt;}
.y3_c00484{bottom:904.637733pt;}
.y2_c00484{bottom:926.637733pt;}
.y1_c00484{bottom:972.089867pt;}
.h2_c00484{height:34.901333pt;}
.h3_c00484{height:35.541333pt;}
.h7_c00484{height:43.200000pt;}
.h6_c00484{height:43.626667pt;}
.h5_c00484{height:45.808000pt;}
.h4_c00484{height:52.352000pt;}
.h1_c00484{height:1009.333333pt;}
.h0_c00484{height:1009.338800pt;}
.w0_c00484{width:794.622400pt;}
.w1_c00484{width:794.666667pt;}
.x0_c00484{left:0.000000pt;}
.x4_c00484{left:114.334933pt;}
.x5_c00484{left:133.232533pt;}
.x2_c00484{left:167.166133pt;}
.x3_c00484{left:169.345200pt;}
.x6_c00484{left:478.882400pt;}
.x1_c00484{left:712.325333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_def602e2318377d0c328daaf.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.067000;font-style:normal;font-weight:normal;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_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:23.951400px;}
.ls5_c00485{letter-spacing:-0.360000px;}
.ls2_c00485{letter-spacing:-0.288000px;}
.ls3_c00485{letter-spacing:0.000000px;}
.ls1_c00485{letter-spacing:0.360000px;}
.ls4_c00485{letter-spacing:0.432000px;}
.ls0_c00485{letter-spacing:0.720000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00485{word-spacing:-17.064000px;}
.ws2_c00485{word-spacing:-16.488000px;}
.ws3_c00485{word-spacing:-9.528552px;}
.ws19_c00485{word-spacing:-2.952000px;}
.ws9_c00485{word-spacing:-2.304000px;}
.wsf_c00485{word-spacing:-1.584000px;}
.ws1a_c00485{word-spacing:-1.512000px;}
.wsd_c00485{word-spacing:-0.216000px;}
.ws4_c00485{word-spacing:0.000000px;}
.wse_c00485{word-spacing:0.072000px;}
.ws1b_c00485{word-spacing:0.792000px;}
.ws8_c00485{word-spacing:1.080000px;}
.ws10_c00485{word-spacing:1.584000px;}
.ws5_c00485{word-spacing:1.800000px;}
.ws18_c00485{word-spacing:2.016000px;}
.ws16_c00485{word-spacing:2.304000px;}
.ws12_c00485{word-spacing:2.592000px;}
.wsb_c00485{word-spacing:2.664000px;}
.wsc_c00485{word-spacing:3.024000px;}
.ws17_c00485{word-spacing:3.168000px;}
.ws11_c00485{word-spacing:4.968000px;}
.ws13_c00485{word-spacing:5.544000px;}
.wsa_c00485{word-spacing:5.760000px;}
.ws6_c00485{word-spacing:6.552000px;}
.ws14_c00485{word-spacing:7.920000px;}
.ws15_c00485{word-spacing:8.136000px;}
.ws7_c00485{word-spacing:8.208000px;}
.ws0_c00485{word-spacing:1575.403200px;}
._6_c00485{margin-left:-7.416000px;}
._3_c00485{margin-left:-5.592000px;}
._2_c00485{margin-left:-3.408000px;}
._4_c00485{margin-left:-2.232000px;}
._1_c00485{margin-left:-1.056000px;}
._0_c00485{width:1.008000px;}
._5_c00485{width:2.064000px;}
._8_c00485{width:22.239600px;}
._7_c00485{width:53.784000px;}
.fc0_c00485{color:rgb(35,31,32);}
.fs3_c00485{font-size:41.976000px;}
.fs0_c00485{font-size:48.000000px;}
.fs2_c00485{font-size:63.000000px;}
.fs1_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y22_c00485{bottom:111.616200px;}
.y21_c00485{bottom:173.199600px;}
.y20_c00485{bottom:197.949600px;}
.y1f_c00485{bottom:222.705750px;}
.y1e_c00485{bottom:247.455750px;}
.y1d_c00485{bottom:272.205750px;}
.y1c_c00485{bottom:296.955750px;}
.y1b_c00485{bottom:336.699750px;}
.y1a_c00485{bottom:361.449750px;}
.y19_c00485{bottom:386.199750px;}
.y18_c00485{bottom:410.949750px;}
.y17_c00485{bottom:450.699750px;}
.y16_c00485{bottom:511.715550px;}
.y15_c00485{bottom:536.465550px;}
.y14_c00485{bottom:561.215550px;}
.y13_c00485{bottom:585.965550px;}
.y12_c00485{bottom:610.715550px;}
.y11_c00485{bottom:635.465550px;}
.y10_c00485{bottom:660.215550px;}
.yf_c00485{bottom:684.965550px;}
.ye_c00485{bottom:724.709550px;}
.yd_c00485{bottom:749.459550px;}
.yc_c00485{bottom:774.209550px;}
.yb_c00485{bottom:798.959550px;}
.ya_c00485{bottom:838.719000px;}
.y9_c00485{bottom:863.966250px;}
.y8_c00485{bottom:889.213500px;}
.y7_c00485{bottom:918.717450px;}
.y6_c00485{bottom:943.467450px;}
.y5_c00485{bottom:968.217450px;}
.y4_c00485{bottom:992.967450px;}
.y3_c00485{bottom:1017.717450px;}
.y2_c00485{bottom:1042.467450px;}
.y1_c00485{bottom:1093.601100px;}
.h2_c00485{height:39.264000px;}
.h4_c00485{height:51.534000px;}
.h3_c00485{height:58.896000px;}
.h1_c00485{height:1135.500000px;}
.h0_c00485{height:1135.506150px;}
.w0_c00485{width:893.950200px;}
.w1_c00485{width:894.000000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:77.603100px;}
.x2_c00485{left:98.862900px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:21.290133pt;}
.ls5_c00485{letter-spacing:-0.320000pt;}
.ls2_c00485{letter-spacing:-0.256000pt;}
.ls3_c00485{letter-spacing:0.000000pt;}
.ls1_c00485{letter-spacing:0.320000pt;}
.ls4_c00485{letter-spacing:0.384000pt;}
.ls0_c00485{letter-spacing:0.640000pt;}
.ws1_c00485{word-spacing:-15.168000pt;}
.ws2_c00485{word-spacing:-14.656000pt;}
.ws3_c00485{word-spacing:-8.469824pt;}
.ws19_c00485{word-spacing:-2.624000pt;}
.ws9_c00485{word-spacing:-2.048000pt;}
.wsf_c00485{word-spacing:-1.408000pt;}
.ws1a_c00485{word-spacing:-1.344000pt;}
.wsd_c00485{word-spacing:-0.192000pt;}
.ws4_c00485{word-spacing:0.000000pt;}
.wse_c00485{word-spacing:0.064000pt;}
.ws1b_c00485{word-spacing:0.704000pt;}
.ws8_c00485{word-spacing:0.960000pt;}
.ws10_c00485{word-spacing:1.408000pt;}
.ws5_c00485{word-spacing:1.600000pt;}
.ws18_c00485{word-spacing:1.792000pt;}
.ws16_c00485{word-spacing:2.048000pt;}
.ws12_c00485{word-spacing:2.304000pt;}
.wsb_c00485{word-spacing:2.368000pt;}
.wsc_c00485{word-spacing:2.688000pt;}
.ws17_c00485{word-spacing:2.816000pt;}
.ws11_c00485{word-spacing:4.416000pt;}
.ws13_c00485{word-spacing:4.928000pt;}
.wsa_c00485{word-spacing:5.120000pt;}
.ws6_c00485{word-spacing:5.824000pt;}
.ws14_c00485{word-spacing:7.040000pt;}
.ws15_c00485{word-spacing:7.232000pt;}
.ws7_c00485{word-spacing:7.296000pt;}
.ws0_c00485{word-spacing:1400.358400pt;}
._6_c00485{margin-left:-6.592000pt;}
._3_c00485{margin-left:-4.970667pt;}
._2_c00485{margin-left:-3.029333pt;}
._4_c00485{margin-left:-1.984000pt;}
._1_c00485{margin-left:-0.938667pt;}
._0_c00485{width:0.896000pt;}
._5_c00485{width:1.834667pt;}
._8_c00485{width:19.768533pt;}
._7_c00485{width:47.808000pt;}
.fs3_c00485{font-size:37.312000pt;}
.fs0_c00485{font-size:42.666667pt;}
.fs2_c00485{font-size:56.000000pt;}
.fs1_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y22_c00485{bottom:99.214400pt;}
.y21_c00485{bottom:153.955200pt;}
.y20_c00485{bottom:175.955200pt;}
.y1f_c00485{bottom:197.960667pt;}
.y1e_c00485{bottom:219.960667pt;}
.y1d_c00485{bottom:241.960667pt;}
.y1c_c00485{bottom:263.960667pt;}
.y1b_c00485{bottom:299.288667pt;}
.y1a_c00485{bottom:321.288667pt;}
.y19_c00485{bottom:343.288667pt;}
.y18_c00485{bottom:365.288667pt;}
.y17_c00485{bottom:400.622000pt;}
.y16_c00485{bottom:454.858267pt;}
.y15_c00485{bottom:476.858267pt;}
.y14_c00485{bottom:498.858267pt;}
.y13_c00485{bottom:520.858267pt;}
.y12_c00485{bottom:542.858267pt;}
.y11_c00485{bottom:564.858267pt;}
.y10_c00485{bottom:586.858267pt;}
.yf_c00485{bottom:608.858267pt;}
.ye_c00485{bottom:644.186267pt;}
.yd_c00485{bottom:666.186267pt;}
.yc_c00485{bottom:688.186267pt;}
.yb_c00485{bottom:710.186267pt;}
.ya_c00485{bottom:745.528000pt;}
.y9_c00485{bottom:767.970000pt;}
.y8_c00485{bottom:790.412000pt;}
.y7_c00485{bottom:816.637733pt;}
.y6_c00485{bottom:838.637733pt;}
.y5_c00485{bottom:860.637733pt;}
.y4_c00485{bottom:882.637733pt;}
.y3_c00485{bottom:904.637733pt;}
.y2_c00485{bottom:926.637733pt;}
.y1_c00485{bottom:972.089867pt;}
.h2_c00485{height:34.901333pt;}
.h4_c00485{height:45.808000pt;}
.h3_c00485{height:52.352000pt;}
.h1_c00485{height:1009.333333pt;}
.h0_c00485{height:1009.338800pt;}
.w0_c00485{width:794.622400pt;}
.w1_c00485{width:794.666667pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:68.980533pt;}
.x2_c00485{left:87.878133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbc9f0aba48b8cdfe4445164.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_5f9e51f29393ea3deaf06e22.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00486;src:url('chunks/assets/font_48166019c01547b059fef381.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.067000;font-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_c00486{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.v1_c00486{vertical-align:23.976000px;}
.ls4_c00486{letter-spacing:-4.800000px;}
.ls5_c00486{letter-spacing:-0.600000px;}
.ls2_c00486{letter-spacing:-0.480000px;}
.ls3_c00486{letter-spacing:0.000000px;}
.ls1_c00486{letter-spacing:0.000288px;}
.ls0_c00486{letter-spacing:0.480000px;}
.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;}
}
.ws3_c00486{word-spacing:-13.140000px;}
.ws2_c00486{word-spacing:-10.896000px;}
.ws0_c00486{word-spacing:-10.416000px;}
.ws1_c00486{word-spacing:-9.528552px;}
.ws8_c00486{word-spacing:-3.096000px;}
.wse_c00486{word-spacing:-2.664000px;}
.wsd_c00486{word-spacing:-1.368000px;}
.wsf_c00486{word-spacing:-1.152000px;}
.ws5_c00486{word-spacing:-0.720000px;}
.ws9_c00486{word-spacing:-0.144000px;}
.ws14_c00486{word-spacing:-0.096000px;}
.ws4_c00486{word-spacing:0.000000px;}
.ws10_c00486{word-spacing:0.504000px;}
.wsb_c00486{word-spacing:0.576000px;}
.ws11_c00486{word-spacing:0.720000px;}
.ws12_c00486{word-spacing:1.440000px;}
.wsc_c00486{word-spacing:2.592000px;}
.ws6_c00486{word-spacing:3.024000px;}
.wsa_c00486{word-spacing:3.240000px;}
.ws7_c00486{word-spacing:4.104000px;}
.ws13_c00486{word-spacing:4.800000px;}
._0_c00486{margin-left:-2754.172200px;}
._4_c00486{margin-left:-7.513200px;}
._5_c00486{margin-left:-6.336000px;}
._1_c00486{margin-left:-2.640000px;}
._2_c00486{margin-left:-1.632000px;}
._3_c00486{width:1.488600px;}
._6_c00486{width:4.800000px;}
._8_c00486{width:23.808000px;}
._7_c00486{width:30.015600px;}
.fc0_c00486{color:rgb(35,31,32);}
.fs2_c00486{font-size:41.976000px;}
.fs0_c00486{font-size:48.000000px;}
.fs3_c00486{font-size:60.000000px;}
.fs1_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y16_c00486{bottom:111.616350px;}
.y15_c00486{bottom:135.120300px;}
.y14_c00486{bottom:158.624250px;}
.y13_c00486{bottom:173.624250px;}
.y12_c00486{bottom:235.916400px;}
.y11_c00486{bottom:260.666400px;}
.y10_c00486{bottom:285.416400px;}
.yf_c00486{bottom:310.172400px;}
.ye_c00486{bottom:334.922400px;}
.yd_c00486{bottom:359.672400px;}
.yc_c00486{bottom:399.416400px;}
.yb_c00486{bottom:424.166400px;}
.ya_c00486{bottom:448.916400px;}
.y9_c00486{bottom:473.666400px;}
.y8_c00486{bottom:498.416400px;}
.y7_c00486{bottom:523.166400px;}
.y6_c00486{bottom:547.916400px;}
.y5_c00486{bottom:572.666400px;}
.y4_c00486{bottom:597.416400px;}
.y3_c00486{bottom:622.166400px;}
.y2_c00486{bottom:661.916400px;}
.y18_c00486{bottom:736.079250px;}
.y17_c00486{bottom:754.679250px;}
.y1_c00486{bottom:1093.601100px;}
.h2_c00486{height:39.264000px;}
.h3_c00486{height:39.984000px;}
.h6_c00486{height:49.080000px;}
.h5_c00486{height:58.896000px;}
.h4_c00486{height:59.976000px;}
.h1_c00486{height:1135.500000px;}
.h0_c00486{height:1135.506150px;}
.w0_c00486{width:893.950200px;}
.w1_c00486{width:894.000000px;}
.x0_c00486{left:0.000000px;}
.x4_c00486{left:128.626800px;}
.x5_c00486{left:145.634700px;}
.x2_c00486{left:188.061900px;}
.x3_c00486{left:190.513350px;}
.x1_c00486{left:801.269850px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.v1_c00486{vertical-align:21.312000pt;}
.ls4_c00486{letter-spacing:-4.266667pt;}
.ls5_c00486{letter-spacing:-0.533333pt;}
.ls2_c00486{letter-spacing:-0.426667pt;}
.ls3_c00486{letter-spacing:0.000000pt;}
.ls1_c00486{letter-spacing:0.000256pt;}
.ls0_c00486{letter-spacing:0.426667pt;}
.ws3_c00486{word-spacing:-11.680000pt;}
.ws2_c00486{word-spacing:-9.685333pt;}
.ws0_c00486{word-spacing:-9.258667pt;}
.ws1_c00486{word-spacing:-8.469824pt;}
.ws8_c00486{word-spacing:-2.752000pt;}
.wse_c00486{word-spacing:-2.368000pt;}
.wsd_c00486{word-spacing:-1.216000pt;}
.wsf_c00486{word-spacing:-1.024000pt;}
.ws5_c00486{word-spacing:-0.640000pt;}
.ws9_c00486{word-spacing:-0.128000pt;}
.ws14_c00486{word-spacing:-0.085333pt;}
.ws4_c00486{word-spacing:0.000000pt;}
.ws10_c00486{word-spacing:0.448000pt;}
.wsb_c00486{word-spacing:0.512000pt;}
.ws11_c00486{word-spacing:0.640000pt;}
.ws12_c00486{word-spacing:1.280000pt;}
.wsc_c00486{word-spacing:2.304000pt;}
.ws6_c00486{word-spacing:2.688000pt;}
.wsa_c00486{word-spacing:2.880000pt;}
.ws7_c00486{word-spacing:3.648000pt;}
.ws13_c00486{word-spacing:4.266667pt;}
._0_c00486{margin-left:-2448.153067pt;}
._4_c00486{margin-left:-6.678400pt;}
._5_c00486{margin-left:-5.632000pt;}
._1_c00486{margin-left:-2.346667pt;}
._2_c00486{margin-left:-1.450667pt;}
._3_c00486{width:1.323200pt;}
._6_c00486{width:4.266667pt;}
._8_c00486{width:21.162667pt;}
._7_c00486{width:26.680533pt;}
.fs2_c00486{font-size:37.312000pt;}
.fs0_c00486{font-size:42.666667pt;}
.fs3_c00486{font-size:53.333333pt;}
.fs1_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y16_c00486{bottom:99.214533pt;}
.y15_c00486{bottom:120.106933pt;}
.y14_c00486{bottom:140.999333pt;}
.y13_c00486{bottom:154.332667pt;}
.y12_c00486{bottom:209.703467pt;}
.y11_c00486{bottom:231.703467pt;}
.y10_c00486{bottom:253.703467pt;}
.yf_c00486{bottom:275.708800pt;}
.ye_c00486{bottom:297.708800pt;}
.yd_c00486{bottom:319.708800pt;}
.yc_c00486{bottom:355.036800pt;}
.yb_c00486{bottom:377.036800pt;}
.ya_c00486{bottom:399.036800pt;}
.y9_c00486{bottom:421.036800pt;}
.y8_c00486{bottom:443.036800pt;}
.y7_c00486{bottom:465.036800pt;}
.y6_c00486{bottom:487.036800pt;}
.y5_c00486{bottom:509.036800pt;}
.y4_c00486{bottom:531.036800pt;}
.y3_c00486{bottom:553.036800pt;}
.y2_c00486{bottom:588.370133pt;}
.y18_c00486{bottom:654.292667pt;}
.y17_c00486{bottom:670.826000pt;}
.y1_c00486{bottom:972.089867pt;}
.h2_c00486{height:34.901333pt;}
.h3_c00486{height:35.541333pt;}
.h6_c00486{height:43.626667pt;}
.h5_c00486{height:52.352000pt;}
.h4_c00486{height:53.312000pt;}
.h1_c00486{height:1009.333333pt;}
.h0_c00486{height:1009.338800pt;}
.w0_c00486{width:794.622400pt;}
.w1_c00486{width:794.666667pt;}
.x0_c00486{left:0.000000pt;}
.x4_c00486{left:114.334933pt;}
.x5_c00486{left:129.453067pt;}
.x2_c00486{left:167.166133pt;}
.x3_c00486{left:169.345200pt;}
.x1_c00486{left:712.239867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d3a3345383ba00f6013f502.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.067000;font-style:normal;font-weight:normal;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_038fb141a1d7d386c8ee7ec0.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.v1_c00487{vertical-align:23.976000px;}
.ls5_c00487{letter-spacing:-1.152000px;}
.ls3_c00487{letter-spacing:-0.360000px;}
.ls2_c00487{letter-spacing:-0.288000px;}
.ls0_c00487{letter-spacing:-0.240000px;}
.ls4_c00487{letter-spacing:-0.209880px;}
.ls6_c00487{letter-spacing:-0.180000px;}
.ls1_c00487{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00487{word-spacing:-16.344000px;}
.ws1_c00487{word-spacing:-16.200000px;}
.ws4_c00487{word-spacing:-15.336000px;}
.ws8_c00487{word-spacing:-13.740000px;}
.ws9_c00487{word-spacing:-13.620000px;}
.ws7_c00487{word-spacing:-13.560000px;}
.wsa_c00487{word-spacing:-13.440000px;}
.ws5_c00487{word-spacing:-10.896000px;}
.ws6_c00487{word-spacing:-10.656000px;}
.ws3_c00487{word-spacing:-9.528552px;}
.ws15_c00487{word-spacing:-3.312000px;}
.ws16_c00487{word-spacing:-2.520000px;}
.wse_c00487{word-spacing:-2.160000px;}
.ws14_c00487{word-spacing:-2.016000px;}
.ws1d_c00487{word-spacing:-0.864000px;}
.wsf_c00487{word-spacing:-0.144000px;}
.ws1b_c00487{word-spacing:-0.048000px;}
.wsb_c00487{word-spacing:0.000000px;}
.ws18_c00487{word-spacing:0.209880px;}
.ws1f_c00487{word-spacing:0.240000px;}
.ws1c_c00487{word-spacing:0.288000px;}
.ws17_c00487{word-spacing:2.088000px;}
.ws10_c00487{word-spacing:2.304000px;}
.ws12_c00487{word-spacing:2.376000px;}
.wsd_c00487{word-spacing:2.664000px;}
.ws11_c00487{word-spacing:2.880000px;}
.ws1a_c00487{word-spacing:3.456000px;}
.ws13_c00487{word-spacing:3.672000px;}
.wsc_c00487{word-spacing:4.464000px;}
.ws19_c00487{word-spacing:6.984000px;}
.ws1e_c00487{word-spacing:10.608000px;}
.ws0_c00487{word-spacing:1574.635200px;}
._7_c00487{margin-left:-6.180000px;}
._4_c00487{margin-left:-5.112000px;}
._3_c00487{margin-left:-3.648000px;}
._0_c00487{margin-left:-1.728000px;}
._1_c00487{width:1.488000px;}
._2_c00487{width:5.112000px;}
._6_c00487{width:8.448000px;}
._5_c00487{width:14.634600px;}
.fc0_c00487{color:rgb(35,31,32);}
.fs2_c00487{font-size:41.976000px;}
.fs0_c00487{font-size:48.000000px;}
.fs3_c00487{font-size:60.000000px;}
.fs1_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y18_c00487{bottom:111.612300px;}
.y17_c00487{bottom:135.120300px;}
.y16_c00487{bottom:158.620200px;}
.y15_c00487{bottom:182.128200px;}
.y14_c00487{bottom:197.128200px;}
.y13_c00487{bottom:212.128200px;}
.y12_c00487{bottom:252.924300px;}
.y11_c00487{bottom:277.674300px;}
.y10_c00487{bottom:317.424300px;}
.yf_c00487{bottom:342.174300px;}
.ye_c00487{bottom:366.924300px;}
.yd_c00487{bottom:391.674300px;}
.yc_c00487{bottom:416.424300px;}
.yb_c00487{bottom:441.180300px;}
.ya_c00487{bottom:480.924300px;}
.y9_c00487{bottom:505.674300px;}
.y8_c00487{bottom:530.424300px;}
.y7_c00487{bottom:555.174300px;}
.y6_c00487{bottom:579.924300px;}
.y5_c00487{bottom:604.674300px;}
.y4_c00487{bottom:629.424300px;}
.y3_c00487{bottom:654.174300px;}
.y2_c00487{bottom:678.924300px;}
.y1b_c00487{bottom:717.428250px;}
.y1a_c00487{bottom:736.028250px;}
.y19_c00487{bottom:754.628250px;}
.y1_c00487{bottom:1093.601100px;}
.h2_c00487{height:39.264000px;}
.h4_c00487{height:39.280200px;}
.h6_c00487{height:48.600000px;}
.h5_c00487{height:49.080000px;}
.h3_c00487{height:58.896000px;}
.h1_c00487{height:1135.500000px;}
.h0_c00487{height:1135.506150px;}
.w0_c00487{width:893.950200px;}
.w1_c00487{width:894.000000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:77.603100px;}
.x2_c00487{left:94.608300px;}
.x3_c00487{left:312.682950px;}
.x4_c00487{left:549.888600px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.v1_c00487{vertical-align:21.312000pt;}
.ls5_c00487{letter-spacing:-1.024000pt;}
.ls3_c00487{letter-spacing:-0.320000pt;}
.ls2_c00487{letter-spacing:-0.256000pt;}
.ls0_c00487{letter-spacing:-0.213333pt;}
.ls4_c00487{letter-spacing:-0.186560pt;}
.ls6_c00487{letter-spacing:-0.160000pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ws2_c00487{word-spacing:-14.528000pt;}
.ws1_c00487{word-spacing:-14.400000pt;}
.ws4_c00487{word-spacing:-13.632000pt;}
.ws8_c00487{word-spacing:-12.213333pt;}
.ws9_c00487{word-spacing:-12.106667pt;}
.ws7_c00487{word-spacing:-12.053333pt;}
.wsa_c00487{word-spacing:-11.946667pt;}
.ws5_c00487{word-spacing:-9.685333pt;}
.ws6_c00487{word-spacing:-9.472000pt;}
.ws3_c00487{word-spacing:-8.469824pt;}
.ws15_c00487{word-spacing:-2.944000pt;}
.ws16_c00487{word-spacing:-2.240000pt;}
.wse_c00487{word-spacing:-1.920000pt;}
.ws14_c00487{word-spacing:-1.792000pt;}
.ws1d_c00487{word-spacing:-0.768000pt;}
.wsf_c00487{word-spacing:-0.128000pt;}
.ws1b_c00487{word-spacing:-0.042667pt;}
.wsb_c00487{word-spacing:0.000000pt;}
.ws18_c00487{word-spacing:0.186560pt;}
.ws1f_c00487{word-spacing:0.213333pt;}
.ws1c_c00487{word-spacing:0.256000pt;}
.ws17_c00487{word-spacing:1.856000pt;}
.ws10_c00487{word-spacing:2.048000pt;}
.ws12_c00487{word-spacing:2.112000pt;}
.wsd_c00487{word-spacing:2.368000pt;}
.ws11_c00487{word-spacing:2.560000pt;}
.ws1a_c00487{word-spacing:3.072000pt;}
.ws13_c00487{word-spacing:3.264000pt;}
.wsc_c00487{word-spacing:3.968000pt;}
.ws19_c00487{word-spacing:6.208000pt;}
.ws1e_c00487{word-spacing:9.429333pt;}
.ws0_c00487{word-spacing:1399.675733pt;}
._7_c00487{margin-left:-5.493333pt;}
._4_c00487{margin-left:-4.544000pt;}
._3_c00487{margin-left:-3.242667pt;}
._0_c00487{margin-left:-1.536000pt;}
._1_c00487{width:1.322667pt;}
._2_c00487{width:4.544000pt;}
._6_c00487{width:7.509333pt;}
._5_c00487{width:13.008533pt;}
.fs2_c00487{font-size:37.312000pt;}
.fs0_c00487{font-size:42.666667pt;}
.fs3_c00487{font-size:53.333333pt;}
.fs1_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y18_c00487{bottom:99.210933pt;}
.y17_c00487{bottom:120.106933pt;}
.y16_c00487{bottom:140.995733pt;}
.y15_c00487{bottom:161.891733pt;}
.y14_c00487{bottom:175.225067pt;}
.y13_c00487{bottom:188.558400pt;}
.y12_c00487{bottom:224.821600pt;}
.y11_c00487{bottom:246.821600pt;}
.y10_c00487{bottom:282.154933pt;}
.yf_c00487{bottom:304.154933pt;}
.ye_c00487{bottom:326.154933pt;}
.yd_c00487{bottom:348.154933pt;}
.yc_c00487{bottom:370.154933pt;}
.yb_c00487{bottom:392.160267pt;}
.ya_c00487{bottom:427.488267pt;}
.y9_c00487{bottom:449.488267pt;}
.y8_c00487{bottom:471.488267pt;}
.y7_c00487{bottom:493.488267pt;}
.y6_c00487{bottom:515.488267pt;}
.y5_c00487{bottom:537.488267pt;}
.y4_c00487{bottom:559.488267pt;}
.y3_c00487{bottom:581.488267pt;}
.y2_c00487{bottom:603.488267pt;}
.y1b_c00487{bottom:637.714000pt;}
.y1a_c00487{bottom:654.247333pt;}
.y19_c00487{bottom:670.780667pt;}
.y1_c00487{bottom:972.089867pt;}
.h2_c00487{height:34.901333pt;}
.h4_c00487{height:34.915733pt;}
.h6_c00487{height:43.200000pt;}
.h5_c00487{height:43.626667pt;}
.h3_c00487{height:52.352000pt;}
.h1_c00487{height:1009.333333pt;}
.h0_c00487{height:1009.338800pt;}
.w0_c00487{width:794.622400pt;}
.w1_c00487{width:794.666667pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:68.980533pt;}
.x2_c00487{left:84.096267pt;}
.x3_c00487{left:277.940400pt;}
.x4_c00487{left:488.789867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76c122dc8c1c10d39a30aea0.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.082000;font-style:normal;font-weight:normal;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_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.067000;font-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_c00488{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.v2_c00488{vertical-align:20.790600px;}
.v1_c00488{vertical-align:23.976000px;}
.ls9_c00488{letter-spacing:-0.576000px;}
.lsb_c00488{letter-spacing:-0.564000px;}
.ls6_c00488{letter-spacing:-0.504000px;}
.ls7_c00488{letter-spacing:-0.503712px;}
.ls4_c00488{letter-spacing:0.000000px;}
.lsa_c00488{letter-spacing:0.192000px;}
.ls1_c00488{letter-spacing:0.315000px;}
.ls8_c00488{letter-spacing:0.330561px;}
.ls5_c00488{letter-spacing:0.419760px;}
.ls0_c00488{letter-spacing:0.480000px;}
.ls3_c00488{letter-spacing:5.920200px;}
.ls2_c00488{letter-spacing:11.103600px;}
.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;}
}
.ws4_c00488{word-spacing:-12.351600px;}
.ws1_c00488{word-spacing:-11.376000px;}
.ws3_c00488{word-spacing:-11.088000px;}
.ws0_c00488{word-spacing:-10.896000px;}
.ws2_c00488{word-spacing:-10.320000px;}
.ws13_c00488{word-spacing:-3.240000px;}
.wsb_c00488{word-spacing:-2.808000px;}
.ws20_c00488{word-spacing:-2.772000px;}
.wsc_c00488{word-spacing:-2.304000px;}
.ws8_c00488{word-spacing:-1.944000px;}
.ws9_c00488{word-spacing:-1.512000px;}
.ws26_c00488{word-spacing:-1.296000px;}
.ws23_c00488{word-spacing:-0.504000px;}
.ws7_c00488{word-spacing:-0.419760px;}
.ws21_c00488{word-spacing:-0.330561px;}
.ws5_c00488{word-spacing:0.000000px;}
.ws11_c00488{word-spacing:0.432000px;}
.wse_c00488{word-spacing:0.503712px;}
.ws18_c00488{word-spacing:0.630000px;}
.ws22_c00488{word-spacing:0.792000px;}
.wsa_c00488{word-spacing:0.864000px;}
.ws15_c00488{word-spacing:1.656000px;}
.wsd_c00488{word-spacing:1.872000px;}
.ws6_c00488{word-spacing:2.520000px;}
.ws12_c00488{word-spacing:2.592000px;}
.ws1f_c00488{word-spacing:2.898000px;}
.ws10_c00488{word-spacing:3.096000px;}
.ws19_c00488{word-spacing:3.339000px;}
.ws14_c00488{word-spacing:3.384000px;}
.wsf_c00488{word-spacing:3.960000px;}
.ws1d_c00488{word-spacing:4.662000px;}
.ws24_c00488{word-spacing:4.824000px;}
.ws16_c00488{word-spacing:4.968000px;}
.ws1c_c00488{word-spacing:5.229000px;}
.ws25_c00488{word-spacing:6.048000px;}
.ws17_c00488{word-spacing:6.840000px;}
.ws1b_c00488{word-spacing:9.387000px;}
.ws1a_c00488{word-spacing:9.513000px;}
.ws1e_c00488{word-spacing:11.025000px;}
.ws27_c00488{word-spacing:13.488000px;}
._0_c00488{margin-left:-2755.132800px;}
._5_c00488{margin-left:-7.968000px;}
._4_c00488{margin-left:-5.688216px;}
._6_c00488{margin-left:-4.331784px;}
._1_c00488{margin-left:-2.640000px;}
._2_c00488{margin-left:-1.632000px;}
._3_c00488{width:1.080000px;}
.fc0_c00488{color:rgb(35,31,32);}
.fs4_c00488{font-size:36.729000px;}
.fs2_c00488{font-size:41.976000px;}
.fs0_c00488{font-size:48.000000px;}
.fs5_c00488{font-size:56.400000px;}
.fs3_c00488{font-size:63.000000px;}
.fs1_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y25_c00488{bottom:111.612300px;}
.y24_c00488{bottom:135.116250px;}
.y23_c00488{bottom:158.620200px;}
.y22_c00488{bottom:182.128200px;}
.y21_c00488{bottom:237.717450px;}
.y2a_c00488{bottom:249.581400px;}
.y20_c00488{bottom:262.467450px;}
.y29_c00488{bottom:267.065400px;}
.y28_c00488{bottom:284.549400px;}
.y1f_c00488{bottom:287.217450px;}
.y27_c00488{bottom:302.033400px;}
.y26_c00488{bottom:319.517400px;}
.y1e_c00488{bottom:327.014700px;}
.y1d_c00488{bottom:348.009450px;}
.y1c_c00488{bottom:369.004200px;}
.y1b_c00488{bottom:389.998950px;}
.y1a_c00488{bottom:410.993700px;}
.y19_c00488{bottom:431.988450px;}
.y18_c00488{bottom:452.983200px;}
.y17_c00488{bottom:473.977950px;}
.y16_c00488{bottom:494.972700px;}
.y15_c00488{bottom:515.967450px;}
.y14_c00488{bottom:551.973450px;}
.y13_c00488{bottom:576.723450px;}
.y12_c00488{bottom:601.473450px;}
.y11_c00488{bottom:626.223450px;}
.y10_c00488{bottom:650.973450px;}
.yf_c00488{bottom:675.723450px;}
.ye_c00488{bottom:700.473450px;}
.yd_c00488{bottom:740.217450px;}
.yc_c00488{bottom:764.967450px;}
.yb_c00488{bottom:789.717450px;}
.ya_c00488{bottom:814.467450px;}
.y9_c00488{bottom:854.217450px;}
.y8_c00488{bottom:878.967450px;}
.y7_c00488{bottom:903.717450px;}
.y6_c00488{bottom:928.467450px;}
.y5_c00488{bottom:953.217450px;}
.y4_c00488{bottom:977.967450px;}
.y3_c00488{bottom:1017.717450px;}
.y2_c00488{bottom:1042.467450px;}
.y1_c00488{bottom:1093.601100px;}
.h2_c00488{height:39.264000px;}
.h6_c00488{height:39.280200px;}
.h3_c00488{height:39.984000px;}
.h8_c00488{height:45.684000px;}
.h7_c00488{height:46.135200px;}
.h5_c00488{height:51.534000px;}
.h4_c00488{height:58.896000px;}
.h1_c00488{height:1135.500000px;}
.h0_c00488{height:1135.506150px;}
.w0_c00488{width:893.950200px;}
.w1_c00488{width:894.000000px;}
.x0_c00488{left:0.000000px;}
.x4_c00488{left:128.626800px;}
.x5_c00488{left:149.886600px;}
.x2_c00488{left:188.061900px;}
.x3_c00488{left:190.513350px;}
.x6_c00488{left:528.311850px;}
.x1_c00488{left:800.742000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.v2_c00488{vertical-align:18.480533pt;}
.v1_c00488{vertical-align:21.312000pt;}
.ls9_c00488{letter-spacing:-0.512000pt;}
.lsb_c00488{letter-spacing:-0.501333pt;}
.ls6_c00488{letter-spacing:-0.448000pt;}
.ls7_c00488{letter-spacing:-0.447744pt;}
.ls4_c00488{letter-spacing:0.000000pt;}
.lsa_c00488{letter-spacing:0.170667pt;}
.ls1_c00488{letter-spacing:0.280000pt;}
.ls8_c00488{letter-spacing:0.293832pt;}
.ls5_c00488{letter-spacing:0.373120pt;}
.ls0_c00488{letter-spacing:0.426667pt;}
.ls3_c00488{letter-spacing:5.262400pt;}
.ls2_c00488{letter-spacing:9.869867pt;}
.ws4_c00488{word-spacing:-10.979200pt;}
.ws1_c00488{word-spacing:-10.112000pt;}
.ws3_c00488{word-spacing:-9.856000pt;}
.ws0_c00488{word-spacing:-9.685333pt;}
.ws2_c00488{word-spacing:-9.173333pt;}
.ws13_c00488{word-spacing:-2.880000pt;}
.wsb_c00488{word-spacing:-2.496000pt;}
.ws20_c00488{word-spacing:-2.464000pt;}
.wsc_c00488{word-spacing:-2.048000pt;}
.ws8_c00488{word-spacing:-1.728000pt;}
.ws9_c00488{word-spacing:-1.344000pt;}
.ws26_c00488{word-spacing:-1.152000pt;}
.ws23_c00488{word-spacing:-0.448000pt;}
.ws7_c00488{word-spacing:-0.373120pt;}
.ws21_c00488{word-spacing:-0.293832pt;}
.ws5_c00488{word-spacing:0.000000pt;}
.ws11_c00488{word-spacing:0.384000pt;}
.wse_c00488{word-spacing:0.447744pt;}
.ws18_c00488{word-spacing:0.560000pt;}
.ws22_c00488{word-spacing:0.704000pt;}
.wsa_c00488{word-spacing:0.768000pt;}
.ws15_c00488{word-spacing:1.472000pt;}
.wsd_c00488{word-spacing:1.664000pt;}
.ws6_c00488{word-spacing:2.240000pt;}
.ws12_c00488{word-spacing:2.304000pt;}
.ws1f_c00488{word-spacing:2.576000pt;}
.ws10_c00488{word-spacing:2.752000pt;}
.ws19_c00488{word-spacing:2.968000pt;}
.ws14_c00488{word-spacing:3.008000pt;}
.wsf_c00488{word-spacing:3.520000pt;}
.ws1d_c00488{word-spacing:4.144000pt;}
.ws24_c00488{word-spacing:4.288000pt;}
.ws16_c00488{word-spacing:4.416000pt;}
.ws1c_c00488{word-spacing:4.648000pt;}
.ws25_c00488{word-spacing:5.376000pt;}
.ws17_c00488{word-spacing:6.080000pt;}
.ws1b_c00488{word-spacing:8.344000pt;}
.ws1a_c00488{word-spacing:8.456000pt;}
.ws1e_c00488{word-spacing:9.800000pt;}
.ws27_c00488{word-spacing:11.989333pt;}
._0_c00488{margin-left:-2449.006933pt;}
._5_c00488{margin-left:-7.082667pt;}
._4_c00488{margin-left:-5.056192pt;}
._6_c00488{margin-left:-3.850475pt;}
._1_c00488{margin-left:-2.346667pt;}
._2_c00488{margin-left:-1.450667pt;}
._3_c00488{width:0.960000pt;}
.fs4_c00488{font-size:32.648000pt;}
.fs2_c00488{font-size:37.312000pt;}
.fs0_c00488{font-size:42.666667pt;}
.fs5_c00488{font-size:50.133333pt;}
.fs3_c00488{font-size:56.000000pt;}
.fs1_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y25_c00488{bottom:99.210933pt;}
.y24_c00488{bottom:120.103333pt;}
.y23_c00488{bottom:140.995733pt;}
.y22_c00488{bottom:161.891733pt;}
.y21_c00488{bottom:211.304400pt;}
.y2a_c00488{bottom:221.850133pt;}
.y20_c00488{bottom:233.304400pt;}
.y29_c00488{bottom:237.391467pt;}
.y28_c00488{bottom:252.932800pt;}
.y1f_c00488{bottom:255.304400pt;}
.y27_c00488{bottom:268.474133pt;}
.y26_c00488{bottom:284.015467pt;}
.y1e_c00488{bottom:290.679733pt;}
.y1d_c00488{bottom:309.341733pt;}
.y1c_c00488{bottom:328.003733pt;}
.y1b_c00488{bottom:346.665733pt;}
.y1a_c00488{bottom:365.327733pt;}
.y19_c00488{bottom:383.989733pt;}
.y18_c00488{bottom:402.651733pt;}
.y17_c00488{bottom:421.313733pt;}
.y16_c00488{bottom:439.975733pt;}
.y15_c00488{bottom:458.637733pt;}
.y14_c00488{bottom:490.643067pt;}
.y13_c00488{bottom:512.643067pt;}
.y12_c00488{bottom:534.643067pt;}
.y11_c00488{bottom:556.643067pt;}
.y10_c00488{bottom:578.643067pt;}
.yf_c00488{bottom:600.643067pt;}
.ye_c00488{bottom:622.643067pt;}
.yd_c00488{bottom:657.971067pt;}
.yc_c00488{bottom:679.971067pt;}
.yb_c00488{bottom:701.971067pt;}
.ya_c00488{bottom:723.971067pt;}
.y9_c00488{bottom:759.304400pt;}
.y8_c00488{bottom:781.304400pt;}
.y7_c00488{bottom:803.304400pt;}
.y6_c00488{bottom:825.304400pt;}
.y5_c00488{bottom:847.304400pt;}
.y4_c00488{bottom:869.304400pt;}
.y3_c00488{bottom:904.637733pt;}
.y2_c00488{bottom:926.637733pt;}
.y1_c00488{bottom:972.089867pt;}
.h2_c00488{height:34.901333pt;}
.h6_c00488{height:34.915733pt;}
.h3_c00488{height:35.541333pt;}
.h8_c00488{height:40.608000pt;}
.h7_c00488{height:41.009067pt;}
.h5_c00488{height:45.808000pt;}
.h4_c00488{height:52.352000pt;}
.h1_c00488{height:1009.333333pt;}
.h0_c00488{height:1009.338800pt;}
.w0_c00488{width:794.622400pt;}
.w1_c00488{width:794.666667pt;}
.x0_c00488{left:0.000000pt;}
.x4_c00488{left:114.334933pt;}
.x5_c00488{left:133.232533pt;}
.x2_c00488{left:167.166133pt;}
.x3_c00488{left:169.345200pt;}
.x6_c00488{left:469.610533pt;}
.x1_c00488{left:711.770667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_272e6eaae2b9b417f5a88049.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.067000;font-style:normal;font-weight:normal;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_819fa6d80c2a65025d426548.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.v2_c00489{vertical-align:20.895600px;}
.v1_c00489{vertical-align:23.976000px;}
.ls4_c00489{letter-spacing:-0.792000px;}
.ls8_c00489{letter-spacing:-0.540000px;}
.ls7_c00489{letter-spacing:-0.378000px;}
.ls5_c00489{letter-spacing:-0.288000px;}
.ls9_c00489{letter-spacing:-0.240000px;}
.ls3_c00489{letter-spacing:-0.220374px;}
.ls6_c00489{letter-spacing:-0.192000px;}
.ls2_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.360000px;}
.ls1_c00489{letter-spacing:19.944000px;}
.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;}
}
.ws4_c00489{word-spacing:-16.704000px;}
.ws3_c00489{word-spacing:-15.696000px;}
.ws2_c00489{word-spacing:-14.301000px;}
.ws7_c00489{word-spacing:-13.080000px;}
.ws6_c00489{word-spacing:-12.258000px;}
.ws5_c00489{word-spacing:-10.608000px;}
.ws1_c00489{word-spacing:-9.528552px;}
.ws1a_c00489{word-spacing:-1.449000px;}
.ws16_c00489{word-spacing:-0.360000px;}
.ws1f_c00489{word-spacing:-0.315000px;}
.ws8_c00489{word-spacing:0.000000px;}
.ws9_c00489{word-spacing:0.144000px;}
.ws21_c00489{word-spacing:0.192000px;}
.ws11_c00489{word-spacing:0.220374px;}
.ws23_c00489{word-spacing:0.240000px;}
.ws22_c00489{word-spacing:0.378000px;}
.wsf_c00489{word-spacing:0.504000px;}
.ws10_c00489{word-spacing:1.071000px;}
.ws1c_c00489{word-spacing:1.575000px;}
.ws17_c00489{word-spacing:1.764000px;}
.ws19_c00489{word-spacing:1.953000px;}
.wsa_c00489{word-spacing:2.304000px;}
.ws18_c00489{word-spacing:2.646000px;}
.ws1d_c00489{word-spacing:3.024000px;}
.wse_c00489{word-spacing:3.465000px;}
.ws1b_c00489{word-spacing:3.717000px;}
.wsc_c00489{word-spacing:4.320000px;}
.ws13_c00489{word-spacing:4.752000px;}
.wsb_c00489{word-spacing:5.544000px;}
.ws1e_c00489{word-spacing:5.733000px;}
.ws12_c00489{word-spacing:6.120000px;}
.wsd_c00489{word-spacing:6.804000px;}
.ws20_c00489{word-spacing:6.816000px;}
.ws14_c00489{word-spacing:9.072000px;}
.ws15_c00489{word-spacing:19.584000px;}
.ws0_c00489{word-spacing:1575.499200px;}
._2_c00489{margin-left:-7.248000px;}
._3_c00489{margin-left:-5.256000px;}
._4_c00489{margin-left:-3.627000px;}
._0_c00489{margin-left:-1.968000px;}
._1_c00489{width:1.248000px;}
._5_c00489{width:2.751000px;}
._6_c00489{width:7.503600px;}
.fc0_c00489{color:rgb(35,31,32);}
.fs4_c00489{font-size:36.729000px;}
.fs2_c00489{font-size:41.976000px;}
.fs0_c00489{font-size:48.000000px;}
.fs5_c00489{font-size:54.000000px;}
.fs6_c00489{font-size:60.000000px;}
.fs3_c00489{font-size:63.000000px;}
.fs1_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y27_c00489{bottom:111.612300px;}
.y3f_c00489{bottom:112.928250px;}
.y3e_c00489{bottom:127.926750px;}
.y26_c00489{bottom:135.120300px;}
.y25_c00489{bottom:150.120300px;}
.y3d_c00489{bottom:155.682750px;}
.y3c_c00489{bottom:170.681250px;}
.y3b_c00489{bottom:198.437250px;}
.y3a_c00489{bottom:213.435750px;}
.y24_c00489{bottom:225.034200px;}
.y39_c00489{bottom:228.434250px;}
.y38_c00489{bottom:243.432750px;}
.y23_c00489{bottom:246.028950px;}
.y22_c00489{bottom:267.023700px;}
.y37_c00489{bottom:271.188750px;}
.y36_c00489{bottom:286.187250px;}
.y21_c00489{bottom:292.270950px;}
.y35_c00489{bottom:301.185750px;}
.y34_c00489{bottom:316.184250px;}
.y20_c00489{bottom:317.518200px;}
.y1f_c00489{bottom:338.512950px;}
.y33_c00489{bottom:343.940250px;}
.y32_c00489{bottom:358.938750px;}
.y1e_c00489{bottom:359.507700px;}
.y31_c00489{bottom:373.937250px;}
.y1d_c00489{bottom:380.502450px;}
.y30_c00489{bottom:388.935750px;}
.y1c_c00489{bottom:401.497200px;}
.y2f_c00489{bottom:416.691750px;}
.y1b_c00489{bottom:422.491950px;}
.y2e_c00489{bottom:431.690250px;}
.y2d_c00489{bottom:446.688750px;}
.y1a_c00489{bottom:447.739200px;}
.y2c_c00489{bottom:461.687250px;}
.y19_c00489{bottom:472.986450px;}
.y2b_c00489{bottom:489.443250px;}
.y18_c00489{bottom:493.981200px;}
.y2a_c00489{bottom:504.441750px;}
.y17_c00489{bottom:519.228450px;}
.y29_c00489{bottom:527.945250px;}
.y28_c00489{bottom:542.943750px;}
.y16_c00489{bottom:544.475700px;}
.y15_c00489{bottom:565.470450px;}
.y14_c00489{bottom:586.465200px;}
.y13_c00489{bottom:611.712450px;}
.y45_c00489{bottom:626.141550px;}
.y12_c00489{bottom:636.959700px;}
.y44_c00489{bottom:644.741550px;}
.y43_c00489{bottom:663.341550px;}
.y11_c00489{bottom:666.463500px;}
.y42_c00489{bottom:681.941550px;}
.y10_c00489{bottom:691.213500px;}
.y41_c00489{bottom:700.541550px;}
.yf_c00489{bottom:715.963500px;}
.y40_c00489{bottom:719.141550px;}
.ye_c00489{bottom:740.713500px;}
.yd_c00489{bottom:765.463500px;}
.yc_c00489{bottom:805.234500px;}
.yb_c00489{bottom:826.229250px;}
.ya_c00489{bottom:847.224000px;}
.y9_c00489{bottom:868.218750px;}
.y8_c00489{bottom:889.213500px;}
.y7_c00489{bottom:918.717450px;}
.y6_c00489{bottom:943.467450px;}
.y5_c00489{bottom:968.217450px;}
.y4_c00489{bottom:992.967450px;}
.y3_c00489{bottom:1017.717450px;}
.y2_c00489{bottom:1042.467450px;}
.y1_c00489{bottom:1093.601100px;}
.h2_c00489{height:39.264000px;}
.h5_c00489{height:39.280200px;}
.h7_c00489{height:43.740000px;}
.h6_c00489{height:44.172000px;}
.h9_c00489{height:48.600000px;}
.h8_c00489{height:49.080000px;}
.h4_c00489{height:51.534000px;}
.h3_c00489{height:58.896000px;}
.h1_c00489{height:1135.500000px;}
.h0_c00489{height:1135.506150px;}
.w0_c00489{width:893.950200px;}
.w1_c00489{width:894.000000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:77.603100px;}
.x2_c00489{left:313.757400px;}
.x4_c00489{left:330.765300px;}
.x3_c00489{left:335.017350px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.v2_c00489{vertical-align:18.573867pt;}
.v1_c00489{vertical-align:21.312000pt;}
.ls4_c00489{letter-spacing:-0.704000pt;}
.ls8_c00489{letter-spacing:-0.480000pt;}
.ls7_c00489{letter-spacing:-0.336000pt;}
.ls5_c00489{letter-spacing:-0.256000pt;}
.ls9_c00489{letter-spacing:-0.213333pt;}
.ls3_c00489{letter-spacing:-0.195888pt;}
.ls6_c00489{letter-spacing:-0.170667pt;}
.ls2_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.320000pt;}
.ls1_c00489{letter-spacing:17.728000pt;}
.ws4_c00489{word-spacing:-14.848000pt;}
.ws3_c00489{word-spacing:-13.952000pt;}
.ws2_c00489{word-spacing:-12.712000pt;}
.ws7_c00489{word-spacing:-11.626667pt;}
.ws6_c00489{word-spacing:-10.896000pt;}
.ws5_c00489{word-spacing:-9.429333pt;}
.ws1_c00489{word-spacing:-8.469824pt;}
.ws1a_c00489{word-spacing:-1.288000pt;}
.ws16_c00489{word-spacing:-0.320000pt;}
.ws1f_c00489{word-spacing:-0.280000pt;}
.ws8_c00489{word-spacing:0.000000pt;}
.ws9_c00489{word-spacing:0.128000pt;}
.ws21_c00489{word-spacing:0.170667pt;}
.ws11_c00489{word-spacing:0.195888pt;}
.ws23_c00489{word-spacing:0.213333pt;}
.ws22_c00489{word-spacing:0.336000pt;}
.wsf_c00489{word-spacing:0.448000pt;}
.ws10_c00489{word-spacing:0.952000pt;}
.ws1c_c00489{word-spacing:1.400000pt;}
.ws17_c00489{word-spacing:1.568000pt;}
.ws19_c00489{word-spacing:1.736000pt;}
.wsa_c00489{word-spacing:2.048000pt;}
.ws18_c00489{word-spacing:2.352000pt;}
.ws1d_c00489{word-spacing:2.688000pt;}
.wse_c00489{word-spacing:3.080000pt;}
.ws1b_c00489{word-spacing:3.304000pt;}
.wsc_c00489{word-spacing:3.840000pt;}
.ws13_c00489{word-spacing:4.224000pt;}
.wsb_c00489{word-spacing:4.928000pt;}
.ws1e_c00489{word-spacing:5.096000pt;}
.ws12_c00489{word-spacing:5.440000pt;}
.wsd_c00489{word-spacing:6.048000pt;}
.ws20_c00489{word-spacing:6.058667pt;}
.ws14_c00489{word-spacing:8.064000pt;}
.ws15_c00489{word-spacing:17.408000pt;}
.ws0_c00489{word-spacing:1400.443733pt;}
._2_c00489{margin-left:-6.442667pt;}
._3_c00489{margin-left:-4.672000pt;}
._4_c00489{margin-left:-3.224000pt;}
._0_c00489{margin-left:-1.749333pt;}
._1_c00489{width:1.109333pt;}
._5_c00489{width:2.445333pt;}
._6_c00489{width:6.669867pt;}
.fs4_c00489{font-size:32.648000pt;}
.fs2_c00489{font-size:37.312000pt;}
.fs0_c00489{font-size:42.666667pt;}
.fs5_c00489{font-size:48.000000pt;}
.fs6_c00489{font-size:53.333333pt;}
.fs3_c00489{font-size:56.000000pt;}
.fs1_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y27_c00489{bottom:99.210933pt;}
.y3f_c00489{bottom:100.380667pt;}
.y3e_c00489{bottom:113.712667pt;}
.y26_c00489{bottom:120.106933pt;}
.y25_c00489{bottom:133.440267pt;}
.y3d_c00489{bottom:138.384667pt;}
.y3c_c00489{bottom:151.716667pt;}
.y3b_c00489{bottom:176.388667pt;}
.y3a_c00489{bottom:189.720667pt;}
.y24_c00489{bottom:200.030400pt;}
.y39_c00489{bottom:203.052667pt;}
.y38_c00489{bottom:216.384667pt;}
.y23_c00489{bottom:218.692400pt;}
.y22_c00489{bottom:237.354400pt;}
.y37_c00489{bottom:241.056667pt;}
.y36_c00489{bottom:254.388667pt;}
.y21_c00489{bottom:259.796400pt;}
.y35_c00489{bottom:267.720667pt;}
.y34_c00489{bottom:281.052667pt;}
.y20_c00489{bottom:282.238400pt;}
.y1f_c00489{bottom:300.900400pt;}
.y33_c00489{bottom:305.724667pt;}
.y32_c00489{bottom:319.056667pt;}
.y1e_c00489{bottom:319.562400pt;}
.y31_c00489{bottom:332.388667pt;}
.y1d_c00489{bottom:338.224400pt;}
.y30_c00489{bottom:345.720667pt;}
.y1c_c00489{bottom:356.886400pt;}
.y2f_c00489{bottom:370.392667pt;}
.y1b_c00489{bottom:375.548400pt;}
.y2e_c00489{bottom:383.724667pt;}
.y2d_c00489{bottom:397.056667pt;}
.y1a_c00489{bottom:397.990400pt;}
.y2c_c00489{bottom:410.388667pt;}
.y19_c00489{bottom:420.432400pt;}
.y2b_c00489{bottom:435.060667pt;}
.y18_c00489{bottom:439.094400pt;}
.y2a_c00489{bottom:448.392667pt;}
.y17_c00489{bottom:461.536400pt;}
.y29_c00489{bottom:469.284667pt;}
.y28_c00489{bottom:482.616667pt;}
.y16_c00489{bottom:483.978400pt;}
.y15_c00489{bottom:502.640400pt;}
.y14_c00489{bottom:521.302400pt;}
.y13_c00489{bottom:543.744400pt;}
.y45_c00489{bottom:556.570267pt;}
.y12_c00489{bottom:566.186400pt;}
.y44_c00489{bottom:573.103600pt;}
.y43_c00489{bottom:589.636933pt;}
.y11_c00489{bottom:592.412000pt;}
.y42_c00489{bottom:606.170267pt;}
.y10_c00489{bottom:614.412000pt;}
.y41_c00489{bottom:622.703600pt;}
.yf_c00489{bottom:636.412000pt;}
.y40_c00489{bottom:639.236933pt;}
.ye_c00489{bottom:658.412000pt;}
.yd_c00489{bottom:680.412000pt;}
.yc_c00489{bottom:715.764000pt;}
.yb_c00489{bottom:734.426000pt;}
.ya_c00489{bottom:753.088000pt;}
.y9_c00489{bottom:771.750000pt;}
.y8_c00489{bottom:790.412000pt;}
.y7_c00489{bottom:816.637733pt;}
.y6_c00489{bottom:838.637733pt;}
.y5_c00489{bottom:860.637733pt;}
.y4_c00489{bottom:882.637733pt;}
.y3_c00489{bottom:904.637733pt;}
.y2_c00489{bottom:926.637733pt;}
.y1_c00489{bottom:972.089867pt;}
.h2_c00489{height:34.901333pt;}
.h5_c00489{height:34.915733pt;}
.h7_c00489{height:38.880000pt;}
.h6_c00489{height:39.264000pt;}
.h9_c00489{height:43.200000pt;}
.h8_c00489{height:43.626667pt;}
.h4_c00489{height:45.808000pt;}
.h3_c00489{height:52.352000pt;}
.h1_c00489{height:1009.333333pt;}
.h0_c00489{height:1009.338800pt;}
.w0_c00489{width:794.622400pt;}
.w1_c00489{width:794.666667pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:68.980533pt;}
.x2_c00489{left:278.895467pt;}
.x4_c00489{left:294.013600pt;}
.x3_c00489{left:297.793200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_496473d0b23c3cb9d660b2cb.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.082000;font-style:normal;font-weight:normal;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_c695b8898d1720089a3c41d8.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.067000;font-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_c00490{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.v1_c00490{vertical-align:20.874000px;}
.ls5_c00490{letter-spacing:-2.160000px;}
.ls6_c00490{letter-spacing:-0.630000px;}
.ls4_c00490{letter-spacing:0.000000px;}
.ls7_c00490{letter-spacing:0.183645px;}
.ls2_c00490{letter-spacing:0.315000px;}
.ls1_c00490{letter-spacing:0.360000px;}
.ls0_c00490{letter-spacing:0.480000px;}
.ls8_c00490{letter-spacing:0.600000px;}
.ls3_c00490{letter-spacing:0.630000px;}
.lsa_c00490{letter-spacing:0.960000px;}
.ls9_c00490{letter-spacing:1.200000px;}
.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;}
}
.ws1_c00490{word-spacing:-16.344000px;}
.ws0_c00490{word-spacing:-10.896000px;}
.wse_c00490{word-spacing:-2.952000px;}
.ws4_c00490{word-spacing:-2.880000px;}
.ws16_c00490{word-spacing:-2.394000px;}
.wsf_c00490{word-spacing:-2.304000px;}
.ws20_c00490{word-spacing:-1.827000px;}
.ws1a_c00490{word-spacing:-1.449000px;}
.ws1e_c00490{word-spacing:-1.197000px;}
.ws7_c00490{word-spacing:-0.720000px;}
.ws1b_c00490{word-spacing:-0.252000px;}
.ws21_c00490{word-spacing:-0.183645px;}
.ws2_c00490{word-spacing:0.000000px;}
.ws23_c00490{word-spacing:0.240000px;}
.ws13_c00490{word-spacing:0.252000px;}
.ws1d_c00490{word-spacing:0.315000px;}
.ws22_c00490{word-spacing:0.600000px;}
.ws10_c00490{word-spacing:1.008000px;}
.ws11_c00490{word-spacing:1.071000px;}
.ws1f_c00490{word-spacing:1.764000px;}
.wsd_c00490{word-spacing:1.800000px;}
.ws14_c00490{word-spacing:1.953000px;}
.ws8_c00490{word-spacing:2.160000px;}
.wsb_c00490{word-spacing:2.232000px;}
.wsa_c00490{word-spacing:4.248000px;}
.ws17_c00490{word-spacing:4.284000px;}
.ws3_c00490{word-spacing:4.392000px;}
.ws1c_c00490{word-spacing:4.824000px;}
.ws18_c00490{word-spacing:6.237000px;}
.ws9_c00490{word-spacing:7.056000px;}
.ws5_c00490{word-spacing:7.416000px;}
.ws6_c00490{word-spacing:7.488000px;}
.ws15_c00490{word-spacing:8.379000px;}
.ws19_c00490{word-spacing:8.694000px;}
.wsc_c00490{word-spacing:9.072000px;}
.ws12_c00490{word-spacing:16.884000px;}
._0_c00490{margin-left:-2755.132800px;}
._9_c00490{margin-left:-8.106000px;}
._4_c00490{margin-left:-5.400000px;}
._8_c00490{margin-left:-4.038000px;}
._1_c00490{margin-left:-2.640000px;}
._2_c00490{margin-left:-1.632000px;}
._3_c00490{width:1.032000px;}
._6_c00490{width:2.568000px;}
._5_c00490{width:3.888000px;}
._7_c00490{width:6.936000px;}
.fc0_c00490{color:rgb(35,31,32);}
.fs3_c00490{font-size:36.729000px;}
.fs0_c00490{font-size:48.000000px;}
.fs5_c00490{font-size:54.000000px;}
.fs4_c00490{font-size:60.000000px;}
.fs2_c00490{font-size:63.000000px;}
.fs1_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y28_c00490{bottom:111.616350px;}
.y27_c00490{bottom:126.616350px;}
.y26_c00490{bottom:174.732000px;}
.y25_c00490{bottom:195.726750px;}
.y2f_c00490{bottom:214.862700px;}
.y24_c00490{bottom:216.721500px;}
.y2e_c00490{bottom:233.462700px;}
.y23_c00490{bottom:237.716250px;}
.y2d_c00490{bottom:252.062700px;}
.y22_c00490{bottom:258.711000px;}
.y21_c00490{bottom:279.705750px;}
.y20_c00490{bottom:309.209700px;}
.y1f_c00490{bottom:333.959700px;}
.y1e_c00490{bottom:373.782000px;}
.y1d_c00490{bottom:394.776750px;}
.y1c_c00490{bottom:415.771500px;}
.y1b_c00490{bottom:436.766250px;}
.y1a_c00490{bottom:457.761000px;}
.y19_c00490{bottom:478.755750px;}
.y18_c00490{bottom:499.750500px;}
.y17_c00490{bottom:520.745250px;}
.y16_c00490{bottom:541.740000px;}
.y15_c00490{bottom:566.987250px;}
.y14_c00490{bottom:587.982000px;}
.y13_c00490{bottom:608.976750px;}
.y12_c00490{bottom:629.971500px;}
.y11_c00490{bottom:655.218750px;}
.y2c_c00490{bottom:669.095850px;}
.y10_c00490{bottom:676.213500px;}
.y2b_c00490{bottom:687.095850px;}
.y2a_c00490{bottom:705.095850px;}
.yf_c00490{bottom:705.723450px;}
.y29_c00490{bottom:723.095850px;}
.ye_c00490{bottom:730.473450px;}
.yd_c00490{bottom:770.217450px;}
.yc_c00490{bottom:794.967450px;}
.yb_c00490{bottom:819.717450px;}
.ya_c00490{bottom:844.467450px;}
.y9_c00490{bottom:869.217450px;}
.y8_c00490{bottom:893.967450px;}
.y7_c00490{bottom:918.717450px;}
.y6_c00490{bottom:943.467450px;}
.y5_c00490{bottom:968.217450px;}
.y4_c00490{bottom:992.967450px;}
.y3_c00490{bottom:1017.717450px;}
.y2_c00490{bottom:1042.467450px;}
.y1_c00490{bottom:1093.601100px;}
.h2_c00490{height:39.264000px;}
.h3_c00490{height:39.984000px;}
.h8_c00490{height:43.740000px;}
.h7_c00490{height:48.600000px;}
.h6_c00490{height:49.080000px;}
.h5_c00490{height:51.534000px;}
.h4_c00490{height:58.896000px;}
.h1_c00490{height:1135.500000px;}
.h0_c00490{height:1135.506150px;}
.w0_c00490{width:893.950200px;}
.w1_c00490{width:894.000000px;}
.x0_c00490{left:0.000000px;}
.x4_c00490{left:128.626800px;}
.x6_c00490{left:145.634550px;}
.x5_c00490{left:149.886600px;}
.x2_c00490{left:188.061900px;}
.x3_c00490{left:190.513350px;}
.x7_c00490{left:582.031200px;}
.x8_c00490{left:584.478150px;}
.x1_c00490{left:800.154000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.v1_c00490{vertical-align:18.554667pt;}
.ls5_c00490{letter-spacing:-1.920000pt;}
.ls6_c00490{letter-spacing:-0.560000pt;}
.ls4_c00490{letter-spacing:0.000000pt;}
.ls7_c00490{letter-spacing:0.163240pt;}
.ls2_c00490{letter-spacing:0.280000pt;}
.ls1_c00490{letter-spacing:0.320000pt;}
.ls0_c00490{letter-spacing:0.426667pt;}
.ls8_c00490{letter-spacing:0.533333pt;}
.ls3_c00490{letter-spacing:0.560000pt;}
.lsa_c00490{letter-spacing:0.853333pt;}
.ls9_c00490{letter-spacing:1.066667pt;}
.ws1_c00490{word-spacing:-14.528000pt;}
.ws0_c00490{word-spacing:-9.685333pt;}
.wse_c00490{word-spacing:-2.624000pt;}
.ws4_c00490{word-spacing:-2.560000pt;}
.ws16_c00490{word-spacing:-2.128000pt;}
.wsf_c00490{word-spacing:-2.048000pt;}
.ws20_c00490{word-spacing:-1.624000pt;}
.ws1a_c00490{word-spacing:-1.288000pt;}
.ws1e_c00490{word-spacing:-1.064000pt;}
.ws7_c00490{word-spacing:-0.640000pt;}
.ws1b_c00490{word-spacing:-0.224000pt;}
.ws21_c00490{word-spacing:-0.163240pt;}
.ws2_c00490{word-spacing:0.000000pt;}
.ws23_c00490{word-spacing:0.213333pt;}
.ws13_c00490{word-spacing:0.224000pt;}
.ws1d_c00490{word-spacing:0.280000pt;}
.ws22_c00490{word-spacing:0.533333pt;}
.ws10_c00490{word-spacing:0.896000pt;}
.ws11_c00490{word-spacing:0.952000pt;}
.ws1f_c00490{word-spacing:1.568000pt;}
.wsd_c00490{word-spacing:1.600000pt;}
.ws14_c00490{word-spacing:1.736000pt;}
.ws8_c00490{word-spacing:1.920000pt;}
.wsb_c00490{word-spacing:1.984000pt;}
.wsa_c00490{word-spacing:3.776000pt;}
.ws17_c00490{word-spacing:3.808000pt;}
.ws3_c00490{word-spacing:3.904000pt;}
.ws1c_c00490{word-spacing:4.288000pt;}
.ws18_c00490{word-spacing:5.544000pt;}
.ws9_c00490{word-spacing:6.272000pt;}
.ws5_c00490{word-spacing:6.592000pt;}
.ws6_c00490{word-spacing:6.656000pt;}
.ws15_c00490{word-spacing:7.448000pt;}
.ws19_c00490{word-spacing:7.728000pt;}
.wsc_c00490{word-spacing:8.064000pt;}
.ws12_c00490{word-spacing:15.008000pt;}
._0_c00490{margin-left:-2449.006933pt;}
._9_c00490{margin-left:-7.205333pt;}
._4_c00490{margin-left:-4.800000pt;}
._8_c00490{margin-left:-3.589333pt;}
._1_c00490{margin-left:-2.346667pt;}
._2_c00490{margin-left:-1.450667pt;}
._3_c00490{width:0.917333pt;}
._6_c00490{width:2.282667pt;}
._5_c00490{width:3.456000pt;}
._7_c00490{width:6.165333pt;}
.fs3_c00490{font-size:32.648000pt;}
.fs0_c00490{font-size:42.666667pt;}
.fs5_c00490{font-size:48.000000pt;}
.fs4_c00490{font-size:53.333333pt;}
.fs2_c00490{font-size:56.000000pt;}
.fs1_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y28_c00490{bottom:99.214533pt;}
.y27_c00490{bottom:112.547867pt;}
.y26_c00490{bottom:155.317333pt;}
.y25_c00490{bottom:173.979333pt;}
.y2f_c00490{bottom:190.989067pt;}
.y24_c00490{bottom:192.641333pt;}
.y2e_c00490{bottom:207.522400pt;}
.y23_c00490{bottom:211.303333pt;}
.y2d_c00490{bottom:224.055733pt;}
.y22_c00490{bottom:229.965333pt;}
.y21_c00490{bottom:248.627333pt;}
.y20_c00490{bottom:274.853067pt;}
.y1f_c00490{bottom:296.853067pt;}
.y1e_c00490{bottom:332.250667pt;}
.y1d_c00490{bottom:350.912667pt;}
.y1c_c00490{bottom:369.574667pt;}
.y1b_c00490{bottom:388.236667pt;}
.y1a_c00490{bottom:406.898667pt;}
.y19_c00490{bottom:425.560667pt;}
.y18_c00490{bottom:444.222667pt;}
.y17_c00490{bottom:462.884667pt;}
.y16_c00490{bottom:481.546667pt;}
.y15_c00490{bottom:503.988667pt;}
.y14_c00490{bottom:522.650667pt;}
.y13_c00490{bottom:541.312667pt;}
.y12_c00490{bottom:559.974667pt;}
.y11_c00490{bottom:582.416667pt;}
.y2c_c00490{bottom:594.751867pt;}
.y10_c00490{bottom:601.078667pt;}
.y2b_c00490{bottom:610.751867pt;}
.y2a_c00490{bottom:626.751867pt;}
.yf_c00490{bottom:627.309733pt;}
.y29_c00490{bottom:642.751867pt;}
.ye_c00490{bottom:649.309733pt;}
.yd_c00490{bottom:684.637733pt;}
.yc_c00490{bottom:706.637733pt;}
.yb_c00490{bottom:728.637733pt;}
.ya_c00490{bottom:750.637733pt;}
.y9_c00490{bottom:772.637733pt;}
.y8_c00490{bottom:794.637733pt;}
.y7_c00490{bottom:816.637733pt;}
.y6_c00490{bottom:838.637733pt;}
.y5_c00490{bottom:860.637733pt;}
.y4_c00490{bottom:882.637733pt;}
.y3_c00490{bottom:904.637733pt;}
.y2_c00490{bottom:926.637733pt;}
.y1_c00490{bottom:972.089867pt;}
.h2_c00490{height:34.901333pt;}
.h3_c00490{height:35.541333pt;}
.h8_c00490{height:38.880000pt;}
.h7_c00490{height:43.200000pt;}
.h6_c00490{height:43.626667pt;}
.h5_c00490{height:45.808000pt;}
.h4_c00490{height:52.352000pt;}
.h1_c00490{height:1009.333333pt;}
.h0_c00490{height:1009.338800pt;}
.w0_c00490{width:794.622400pt;}
.w1_c00490{width:794.666667pt;}
.x0_c00490{left:0.000000pt;}
.x4_c00490{left:114.334933pt;}
.x6_c00490{left:129.452933pt;}
.x5_c00490{left:133.232533pt;}
.x2_c00490{left:167.166133pt;}
.x3_c00490{left:169.345200pt;}
.x7_c00490{left:517.361067pt;}
.x8_c00490{left:519.536133pt;}
.x1_c00490{left:711.248000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e10c968ee5ff44ab0b789622.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.067000;font-style:normal;font-weight:normal;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_5877b64d34e2a245eca03b23.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00491;src:url('chunks/assets/font_00fa6a366bab1dbcf8a3cadf.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls4_c00491{letter-spacing:-0.720000px;}
.ls3_c00491{letter-spacing:-0.360000px;}
.ls2_c00491{letter-spacing:-0.288000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.ls1_c00491{letter-spacing:0.504000px;}
.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;}
}
.ws1_c00491{word-spacing:-16.848000px;}
.ws11_c00491{word-spacing:-2.160000px;}
.ws14_c00491{word-spacing:-1.872000px;}
.ws6_c00491{word-spacing:-1.584000px;}
.ws7_c00491{word-spacing:-1.296000px;}
.wsc_c00491{word-spacing:-1.224000px;}
.wsd_c00491{word-spacing:-0.648000px;}
.wsb_c00491{word-spacing:-0.576000px;}
.wse_c00491{word-spacing:-0.288000px;}
.ws9_c00491{word-spacing:-0.072000px;}
.ws2_c00491{word-spacing:0.000000px;}
.ws8_c00491{word-spacing:0.360000px;}
.ws12_c00491{word-spacing:0.576000px;}
.wsa_c00491{word-spacing:0.720000px;}
.ws3_c00491{word-spacing:2.520000px;}
.ws4_c00491{word-spacing:3.744000px;}
.wsf_c00491{word-spacing:4.752000px;}
.ws5_c00491{word-spacing:4.824000px;}
.ws10_c00491{word-spacing:5.976000px;}
.ws13_c00491{word-spacing:8.928000px;}
.ws0_c00491{word-spacing:1571.275200px;}
._6_c00491{margin-left:-5.772000px;}
._4_c00491{margin-left:-4.584000px;}
._2_c00491{margin-left:-3.192000px;}
._0_c00491{margin-left:-1.776000px;}
._3_c00491{width:1.008000px;}
._1_c00491{width:2.016000px;}
._5_c00491{width:7.128000px;}
.fc0_c00491{color:rgb(35,31,32);}
.fs0_c00491{font-size:48.000000px;}
.fs2_c00491{font-size:60.000000px;}
.fs1_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y15_c00491{bottom:116.223450px;}
.y14_c00491{bottom:140.973450px;}
.y13_c00491{bottom:165.723450px;}
.y12_c00491{bottom:190.473450px;}
.y11_c00491{bottom:215.223450px;}
.y10_c00491{bottom:239.973450px;}
.yf_c00491{bottom:264.723450px;}
.y18_c00491{bottom:317.958750px;}
.y17_c00491{bottom:336.558750px;}
.y16_c00491{bottom:355.158750px;}
.ye_c00491{bottom:700.467450px;}
.yd_c00491{bottom:725.217450px;}
.yc_c00491{bottom:749.967450px;}
.yb_c00491{bottom:774.717450px;}
.ya_c00491{bottom:799.467450px;}
.y9_c00491{bottom:824.217450px;}
.y8_c00491{bottom:863.961450px;}
.y7_c00491{bottom:918.717450px;}
.y6_c00491{bottom:943.467450px;}
.y5_c00491{bottom:968.217450px;}
.y4_c00491{bottom:992.967450px;}
.y3_c00491{bottom:1017.717450px;}
.y2_c00491{bottom:1042.467450px;}
.y1_c00491{bottom:1093.601100px;}
.h2_c00491{height:39.264000px;}
.h6_c00491{height:48.600000px;}
.h5_c00491{height:49.080000px;}
.h3_c00491{height:58.896000px;}
.h4_c00491{height:59.976000px;}
.h1_c00491{height:1135.500000px;}
.h0_c00491{height:1135.506150px;}
.w0_c00491{width:893.950200px;}
.w1_c00491{width:894.000000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:77.603100px;}
.x2_c00491{left:426.264450px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls4_c00491{letter-spacing:-0.640000pt;}
.ls3_c00491{letter-spacing:-0.320000pt;}
.ls2_c00491{letter-spacing:-0.256000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ls1_c00491{letter-spacing:0.448000pt;}
.ws1_c00491{word-spacing:-14.976000pt;}
.ws11_c00491{word-spacing:-1.920000pt;}
.ws14_c00491{word-spacing:-1.664000pt;}
.ws6_c00491{word-spacing:-1.408000pt;}
.ws7_c00491{word-spacing:-1.152000pt;}
.wsc_c00491{word-spacing:-1.088000pt;}
.wsd_c00491{word-spacing:-0.576000pt;}
.wsb_c00491{word-spacing:-0.512000pt;}
.wse_c00491{word-spacing:-0.256000pt;}
.ws9_c00491{word-spacing:-0.064000pt;}
.ws2_c00491{word-spacing:0.000000pt;}
.ws8_c00491{word-spacing:0.320000pt;}
.ws12_c00491{word-spacing:0.512000pt;}
.wsa_c00491{word-spacing:0.640000pt;}
.ws3_c00491{word-spacing:2.240000pt;}
.ws4_c00491{word-spacing:3.328000pt;}
.wsf_c00491{word-spacing:4.224000pt;}
.ws5_c00491{word-spacing:4.288000pt;}
.ws10_c00491{word-spacing:5.312000pt;}
.ws13_c00491{word-spacing:7.936000pt;}
.ws0_c00491{word-spacing:1396.689067pt;}
._6_c00491{margin-left:-5.130667pt;}
._4_c00491{margin-left:-4.074667pt;}
._2_c00491{margin-left:-2.837333pt;}
._0_c00491{margin-left:-1.578667pt;}
._3_c00491{width:0.896000pt;}
._1_c00491{width:1.792000pt;}
._5_c00491{width:6.336000pt;}
.fs0_c00491{font-size:42.666667pt;}
.fs2_c00491{font-size:53.333333pt;}
.fs1_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y15_c00491{bottom:103.309733pt;}
.y14_c00491{bottom:125.309733pt;}
.y13_c00491{bottom:147.309733pt;}
.y12_c00491{bottom:169.309733pt;}
.y11_c00491{bottom:191.309733pt;}
.y10_c00491{bottom:213.309733pt;}
.yf_c00491{bottom:235.309733pt;}
.y18_c00491{bottom:282.630000pt;}
.y17_c00491{bottom:299.163333pt;}
.y16_c00491{bottom:315.696667pt;}
.ye_c00491{bottom:622.637733pt;}
.yd_c00491{bottom:644.637733pt;}
.yc_c00491{bottom:666.637733pt;}
.yb_c00491{bottom:688.637733pt;}
.ya_c00491{bottom:710.637733pt;}
.y9_c00491{bottom:732.637733pt;}
.y8_c00491{bottom:767.965733pt;}
.y7_c00491{bottom:816.637733pt;}
.y6_c00491{bottom:838.637733pt;}
.y5_c00491{bottom:860.637733pt;}
.y4_c00491{bottom:882.637733pt;}
.y3_c00491{bottom:904.637733pt;}
.y2_c00491{bottom:926.637733pt;}
.y1_c00491{bottom:972.089867pt;}
.h2_c00491{height:34.901333pt;}
.h6_c00491{height:43.200000pt;}
.h5_c00491{height:43.626667pt;}
.h3_c00491{height:52.352000pt;}
.h4_c00491{height:53.312000pt;}
.h1_c00491{height:1009.333333pt;}
.h0_c00491{height:1009.338800pt;}
.w0_c00491{width:794.622400pt;}
.w1_c00491{width:794.666667pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:68.980533pt;}
.x2_c00491{left:378.901733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a39b34d07342530cf10147c.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.082000;font-style:normal;font-weight:normal;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_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.067000;font-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_c00492{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:20.895600px;}
.ls4_c00492{letter-spacing:-1.449000px;}
.ls5_c00492{letter-spacing:-0.936000px;}
.ls2_c00492{letter-spacing:-0.720000px;}
.ls7_c00492{letter-spacing:-0.360000px;}
.ls6_c00492{letter-spacing:-0.288000px;}
.ls1_c00492{letter-spacing:0.000000px;}
.ls3_c00492{letter-spacing:0.367290px;}
.ls0_c00492{letter-spacing:0.480000px;}
.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;}
}
.ws2_c00492{word-spacing:-16.488000px;}
.ws3_c00492{word-spacing:-16.344000px;}
.ws4_c00492{word-spacing:-15.768000px;}
.ws1_c00492{word-spacing:-12.978000px;}
.ws5_c00492{word-spacing:-11.376000px;}
.ws0_c00492{word-spacing:-10.896000px;}
.ws8_c00492{word-spacing:-1.512000px;}
.ws18_c00492{word-spacing:-1.386000px;}
.ws20_c00492{word-spacing:-0.720000px;}
.ws21_c00492{word-spacing:-0.576000px;}
.wse_c00492{word-spacing:-0.432000px;}
.ws17_c00492{word-spacing:-0.367290px;}
.ws6_c00492{word-spacing:0.000000px;}
.ws16_c00492{word-spacing:0.126000px;}
.ws12_c00492{word-spacing:0.144000px;}
.ws11_c00492{word-spacing:0.216000px;}
.ws14_c00492{word-spacing:0.252000px;}
.wsa_c00492{word-spacing:0.360000px;}
.ws13_c00492{word-spacing:0.378000px;}
.ws19_c00492{word-spacing:1.197000px;}
.ws10_c00492{word-spacing:1.584000px;}
.ws1d_c00492{word-spacing:1.800000px;}
.ws1e_c00492{word-spacing:2.088000px;}
.wsd_c00492{word-spacing:2.448000px;}
.wsf_c00492{word-spacing:2.520000px;}
.ws1c_c00492{word-spacing:2.736000px;}
.ws22_c00492{word-spacing:3.024000px;}
.ws1a_c00492{word-spacing:3.384000px;}
.ws9_c00492{word-spacing:4.032000px;}
.ws15_c00492{word-spacing:4.347000px;}
.wsb_c00492{word-spacing:4.392000px;}
.ws7_c00492{word-spacing:4.536000px;}
.ws1b_c00492{word-spacing:5.184000px;}
.ws1f_c00492{word-spacing:5.328000px;}
.wsc_c00492{word-spacing:5.976000px;}
.ws23_c00492{word-spacing:6.624000px;}
.ws24_c00492{word-spacing:7.968000px;}
._0_c00492{margin-left:-2754.940800px;}
._7_c00492{margin-left:-8.880000px;}
._6_c00492{margin-left:-7.392000px;}
._5_c00492{margin-left:-5.592000px;}
._4_c00492{margin-left:-3.648000px;}
._1_c00492{margin-left:-2.640000px;}
._2_c00492{margin-left:-1.632000px;}
._3_c00492{width:1.008000px;}
._9_c00492{width:2.040000px;}
._a_c00492{width:3.361800px;}
._8_c00492{width:5.184000px;}
.fc0_c00492{color:rgb(35,31,32);}
.fs3_c00492{font-size:36.729000px;}
.fs0_c00492{font-size:48.000000px;}
.fs2_c00492{font-size:63.000000px;}
.fs1_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y25_c00492{bottom:111.612300px;}
.y24_c00492{bottom:135.120300px;}
.y23_c00492{bottom:178.715700px;}
.y22_c00492{bottom:203.465700px;}
.y21_c00492{bottom:228.215700px;}
.y20_c00492{bottom:252.965700px;}
.y1f_c00492{bottom:292.709700px;}
.y1e_c00492{bottom:317.459700px;}
.y1d_c00492{bottom:342.209700px;}
.y1c_c00492{bottom:366.959700px;}
.y1b_c00492{bottom:391.709700px;}
.y1a_c00492{bottom:416.459700px;}
.y19_c00492{bottom:441.209700px;}
.y18_c00492{bottom:480.970200px;}
.y17_c00492{bottom:501.964950px;}
.y16_c00492{bottom:522.959700px;}
.y15_c00492{bottom:552.463650px;}
.y14_c00492{bottom:592.234500px;}
.y13_c00492{bottom:613.229250px;}
.y12_c00492{bottom:634.224000px;}
.y11_c00492{bottom:655.218750px;}
.y10_c00492{bottom:676.213500px;}
.yf_c00492{bottom:705.723450px;}
.ye_c00492{bottom:730.473450px;}
.yd_c00492{bottom:755.223450px;}
.yc_c00492{bottom:779.973450px;}
.yb_c00492{bottom:804.723450px;}
.ya_c00492{bottom:829.473450px;}
.y9_c00492{bottom:854.223450px;}
.y8_c00492{bottom:878.973450px;}
.y7_c00492{bottom:903.723450px;}
.y6_c00492{bottom:943.467450px;}
.y5_c00492{bottom:968.217450px;}
.y4_c00492{bottom:992.967450px;}
.y3_c00492{bottom:1017.717450px;}
.y2_c00492{bottom:1042.467450px;}
.y1_c00492{bottom:1093.601100px;}
.h2_c00492{height:39.264000px;}
.h6_c00492{height:39.280200px;}
.h3_c00492{height:39.984000px;}
.h5_c00492{height:51.534000px;}
.h4_c00492{height:58.896000px;}
.h1_c00492{height:1135.500000px;}
.h0_c00492{height:1135.506150px;}
.w0_c00492{width:893.950200px;}
.w1_c00492{width:894.000000px;}
.x0_c00492{left:0.000000px;}
.x4_c00492{left:128.626800px;}
.x5_c00492{left:149.886600px;}
.x2_c00492{left:188.061900px;}
.x3_c00492{left:190.513350px;}
.x1_c00492{left:801.618000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:18.573867pt;}
.ls4_c00492{letter-spacing:-1.288000pt;}
.ls5_c00492{letter-spacing:-0.832000pt;}
.ls2_c00492{letter-spacing:-0.640000pt;}
.ls7_c00492{letter-spacing:-0.320000pt;}
.ls6_c00492{letter-spacing:-0.256000pt;}
.ls1_c00492{letter-spacing:0.000000pt;}
.ls3_c00492{letter-spacing:0.326480pt;}
.ls0_c00492{letter-spacing:0.426667pt;}
.ws2_c00492{word-spacing:-14.656000pt;}
.ws3_c00492{word-spacing:-14.528000pt;}
.ws4_c00492{word-spacing:-14.016000pt;}
.ws1_c00492{word-spacing:-11.536000pt;}
.ws5_c00492{word-spacing:-10.112000pt;}
.ws0_c00492{word-spacing:-9.685333pt;}
.ws8_c00492{word-spacing:-1.344000pt;}
.ws18_c00492{word-spacing:-1.232000pt;}
.ws20_c00492{word-spacing:-0.640000pt;}
.ws21_c00492{word-spacing:-0.512000pt;}
.wse_c00492{word-spacing:-0.384000pt;}
.ws17_c00492{word-spacing:-0.326480pt;}
.ws6_c00492{word-spacing:0.000000pt;}
.ws16_c00492{word-spacing:0.112000pt;}
.ws12_c00492{word-spacing:0.128000pt;}
.ws11_c00492{word-spacing:0.192000pt;}
.ws14_c00492{word-spacing:0.224000pt;}
.wsa_c00492{word-spacing:0.320000pt;}
.ws13_c00492{word-spacing:0.336000pt;}
.ws19_c00492{word-spacing:1.064000pt;}
.ws10_c00492{word-spacing:1.408000pt;}
.ws1d_c00492{word-spacing:1.600000pt;}
.ws1e_c00492{word-spacing:1.856000pt;}
.wsd_c00492{word-spacing:2.176000pt;}
.wsf_c00492{word-spacing:2.240000pt;}
.ws1c_c00492{word-spacing:2.432000pt;}
.ws22_c00492{word-spacing:2.688000pt;}
.ws1a_c00492{word-spacing:3.008000pt;}
.ws9_c00492{word-spacing:3.584000pt;}
.ws15_c00492{word-spacing:3.864000pt;}
.wsb_c00492{word-spacing:3.904000pt;}
.ws7_c00492{word-spacing:4.032000pt;}
.ws1b_c00492{word-spacing:4.608000pt;}
.ws1f_c00492{word-spacing:4.736000pt;}
.wsc_c00492{word-spacing:5.312000pt;}
.ws23_c00492{word-spacing:5.888000pt;}
.ws24_c00492{word-spacing:7.082667pt;}
._0_c00492{margin-left:-2448.836267pt;}
._7_c00492{margin-left:-7.893333pt;}
._6_c00492{margin-left:-6.570667pt;}
._5_c00492{margin-left:-4.970667pt;}
._4_c00492{margin-left:-3.242667pt;}
._1_c00492{margin-left:-2.346667pt;}
._2_c00492{margin-left:-1.450667pt;}
._3_c00492{width:0.896000pt;}
._9_c00492{width:1.813333pt;}
._a_c00492{width:2.988267pt;}
._8_c00492{width:4.608000pt;}
.fs3_c00492{font-size:32.648000pt;}
.fs0_c00492{font-size:42.666667pt;}
.fs2_c00492{font-size:56.000000pt;}
.fs1_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y25_c00492{bottom:99.210933pt;}
.y24_c00492{bottom:120.106933pt;}
.y23_c00492{bottom:158.858400pt;}
.y22_c00492{bottom:180.858400pt;}
.y21_c00492{bottom:202.858400pt;}
.y20_c00492{bottom:224.858400pt;}
.y1f_c00492{bottom:260.186400pt;}
.y1e_c00492{bottom:282.186400pt;}
.y1d_c00492{bottom:304.186400pt;}
.y1c_c00492{bottom:326.186400pt;}
.y1b_c00492{bottom:348.186400pt;}
.y1a_c00492{bottom:370.186400pt;}
.y19_c00492{bottom:392.186400pt;}
.y18_c00492{bottom:427.529067pt;}
.y17_c00492{bottom:446.191067pt;}
.y16_c00492{bottom:464.853067pt;}
.y15_c00492{bottom:491.078800pt;}
.y14_c00492{bottom:526.430667pt;}
.y13_c00492{bottom:545.092667pt;}
.y12_c00492{bottom:563.754667pt;}
.y11_c00492{bottom:582.416667pt;}
.y10_c00492{bottom:601.078667pt;}
.yf_c00492{bottom:627.309733pt;}
.ye_c00492{bottom:649.309733pt;}
.yd_c00492{bottom:671.309733pt;}
.yc_c00492{bottom:693.309733pt;}
.yb_c00492{bottom:715.309733pt;}
.ya_c00492{bottom:737.309733pt;}
.y9_c00492{bottom:759.309733pt;}
.y8_c00492{bottom:781.309733pt;}
.y7_c00492{bottom:803.309733pt;}
.y6_c00492{bottom:838.637733pt;}
.y5_c00492{bottom:860.637733pt;}
.y4_c00492{bottom:882.637733pt;}
.y3_c00492{bottom:904.637733pt;}
.y2_c00492{bottom:926.637733pt;}
.y1_c00492{bottom:972.089867pt;}
.h2_c00492{height:34.901333pt;}
.h6_c00492{height:34.915733pt;}
.h3_c00492{height:35.541333pt;}
.h5_c00492{height:45.808000pt;}
.h4_c00492{height:52.352000pt;}
.h1_c00492{height:1009.333333pt;}
.h0_c00492{height:1009.338800pt;}
.w0_c00492{width:794.622400pt;}
.w1_c00492{width:794.666667pt;}
.x0_c00492{left:0.000000pt;}
.x4_c00492{left:114.334933pt;}
.x5_c00492{left:133.232533pt;}
.x2_c00492{left:167.166133pt;}
.x3_c00492{left:169.345200pt;}
.x1_c00492{left:712.549333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16a7d3fa1ea0db8c6209f9a4.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.067000;font-style:normal;font-weight:normal;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_a82e46446159eb559aa4186e.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00493;src:url('chunks/assets/font_39fb4925ed5cd642672f04e8.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.v1_c00493{vertical-align:20.853600px;}
.ls8_c00493{letter-spacing:-5.880000px;}
.ls5_c00493{letter-spacing:-1.224000px;}
.ls2_c00493{letter-spacing:-0.720000px;}
.ls4_c00493{letter-spacing:-0.648000px;}
.ls3_c00493{letter-spacing:-0.630000px;}
.ls7_c00493{letter-spacing:-0.600000px;}
.lsb_c00493{letter-spacing:-0.540000px;}
.ls6_c00493{letter-spacing:-0.504000px;}
.ls9_c00493{letter-spacing:-0.300000px;}
.ls0_c00493{letter-spacing:-0.288000px;}
.lsa_c00493{letter-spacing:-0.180000px;}
.ls1_c00493{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00493{word-spacing:-16.200000px;}
.ws3_c00493{word-spacing:-15.840000px;}
.ws1_c00493{word-spacing:-15.768000px;}
.ws5_c00493{word-spacing:-15.264000px;}
.ws2_c00493{word-spacing:-13.797000px;}
.ws7_c00493{word-spacing:-13.560000px;}
.ws6_c00493{word-spacing:-13.320000px;}
.ws8_c00493{word-spacing:-13.200000px;}
.wse_c00493{word-spacing:-2.898000px;}
.ws20_c00493{word-spacing:-1.944000px;}
.ws11_c00493{word-spacing:-1.890000px;}
.ws19_c00493{word-spacing:-1.440000px;}
.ws18_c00493{word-spacing:-1.296000px;}
.ws21_c00493{word-spacing:-1.224000px;}
.ws12_c00493{word-spacing:-1.197000px;}
.wsa_c00493{word-spacing:-1.008000px;}
.wsb_c00493{word-spacing:-0.936000px;}
.ws25_c00493{word-spacing:-0.792000px;}
.ws10_c00493{word-spacing:-0.756000px;}
.ws22_c00493{word-spacing:-0.648000px;}
.wsc_c00493{word-spacing:-0.432000px;}
.ws1e_c00493{word-spacing:-0.216000px;}
.ws1f_c00493{word-spacing:-0.072000px;}
.ws9_c00493{word-spacing:0.000000px;}
.ws26_c00493{word-spacing:0.240000px;}
.ws16_c00493{word-spacing:0.360000px;}
.ws24_c00493{word-spacing:0.504000px;}
.ws27_c00493{word-spacing:0.600000px;}
.ws23_c00493{word-spacing:0.720000px;}
.ws13_c00493{word-spacing:1.575000px;}
.ws1d_c00493{word-spacing:1.944000px;}
.ws1a_c00493{word-spacing:2.160000px;}
.ws17_c00493{word-spacing:2.448000px;}
.ws14_c00493{word-spacing:2.592000px;}
.ws15_c00493{word-spacing:2.664000px;}
.ws28_c00493{word-spacing:5.880000px;}
.wsf_c00493{word-spacing:8.568000px;}
.wsd_c00493{word-spacing:9.360000px;}
.ws1b_c00493{word-spacing:9.576000px;}
.ws1c_c00493{word-spacing:21.456000px;}
.ws0_c00493{word-spacing:1576.171200px;}
._6_c00493{margin-left:-6.420000px;}
._2_c00493{margin-left:-3.408000px;}
._3_c00493{margin-left:-2.280000px;}
._1_c00493{margin-left:-1.056000px;}
._0_c00493{width:1.200000px;}
._5_c00493{width:5.295600px;}
._4_c00493{width:8.952000px;}
.fc0_c00493{color:rgb(35,31,32);}
.fs3_c00493{font-size:36.729000px;}
.fs0_c00493{font-size:48.000000px;}
.fs4_c00493{font-size:60.000000px;}
.fs2_c00493{font-size:63.000000px;}
.fs1_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y26_c00493{bottom:111.616350px;}
.y2c_c00493{bottom:117.195000px;}
.y25_c00493{bottom:126.616350px;}
.y2b_c00493{bottom:135.795000px;}
.y2a_c00493{bottom:154.395000px;}
.y24_c00493{bottom:167.908500px;}
.y23_c00493{bottom:192.658500px;}
.y22_c00493{bottom:232.403700px;}
.y21_c00493{bottom:251.681700px;}
.y20_c00493{bottom:270.959700px;}
.y1f_c00493{bottom:297.469500px;}
.y1e_c00493{bottom:322.219500px;}
.y1d_c00493{bottom:346.969500px;}
.y1c_c00493{bottom:371.719500px;}
.y1b_c00493{bottom:396.469500px;}
.y1a_c00493{bottom:436.213500px;}
.y19_c00493{bottom:460.963500px;}
.y18_c00493{bottom:485.713500px;}
.y17_c00493{bottom:510.463500px;}
.y29_c00493{bottom:520.281600px;}
.y16_c00493{bottom:535.213500px;}
.y28_c00493{bottom:538.881600px;}
.y27_c00493{bottom:557.481600px;}
.y15_c00493{bottom:559.963500px;}
.y14_c00493{bottom:584.713500px;}
.y13_c00493{bottom:609.463500px;}
.y12_c00493{bottom:634.213500px;}
.y11_c00493{bottom:658.963500px;}
.y10_c00493{bottom:683.713500px;}
.yf_c00493{bottom:708.463500px;}
.ye_c00493{bottom:748.245000px;}
.yd_c00493{bottom:769.239750px;}
.yc_c00493{bottom:790.234500px;}
.yb_c00493{bottom:811.229250px;}
.ya_c00493{bottom:832.224000px;}
.y9_c00493{bottom:853.218750px;}
.y8_c00493{bottom:874.213500px;}
.y7_c00493{bottom:903.723450px;}
.y6_c00493{bottom:928.473450px;}
.y5_c00493{bottom:953.223450px;}
.y4_c00493{bottom:977.973450px;}
.y3_c00493{bottom:1002.723450px;}
.y2_c00493{bottom:1042.467450px;}
.y1_c00493{bottom:1093.601100px;}
.h2_c00493{height:39.264000px;}
.h6_c00493{height:49.080000px;}
.h5_c00493{height:51.534000px;}
.h4_c00493{height:58.896000px;}
.h3_c00493{height:59.976000px;}
.h1_c00493{height:1135.500000px;}
.h0_c00493{height:1135.506150px;}
.w0_c00493{width:893.950200px;}
.w1_c00493{width:894.000000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:77.603100px;}
.x5_c00493{left:80.792100px;}
.x2_c00493{left:294.453450px;}
.x4_c00493{left:311.461350px;}
.x3_c00493{left:315.713250px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:18.536533pt;}
.ls8_c00493{letter-spacing:-5.226667pt;}
.ls5_c00493{letter-spacing:-1.088000pt;}
.ls2_c00493{letter-spacing:-0.640000pt;}
.ls4_c00493{letter-spacing:-0.576000pt;}
.ls3_c00493{letter-spacing:-0.560000pt;}
.ls7_c00493{letter-spacing:-0.533333pt;}
.lsb_c00493{letter-spacing:-0.480000pt;}
.ls6_c00493{letter-spacing:-0.448000pt;}
.ls9_c00493{letter-spacing:-0.266667pt;}
.ls0_c00493{letter-spacing:-0.256000pt;}
.lsa_c00493{letter-spacing:-0.160000pt;}
.ls1_c00493{letter-spacing:0.000000pt;}
.ws4_c00493{word-spacing:-14.400000pt;}
.ws3_c00493{word-spacing:-14.080000pt;}
.ws1_c00493{word-spacing:-14.016000pt;}
.ws5_c00493{word-spacing:-13.568000pt;}
.ws2_c00493{word-spacing:-12.264000pt;}
.ws7_c00493{word-spacing:-12.053333pt;}
.ws6_c00493{word-spacing:-11.840000pt;}
.ws8_c00493{word-spacing:-11.733333pt;}
.wse_c00493{word-spacing:-2.576000pt;}
.ws20_c00493{word-spacing:-1.728000pt;}
.ws11_c00493{word-spacing:-1.680000pt;}
.ws19_c00493{word-spacing:-1.280000pt;}
.ws18_c00493{word-spacing:-1.152000pt;}
.ws21_c00493{word-spacing:-1.088000pt;}
.ws12_c00493{word-spacing:-1.064000pt;}
.wsa_c00493{word-spacing:-0.896000pt;}
.wsb_c00493{word-spacing:-0.832000pt;}
.ws25_c00493{word-spacing:-0.704000pt;}
.ws10_c00493{word-spacing:-0.672000pt;}
.ws22_c00493{word-spacing:-0.576000pt;}
.wsc_c00493{word-spacing:-0.384000pt;}
.ws1e_c00493{word-spacing:-0.192000pt;}
.ws1f_c00493{word-spacing:-0.064000pt;}
.ws9_c00493{word-spacing:0.000000pt;}
.ws26_c00493{word-spacing:0.213333pt;}
.ws16_c00493{word-spacing:0.320000pt;}
.ws24_c00493{word-spacing:0.448000pt;}
.ws27_c00493{word-spacing:0.533333pt;}
.ws23_c00493{word-spacing:0.640000pt;}
.ws13_c00493{word-spacing:1.400000pt;}
.ws1d_c00493{word-spacing:1.728000pt;}
.ws1a_c00493{word-spacing:1.920000pt;}
.ws17_c00493{word-spacing:2.176000pt;}
.ws14_c00493{word-spacing:2.304000pt;}
.ws15_c00493{word-spacing:2.368000pt;}
.ws28_c00493{word-spacing:5.226667pt;}
.wsf_c00493{word-spacing:7.616000pt;}
.wsd_c00493{word-spacing:8.320000pt;}
.ws1b_c00493{word-spacing:8.512000pt;}
.ws1c_c00493{word-spacing:19.072000pt;}
.ws0_c00493{word-spacing:1401.041067pt;}
._6_c00493{margin-left:-5.706667pt;}
._2_c00493{margin-left:-3.029333pt;}
._3_c00493{margin-left:-2.026667pt;}
._1_c00493{margin-left:-0.938667pt;}
._0_c00493{width:1.066667pt;}
._5_c00493{width:4.707200pt;}
._4_c00493{width:7.957333pt;}
.fs3_c00493{font-size:32.648000pt;}
.fs0_c00493{font-size:42.666667pt;}
.fs4_c00493{font-size:53.333333pt;}
.fs2_c00493{font-size:56.000000pt;}
.fs1_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y26_c00493{bottom:99.214533pt;}
.y2c_c00493{bottom:104.173333pt;}
.y25_c00493{bottom:112.547867pt;}
.y2b_c00493{bottom:120.706667pt;}
.y2a_c00493{bottom:137.240000pt;}
.y24_c00493{bottom:149.252000pt;}
.y23_c00493{bottom:171.252000pt;}
.y22_c00493{bottom:206.581067pt;}
.y21_c00493{bottom:223.717067pt;}
.y20_c00493{bottom:240.853067pt;}
.y1f_c00493{bottom:264.417333pt;}
.y1e_c00493{bottom:286.417333pt;}
.y1d_c00493{bottom:308.417333pt;}
.y1c_c00493{bottom:330.417333pt;}
.y1b_c00493{bottom:352.417333pt;}
.y1a_c00493{bottom:387.745333pt;}
.y19_c00493{bottom:409.745333pt;}
.y18_c00493{bottom:431.745333pt;}
.y17_c00493{bottom:453.745333pt;}
.y29_c00493{bottom:462.472533pt;}
.y16_c00493{bottom:475.745333pt;}
.y28_c00493{bottom:479.005867pt;}
.y27_c00493{bottom:495.539200pt;}
.y15_c00493{bottom:497.745333pt;}
.y14_c00493{bottom:519.745333pt;}
.y13_c00493{bottom:541.745333pt;}
.y12_c00493{bottom:563.745333pt;}
.y11_c00493{bottom:585.745333pt;}
.y10_c00493{bottom:607.745333pt;}
.yf_c00493{bottom:629.745333pt;}
.ye_c00493{bottom:665.106667pt;}
.yd_c00493{bottom:683.768667pt;}
.yc_c00493{bottom:702.430667pt;}
.yb_c00493{bottom:721.092667pt;}
.ya_c00493{bottom:739.754667pt;}
.y9_c00493{bottom:758.416667pt;}
.y8_c00493{bottom:777.078667pt;}
.y7_c00493{bottom:803.309733pt;}
.y6_c00493{bottom:825.309733pt;}
.y5_c00493{bottom:847.309733pt;}
.y4_c00493{bottom:869.309733pt;}
.y3_c00493{bottom:891.309733pt;}
.y2_c00493{bottom:926.637733pt;}
.y1_c00493{bottom:972.089867pt;}
.h2_c00493{height:34.901333pt;}
.h6_c00493{height:43.626667pt;}
.h5_c00493{height:45.808000pt;}
.h4_c00493{height:52.352000pt;}
.h3_c00493{height:53.312000pt;}
.h1_c00493{height:1009.333333pt;}
.h0_c00493{height:1009.338800pt;}
.w0_c00493{width:794.622400pt;}
.w1_c00493{width:794.666667pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:68.980533pt;}
.x5_c00493{left:71.815200pt;}
.x2_c00493{left:261.736400pt;}
.x4_c00493{left:276.854533pt;}
.x3_c00493{left:280.634000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_349fef8d8d031f6325b04401.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_e13fd78917d003312b5ba8c9.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.067000;font-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_c00494{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00494{vertical-align:-20.979600px;}
.v0_c00494{vertical-align:0.000000px;}
.v1_c00494{vertical-align:20.895600px;}
.v3_c00494{vertical-align:23.976000px;}
.ls7_c00494{letter-spacing:-0.936000px;}
.ls5_c00494{letter-spacing:-0.720000px;}
.lsa_c00494{letter-spacing:-0.600000px;}
.lsb_c00494{letter-spacing:-0.420000px;}
.ls3_c00494{letter-spacing:-0.336000px;}
.lsc_c00494{letter-spacing:-0.240000px;}
.ls4_c00494{letter-spacing:0.000000px;}
.ls9_c00494{letter-spacing:0.216000px;}
.ls8_c00494{letter-spacing:0.432000px;}
.ls0_c00494{letter-spacing:0.480000px;}
.ls1_c00494{letter-spacing:0.630000px;}
.ls2_c00494{letter-spacing:0.720000px;}
.ls6_c00494{letter-spacing:0.954954px;}
.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;}
}
.ws6_c00494{word-spacing:-17.064000px;}
.ws5_c00494{word-spacing:-16.920000px;}
.ws1_c00494{word-spacing:-15.624000px;}
.ws4_c00494{word-spacing:-15.552000px;}
.ws8_c00494{word-spacing:-13.740000px;}
.ws9_c00494{word-spacing:-13.620000px;}
.ws7_c00494{word-spacing:-10.896000px;}
.ws0_c00494{word-spacing:-10.560000px;}
.ws3_c00494{word-spacing:-9.528552px;}
.ws2_c00494{word-spacing:-9.292437px;}
.ws24_c00494{word-spacing:-2.880000px;}
.ws1d_c00494{word-spacing:-1.728000px;}
.ws16_c00494{word-spacing:-0.936000px;}
.wsd_c00494{word-spacing:-0.819000px;}
.ws25_c00494{word-spacing:-0.720000px;}
.ws19_c00494{word-spacing:-0.648000px;}
.ws22_c00494{word-spacing:-0.576000px;}
.ws23_c00494{word-spacing:-0.144000px;}
.wsa_c00494{word-spacing:0.000000px;}
.ws2d_c00494{word-spacing:0.240000px;}
.ws20_c00494{word-spacing:0.288000px;}
.ws28_c00494{word-spacing:0.360000px;}
.ws2c_c00494{word-spacing:0.420000px;}
.ws1e_c00494{word-spacing:0.576000px;}
.ws2b_c00494{word-spacing:0.600000px;}
.ws1c_c00494{word-spacing:0.864000px;}
.ws11_c00494{word-spacing:1.152000px;}
.ws1b_c00494{word-spacing:1.224000px;}
.wsb_c00494{word-spacing:2.088000px;}
.ws10_c00494{word-spacing:2.304000px;}
.wsc_c00494{word-spacing:2.331000px;}
.ws18_c00494{word-spacing:3.168000px;}
.ws1f_c00494{word-spacing:3.456000px;}
.wse_c00494{word-spacing:3.528000px;}
.ws26_c00494{word-spacing:4.104000px;}
.ws27_c00494{word-spacing:4.680000px;}
.ws2a_c00494{word-spacing:5.424000px;}
.ws13_c00494{word-spacing:6.048000px;}
.ws12_c00494{word-spacing:6.264000px;}
.ws15_c00494{word-spacing:6.624000px;}
.ws1a_c00494{word-spacing:8.280000px;}
.ws14_c00494{word-spacing:8.784000px;}
.wsf_c00494{word-spacing:9.504000px;}
.ws17_c00494{word-spacing:9.792000px;}
.ws21_c00494{word-spacing:11.592000px;}
.ws29_c00494{word-spacing:22.704000px;}
._0_c00494{margin-left:-2754.268200px;}
._6_c00494{margin-left:-6.624000px;}
._5_c00494{margin-left:-4.473000px;}
._1_c00494{margin-left:-2.640000px;}
._2_c00494{margin-left:-1.632000px;}
._4_c00494{width:1.368000px;}
._3_c00494{width:2.736000px;}
._7_c00494{width:5.736000px;}
.fc0_c00494{color:rgb(35,31,32);}
.fs3_c00494{font-size:36.729000px;}
.fs4_c00494{font-size:41.976000px;}
.fs0_c00494{font-size:48.000000px;}
.fs5_c00494{font-size:60.000000px;}
.fs2_c00494{font-size:63.000000px;}
.fs1_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y26_c00494{bottom:111.612300px;}
.y29_c00494{bottom:125.698950px;}
.y25_c00494{bottom:135.120300px;}
.y28_c00494{bottom:144.298950px;}
.y24_c00494{bottom:150.120300px;}
.y27_c00494{bottom:162.898950px;}
.y23_c00494{bottom:190.975500px;}
.y22_c00494{bottom:215.725500px;}
.y21_c00494{bottom:240.475500px;}
.y20_c00494{bottom:265.225500px;}
.y1f_c00494{bottom:289.975500px;}
.y1e_c00494{bottom:329.719500px;}
.y1d_c00494{bottom:354.469500px;}
.y1c_c00494{bottom:379.219500px;}
.y1b_c00494{bottom:403.969500px;}
.y1a_c00494{bottom:428.719500px;}
.y19_c00494{bottom:453.469500px;}
.y2e_c00494{bottom:476.076300px;}
.y18_c00494{bottom:478.219500px;}
.y2d_c00494{bottom:494.676300px;}
.y17_c00494{bottom:502.969500px;}
.y2c_c00494{bottom:513.276300px;}
.y16_c00494{bottom:527.719500px;}
.y2b_c00494{bottom:531.876300px;}
.y2a_c00494{bottom:550.476300px;}
.y15_c00494{bottom:552.469500px;}
.y14_c00494{bottom:577.219500px;}
.y13_c00494{bottom:601.969500px;}
.y12_c00494{bottom:626.719500px;}
.y11_c00494{bottom:666.463500px;}
.y10_c00494{bottom:691.213500px;}
.yf_c00494{bottom:715.963500px;}
.ye_c00494{bottom:740.713500px;}
.yd_c00494{bottom:765.463500px;}
.yc_c00494{bottom:790.213500px;}
.yb_c00494{bottom:814.963500px;}
.ya_c00494{bottom:839.713500px;}
.y9_c00494{bottom:864.463500px;}
.y8_c00494{bottom:904.234500px;}
.y7_c00494{bottom:925.229250px;}
.y6_c00494{bottom:946.224000px;}
.y5_c00494{bottom:967.218750px;}
.y4_c00494{bottom:988.213500px;}
.y3_c00494{bottom:1017.717450px;}
.y2_c00494{bottom:1042.467450px;}
.y1_c00494{bottom:1093.601100px;}
.h2_c00494{height:39.264000px;}
.h6_c00494{height:39.280200px;}
.h3_c00494{height:39.984000px;}
.h8_c00494{height:48.600000px;}
.h7_c00494{height:49.080000px;}
.h5_c00494{height:51.534000px;}
.h4_c00494{height:58.896000px;}
.h1_c00494{height:1135.500000px;}
.h0_c00494{height:1135.506150px;}
.w0_c00494{width:893.950200px;}
.w1_c00494{width:894.000000px;}
.x0_c00494{left:0.000000px;}
.x4_c00494{left:128.626800px;}
.x6_c00494{left:145.634700px;}
.x5_c00494{left:149.886600px;}
.x2_c00494{left:188.061900px;}
.x3_c00494{left:190.513350px;}
.x7_c00494{left:631.855800px;}
.x1_c00494{left:800.909850px;}
@media print{
.v2_c00494{vertical-align:-18.648533pt;}
.v0_c00494{vertical-align:0.000000pt;}
.v1_c00494{vertical-align:18.573867pt;}
.v3_c00494{vertical-align:21.312000pt;}
.ls7_c00494{letter-spacing:-0.832000pt;}
.ls5_c00494{letter-spacing:-0.640000pt;}
.lsa_c00494{letter-spacing:-0.533333pt;}
.lsb_c00494{letter-spacing:-0.373333pt;}
.ls3_c00494{letter-spacing:-0.298667pt;}
.lsc_c00494{letter-spacing:-0.213333pt;}
.ls4_c00494{letter-spacing:0.000000pt;}
.ls9_c00494{letter-spacing:0.192000pt;}
.ls8_c00494{letter-spacing:0.384000pt;}
.ls0_c00494{letter-spacing:0.426667pt;}
.ls1_c00494{letter-spacing:0.560000pt;}
.ls2_c00494{letter-spacing:0.640000pt;}
.ls6_c00494{letter-spacing:0.848848pt;}
.ws6_c00494{word-spacing:-15.168000pt;}
.ws5_c00494{word-spacing:-15.040000pt;}
.ws1_c00494{word-spacing:-13.888000pt;}
.ws4_c00494{word-spacing:-13.824000pt;}
.ws8_c00494{word-spacing:-12.213333pt;}
.ws9_c00494{word-spacing:-12.106667pt;}
.ws7_c00494{word-spacing:-9.685333pt;}
.ws0_c00494{word-spacing:-9.386667pt;}
.ws3_c00494{word-spacing:-8.469824pt;}
.ws2_c00494{word-spacing:-8.259944pt;}
.ws24_c00494{word-spacing:-2.560000pt;}
.ws1d_c00494{word-spacing:-1.536000pt;}
.ws16_c00494{word-spacing:-0.832000pt;}
.wsd_c00494{word-spacing:-0.728000pt;}
.ws25_c00494{word-spacing:-0.640000pt;}
.ws19_c00494{word-spacing:-0.576000pt;}
.ws22_c00494{word-spacing:-0.512000pt;}
.ws23_c00494{word-spacing:-0.128000pt;}
.wsa_c00494{word-spacing:0.000000pt;}
.ws2d_c00494{word-spacing:0.213333pt;}
.ws20_c00494{word-spacing:0.256000pt;}
.ws28_c00494{word-spacing:0.320000pt;}
.ws2c_c00494{word-spacing:0.373333pt;}
.ws1e_c00494{word-spacing:0.512000pt;}
.ws2b_c00494{word-spacing:0.533333pt;}
.ws1c_c00494{word-spacing:0.768000pt;}
.ws11_c00494{word-spacing:1.024000pt;}
.ws1b_c00494{word-spacing:1.088000pt;}
.wsb_c00494{word-spacing:1.856000pt;}
.ws10_c00494{word-spacing:2.048000pt;}
.wsc_c00494{word-spacing:2.072000pt;}
.ws18_c00494{word-spacing:2.816000pt;}
.ws1f_c00494{word-spacing:3.072000pt;}
.wse_c00494{word-spacing:3.136000pt;}
.ws26_c00494{word-spacing:3.648000pt;}
.ws27_c00494{word-spacing:4.160000pt;}
.ws2a_c00494{word-spacing:4.821333pt;}
.ws13_c00494{word-spacing:5.376000pt;}
.ws12_c00494{word-spacing:5.568000pt;}
.ws15_c00494{word-spacing:5.888000pt;}
.ws1a_c00494{word-spacing:7.360000pt;}
.ws14_c00494{word-spacing:7.808000pt;}
.wsf_c00494{word-spacing:8.448000pt;}
.ws17_c00494{word-spacing:8.704000pt;}
.ws21_c00494{word-spacing:10.304000pt;}
.ws29_c00494{word-spacing:20.181333pt;}
._0_c00494{margin-left:-2448.238400pt;}
._6_c00494{margin-left:-5.888000pt;}
._5_c00494{margin-left:-3.976000pt;}
._1_c00494{margin-left:-2.346667pt;}
._2_c00494{margin-left:-1.450667pt;}
._4_c00494{width:1.216000pt;}
._3_c00494{width:2.432000pt;}
._7_c00494{width:5.098667pt;}
.fs3_c00494{font-size:32.648000pt;}
.fs4_c00494{font-size:37.312000pt;}
.fs0_c00494{font-size:42.666667pt;}
.fs5_c00494{font-size:53.333333pt;}
.fs2_c00494{font-size:56.000000pt;}
.fs1_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y26_c00494{bottom:99.210933pt;}
.y29_c00494{bottom:111.732400pt;}
.y25_c00494{bottom:120.106933pt;}
.y28_c00494{bottom:128.265733pt;}
.y24_c00494{bottom:133.440267pt;}
.y27_c00494{bottom:144.799067pt;}
.y23_c00494{bottom:169.756000pt;}
.y22_c00494{bottom:191.756000pt;}
.y21_c00494{bottom:213.756000pt;}
.y20_c00494{bottom:235.756000pt;}
.y1f_c00494{bottom:257.756000pt;}
.y1e_c00494{bottom:293.084000pt;}
.y1d_c00494{bottom:315.084000pt;}
.y1c_c00494{bottom:337.084000pt;}
.y1b_c00494{bottom:359.084000pt;}
.y1a_c00494{bottom:381.084000pt;}
.y19_c00494{bottom:403.084000pt;}
.y2e_c00494{bottom:423.178933pt;}
.y18_c00494{bottom:425.084000pt;}
.y2d_c00494{bottom:439.712267pt;}
.y17_c00494{bottom:447.084000pt;}
.y2c_c00494{bottom:456.245600pt;}
.y16_c00494{bottom:469.084000pt;}
.y2b_c00494{bottom:472.778933pt;}
.y2a_c00494{bottom:489.312267pt;}
.y15_c00494{bottom:491.084000pt;}
.y14_c00494{bottom:513.084000pt;}
.y13_c00494{bottom:535.084000pt;}
.y12_c00494{bottom:557.084000pt;}
.y11_c00494{bottom:592.412000pt;}
.y10_c00494{bottom:614.412000pt;}
.yf_c00494{bottom:636.412000pt;}
.ye_c00494{bottom:658.412000pt;}
.yd_c00494{bottom:680.412000pt;}
.yc_c00494{bottom:702.412000pt;}
.yb_c00494{bottom:724.412000pt;}
.ya_c00494{bottom:746.412000pt;}
.y9_c00494{bottom:768.412000pt;}
.y8_c00494{bottom:803.764000pt;}
.y7_c00494{bottom:822.426000pt;}
.y6_c00494{bottom:841.088000pt;}
.y5_c00494{bottom:859.750000pt;}
.y4_c00494{bottom:878.412000pt;}
.y3_c00494{bottom:904.637733pt;}
.y2_c00494{bottom:926.637733pt;}
.y1_c00494{bottom:972.089867pt;}
.h2_c00494{height:34.901333pt;}
.h6_c00494{height:34.915733pt;}
.h3_c00494{height:35.541333pt;}
.h8_c00494{height:43.200000pt;}
.h7_c00494{height:43.626667pt;}
.h5_c00494{height:45.808000pt;}
.h4_c00494{height:52.352000pt;}
.h1_c00494{height:1009.333333pt;}
.h0_c00494{height:1009.338800pt;}
.w0_c00494{width:794.622400pt;}
.w1_c00494{width:794.666667pt;}
.x0_c00494{left:0.000000pt;}
.x4_c00494{left:114.334933pt;}
.x6_c00494{left:129.453067pt;}
.x5_c00494{left:133.232533pt;}
.x2_c00494{left:167.166133pt;}
.x3_c00494{left:169.345200pt;}
.x7_c00494{left:561.649600pt;}
.x1_c00494{left:711.919867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_354e518e39d7d1f1e165b5ae.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.067000;font-style:normal;font-weight:normal;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_2ffc1f18fbf54c594f640ba2.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls2_c00495{letter-spacing:-0.600000px;}
.ls3_c00495{letter-spacing:-0.420000px;}
.ls0_c00495{letter-spacing:-0.240000px;}
.ls1_c00495{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00495{word-spacing:-13.740000px;}
.ws2_c00495{word-spacing:-13.620000px;}
.ws5_c00495{word-spacing:-0.180000px;}
.ws3_c00495{word-spacing:0.000000px;}
.ws7_c00495{word-spacing:0.240000px;}
.ws6_c00495{word-spacing:0.420000px;}
.ws4_c00495{word-spacing:0.600000px;}
.ws0_c00495{word-spacing:1574.107200px;}
._2_c00495{margin-left:-3.408000px;}
._3_c00495{margin-left:-2.088000px;}
._1_c00495{margin-left:-1.056000px;}
._0_c00495{width:1.152000px;}
.fc0_c00495{color:rgb(35,31,32);}
.fs0_c00495{font-size:48.000000px;}
.fs1_c00495{font-size:60.000000px;}
.y0_c00495{bottom:0.000000px;}
.y4_c00495{bottom:138.454800px;}
.y3_c00495{bottom:157.054800px;}
.y2_c00495{bottom:175.654800px;}
.y8_c00495{bottom:516.887850px;}
.y7_c00495{bottom:535.487850px;}
.y6_c00495{bottom:554.087850px;}
.y5_c00495{bottom:572.687850px;}
.y1_c00495{bottom:1093.601100px;}
.h2_c00495{height:39.264000px;}
.h4_c00495{height:48.600000px;}
.h3_c00495{height:49.080000px;}
.h1_c00495{height:1135.500000px;}
.h0_c00495{height:1135.506150px;}
.w0_c00495{width:893.950200px;}
.w1_c00495{width:894.000000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:77.603100px;}
.x2_c00495{left:310.732350px;}
.x4_c00495{left:423.302850px;}
.x3_c00495{left:552.547950px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls2_c00495{letter-spacing:-0.533333pt;}
.ls3_c00495{letter-spacing:-0.373333pt;}
.ls0_c00495{letter-spacing:-0.213333pt;}
.ls1_c00495{letter-spacing:0.000000pt;}
.ws1_c00495{word-spacing:-12.213333pt;}
.ws2_c00495{word-spacing:-12.106667pt;}
.ws5_c00495{word-spacing:-0.160000pt;}
.ws3_c00495{word-spacing:0.000000pt;}
.ws7_c00495{word-spacing:0.213333pt;}
.ws6_c00495{word-spacing:0.373333pt;}
.ws4_c00495{word-spacing:0.533333pt;}
.ws0_c00495{word-spacing:1399.206400pt;}
._2_c00495{margin-left:-3.029333pt;}
._3_c00495{margin-left:-1.856000pt;}
._1_c00495{margin-left:-0.938667pt;}
._0_c00495{width:1.024000pt;}
.fs0_c00495{font-size:42.666667pt;}
.fs1_c00495{font-size:53.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y4_c00495{bottom:123.070933pt;}
.y3_c00495{bottom:139.604267pt;}
.y2_c00495{bottom:156.137600pt;}
.y8_c00495{bottom:459.455867pt;}
.y7_c00495{bottom:475.989200pt;}
.y6_c00495{bottom:492.522533pt;}
.y5_c00495{bottom:509.055867pt;}
.y1_c00495{bottom:972.089867pt;}
.h2_c00495{height:34.901333pt;}
.h4_c00495{height:43.200000pt;}
.h3_c00495{height:43.626667pt;}
.h1_c00495{height:1009.333333pt;}
.h0_c00495{height:1009.338800pt;}
.w0_c00495{width:794.622400pt;}
.w1_c00495{width:794.666667pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:68.980533pt;}
.x2_c00495{left:276.206533pt;}
.x4_c00495{left:376.269200pt;}
.x3_c00495{left:491.153733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec91e303dff01b47118972ad.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.082000;font-style:normal;font-weight:normal;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_acfc0f23e6929fa070c64e0b.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.067000;font-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_c00496{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:23.904000px;}
.lsa_c00496{letter-spacing:-1.800000px;}
.ls6_c00496{letter-spacing:-1.728000px;}
.ls9_c00496{letter-spacing:-1.140000px;}
.ls8_c00496{letter-spacing:-0.420000px;}
.ls7_c00496{letter-spacing:-0.240000px;}
.ls4_c00496{letter-spacing:0.000000px;}
.ls5_c00496{letter-spacing:0.216000px;}
.ls0_c00496{letter-spacing:0.480000px;}
.ls1_c00496{letter-spacing:0.720000px;}
.ls2_c00496{letter-spacing:1.080000px;}
.ls3_c00496{letter-spacing:1.656000px;}
.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;}
}
.ws3_c00496{word-spacing:-17.424000px;}
.ws2_c00496{word-spacing:-17.064000px;}
.ws1_c00496{word-spacing:-16.704000px;}
.ws6_c00496{word-spacing:-13.320000px;}
.ws0_c00496{word-spacing:-10.896000px;}
.ws4_c00496{word-spacing:-9.612504px;}
.ws5_c00496{word-spacing:-9.168000px;}
.ws15_c00496{word-spacing:-3.312000px;}
.ws16_c00496{word-spacing:-2.232000px;}
.ws17_c00496{word-spacing:-1.872000px;}
.wsc_c00496{word-spacing:-1.008000px;}
.ws1a_c00496{word-spacing:-0.936000px;}
.ws11_c00496{word-spacing:-0.792000px;}
.wsb_c00496{word-spacing:-0.720000px;}
.ws8_c00496{word-spacing:-0.648000px;}
.ws9_c00496{word-spacing:-0.360000px;}
.ws7_c00496{word-spacing:0.000000px;}
.ws1b_c00496{word-spacing:0.240000px;}
.ws13_c00496{word-spacing:0.576000px;}
.ws1c_c00496{word-spacing:1.140000px;}
.wse_c00496{word-spacing:1.368000px;}
.ws1d_c00496{word-spacing:1.800000px;}
.wsf_c00496{word-spacing:1.872000px;}
.ws10_c00496{word-spacing:2.088000px;}
.ws14_c00496{word-spacing:2.808000px;}
.ws18_c00496{word-spacing:5.328000px;}
.ws19_c00496{word-spacing:5.400000px;}
.ws12_c00496{word-spacing:5.472000px;}
.wsa_c00496{word-spacing:6.264000px;}
.wsd_c00496{word-spacing:6.912000px;}
._0_c00496{margin-left:-2754.940800px;}
._6_c00496{margin-left:-7.512000px;}
._3_c00496{margin-left:-5.448000px;}
._1_c00496{margin-left:-2.640000px;}
._2_c00496{margin-left:-1.632000px;}
._4_c00496{width:1.008000px;}
._5_c00496{width:2.328000px;}
.fc0_c00496{color:rgb(35,31,32);}
.fs2_c00496{font-size:41.976000px;}
.fs0_c00496{font-size:48.000000px;}
.fs3_c00496{font-size:60.000000px;}
.fs1_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y18_c00496{bottom:111.616200px;}
.y17_c00496{bottom:154.732200px;}
.y16_c00496{bottom:179.500200px;}
.y15_c00496{bottom:204.250200px;}
.y14_c00496{bottom:229.000200px;}
.y13_c00496{bottom:253.750200px;}
.y12_c00496{bottom:293.494200px;}
.y11_c00496{bottom:318.244200px;}
.y10_c00496{bottom:342.994200px;}
.yf_c00496{bottom:367.744200px;}
.ye_c00496{bottom:392.494200px;}
.yd_c00496{bottom:417.244200px;}
.yc_c00496{bottom:441.994200px;}
.yb_c00496{bottom:481.738200px;}
.ya_c00496{bottom:506.488200px;}
.y9_c00496{bottom:531.238200px;}
.y8_c00496{bottom:555.988200px;}
.y7_c00496{bottom:580.738200px;}
.y6_c00496{bottom:605.488200px;}
.y5_c00496{bottom:630.238200px;}
.y4_c00496{bottom:669.982200px;}
.y3_c00496{bottom:694.732200px;}
.y2_c00496{bottom:719.482200px;}
.y24_c00496{bottom:755.174400px;}
.y23_c00496{bottom:773.774400px;}
.y22_c00496{bottom:792.374400px;}
.y21_c00496{bottom:810.974400px;}
.y20_c00496{bottom:829.574400px;}
.y1f_c00496{bottom:848.174400px;}
.y1e_c00496{bottom:883.087950px;}
.y1d_c00496{bottom:901.687950px;}
.y1c_c00496{bottom:920.287950px;}
.y1b_c00496{bottom:938.887950px;}
.y1a_c00496{bottom:957.487950px;}
.y19_c00496{bottom:976.087950px;}
.y1_c00496{bottom:1093.601100px;}
.h2_c00496{height:39.264000px;}
.h3_c00496{height:39.984000px;}
.h6_c00496{height:48.600000px;}
.h5_c00496{height:49.080000px;}
.h4_c00496{height:58.896000px;}
.h1_c00496{height:1135.500000px;}
.h0_c00496{height:1135.506150px;}
.w0_c00496{width:893.950200px;}
.w1_c00496{width:894.000000px;}
.x0_c00496{left:0.000000px;}
.x4_c00496{left:128.626800px;}
.x2_c00496{left:188.061900px;}
.x3_c00496{left:190.513350px;}
.x5_c00496{left:627.334350px;}
.x1_c00496{left:800.862000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:21.248000pt;}
.lsa_c00496{letter-spacing:-1.600000pt;}
.ls6_c00496{letter-spacing:-1.536000pt;}
.ls9_c00496{letter-spacing:-1.013333pt;}
.ls8_c00496{letter-spacing:-0.373333pt;}
.ls7_c00496{letter-spacing:-0.213333pt;}
.ls4_c00496{letter-spacing:0.000000pt;}
.ls5_c00496{letter-spacing:0.192000pt;}
.ls0_c00496{letter-spacing:0.426667pt;}
.ls1_c00496{letter-spacing:0.640000pt;}
.ls2_c00496{letter-spacing:0.960000pt;}
.ls3_c00496{letter-spacing:1.472000pt;}
.ws3_c00496{word-spacing:-15.488000pt;}
.ws2_c00496{word-spacing:-15.168000pt;}
.ws1_c00496{word-spacing:-14.848000pt;}
.ws6_c00496{word-spacing:-11.840000pt;}
.ws0_c00496{word-spacing:-9.685333pt;}
.ws4_c00496{word-spacing:-8.544448pt;}
.ws5_c00496{word-spacing:-8.149333pt;}
.ws15_c00496{word-spacing:-2.944000pt;}
.ws16_c00496{word-spacing:-1.984000pt;}
.ws17_c00496{word-spacing:-1.664000pt;}
.wsc_c00496{word-spacing:-0.896000pt;}
.ws1a_c00496{word-spacing:-0.832000pt;}
.ws11_c00496{word-spacing:-0.704000pt;}
.wsb_c00496{word-spacing:-0.640000pt;}
.ws8_c00496{word-spacing:-0.576000pt;}
.ws9_c00496{word-spacing:-0.320000pt;}
.ws7_c00496{word-spacing:0.000000pt;}
.ws1b_c00496{word-spacing:0.213333pt;}
.ws13_c00496{word-spacing:0.512000pt;}
.ws1c_c00496{word-spacing:1.013333pt;}
.wse_c00496{word-spacing:1.216000pt;}
.ws1d_c00496{word-spacing:1.600000pt;}
.wsf_c00496{word-spacing:1.664000pt;}
.ws10_c00496{word-spacing:1.856000pt;}
.ws14_c00496{word-spacing:2.496000pt;}
.ws18_c00496{word-spacing:4.736000pt;}
.ws19_c00496{word-spacing:4.800000pt;}
.ws12_c00496{word-spacing:4.864000pt;}
.wsa_c00496{word-spacing:5.568000pt;}
.wsd_c00496{word-spacing:6.144000pt;}
._0_c00496{margin-left:-2448.836267pt;}
._6_c00496{margin-left:-6.677333pt;}
._3_c00496{margin-left:-4.842667pt;}
._1_c00496{margin-left:-2.346667pt;}
._2_c00496{margin-left:-1.450667pt;}
._4_c00496{width:0.896000pt;}
._5_c00496{width:2.069333pt;}
.fs2_c00496{font-size:37.312000pt;}
.fs0_c00496{font-size:42.666667pt;}
.fs3_c00496{font-size:53.333333pt;}
.fs1_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y18_c00496{bottom:99.214400pt;}
.y17_c00496{bottom:137.539733pt;}
.y16_c00496{bottom:159.555733pt;}
.y15_c00496{bottom:181.555733pt;}
.y14_c00496{bottom:203.555733pt;}
.y13_c00496{bottom:225.555733pt;}
.y12_c00496{bottom:260.883733pt;}
.y11_c00496{bottom:282.883733pt;}
.y10_c00496{bottom:304.883733pt;}
.yf_c00496{bottom:326.883733pt;}
.ye_c00496{bottom:348.883733pt;}
.yd_c00496{bottom:370.883733pt;}
.yc_c00496{bottom:392.883733pt;}
.yb_c00496{bottom:428.211733pt;}
.ya_c00496{bottom:450.211733pt;}
.y9_c00496{bottom:472.211733pt;}
.y8_c00496{bottom:494.211733pt;}
.y7_c00496{bottom:516.211733pt;}
.y6_c00496{bottom:538.211733pt;}
.y5_c00496{bottom:560.211733pt;}
.y4_c00496{bottom:595.539733pt;}
.y3_c00496{bottom:617.539733pt;}
.y2_c00496{bottom:639.539733pt;}
.y24_c00496{bottom:671.266133pt;}
.y23_c00496{bottom:687.799467pt;}
.y22_c00496{bottom:704.332800pt;}
.y21_c00496{bottom:720.866133pt;}
.y20_c00496{bottom:737.399467pt;}
.y1f_c00496{bottom:753.932800pt;}
.y1e_c00496{bottom:784.967067pt;}
.y1d_c00496{bottom:801.500400pt;}
.y1c_c00496{bottom:818.033733pt;}
.y1b_c00496{bottom:834.567067pt;}
.y1a_c00496{bottom:851.100400pt;}
.y19_c00496{bottom:867.633733pt;}
.y1_c00496{bottom:972.089867pt;}
.h2_c00496{height:34.901333pt;}
.h3_c00496{height:35.541333pt;}
.h6_c00496{height:43.200000pt;}
.h5_c00496{height:43.626667pt;}
.h4_c00496{height:52.352000pt;}
.h1_c00496{height:1009.333333pt;}
.h0_c00496{height:1009.338800pt;}
.w0_c00496{width:794.622400pt;}
.w1_c00496{width:794.666667pt;}
.x0_c00496{left:0.000000pt;}
.x4_c00496{left:114.334933pt;}
.x2_c00496{left:167.166133pt;}
.x3_c00496{left:169.345200pt;}
.x5_c00496{left:557.630533pt;}
.x1_c00496{left:711.877333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22ebbc4ccab70081e04affbc.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_ea2db092226e2221286eeabf.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00497{vertical-align:-23.976000px;}
.v0_c00497{vertical-align:0.000000px;}
.v1_c00497{vertical-align:23.976000px;}
.ls5_c00497{letter-spacing:-4.800000px;}
.ls6_c00497{letter-spacing:-1.728000px;}
.ls4_c00497{letter-spacing:-1.080000px;}
.ls3_c00497{letter-spacing:-0.792000px;}
.ls2_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:1.078200px;}
.ls1_c00497{letter-spacing:8.607000px;}
.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:-15.552000px;}
.ws5_c00497{word-spacing:-12.366000px;}
.ws6_c00497{word-spacing:-12.258000px;}
.ws1_c00497{word-spacing:-9.528552px;}
.ws4_c00497{word-spacing:-9.168000px;}
.ws3_c00497{word-spacing:-6.096000px;}
.wsf_c00497{word-spacing:-2.304000px;}
.wsd_c00497{word-spacing:-1.512000px;}
.wse_c00497{word-spacing:-1.224000px;}
.ws7_c00497{word-spacing:0.000000px;}
.ws10_c00497{word-spacing:0.792000px;}
.wsa_c00497{word-spacing:0.864000px;}
.wsc_c00497{word-spacing:1.440000px;}
.wsb_c00497{word-spacing:2.232000px;}
.ws9_c00497{word-spacing:4.176000px;}
.ws11_c00497{word-spacing:5.760000px;}
.ws8_c00497{word-spacing:27.792000px;}
.ws0_c00497{word-spacing:1572.763200px;}
._5_c00497{margin-left:-5.664000px;}
._2_c00497{margin-left:-3.867408px;}
._0_c00497{margin-left:-1.776000px;}
._1_c00497{width:1.104000px;}
._4_c00497{width:2.208000px;}
._3_c00497{width:4.800000px;}
.fc0_c00497{color:rgb(35,31,32);}
.fs2_c00497{font-size:41.976000px;}
.fs0_c00497{font-size:48.000000px;}
.fs3_c00497{font-size:54.000000px;}
.fs1_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y9_c00497{bottom:111.616350px;}
.yd_c00497{bottom:150.399000px;}
.yc_c00497{bottom:165.397500px;}
.yb_c00497{bottom:516.068250px;}
.ya_c00497{bottom:531.066750px;}
.y8_c00497{bottom:889.715550px;}
.y7_c00497{bottom:914.465550px;}
.y6_c00497{bottom:939.215550px;}
.y5_c00497{bottom:963.965550px;}
.y4_c00497{bottom:988.715550px;}
.y3_c00497{bottom:1013.465550px;}
.y2_c00497{bottom:1042.467450px;}
.y1_c00497{bottom:1093.601100px;}
.h2_c00497{height:39.264000px;}
.h4_c00497{height:43.740000px;}
.h5_c00497{height:44.172000px;}
.h3_c00497{height:58.896000px;}
.h1_c00497{height:1135.500000px;}
.h0_c00497{height:1135.506150px;}
.w0_c00497{width:893.950200px;}
.w1_c00497{width:894.000000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:77.603100px;}
.x2_c00497{left:98.862900px;}
.x4_c00497{left:310.651350px;}
.x3_c00497{left:541.067700px;}
@media print{
.v2_c00497{vertical-align:-21.312000pt;}
.v0_c00497{vertical-align:0.000000pt;}
.v1_c00497{vertical-align:21.312000pt;}
.ls5_c00497{letter-spacing:-4.266667pt;}
.ls6_c00497{letter-spacing:-1.536000pt;}
.ls4_c00497{letter-spacing:-0.960000pt;}
.ls3_c00497{letter-spacing:-0.704000pt;}
.ls2_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.958400pt;}
.ls1_c00497{letter-spacing:7.650667pt;}
.ws2_c00497{word-spacing:-13.824000pt;}
.ws5_c00497{word-spacing:-10.992000pt;}
.ws6_c00497{word-spacing:-10.896000pt;}
.ws1_c00497{word-spacing:-8.469824pt;}
.ws4_c00497{word-spacing:-8.149333pt;}
.ws3_c00497{word-spacing:-5.418667pt;}
.wsf_c00497{word-spacing:-2.048000pt;}
.wsd_c00497{word-spacing:-1.344000pt;}
.wse_c00497{word-spacing:-1.088000pt;}
.ws7_c00497{word-spacing:0.000000pt;}
.ws10_c00497{word-spacing:0.704000pt;}
.wsa_c00497{word-spacing:0.768000pt;}
.wsc_c00497{word-spacing:1.280000pt;}
.wsb_c00497{word-spacing:1.984000pt;}
.ws9_c00497{word-spacing:3.712000pt;}
.ws11_c00497{word-spacing:5.120000pt;}
.ws8_c00497{word-spacing:24.704000pt;}
.ws0_c00497{word-spacing:1398.011733pt;}
._5_c00497{margin-left:-5.034667pt;}
._2_c00497{margin-left:-3.437696pt;}
._0_c00497{margin-left:-1.578667pt;}
._1_c00497{width:0.981333pt;}
._4_c00497{width:1.962667pt;}
._3_c00497{width:4.266667pt;}
.fs2_c00497{font-size:37.312000pt;}
.fs0_c00497{font-size:42.666667pt;}
.fs3_c00497{font-size:48.000000pt;}
.fs1_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y9_c00497{bottom:99.214533pt;}
.yd_c00497{bottom:133.688000pt;}
.yc_c00497{bottom:147.020000pt;}
.yb_c00497{bottom:458.727333pt;}
.ya_c00497{bottom:472.059333pt;}
.y8_c00497{bottom:790.858267pt;}
.y7_c00497{bottom:812.858267pt;}
.y6_c00497{bottom:834.858267pt;}
.y5_c00497{bottom:856.858267pt;}
.y4_c00497{bottom:878.858267pt;}
.y3_c00497{bottom:900.858267pt;}
.y2_c00497{bottom:926.637733pt;}
.y1_c00497{bottom:972.089867pt;}
.h2_c00497{height:34.901333pt;}
.h4_c00497{height:38.880000pt;}
.h5_c00497{height:39.264000pt;}
.h3_c00497{height:52.352000pt;}
.h1_c00497{height:1009.333333pt;}
.h0_c00497{height:1009.338800pt;}
.w0_c00497{width:794.622400pt;}
.w1_c00497{width:794.666667pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:68.980533pt;}
.x2_c00497{left:87.878133pt;}
.x4_c00497{left:276.134533pt;}
.x3_c00497{left:480.949067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3986a31b521533efef62b946.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_0ebf60acc9194081f896b0d7.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.067000;font-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_c00498{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.v1_c00498{vertical-align:23.976000px;}
.ls8_c00498{letter-spacing:-5.292000px;}
.ls7_c00498{letter-spacing:-1.728000px;}
.ls5_c00498{letter-spacing:-0.504000px;}
.ls1_c00498{letter-spacing:-0.432000px;}
.ls6_c00498{letter-spacing:-0.288000px;}
.ls3_c00498{letter-spacing:-0.216000px;}
.ls2_c00498{letter-spacing:0.000000px;}
.ls4_c00498{letter-spacing:0.377784px;}
.ls0_c00498{letter-spacing:0.480000px;}
.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;}
}
.ws3_c00498{word-spacing:-16.344000px;}
.ws1_c00498{word-spacing:-16.128000px;}
.ws5_c00498{word-spacing:-12.366000px;}
.ws6_c00498{word-spacing:-12.258000px;}
.ws0_c00498{word-spacing:-10.464000px;}
.ws2_c00498{word-spacing:-9.906336px;}
.ws4_c00498{word-spacing:-9.168000px;}
.wsb_c00498{word-spacing:-3.240000px;}
.wsc_c00498{word-spacing:-2.448000px;}
.wsd_c00498{word-spacing:-1.944000px;}
.wsf_c00498{word-spacing:-0.216000px;}
.ws7_c00498{word-spacing:0.000000px;}
.wse_c00498{word-spacing:0.072000px;}
.ws9_c00498{word-spacing:0.792000px;}
.wsa_c00498{word-spacing:1.296000px;}
.ws10_c00498{word-spacing:5.292000px;}
.ws8_c00498{word-spacing:20.160000px;}
._0_c00498{margin-left:-2754.076200px;}
._6_c00498{margin-left:-6.264000px;}
._5_c00498{margin-left:-5.010000px;}
._1_c00498{margin-left:-2.640000px;}
._2_c00498{margin-left:-1.632000px;}
._3_c00498{width:1.056000px;}
._4_c00498{width:2.415600px;}
.fc0_c00498{color:rgb(35,31,32);}
.fs2_c00498{font-size:41.976000px;}
.fs0_c00498{font-size:48.000000px;}
.fs3_c00498{font-size:54.000000px;}
.fs1_c00498{font-size:72.000000px;}
.y0_c00498{bottom:0.000000px;}
.y9_c00498{bottom:111.616350px;}
.yd_c00498{bottom:150.399000px;}
.yc_c00498{bottom:165.397500px;}
.yb_c00498{bottom:516.068250px;}
.ya_c00498{bottom:531.066750px;}
.y8_c00498{bottom:889.715550px;}
.y7_c00498{bottom:914.465550px;}
.y6_c00498{bottom:939.215550px;}
.y5_c00498{bottom:963.965550px;}
.y4_c00498{bottom:988.715550px;}
.y3_c00498{bottom:1013.465550px;}
.y2_c00498{bottom:1042.467450px;}
.y1_c00498{bottom:1093.601100px;}
.h2_c00498{height:39.264000px;}
.h3_c00498{height:39.984000px;}
.h5_c00498{height:43.740000px;}
.h6_c00498{height:44.172000px;}
.h4_c00498{height:58.896000px;}
.h1_c00498{height:1135.500000px;}
.h0_c00498{height:1135.506150px;}
.w0_c00498{width:893.950200px;}
.w1_c00498{width:894.000000px;}
.x0_c00498{left:0.000000px;}
.x4_c00498{left:128.626800px;}
.x5_c00498{left:149.886600px;}
.x2_c00498{left:188.061900px;}
.x3_c00498{left:190.513350px;}
.x7_c00498{left:361.674900px;}
.x6_c00498{left:592.091250px;}
.x1_c00498{left:800.561850px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:21.312000pt;}
.ls8_c00498{letter-spacing:-4.704000pt;}
.ls7_c00498{letter-spacing:-1.536000pt;}
.ls5_c00498{letter-spacing:-0.448000pt;}
.ls1_c00498{letter-spacing:-0.384000pt;}
.ls6_c00498{letter-spacing:-0.256000pt;}
.ls3_c00498{letter-spacing:-0.192000pt;}
.ls2_c00498{letter-spacing:0.000000pt;}
.ls4_c00498{letter-spacing:0.335808pt;}
.ls0_c00498{letter-spacing:0.426667pt;}
.ws3_c00498{word-spacing:-14.528000pt;}
.ws1_c00498{word-spacing:-14.336000pt;}
.ws5_c00498{word-spacing:-10.992000pt;}
.ws6_c00498{word-spacing:-10.896000pt;}
.ws0_c00498{word-spacing:-9.301333pt;}
.ws2_c00498{word-spacing:-8.805632pt;}
.ws4_c00498{word-spacing:-8.149333pt;}
.wsb_c00498{word-spacing:-2.880000pt;}
.wsc_c00498{word-spacing:-2.176000pt;}
.wsd_c00498{word-spacing:-1.728000pt;}
.wsf_c00498{word-spacing:-0.192000pt;}
.ws7_c00498{word-spacing:0.000000pt;}
.wse_c00498{word-spacing:0.064000pt;}
.ws9_c00498{word-spacing:0.704000pt;}
.wsa_c00498{word-spacing:1.152000pt;}
.ws10_c00498{word-spacing:4.704000pt;}
.ws8_c00498{word-spacing:17.920000pt;}
._0_c00498{margin-left:-2448.067733pt;}
._6_c00498{margin-left:-5.568000pt;}
._5_c00498{margin-left:-4.453333pt;}
._1_c00498{margin-left:-2.346667pt;}
._2_c00498{margin-left:-1.450667pt;}
._3_c00498{width:0.938667pt;}
._4_c00498{width:2.147200pt;}
.fs2_c00498{font-size:37.312000pt;}
.fs0_c00498{font-size:42.666667pt;}
.fs3_c00498{font-size:48.000000pt;}
.fs1_c00498{font-size:64.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.y9_c00498{bottom:99.214533pt;}
.yd_c00498{bottom:133.688000pt;}
.yc_c00498{bottom:147.020000pt;}
.yb_c00498{bottom:458.727333pt;}
.ya_c00498{bottom:472.059333pt;}
.y8_c00498{bottom:790.858267pt;}
.y7_c00498{bottom:812.858267pt;}
.y6_c00498{bottom:834.858267pt;}
.y5_c00498{bottom:856.858267pt;}
.y4_c00498{bottom:878.858267pt;}
.y3_c00498{bottom:900.858267pt;}
.y2_c00498{bottom:926.637733pt;}
.y1_c00498{bottom:972.089867pt;}
.h2_c00498{height:34.901333pt;}
.h3_c00498{height:35.541333pt;}
.h5_c00498{height:38.880000pt;}
.h6_c00498{height:39.264000pt;}
.h4_c00498{height:52.352000pt;}
.h1_c00498{height:1009.333333pt;}
.h0_c00498{height:1009.338800pt;}
.w0_c00498{width:794.622400pt;}
.w1_c00498{width:794.666667pt;}
.x0_c00498{left:0.000000pt;}
.x4_c00498{left:114.334933pt;}
.x5_c00498{left:133.232533pt;}
.x2_c00498{left:167.166133pt;}
.x3_c00498{left:169.345200pt;}
.x7_c00498{left:321.488800pt;}
.x6_c00498{left:526.303333pt;}
.x1_c00498{left:711.610533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22ebbc4ccab70081e04affbc.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.178000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_a8bc2e7b3bd490a5ef163095.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:23.976000px;}
.ls7_c00499{letter-spacing:-5.292000px;}
.ls5_c00499{letter-spacing:-1.728000px;}
.ls3_c00499{letter-spacing:-0.720000px;}
.ls6_c00499{letter-spacing:-0.648000px;}
.ls4_c00499{letter-spacing:-0.240000px;}
.ls2_c00499{letter-spacing:-0.209880px;}
.ls1_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:1.695600px;}
.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;}
}
.ws2_c00499{word-spacing:-16.344000px;}
.ws5_c00499{word-spacing:-12.366000px;}
.ws3_c00499{word-spacing:-10.656000px;}
.ws1_c00499{word-spacing:-9.318672px;}
.ws4_c00499{word-spacing:-9.168000px;}
.wsb_c00499{word-spacing:-1.800000px;}
.wsc_c00499{word-spacing:-1.080000px;}
.ws6_c00499{word-spacing:0.000000px;}
.ws9_c00499{word-spacing:0.144000px;}
.wsa_c00499{word-spacing:0.216000px;}
.wsd_c00499{word-spacing:0.648000px;}
.wse_c00499{word-spacing:5.292000px;}
.ws8_c00499{word-spacing:5.832000px;}
.ws7_c00499{word-spacing:23.040000px;}
.ws0_c00499{word-spacing:1574.347200px;}
._4_c00499{margin-left:-5.184000px;}
._2_c00499{margin-left:-3.600000px;}
._0_c00499{margin-left:-1.776000px;}
._1_c00499{width:1.008000px;}
._3_c00499{width:2.208000px;}
.fc0_c00499{color:rgb(35,31,32);}
.fs2_c00499{font-size:41.976000px;}
.fs0_c00499{font-size:48.000000px;}
.fs3_c00499{font-size:54.000000px;}
.fs1_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y8_c00499{bottom:111.616350px;}
.yc_c00499{bottom:150.399000px;}
.yb_c00499{bottom:165.397500px;}
.ya_c00499{bottom:526.698300px;}
.y9_c00499{bottom:541.696800px;}
.y7_c00499{bottom:903.717450px;}
.y6_c00499{bottom:928.467450px;}
.y5_c00499{bottom:953.217450px;}
.y4_c00499{bottom:977.967450px;}
.y3_c00499{bottom:1002.717450px;}
.y2_c00499{bottom:1042.467450px;}
.y1_c00499{bottom:1093.601100px;}
.h2_c00499{height:39.264000px;}
.h4_c00499{height:43.740000px;}
.h5_c00499{height:44.172000px;}
.h3_c00499{height:58.896000px;}
.h1_c00499{height:1135.500000px;}
.h0_c00499{height:1135.506150px;}
.w0_c00499{width:893.950200px;}
.w1_c00499{width:894.000000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:77.603100px;}
.x2_c00499{left:98.862900px;}
.x4_c00499{left:310.651350px;}
.x3_c00499{left:541.067700px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:21.312000pt;}
.ls7_c00499{letter-spacing:-4.704000pt;}
.ls5_c00499{letter-spacing:-1.536000pt;}
.ls3_c00499{letter-spacing:-0.640000pt;}
.ls6_c00499{letter-spacing:-0.576000pt;}
.ls4_c00499{letter-spacing:-0.213333pt;}
.ls2_c00499{letter-spacing:-0.186560pt;}
.ls1_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:1.507200pt;}
.ws2_c00499{word-spacing:-14.528000pt;}
.ws5_c00499{word-spacing:-10.992000pt;}
.ws3_c00499{word-spacing:-9.472000pt;}
.ws1_c00499{word-spacing:-8.283264pt;}
.ws4_c00499{word-spacing:-8.149333pt;}
.wsb_c00499{word-spacing:-1.600000pt;}
.wsc_c00499{word-spacing:-0.960000pt;}
.ws6_c00499{word-spacing:0.000000pt;}
.ws9_c00499{word-spacing:0.128000pt;}
.wsa_c00499{word-spacing:0.192000pt;}
.wsd_c00499{word-spacing:0.576000pt;}
.wse_c00499{word-spacing:4.704000pt;}
.ws8_c00499{word-spacing:5.184000pt;}
.ws7_c00499{word-spacing:20.480000pt;}
.ws0_c00499{word-spacing:1399.419733pt;}
._4_c00499{margin-left:-4.608000pt;}
._2_c00499{margin-left:-3.200000pt;}
._0_c00499{margin-left:-1.578667pt;}
._1_c00499{width:0.896000pt;}
._3_c00499{width:1.962667pt;}
.fs2_c00499{font-size:37.312000pt;}
.fs0_c00499{font-size:42.666667pt;}
.fs3_c00499{font-size:48.000000pt;}
.fs1_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y8_c00499{bottom:99.214533pt;}
.yc_c00499{bottom:133.688000pt;}
.yb_c00499{bottom:147.020000pt;}
.ya_c00499{bottom:468.176267pt;}
.y9_c00499{bottom:481.508267pt;}
.y7_c00499{bottom:803.304400pt;}
.y6_c00499{bottom:825.304400pt;}
.y5_c00499{bottom:847.304400pt;}
.y4_c00499{bottom:869.304400pt;}
.y3_c00499{bottom:891.304400pt;}
.y2_c00499{bottom:926.637733pt;}
.y1_c00499{bottom:972.089867pt;}
.h2_c00499{height:34.901333pt;}
.h4_c00499{height:38.880000pt;}
.h5_c00499{height:39.264000pt;}
.h3_c00499{height:52.352000pt;}
.h1_c00499{height:1009.333333pt;}
.h0_c00499{height:1009.338800pt;}
.w0_c00499{width:794.622400pt;}
.w1_c00499{width:794.666667pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:68.980533pt;}
.x2_c00499{left:87.878133pt;}
.x4_c00499{left:276.134533pt;}
.x3_c00499{left:480.949067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_298d8945629ce08f25273472.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.178000;font-style:normal;font-weight:normal;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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.178000;font-style:normal;font-weight:normal;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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.082000;font-style:normal;font-weight:normal;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_dcb0e8e170fe355bb9aa289f.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.067000;font-style:normal;font-weight:normal;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_5a08066555da6461b2b04462.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.178000;font-style:normal;font-weight:normal;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_21cd58e56621c658637c2590.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.067000;font-style:normal;font-weight: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_86b8286e4b7612a72d222d23.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.178000;font-style:normal;font-weight: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_6e36d6258e144c5ac0c98874.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.082000;font-style:normal;font-weight: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_5f9e51f29393ea3deaf06e22.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.082000;font-style:normal;font-weight: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_a34f4ae27af29a8f59746929.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.955000;font-style:normal;font-weight: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_5a08066555da6461b2b04462.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00001;src:url('chunks/assets/font_def3918aea17097b9f85ff5b.woff2')format("woff");}.ffd_c00001{font-family:ffd_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:ffe_c00001;src:url('chunks/assets/font_1fca753098889adee4ee21d1.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00001;src:url('chunks/assets/font_3b01c743125c51eb75c8fe4a.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00001;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00001;src:url('chunks/assets/font_af52f846dffe59ae453de5b7.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00001;src:url('chunks/assets/font_54ed6e414ad8dc4c9fa0c93d.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_d0888892ef86e719287354d9.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00001;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00001;src:url('chunks/assets/font_54ed6e414ad8dc4c9fa0c93d.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00001;src:url('chunks/assets/font_52983d8f337aa8bfa3649c95.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00001;src:url('chunks/assets/font_a6ae0f5a5d0c9be753ab9f9e.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00001;src:url('chunks/assets/font_5e7f941190a1c739e893c31a.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00001;src:url('chunks/assets/font_92dcd0ed3b0a5b5b9a3b5548.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00001;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_a7451d82fc59d3cc972a48c0.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00001;src:url('chunks/assets/font_a6ae0f5a5d0c9be753ab9f9e.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00001;src:url('chunks/assets/font_5e7f941190a1c739e893c31a.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00001;src:url('chunks/assets/font_0e0df70cb778bb67e9569eb1.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00001;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00001;src:url('chunks/assets/font_cc402bc2aa2aee36a71a5b4d.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00001;src:url('chunks/assets/font_a19d7affc72ae55020a4b487.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00001;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00001;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00001;src:url('chunks/assets/font_a19d7affc72ae55020a4b487.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00001;src:url('chunks/assets/font_04c0970001e52967dc6190c1.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00001;src:url('chunks/assets/font_21e709bc4b671469d27b371f.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00001;src:url('chunks/assets/font_a22cf3fac41c09abe6edacf5.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00001;src:url('chunks/assets/font_21e709bc4b671469d27b371f.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00001;src:url('chunks/assets/font_47f5bd927dc9827c2dde9469.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00001;src:url('chunks/assets/font_c27b26e5f83f46905c676d74.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00001;src:url('chunks/assets/font_c884bb4c1ab569e402f81ce1.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00001;src:url('chunks/assets/font_c27b26e5f83f46905c676d74.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00001;src:url('chunks/assets/font_50bd74a743580f40bf7a64d2.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00001;src:url('chunks/assets/font_5a08066555da6461b2b04462.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_21cd58e56621c658637c2590.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00001;src:url('chunks/assets/font_d029bdd534188a185b9d69ea.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00001;src:url('chunks/assets/font_5c84052867b3186776ff4e84.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00001;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00001;src:url('chunks/assets/font_f33d669cdd63fcfc0d04daa2.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;line-height:1.178000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00001;src:url('chunks/assets/font_ae56bd329c451e833458a4d5.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00001;src:url('chunks/assets/font_5c84052867b3186776ff4e84.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00001;src:url('chunks/assets/font_a82e46446159eb559aa4186e.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00001;src:url('chunks/assets/font_3f8b5ebf1116e3051c2540cd.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00001;src:url('chunks/assets/font_45c228a0b93a6e9f60e25f9d.woff2')format("woff");}.ff47_c00001{font-family:ff47_c00001;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00001;src:url('chunks/assets/font_4bf897c8ec9b3580b5a42e97.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:0.965000;font-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_c00001{transform:matrix(0.000000,0.253045,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.253045,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.253045,-0.250000,0.000000,0,0);}
.m1_c00001{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4_c00001{vertical-align:-23.976000px;}
.v0_c00001{vertical-align:0.000000px;}
.v2_c00001{vertical-align:20.769000px;}
.v1_c00001{vertical-align:23.976000px;}
.v3_c00001{vertical-align:54.891600px;}
.ls4e_c00001{letter-spacing:-6.984000px;}
.ls58_c00001{letter-spacing:-6.840000px;}
.ls3b_c00001{letter-spacing:-6.300000px;}
.ls7_c00001{letter-spacing:-5.292000px;}
.ls53_c00001{letter-spacing:-5.256000px;}
.ls4d_c00001{letter-spacing:-5.040000px;}
.ls49_c00001{letter-spacing:-4.800000px;}
.ls52_c00001{letter-spacing:-4.176000px;}
.ls51_c00001{letter-spacing:-2.880000px;}
.ls29_c00001{letter-spacing:-2.736000px;}
.ls5d_c00001{letter-spacing:-2.640000px;}
.ls50_c00001{letter-spacing:-2.592000px;}
.ls1c_c00001{letter-spacing:-2.520000px;}
.ls35_c00001{letter-spacing:-2.304000px;}
.ls22_c00001{letter-spacing:-2.160000px;}
.ls36_c00001{letter-spacing:-2.088000px;}
.ls28_c00001{letter-spacing:-2.016000px;}
.ls27_c00001{letter-spacing:-1.944000px;}
.ls5b_c00001{letter-spacing:-1.872000px;}
.ls1b_c00001{letter-spacing:-1.800000px;}
.ls6_c00001{letter-spacing:-1.728000px;}
.ls31_c00001{letter-spacing:-1.584000px;}
.ls54_c00001{letter-spacing:-1.440000px;}
.lsf_c00001{letter-spacing:-1.368000px;}
.ls3c_c00001{letter-spacing:-1.296000px;}
.ls2c_c00001{letter-spacing:-1.224000px;}
.ls1d_c00001{letter-spacing:-1.217304px;}
.ls21_c00001{letter-spacing:-1.152000px;}
.ls2f_c00001{letter-spacing:-1.080000px;}
.ls5c_c00001{letter-spacing:-1.056000px;}
.ls11_c00001{letter-spacing:-1.008000px;}
.ls60_c00001{letter-spacing:-0.960000px;}
.ls2e_c00001{letter-spacing:-0.936000px;}
.ls19_c00001{letter-spacing:-0.900000px;}
.ls12_c00001{letter-spacing:-0.864000px;}
.ls14_c00001{letter-spacing:-0.816000px;}
.ls39_c00001{letter-spacing:-0.792000px;}
.ls45_c00001{letter-spacing:-0.768000px;}
.ls1a_c00001{letter-spacing:-0.755568px;}
.ls15_c00001{letter-spacing:-0.720000px;}
.ls10_c00001{letter-spacing:-0.672000px;}
.ls18_c00001{letter-spacing:-0.660000px;}
.lsc_c00001{letter-spacing:-0.648000px;}
.ls1e_c00001{letter-spacing:-0.624000px;}
.ls2d_c00001{letter-spacing:-0.600000px;}
.lse_c00001{letter-spacing:-0.587664px;}
.ls2b_c00001{letter-spacing:-0.576000px;}
.ls20_c00001{letter-spacing:-0.504000px;}
.lsa_c00001{letter-spacing:-0.480000px;}
.ls4_c00001{letter-spacing:-0.432000px;}
.ls37_c00001{letter-spacing:-0.420000px;}
.ls4c_c00001{letter-spacing:-0.419760px;}
.ls16_c00001{letter-spacing:-0.360000px;}
.ls41_c00001{letter-spacing:-0.336000px;}
.ls8_c00001{letter-spacing:-0.324000px;}
.ls62_c00001{letter-spacing:-0.300000px;}
.lsb_c00001{letter-spacing:-0.288000px;}
.ls1f_c00001{letter-spacing:-0.240000px;}
.ls33_c00001{letter-spacing:-0.216000px;}
.ls5_c00001{letter-spacing:-0.192000px;}
.ls30_c00001{letter-spacing:-0.183645px;}
.ls3_c00001{letter-spacing:-0.167904px;}
.ls13_c00001{letter-spacing:-0.162000px;}
.ls32_c00001{letter-spacing:-0.144000px;}
.ls2a_c00001{letter-spacing:-0.041976px;}
.ls2_c00001{letter-spacing:0.000000px;}
.ls4a_c00001{letter-spacing:0.125928px;}
.ls26_c00001{letter-spacing:0.144000px;}
.ls38_c00001{letter-spacing:0.192000px;}
.ls43_c00001{letter-spacing:0.209880px;}
.ls4f_c00001{letter-spacing:0.216000px;}
.ls3f_c00001{letter-spacing:0.220374px;}
.ls44_c00001{letter-spacing:0.240000px;}
.ls25_c00001{letter-spacing:0.288000px;}
.ls4b_c00001{letter-spacing:0.293832px;}
.ls5e_c00001{letter-spacing:0.336000px;}
.ls34_c00001{letter-spacing:0.360000px;}
.ls17_c00001{letter-spacing:0.367290px;}
.ls40_c00001{letter-spacing:0.432000px;}
.ls0_c00001{letter-spacing:0.480000px;}
.ls5a_c00001{letter-spacing:0.504000px;}
.ls59_c00001{letter-spacing:0.600000px;}
.ls65_c00001{letter-spacing:0.688458px;}
.ls42_c00001{letter-spacing:0.713592px;}
.ls3d_c00001{letter-spacing:0.720000px;}
.ls66_c00001{letter-spacing:0.737634px;}
.ls48_c00001{letter-spacing:0.792000px;}
.ls3a_c00001{letter-spacing:0.839520px;}
.ls46_c00001{letter-spacing:1.080000px;}
.ls56_c00001{letter-spacing:1.152000px;}
.ls47_c00001{letter-spacing:1.175328px;}
.ls55_c00001{letter-spacing:1.440000px;}
.ls1_c00001{letter-spacing:1.456200px;}
.ls57_c00001{letter-spacing:1.656000px;}
.ls64_c00001{letter-spacing:2.261856px;}
.ls9_c00001{letter-spacing:2.557800px;}
.ls3e_c00001{letter-spacing:3.376800px;}
.ls23_c00001{letter-spacing:3.456000px;}
.ls24_c00001{letter-spacing:5.688000px;}
.lsd_c00001{letter-spacing:5.967600px;}
.ls5f_c00001{letter-spacing:12.456000px;}
.ls61_c00001{letter-spacing:68.695200px;}
.ls63_c00001{letter-spacing:1633.195200px;}
.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;}
}
.ws14f_c00001{word-spacing:-30.096000px;}
.ws1ee_c00001{word-spacing:-28.160107px;}
.ws142_c00001{word-spacing:-17.784000px;}
.ws141_c00001{word-spacing:-17.496000px;}
.ws1c9_c00001{word-spacing:-17.424000px;}
.ws108_c00001{word-spacing:-17.280000px;}
.ws12b_c00001{word-spacing:-17.136000px;}
.ws192_c00001{word-spacing:-17.064000px;}
.wsdf_c00001{word-spacing:-16.920000px;}
.ws19d_c00001{word-spacing:-16.848000px;}
.ws128_c00001{word-spacing:-16.704000px;}
.ws105_c00001{word-spacing:-16.488000px;}
.ws10_c00001{word-spacing:-16.344000px;}
.ws68_c00001{word-spacing:-16.200000px;}
.wsd5_c00001{word-spacing:-16.128000px;}
.ws12e_c00001{word-spacing:-16.056000px;}
.ws2d_c00001{word-spacing:-15.984000px;}
.ws135_c00001{word-spacing:-15.912000px;}
.ws12d_c00001{word-spacing:-15.840000px;}
.ws2c_c00001{word-spacing:-15.768000px;}
.ws125_c00001{word-spacing:-15.696000px;}
.ws22_c00001{word-spacing:-15.624000px;}
.wsc7_c00001{word-spacing:-15.552000px;}
.ws89_c00001{word-spacing:-15.480000px;}
.wsd4_c00001{word-spacing:-15.408000px;}
.ws120_c00001{word-spacing:-15.336000px;}
.ws8a_c00001{word-spacing:-15.264000px;}
.wsd3_c00001{word-spacing:-15.192000px;}
.ws67_c00001{word-spacing:-15.120000px;}
.ws1a_c00001{word-spacing:-14.976000px;}
.wsaa_c00001{word-spacing:-14.904000px;}
.ws86_c00001{word-spacing:-14.760000px;}
.ws4b_c00001{word-spacing:-14.544000px;}
.ws87_c00001{word-spacing:-14.472000px;}
.ws69_c00001{word-spacing:-14.328000px;}
.ws136_c00001{word-spacing:-14.256000px;}
.wsbe_c00001{word-spacing:-14.184000px;}
.ws13d_c00001{word-spacing:-14.040000px;}
.ws4a_c00001{word-spacing:-13.968000px;}
.ws12c_c00001{word-spacing:-13.752000px;}
.ws2f_c00001{word-spacing:-13.740000px;}
.ws8b_c00001{word-spacing:-13.620000px;}
.wsc4_c00001{word-spacing:-13.320000px;}
.ws4_c00001{word-spacing:-12.366000px;}
.ws6a_c00001{word-spacing:-12.258000px;}
.ws137_c00001{word-spacing:-12.168000px;}
.ws23_c00001{word-spacing:-11.934000px;}
.ws1db_c00001{word-spacing:-11.616000px;}
.ws11_c00001{word-spacing:-11.610000px;}
.ws1dd_c00001{word-spacing:-11.376000px;}
.ws13e_c00001{word-spacing:-11.232000px;}
.wsf2_c00001{word-spacing:-11.136000px;}
.wsc6_c00001{word-spacing:-11.088000px;}
.ws113_c00001{word-spacing:-11.040000px;}
.ws0_c00001{word-spacing:-10.896000px;}
.wsab_c00001{word-spacing:-10.752000px;}
.ws2_c00001{word-spacing:-10.704000px;}
.ws107_c00001{word-spacing:-10.703880px;}
.wsa9_c00001{word-spacing:-10.656000px;}
.wsde_c00001{word-spacing:-10.608000px;}
.wse0_c00001{word-spacing:-10.560000px;}
.ws18_c00001{word-spacing:-10.416000px;}
.wsc8_c00001{word-spacing:-10.368072px;}
.wsbd_c00001{word-spacing:-10.320000px;}
.ws4c_c00001{word-spacing:-10.272000px;}
.wsf1_c00001{word-spacing:-10.242144px;}
.ws1b_c00001{word-spacing:-10.224000px;}
.ws2b_c00001{word-spacing:-10.080000px;}
.ws1d2_c00001{word-spacing:-10.032000px;}
.ws1e9_c00001{word-spacing:-9.888000px;}
.wsf_c00001{word-spacing:-9.528552px;}
.ws11f_c00001{word-spacing:-9.504000px;}
.ws88_c00001{word-spacing:-9.486576px;}
.ws1_c00001{word-spacing:-9.360648px;}
.ws3_c00001{word-spacing:-9.168000px;}
.ws149_c00001{word-spacing:-9.072000px;}
.ws19_c00001{word-spacing:-8.940888px;}
.ws49_c00001{word-spacing:-8.772984px;}
.ws2e_c00001{word-spacing:-8.704773px;}
.ws106_c00001{word-spacing:-8.337483px;}
.wsc9_c00001{word-spacing:-7.320000px;}
.ws109_c00001{word-spacing:-6.096000px;}
.ws114_c00001{word-spacing:-5.856000px;}
.ws1c4_c00001{word-spacing:-5.544000px;}
.wsfb_c00001{word-spacing:-4.320000px;}
.ws1d0_c00001{word-spacing:-3.888000px;}
.ws1d3_c00001{word-spacing:-3.816000px;}
.wsd9_c00001{word-spacing:-3.672000px;}
.ws144_c00001{word-spacing:-3.600000px;}
.ws145_c00001{word-spacing:-3.528000px;}
.ws170_c00001{word-spacing:-3.384000px;}
.ws14a_c00001{word-spacing:-3.312000px;}
.wse5_c00001{word-spacing:-3.240000px;}
.wsca_c00001{word-spacing:-3.168000px;}
.ws27_c00001{word-spacing:-3.096000px;}
.ws26_c00001{word-spacing:-3.024000px;}
.ws3b_c00001{word-spacing:-2.952000px;}
.ws4e_c00001{word-spacing:-2.880000px;}
.ws52_c00001{word-spacing:-2.808000px;}
.ws11d_c00001{word-spacing:-2.736000px;}
.wscc_c00001{word-spacing:-2.664000px;}
.wsd8_c00001{word-spacing:-2.592000px;}
.ws129_c00001{word-spacing:-2.520000px;}
.wsa3_c00001{word-spacing:-2.448000px;}
.ws1d_c00001{word-spacing:-2.376000px;}
.wsb6_c00001{word-spacing:-2.352000px;}
.wsda_c00001{word-spacing:-2.304000px;}
.wsae_c00001{word-spacing:-2.232000px;}
.ws56_c00001{word-spacing:-2.160000px;}
.ws93_c00001{word-spacing:-2.088000px;}
.wsb_c00001{word-spacing:-2.016000px;}
.ws29_c00001{word-spacing:-1.944000px;}
.wsa6_c00001{word-spacing:-1.872000px;}
.wscf_c00001{word-spacing:-1.824000px;}
.ws47_c00001{word-spacing:-1.800000px;}
.ws1a8_c00001{word-spacing:-1.782000px;}
.wsce_c00001{word-spacing:-1.776000px;}
.wsc1_c00001{word-spacing:-1.728000px;}
.wsad_c00001{word-spacing:-1.656000px;}
.ws95_c00001{word-spacing:-1.584000px;}
.wsa4_c00001{word-spacing:-1.512000px;}
.wsc5_c00001{word-spacing:-1.500000px;}
.wse2_c00001{word-spacing:-1.449000px;}
.wsa_c00001{word-spacing:-1.440000px;}
.ws91_c00001{word-spacing:-1.368000px;}
.ws51_c00001{word-spacing:-1.296000px;}
.ws9e_c00001{word-spacing:-1.248000px;}
.ws11b_c00001{word-spacing:-1.224000px;}
.wsb9_c00001{word-spacing:-1.188000px;}
.wsc0_c00001{word-spacing:-1.152000px;}
.ws3d_c00001{word-spacing:-1.134000px;}
.ws111_c00001{word-spacing:-1.104000px;}
.ws60_c00001{word-spacing:-1.080000px;}
.ws9c_c00001{word-spacing:-1.008000px;}
.wsb4_c00001{word-spacing:-0.936000px;}
.ws10e_c00001{word-spacing:-0.864000px;}
.wsac_c00001{word-spacing:-0.792000px;}
.ws31_c00001{word-spacing:-0.720000px;}
.wsd1_c00001{word-spacing:-0.672000px;}
.wsa7_c00001{word-spacing:-0.648000px;}
.ws28_c00001{word-spacing:-0.576000px;}
.ws117_c00001{word-spacing:-0.504000px;}
.ws9b_c00001{word-spacing:-0.480000px;}
.ws34_c00001{word-spacing:-0.432000px;}
.ws5c_c00001{word-spacing:-0.384000px;}
.ws70_c00001{word-spacing:-0.360000px;}
.ws116_c00001{word-spacing:-0.293832px;}
.wsfc_c00001{word-spacing:-0.288000px;}
.wse4_c00001{word-spacing:-0.220374px;}
.ws8c_c00001{word-spacing:-0.216000px;}
.wsf6_c00001{word-spacing:-0.209880px;}
.ws97_c00001{word-spacing:-0.144000px;}
.wse3_c00001{word-spacing:-0.126000px;}
.ws115_c00001{word-spacing:-0.125928px;}
.wsd0_c00001{word-spacing:-0.096000px;}
.wsd7_c00001{word-spacing:-0.072000px;}
.wsee_c00001{word-spacing:-0.048000px;}
.ws5_c00001{word-spacing:0.000000px;}
.wsaf_c00001{word-spacing:0.072000px;}
.ws14_c00001{word-spacing:0.144000px;}
.ws2a_c00001{word-spacing:0.162000px;}
.wsb3_c00001{word-spacing:0.183645px;}
.ws3c_c00001{word-spacing:0.189000px;}
.ws11a_c00001{word-spacing:0.192000px;}
.wsba_c00001{word-spacing:0.216000px;}
.ws5f_c00001{word-spacing:0.240000px;}
.ws54_c00001{word-spacing:0.288000px;}
.wsd_c00001{word-spacing:0.324000px;}
.ws119_c00001{word-spacing:0.336000px;}
.ws79_c00001{word-spacing:0.360000px;}
.ws40_c00001{word-spacing:0.378000px;}
.ws118_c00001{word-spacing:0.419760px;}
.wsc2_c00001{word-spacing:0.420000px;}
.ws1e_c00001{word-spacing:0.432000px;}
.wsb8_c00001{word-spacing:0.480000px;}
.wsa8_c00001{word-spacing:0.504000px;}
.ws41_c00001{word-spacing:0.567000px;}
.ws76_c00001{word-spacing:0.576000px;}
.wsa1_c00001{word-spacing:0.600000px;}
.ws7d_c00001{word-spacing:0.648000px;}
.ws101_c00001{word-spacing:0.672000px;}
.ws1f_c00001{word-spacing:0.720000px;}
.ws104_c00001{word-spacing:0.768000px;}
.ws6b_c00001{word-spacing:0.792000px;}
.ws4d_c00001{word-spacing:0.864000px;}
.wse8_c00001{word-spacing:0.882000px;}
.wsdb_c00001{word-spacing:0.936000px;}
.ws1e2_c00001{word-spacing:0.960000px;}
.ws20_c00001{word-spacing:1.008000px;}
.wsbf_c00001{word-spacing:1.080000px;}
.ws33_c00001{word-spacing:1.152000px;}
.ws57_c00001{word-spacing:1.217304px;}
.ws132_c00001{word-spacing:1.224000px;}
.ws55_c00001{word-spacing:1.296000px;}
.wse7_c00001{word-spacing:1.323000px;}
.wsbc_c00001{word-spacing:1.368000px;}
.ws100_c00001{word-spacing:1.440000px;}
.wsb1_c00001{word-spacing:1.449000px;}
.wsff_c00001{word-spacing:1.512000px;}
.ws7_c00001{word-spacing:1.584000px;}
.ws133_c00001{word-spacing:1.656000px;}
.wscd_c00001{word-spacing:1.728000px;}
.ws4f_c00001{word-spacing:1.800000px;}
.wsef_c00001{word-spacing:1.824000px;}
.ws158_c00001{word-spacing:1.872000px;}
.ws9a_c00001{word-spacing:1.944000px;}
.ws8_c00001{word-spacing:2.016000px;}
.ws103_c00001{word-spacing:2.064000px;}
.ws73_c00001{word-spacing:2.088000px;}
.ws7c_c00001{word-spacing:2.160000px;}
.wsb2_c00001{word-spacing:2.205000px;}
.ws30_c00001{word-spacing:2.232000px;}
.ws42_c00001{word-spacing:2.268000px;}
.ws64_c00001{word-spacing:2.304000px;}
.ws10c_c00001{word-spacing:2.376000px;}
.ws11c_c00001{word-spacing:2.448000px;}
.ws44_c00001{word-spacing:2.457000px;}
.ws85_c00001{word-spacing:2.520000px;}
.ws102_c00001{word-spacing:2.544000px;}
.ws65_c00001{word-spacing:2.592000px;}
.ws43_c00001{word-spacing:2.646000px;}
.ws25_c00001{word-spacing:2.664000px;}
.wsa0_c00001{word-spacing:2.688000px;}
.ws7a_c00001{word-spacing:2.736000px;}
.ws160_c00001{word-spacing:2.808000px;}
.wse1_c00001{word-spacing:2.835000px;}
.ws37_c00001{word-spacing:2.880000px;}
.wsdc_c00001{word-spacing:2.898000px;}
.ws110_c00001{word-spacing:2.952000px;}
.ws3a_c00001{word-spacing:3.024000px;}
.ws53_c00001{word-spacing:3.096000px;}
.ws10d_c00001{word-spacing:3.150000px;}
.ws1ac_c00001{word-spacing:3.168000px;}
.wseb_c00001{word-spacing:3.240000px;}
.wscb_c00001{word-spacing:3.312000px;}
.ws16_c00001{word-spacing:3.384000px;}
.ws80_c00001{word-spacing:3.456000px;}
.wsb5_c00001{word-spacing:3.504000px;}
.ws81_c00001{word-spacing:3.528000px;}
.ws38_c00001{word-spacing:3.600000px;}
.wsb0_c00001{word-spacing:3.654000px;}
.ws17_c00001{word-spacing:3.672000px;}
.ws16c_c00001{word-spacing:3.744000px;}
.ws7f_c00001{word-spacing:3.816000px;}
.ws7b_c00001{word-spacing:3.888000px;}
.ws7e_c00001{word-spacing:3.960000px;}
.ws61_c00001{word-spacing:4.032000px;}
.wsb7_c00001{word-spacing:4.080000px;}
.ws8f_c00001{word-spacing:4.104000px;}
.wsfe_c00001{word-spacing:4.176000px;}
.ws98_c00001{word-spacing:4.248000px;}
.ws71_c00001{word-spacing:4.320000px;}
.ws185_c00001{word-spacing:4.392000px;}
.ws1b9_c00001{word-spacing:4.464000px;}
.ws9_c00001{word-spacing:4.536000px;}
.ws138_c00001{word-spacing:4.608000px;}
.ws10a_c00001{word-spacing:4.680000px;}
.ws13_c00001{word-spacing:4.752000px;}
.ws5d_c00001{word-spacing:4.800000px;}
.ws6e_c00001{word-spacing:4.824000px;}
.ws5e_c00001{word-spacing:4.848000px;}
.wsf7_c00001{word-spacing:4.896000px;}
.ws94_c00001{word-spacing:4.968000px;}
.ws99_c00001{word-spacing:5.040000px;}
.ws15_c00001{word-spacing:5.112000px;}
.ws6f_c00001{word-spacing:5.184000px;}
.ws1a7_c00001{word-spacing:5.214000px;}
.ws6c_c00001{word-spacing:5.256000px;}
.wsc_c00001{word-spacing:5.292000px;}
.ws6d_c00001{word-spacing:5.328000px;}
.ws124_c00001{word-spacing:5.400000px;}
.ws78_c00001{word-spacing:5.472000px;}
.ws77_c00001{word-spacing:5.544000px;}
.wsd6_c00001{word-spacing:5.616000px;}
.ws82_c00001{word-spacing:5.688000px;}
.ws14c_c00001{word-spacing:5.760000px;}
.wsdd_c00001{word-spacing:5.796000px;}
.ws9d_c00001{word-spacing:5.808000px;}
.ws10b_c00001{word-spacing:5.832000px;}
.ws84_c00001{word-spacing:5.904000px;}
.ws96_c00001{word-spacing:5.976000px;}
.wsf9_c00001{word-spacing:6.048000px;}
.ws62_c00001{word-spacing:6.120000px;}
.ws9f_c00001{word-spacing:6.144000px;}
.ws10f_c00001{word-spacing:6.192000px;}
.ws139_c00001{word-spacing:6.264000px;}
.ws13a_c00001{word-spacing:6.336000px;}
.ws58_c00001{word-spacing:6.408000px;}
.ws5b_c00001{word-spacing:6.480000px;}
.ws8d_c00001{word-spacing:6.552000px;}
.ws13b_c00001{word-spacing:6.624000px;}
.ws63_c00001{word-spacing:6.696000px;}
.ws92_c00001{word-spacing:6.768000px;}
.wsa5_c00001{word-spacing:6.840000px;}
.ws8e_c00001{word-spacing:6.912000px;}
.wsea_c00001{word-spacing:6.984000px;}
.ws46_c00001{word-spacing:7.056000px;}
.ws131_c00001{word-spacing:7.128000px;}
.wsed_c00001{word-spacing:7.200000px;}
.ws147_c00001{word-spacing:7.272000px;}
.ws148_c00001{word-spacing:7.344000px;}
.ws3f_c00001{word-spacing:7.371000px;}
.ws59_c00001{word-spacing:7.416000px;}
.ws18f_c00001{word-spacing:7.488000px;}
.ws1b7_c00001{word-spacing:7.560000px;}
.wsfd_c00001{word-spacing:7.632000px;}
.ws183_c00001{word-spacing:7.704000px;}
.ws50_c00001{word-spacing:7.776000px;}
.ws72_c00001{word-spacing:7.848000px;}
.ws123_c00001{word-spacing:7.920000px;}
.ws122_c00001{word-spacing:7.992000px;}
.ws3e_c00001{word-spacing:8.064000px;}
.ws121_c00001{word-spacing:8.136000px;}
.ws90_c00001{word-spacing:8.208000px;}
.ws5a_c00001{word-spacing:8.280000px;}
.ws14e_c00001{word-spacing:8.352000px;}
.ws39_c00001{word-spacing:8.424000px;}
.wse6_c00001{word-spacing:8.496000px;}
.ws134_c00001{word-spacing:8.568000px;}
.ws32_c00001{word-spacing:8.640000px;}
.ws45_c00001{word-spacing:8.712000px;}
.ws143_c00001{word-spacing:8.784000px;}
.ws126_c00001{word-spacing:8.856000px;}
.ws16b_c00001{word-spacing:8.928000px;}
.wsf5_c00001{word-spacing:9.000000px;}
.ws163_c00001{word-spacing:9.072000px;}
.ws175_c00001{word-spacing:9.144000px;}
.ws13f_c00001{word-spacing:9.216000px;}
.ws140_c00001{word-spacing:9.288000px;}
.ws35_c00001{word-spacing:9.432000px;}
.wsec_c00001{word-spacing:9.504000px;}
.ws17b_c00001{word-spacing:9.576000px;}
.ws181_c00001{word-spacing:9.648000px;}
.ws154_c00001{word-spacing:9.720000px;}
.ws1aa_c00001{word-spacing:9.792000px;}
.ws17e_c00001{word-spacing:9.864000px;}
.ws186_c00001{word-spacing:9.936000px;}
.ws153_c00001{word-spacing:10.080000px;}
.ws179_c00001{word-spacing:10.152000px;}
.ws16f_c00001{word-spacing:10.224000px;}
.ws172_c00001{word-spacing:10.296000px;}
.ws1b4_c00001{word-spacing:10.368000px;}
.ws36_c00001{word-spacing:10.512000px;}
.ws16d_c00001{word-spacing:10.584000px;}
.ws15c_c00001{word-spacing:10.656000px;}
.ws17d_c00001{word-spacing:10.800000px;}
.ws1a9_c00001{word-spacing:10.872000px;}
.ws17f_c00001{word-spacing:10.944000px;}
.ws195_c00001{word-spacing:11.016000px;}
.ws18d_c00001{word-spacing:11.088000px;}
.ws168_c00001{word-spacing:11.232000px;}
.ws75_c00001{word-spacing:11.304000px;}
.ws190_c00001{word-spacing:11.376000px;}
.ws18a_c00001{word-spacing:11.448000px;}
.ws1be_c00001{word-spacing:11.520000px;}
.ws1bd_c00001{word-spacing:11.592000px;}
.ws197_c00001{word-spacing:11.664000px;}
.ws166_c00001{word-spacing:11.736000px;}
.ws1ad_c00001{word-spacing:11.808000px;}
.ws194_c00001{word-spacing:11.880000px;}
.wsfa_c00001{word-spacing:11.952000px;}
.ws169_c00001{word-spacing:12.096000px;}
.wsf8_c00001{word-spacing:12.168000px;}
.ws1af_c00001{word-spacing:12.240000px;}
.ws1bc_c00001{word-spacing:12.312000px;}
.ws152_c00001{word-spacing:12.384000px;}
.ws16e_c00001{word-spacing:12.456000px;}
.ws1ae_c00001{word-spacing:12.528000px;}
.ws1e6_c00001{word-spacing:12.600000px;}
.ws1a3_c00001{word-spacing:12.672000px;}
.ws12f_c00001{word-spacing:12.744000px;}
.ws188_c00001{word-spacing:12.816000px;}
.ws130_c00001{word-spacing:12.888000px;}
.ws193_c00001{word-spacing:12.960000px;}
.ws15a_c00001{word-spacing:13.176000px;}
.ws1a2_c00001{word-spacing:13.248000px;}
.ws171_c00001{word-spacing:13.320000px;}
.ws1a5_c00001{word-spacing:13.464000px;}
.ws15b_c00001{word-spacing:13.536000px;}
.ws17a_c00001{word-spacing:13.608000px;}
.ws1e4_c00001{word-spacing:13.680000px;}
.ws15f_c00001{word-spacing:13.824000px;}
.ws159_c00001{word-spacing:13.896000px;}
.ws19c_c00001{word-spacing:13.968000px;}
.ws18c_c00001{word-spacing:14.040000px;}
.ws1d1_c00001{word-spacing:14.184000px;}
.ws15e_c00001{word-spacing:14.256000px;}
.ws177_c00001{word-spacing:14.328000px;}
.ws1a1_c00001{word-spacing:14.400000px;}
.ws196_c00001{word-spacing:14.544000px;}
.ws16a_c00001{word-spacing:14.616000px;}
.ws198_c00001{word-spacing:14.760000px;}
.ws1b6_c00001{word-spacing:14.832000px;}
.ws1d7_c00001{word-spacing:14.904000px;}
.ws1c2_c00001{word-spacing:14.976000px;}
.ws17c_c00001{word-spacing:15.192000px;}
.ws19f_c00001{word-spacing:15.264000px;}
.wsf3_c00001{word-spacing:15.336000px;}
.ws18b_c00001{word-spacing:15.408000px;}
.ws19a_c00001{word-spacing:15.552000px;}
.ws1b3_c00001{word-spacing:15.624000px;}
.ws162_c00001{word-spacing:15.696000px;}
.ws164_c00001{word-spacing:15.840000px;}
.ws15d_c00001{word-spacing:16.056000px;}
.ws165_c00001{word-spacing:16.128000px;}
.ws1a0_c00001{word-spacing:16.200000px;}
.ws1b0_c00001{word-spacing:16.272000px;}
.ws1c_c00001{word-spacing:16.344000px;}
.ws189_c00001{word-spacing:16.416000px;}
.ws1a4_c00001{word-spacing:16.560000px;}
.ws167_c00001{word-spacing:16.632000px;}
.ws155_c00001{word-spacing:17.136000px;}
.ws6_c00001{word-spacing:17.280000px;}
.ws1c5_c00001{word-spacing:17.640000px;}
.ws157_c00001{word-spacing:17.856000px;}
.ws18e_c00001{word-spacing:17.928000px;}
.ws1b2_c00001{word-spacing:18.000000px;}
.ws1ab_c00001{word-spacing:18.072000px;}
.ws1b5_c00001{word-spacing:18.144000px;}
.ws180_c00001{word-spacing:18.288000px;}
.ws1ba_c00001{word-spacing:18.720000px;}
.wsf4_c00001{word-spacing:18.936000px;}
.ws1c1_c00001{word-spacing:19.080000px;}
.ws14d_c00001{word-spacing:19.152000px;}
.ws161_c00001{word-spacing:19.224000px;}
.ws182_c00001{word-spacing:19.872000px;}
.ws1e7_c00001{word-spacing:20.160000px;}
.ws1c0_c00001{word-spacing:21.024000px;}
.ws178_c00001{word-spacing:21.096000px;}
.ws184_c00001{word-spacing:21.456000px;}
.ws173_c00001{word-spacing:21.816000px;}
.ws1ea_c00001{word-spacing:23.040000px;}
.ws12_c00001{word-spacing:23.256000px;}
.ws19b_c00001{word-spacing:23.616000px;}
.ws1e8_c00001{word-spacing:23.904000px;}
.ws1bf_c00001{word-spacing:24.840000px;}
.ws1bb_c00001{word-spacing:25.128000px;}
.ws1b8_c00001{word-spacing:26.064000px;}
.ws1d9_c00001{word-spacing:26.568000px;}
.ws1ca_c00001{word-spacing:26.712000px;}
.ws1c7_c00001{word-spacing:26.928000px;}
.ws1cb_c00001{word-spacing:27.144000px;}
.ws1d5_c00001{word-spacing:27.576000px;}
.ws174_c00001{word-spacing:27.648000px;}
.ws1e5_c00001{word-spacing:27.792000px;}
.ws24_c00001{word-spacing:28.008000px;}
.ws1cc_c00001{word-spacing:28.800000px;}
.ws187_c00001{word-spacing:29.016000px;}
.ws199_c00001{word-spacing:29.232000px;}
.ws19e_c00001{word-spacing:29.736000px;}
.wse9_c00001{word-spacing:56.664000px;}
.ws150_c00001{word-spacing:70.092000px;}
.wse_c00001{word-spacing:1574.923200px;}
.ws1ce_c00001{word-spacing:1575.547200px;}
.ws156_c00001{word-spacing:1576.315200px;}
.ws66_c00001{word-spacing:1576.411200px;}
.ws1e1_c00001{word-spacing:1576.555200px;}
.ws1d6_c00001{word-spacing:1577.035200px;}
.ws1a6_c00001{word-spacing:1577.083200px;}
.ws191_c00001{word-spacing:1577.131200px;}
.ws1da_c00001{word-spacing:1577.659200px;}
.ws1df_c00001{word-spacing:1577.707200px;}
.ws74_c00001{word-spacing:1577.995200px;}
.ws1e0_c00001{word-spacing:1578.091200px;}
.ws48_c00001{word-spacing:1578.235200px;}
.wsf0_c00001{word-spacing:1578.379200px;}
.ws1b1_c00001{word-spacing:1578.523200px;}
.ws1d8_c00001{word-spacing:1578.619200px;}
.ws1d4_c00001{word-spacing:1578.715200px;}
.ws1ec_c00001{word-spacing:1578.763200px;}
.ws176_c00001{word-spacing:1579.339200px;}
.ws1eb_c00001{word-spacing:1579.531200px;}
.ws1ed_c00001{word-spacing:1579.627200px;}
.ws11e_c00001{word-spacing:1579.723200px;}
.ws127_c00001{word-spacing:1579.867200px;}
.ws12a_c00001{word-spacing:1580.011200px;}
.ws21_c00001{word-spacing:1581.019200px;}
.ws146_c00001{word-spacing:1581.067200px;}
.ws1dc_c00001{word-spacing:1581.259200px;}
.ws14b_c00001{word-spacing:1581.499200px;}
.ws1c8_c00001{word-spacing:1581.643200px;}
.ws1c6_c00001{word-spacing:1581.691200px;}
.ws83_c00001{word-spacing:1581.931200px;}
.ws151_c00001{word-spacing:1582.315200px;}
.ws1cf_c00001{word-spacing:1582.363200px;}
.ws112_c00001{word-spacing:1582.411200px;}
.wsbb_c00001{word-spacing:1582.603200px;}
.ws1cd_c00001{word-spacing:1582.651200px;}
.wsc3_c00001{word-spacing:1583.419200px;}
.ws1e3_c00001{word-spacing:1584.043200px;}
.ws1c3_c00001{word-spacing:1584.475200px;}
.wsd2_c00001{word-spacing:1585.003200px;}
.ws13c_c00001{word-spacing:1585.483200px;}
.wsa2_c00001{word-spacing:1585.963200px;}
.ws1de_c00001{word-spacing:1587.259200px;}
._0_c00001{margin-left:-2754.940800px;}
._24_c00001{margin-left:-2753.739600px;}
._1a_c00001{margin-left:-60.657600px;}
._1b_c00001{margin-left:-57.687600px;}
._19_c00001{margin-left:-40.461600px;}
._17_c00001{margin-left:-20.265000px;}
._16_c00001{margin-left:-11.232000px;}
._15_c00001{margin-left:-9.816000px;}
._1c_c00001{margin-left:-8.328000px;}
._8_c00001{margin-left:-7.200000px;}
._d_c00001{margin-left:-6.192000px;}
._5_c00001{margin-left:-5.184000px;}
._6_c00001{margin-left:-3.768000px;}
._1_c00001{margin-left:-2.640000px;}
._2_c00001{margin-left:-1.632000px;}
._3_c00001{width:1.008000px;}
._4_c00001{width:2.712000px;}
._b_c00001{width:3.720000px;}
._e_c00001{width:4.728000px;}
._7_c00001{width:5.790000px;}
._9_c00001{width:7.215600px;}
._a_c00001{width:8.223000px;}
._21_c00001{width:10.872000px;}
._14_c00001{width:11.904000px;}
._1e_c00001{width:14.616000px;}
._20_c00001{width:15.624000px;}
._1f_c00001{width:17.208000px;}
._f_c00001{width:18.792000px;}
._22_c00001{width:20.160000px;}
._26_c00001{width:22.464000px;}
._13_c00001{width:23.616000px;}
._11_c00001{width:25.128000px;}
._10_c00001{width:26.935200px;}
._12_c00001{width:28.944000px;}
._23_c00001{width:30.312000px;}
._25_c00001{width:31.320000px;}
._27_c00001{width:58.392000px;}
._28_c00001{width:62.640000px;}
._18_c00001{width:70.026000px;}
._1d_c00001{width:71.712000px;}
._c_c00001{width:224.673600px;}
.fc1_c00001{color:transparent;}
.fc2_c00001{color:rgb(0,0,0);}
.fc0_c00001{color:rgb(35,31,32);}
.fs5_c00001{font-size:36.729000px;}
.fs2_c00001{font-size:41.976000px;}
.fs0_c00001{font-size:48.000000px;}
.fs3_c00001{font-size:54.000000px;}
.fs6_c00001{font-size:60.000000px;}
.fs4_c00001{font-size:63.000000px;}
.fs8_c00001{font-size:66.000000px;}
.fs12_c00001{font-size:68.845800px;}
.fs10_c00001{font-size:71.427000px;}
.fs1_c00001{font-size:72.000000px;}
.fs14_c00001{font-size:73.763400px;}
.fsf_c00001{font-size:77.379000px;}
.fs13_c00001{font-size:83.598600px;}
.fsa_c00001{font-size:84.000000px;}
.fsb_c00001{font-size:96.000000px;}
.fs9_c00001{font-size:105.600000px;}
.fse_c00001{font-size:106.283400px;}
.fs11_c00001{font-size:113.092800px;}
.fsd_c00001{font-size:119.044800px;}
.fsc_c00001{font-size:130.949400px;}
.fs7_c00001{font-size:144.000000px;}
.y0_c00001{bottom:0.000000px;}
.y178_c00001{bottom:51.868800px;}
.y378_c00001{bottom:97.715550px;}
.yd8_c00001{bottom:111.612000px;}
.y139_c00001{bottom:111.612150px;}
.y177_c00001{bottom:111.612300px;}
.yf1_c00001{bottom:111.616200px;}
.y8_c00001{bottom:111.616350px;}
.yd_c00001{bottom:112.099050px;}
.y2b7_c00001{bottom:112.243050px;}
.y53a_c00001{bottom:112.942950px;}
.y27b_c00001{bottom:113.757450px;}
.y2ea_c00001{bottom:114.209700px;}
.y346_c00001{bottom:115.467450px;}
.y51a_c00001{bottom:115.892700px;}
.y18c_c00001{bottom:116.920500px;}
.y8e_c00001{bottom:117.402300px;}
.y55d_c00001{bottom:117.512100px;}
.y35b_c00001{bottom:117.717450px;}
.y64_c00001{bottom:118.026450px;}
.y67_c00001{bottom:118.509150px;}
.y1af_c00001{bottom:118.655550px;}
.y4b8_c00001{bottom:118.656450px;}
.ya5_c00001{bottom:119.114100px;}
.y434_c00001{bottom:119.418150px;}
.y54d_c00001{bottom:119.459550px;}
.ya3_c00001{bottom:119.799600px;}
.ya1_c00001{bottom:120.012150px;}
.y6c_c00001{bottom:120.152550px;}
.y402_c00001{bottom:120.180000px;}
.y501_c00001{bottom:121.703700px;}
.y465_c00001{bottom:122.146500px;}
.y535_c00001{bottom:122.266500px;}
.y377_c00001{bottom:122.465550px;}
.y559_c00001{bottom:122.656950px;}
.y4a2_c00001{bottom:122.908350px;}
.ycd_c00001{bottom:124.361100px;}
.y3b9_c00001{bottom:124.432050px;}
.ybb_c00001{bottom:125.117250px;}
.y24b_c00001{bottom:125.151450px;}
.y3a2_c00001{bottom:125.193750px;}
.y506_c00001{bottom:125.955750px;}
.y1e4_c00001{bottom:126.279600px;}
.y56_c00001{bottom:126.612300px;}
.yf0_c00001{bottom:126.616200px;}
.y8b_c00001{bottom:126.616350px;}
.y2d4_c00001{bottom:126.717450px;}
.y310_c00001{bottom:126.719700px;}
.y22c_c00001{bottom:127.275450px;}
.y116_c00001{bottom:128.806200px;}
.yd7_c00001{bottom:130.212000px;}
.y44a_c00001{bottom:131.412300px;}
.y539_c00001{bottom:131.542950px;}
.y55c_c00001{bottom:132.510600px;}
.y63_c00001{bottom:133.024950px;}
.y66_c00001{bottom:133.507650px;}
.y4cc_c00001{bottom:133.697850px;}
.ya4_c00001{bottom:134.112600px;}
.ya2_c00001{bottom:134.798100px;}
.ya0_c00001{bottom:135.010650px;}
.y20c_c00001{bottom:135.015450px;}
.y138_c00001{bottom:135.120150px;}
.y6b_c00001{bottom:135.151050px;}
.y8d_c00001{bottom:136.002300px;}
.y4bd_c00001{bottom:136.426050px;}
.y2b6_c00001{bottom:136.993050px;}
.y558_c00001{bottom:137.655450px;}
.y27a_c00001{bottom:138.507450px;}
.y2e9_c00001{bottom:138.959700px;}
.y297_c00001{bottom:139.245450px;}
.y345_c00001{bottom:140.217450px;}
.y519_c00001{bottom:140.642700px;}
.y25d_c00001{bottom:141.387450px;}
.yb0_c00001{bottom:141.612300px;}
.yef_c00001{bottom:141.616200px;}
.y8a_c00001{bottom:141.616350px;}
.y18b_c00001{bottom:141.670500px;}
.y35a_c00001{bottom:142.467450px;}
.y1ae_c00001{bottom:143.405550px;}
.y4b7_c00001{bottom:143.406450px;}
.y433_c00001{bottom:144.168150px;}
.y54c_c00001{bottom:144.209550px;}
.y401_c00001{bottom:144.930000px;}
.y4f8_c00001{bottom:146.453700px;}
.y464_c00001{bottom:146.896500px;}
.y534_c00001{bottom:147.016500px;}
.y376_c00001{bottom:147.215550px;}
.y4a1_c00001{bottom:147.658350px;}
.y498_c00001{bottom:148.420200px;}
.yd6_c00001{bottom:148.812000px;}
.ycc_c00001{bottom:149.111100px;}
.y3b8_c00001{bottom:149.182050px;}
.y115_c00001{bottom:149.800950px;}
.yba_c00001{bottom:149.867250px;}
.y24a_c00001{bottom:149.901450px;}
.y12_c00001{bottom:149.916300px;}
.y3a1_c00001{bottom:149.943750px;}
.y176_c00001{bottom:150.116250px;}
.y137_c00001{bottom:150.120150px;}
.y55_c00001{bottom:150.120300px;}
.y538_c00001{bottom:150.142950px;}
.ya_c00001{bottom:150.399000px;}
.y505_c00001{bottom:150.705750px;}
.y1e3_c00001{bottom:151.029600px;}
.y2d3_c00001{bottom:151.467450px;}
.y30f_c00001{bottom:151.469700px;}
.y22b_c00001{bottom:152.025450px;}
.y1ec_c00001{bottom:152.398650px;}
.y331_c00001{bottom:153.717450px;}
.y8c_c00001{bottom:154.602300px;}
.y509_c00001{bottom:156.162300px;}
.yee_c00001{bottom:156.616200px;}
.y89_c00001{bottom:156.616350px;}
.y3e5_c00001{bottom:156.924150px;}
.y317_c00001{bottom:158.217450px;}
.y4cb_c00001{bottom:158.447850px;}
.y491_c00001{bottom:159.652500px;}
.y449_c00001{bottom:160.414200px;}
.y3c7_c00001{bottom:161.176050px;}
.y2b5_c00001{bottom:161.743050px;}
.y2e8_c00001{bottom:163.709700px;}
.y36_c00001{bottom:164.220600px;}
.y11_c00001{bottom:164.914800px;}
.y344_c00001{bottom:164.967450px;}
.y54_c00001{bottom:165.116250px;}
.y136_c00001{bottom:165.120150px;}
.yaf_c00001{bottom:165.120300px;}
.y518_c00001{bottom:165.392700px;}
.y9_c00001{bottom:165.397500px;}
.y4bc_c00001{bottom:165.428100px;}
.y20b_c00001{bottom:166.137450px;}
.y18a_c00001{bottom:166.420500px;}
.y359_c00001{bottom:167.217450px;}
.y1ad_c00001{bottom:168.155550px;}
.y4b6_c00001{bottom:168.156450px;}
.y47e_c00001{bottom:168.918150px;}
.y54b_c00001{bottom:168.959550px;}
.y279_c00001{bottom:169.629450px;}
.y296_c00001{bottom:170.367450px;}
.y114_c00001{bottom:170.795700px;}
.y4f7_c00001{bottom:171.203700px;}
.y88_c00001{bottom:171.616350px;}
.y533_c00001{bottom:171.766500px;}
.y375_c00001{bottom:171.965550px;}
.y4a0_c00001{bottom:172.408350px;}
.y25c_c00001{bottom:172.509450px;}
.y432_c00001{bottom:173.170200px;}
.y175_c00001{bottom:173.624250px;}
.ycb_c00001{bottom:173.861100px;}
.y3b7_c00001{bottom:173.932050px;}
.yb9_c00001{bottom:174.617250px;}
.y1e2_c00001{bottom:175.779600px;}
.y463_c00001{bottom:175.898550px;}
.y2d2_c00001{bottom:176.217450px;}
.y30e_c00001{bottom:176.219700px;}
.y4e4_c00001{bottom:176.660400px;}
.y1eb_c00001{bottom:177.148650px;}
.y552_c00001{bottom:177.790200px;}
.y40f_c00001{bottom:178.183950px;}
.y330_c00001{bottom:178.467450px;}
.y3a0_c00001{bottom:178.945800px;}
.y504_c00001{bottom:179.707650px;}
.y167_c00001{bottom:179.713500px;}
.y151_c00001{bottom:180.120150px;}
.yb5_c00001{bottom:180.178950px;}
.y249_c00001{bottom:181.023450px;}
.y3e4_c00001{bottom:181.674150px;}
.y316_c00001{bottom:182.967450px;}
.y22a_c00001{bottom:183.147450px;}
.y1c4_c00001{bottom:183.155550px;}
.y4ca_c00001{bottom:183.197850px;}
.y490_c00001{bottom:184.402500px;}
.y477_c00001{bottom:185.164200px;}
.y41e_c00001{bottom:185.926050px;}
.y2b4_c00001{bottom:186.493050px;}
.y87_c00001{bottom:186.616350px;}
.y2e7_c00001{bottom:188.459700px;}
.y53_c00001{bottom:188.624250px;}
.y35_c00001{bottom:188.970600px;}
.y517_c00001{bottom:190.142700px;}
.y3c6_c00001{bottom:190.178100px;}
.y2a4_c00001{bottom:191.705550px;}
.y113_c00001{bottom:191.790450px;}
.y358_c00001{bottom:191.967450px;}
.y1ac_c00001{bottom:192.905550px;}
.y448_c00001{bottom:193.668150px;}
.y54a_c00001{bottom:193.709550px;}
.y278_c00001{bottom:194.379450px;}
.y295_c00001{bottom:195.117450px;}
.y4f6_c00001{bottom:195.953700px;}
.y551_c00001{bottom:196.390200px;}
.y532_c00001{bottom:196.516500px;}
.y374_c00001{bottom:196.715550px;}
.y4b5_c00001{bottom:197.158350px;}
.y20a_c00001{bottom:197.259450px;}
.yb4_c00001{bottom:198.174450px;}
.yca_c00001{bottom:198.611100px;}
.y3b6_c00001{bottom:198.682050px;}
.yb8_c00001{bottom:199.367250px;}
.y2d1_c00001{bottom:200.967450px;}
.y30d_c00001{bottom:200.969700px;}
.y49f_c00001{bottom:201.418200px;}
.y86_c00001{bottom:201.616350px;}
.y1ea_c00001{bottom:201.898650px;}
.y32f_c00001{bottom:203.217450px;}
.y25b_c00001{bottom:203.631450px;}
.y166_c00001{bottom:204.463500px;}
.y189_c00001{bottom:206.164500px;}
.y3e3_c00001{bottom:206.424150px;}
.yed_c00001{bottom:206.529450px;}
.y400_c00001{bottom:207.186000px;}
.y315_c00001{bottom:207.717450px;}
.y229_c00001{bottom:207.897450px;}
.y1c3_c00001{bottom:207.905550px;}
.y4c9_c00001{bottom:207.947850px;}
.y462_c00001{bottom:209.152500px;}
.y476_c00001{bottom:209.914200px;}
.y41d_c00001{bottom:210.676050px;}
.y2b3_c00001{bottom:211.243050px;}
.y40e_c00001{bottom:211.437900px;}
.y248_c00001{bottom:212.145450px;}
.y39f_c00001{bottom:212.199600px;}
.y135_c00001{bottom:212.353350px;}
.y503_c00001{bottom:212.961600px;}
.y2e6_c00001{bottom:213.209700px;}
.y48f_c00001{bottom:213.404400px;}
.y34_c00001{bottom:213.720600px;}
.y4dc_c00001{bottom:214.166250px;}
.y2a3_c00001{bottom:214.211550px;}
.y570_c00001{bottom:214.400250px;}
.y567_c00001{bottom:214.402200px;}
.y516_c00001{bottom:214.892700px;}
.y550_c00001{bottom:214.990200px;}
.y1e1_c00001{bottom:215.529600px;}
.yb3_c00001{bottom:216.169950px;}
.y85_c00001{bottom:216.616350px;}
.y447_c00001{bottom:218.418150px;}
.y549_c00001{bottom:218.463600px;}
.y294_c00001{bottom:219.867450px;}
.y4f5_c00001{bottom:220.703700px;}
.y531_c00001{bottom:221.266500px;}
.y112_c00001{bottom:221.343450px;}
.y373_c00001{bottom:221.465550px;}
.y209_c00001{bottom:222.009450px;}
.yc9_c00001{bottom:223.361100px;}
.y3c5_c00001{bottom:223.432050px;}
.y277_c00001{bottom:225.501450px;}
.y2d0_c00001{bottom:225.717450px;}
.y30c_c00001{bottom:225.719700px;}
.y1e9_c00001{bottom:226.648650px;}
.y3b5_c00001{bottom:227.683950px;}
.y4bb_c00001{bottom:227.691900px;}
.y32e_c00001{bottom:227.967450px;}
.y25a_c00001{bottom:228.381450px;}
.y165_c00001{bottom:229.213500px;}
.y150_c00001{bottom:230.229450px;}
.y4b4_c00001{bottom:230.412300px;}
.y188_c00001{bottom:230.914500px;}
.y3e2_c00001{bottom:231.174150px;}
.yec_c00001{bottom:231.279450px;}
.y3ff_c00001{bottom:231.936000px;}
.y314_c00001{bottom:232.467450px;}
.y1ab_c00001{bottom:232.655550px;}
.y4c8_c00001{bottom:232.697850px;}
.y54f_c00001{bottom:233.590200px;}
.y56f_c00001{bottom:233.900250px;}
.y566_c00001{bottom:233.902200px;}
.y461_c00001{bottom:233.902500px;}
.yb2_c00001{bottom:234.165450px;}
.y475_c00001{bottom:234.664200px;}
.y357_c00001{bottom:234.717450px;}
.y431_c00001{bottom:235.426050px;}
.y2b2_c00001{bottom:235.993050px;}
.y40d_c00001{bottom:236.187900px;}
.y247_c00001{bottom:236.895450px;}
.y39e_c00001{bottom:236.949600px;}
.y134_c00001{bottom:237.103350px;}
.y2e5_c00001{bottom:237.959700px;}
.y52_c00001{bottom:238.083600px;}
.y4ff_c00001{bottom:238.916250px;}
.y228_c00001{bottom:239.019450px;}
.yb7_c00001{bottom:239.111250px;}
.y515_c00001{bottom:239.642700px;}
.y41c_c00001{bottom:239.678100px;}
.y1e0_c00001{bottom:240.279600px;}
.y502_c00001{bottom:241.963500px;}
.y33_c00001{bottom:242.718600px;}
.y508_c00001{bottom:243.168150px;}
.y2a2_c00001{bottom:245.209500px;}
.y4f4_c00001{bottom:245.453700px;}
.y530_c00001{bottom:246.016500px;}
.y111_c00001{bottom:246.093450px;}
.y372_c00001{bottom:246.215550px;}
.y48e_c00001{bottom:246.658350px;}
.y446_c00001{bottom:247.420200px;}
.y548_c00001{bottom:247.461600px;}
.yc8_c00001{bottom:248.111100px;}
.y529_c00001{bottom:248.146650px;}
.y276_c00001{bottom:250.251450px;}
.y2cf_c00001{bottom:250.467450px;}
.y30b_c00001{bottom:250.469700px;}
.y293_c00001{bottom:250.989450px;}
.y1e8_c00001{bottom:251.398650px;}
.yb1_c00001{bottom:252.160950px;}
.y54e_c00001{bottom:252.190200px;}
.y3c4_c00001{bottom:252.433950px;}
.y32d_c00001{bottom:252.717450px;}
.y208_c00001{bottom:253.131450px;}
.y56e_c00001{bottom:253.400250px;}
.y565_c00001{bottom:253.402200px;}
.y164_c00001{bottom:253.963500px;}
.y14f_c00001{bottom:254.979450px;}
.y4b3_c00001{bottom:255.162300px;}
.y187_c00001{bottom:255.664500px;}
.y497_c00001{bottom:255.924150px;}
.yeb_c00001{bottom:256.029450px;}
.y3fe_c00001{bottom:256.686000px;}
.y313_c00001{bottom:257.217450px;}
.y1aa_c00001{bottom:257.405550px;}
.y4c7_c00001{bottom:257.447850px;}
.y49e_c00001{bottom:259.414200px;}
.y356_c00001{bottom:259.467450px;}
.y259_c00001{bottom:259.503450px;}
.y3e1_c00001{bottom:260.184000px;}
.y2b1_c00001{bottom:260.743050px;}
.y3b4_c00001{bottom:260.937900px;}
.y39d_c00001{bottom:261.699600px;}
.y2e4_c00001{bottom:262.709700px;}
.y51_c00001{bottom:262.833600px;}
.y460_c00001{bottom:262.904400px;}
.y474_c00001{bottom:263.666250px;}
.y227_c00001{bottom:263.769450px;}
.yb6_c00001{bottom:263.861250px;}
.y514_c00001{bottom:264.392700px;}
.y1df_c00001{bottom:265.029600px;}
.y2a1_c00001{bottom:267.715500px;}
.y246_c00001{bottom:268.017450px;}
.y430_c00001{bottom:268.680000px;}
.y84_c00001{bottom:269.972550px;}
.y4f3_c00001{bottom:270.203700px;}
.y52f_c00001{bottom:270.766500px;}
.y110_c00001{bottom:270.843450px;}
.y371_c00001{bottom:270.965550px;}
.y4db_c00001{bottom:272.170200px;}
.y547_c00001{bottom:272.211600px;}
.yc7_c00001{bottom:272.861100px;}
.y528_c00001{bottom:272.896650px;}
.y56d_c00001{bottom:272.900250px;}
.y564_c00001{bottom:272.902200px;}
.y41b_c00001{bottom:272.932050px;}
.y2ce_c00001{bottom:275.217450px;}
.y30a_c00001{bottom:275.219700px;}
.y48d_c00001{bottom:275.660400px;}
.y1e7_c00001{bottom:276.148650px;}
.y133_c00001{bottom:276.847350px;}
.y32c_c00001{bottom:277.467450px;}
.y207_c00001{bottom:277.881450px;}
.y163_c00001{bottom:278.713500px;}
.y4b2_c00001{bottom:279.912300px;}
.y186_c00001{bottom:280.414500px;}
.y445_c00001{bottom:280.674150px;}
.yea_c00001{bottom:280.779450px;}
.y275_c00001{bottom:281.373450px;}
.y3fd_c00001{bottom:281.436000px;}
.y312_c00001{bottom:281.967450px;}
.y292_c00001{bottom:282.111450px;}
.y1a9_c00001{bottom:282.155550px;}
.y4c6_c00001{bottom:282.197850px;}
.y32_c00001{bottom:282.462600px;}
.y355_c00001{bottom:284.217450px;}
.y258_c00001{bottom:284.253450px;}
.y496_c00001{bottom:284.926050px;}
.y2b0_c00001{bottom:285.493050px;}
.y3b3_c00001{bottom:285.687900px;}
.y39c_c00001{bottom:286.449750px;}
.y57f_c00001{bottom:287.348250px;}
.y2e3_c00001{bottom:287.459700px;}
.y50_c00001{bottom:287.583600px;}
.y49d_c00001{bottom:288.416250px;}
.y1de_c00001{bottom:289.779600px;}
.y40c_c00001{bottom:289.939950px;}
.y56c_c00001{bottom:292.400250px;}
.y563_c00001{bottom:292.402200px;}
.y513_c00001{bottom:293.410500px;}
.y3e0_c00001{bottom:293.430000px;}
.y83_c00001{bottom:294.722550px;}
.y14e_c00001{bottom:294.723450px;}
.y4f2_c00001{bottom:294.953700px;}
.y37f_c00001{bottom:295.408500px;}
.y52e_c00001{bottom:295.516500px;}
.y10f_c00001{bottom:295.593450px;}
.y370_c00001{bottom:295.715550px;}
.y45f_c00001{bottom:296.158350px;}
.y473_c00001{bottom:296.920200px;}
.y546_c00001{bottom:296.961600px;}
.y226_c00001{bottom:297.015450px;}
.y527_c00001{bottom:297.646650px;}
.y41a_c00001{bottom:297.682050px;}
.y2a0_c00001{bottom:298.713450px;}
.y245_c00001{bottom:299.139450px;}
.y2cd_c00001{bottom:299.967450px;}
.y309_c00001{bottom:299.969700px;}
.yc3_c00001{bottom:300.563400px;}
.y4da_c00001{bottom:301.172250px;}
.y132_c00001{bottom:301.597350px;}
.y32b_c00001{bottom:302.217450px;}
.y162_c00001{bottom:303.463500px;}
.y185_c00001{bottom:305.164500px;}
.y444_c00001{bottom:305.424150px;}
.ye9_c00001{bottom:305.529450px;}
.y3fc_c00001{bottom:306.185850px;}
.y311_c00001{bottom:306.717450px;}
.y1a8_c00001{bottom:306.905400px;}
.y4c5_c00001{bottom:306.947700px;}
.y31_c00001{bottom:307.212600px;}
.y48c_c00001{bottom:308.914350px;}
.y354_c00001{bottom:308.967450px;}
.y206_c00001{bottom:309.003450px;}
.y2af_c00001{bottom:310.243050px;}
.y3b2_c00001{bottom:310.437900px;}
.y39b_c00001{bottom:311.199750px;}
.y56b_c00001{bottom:311.900250px;}
.y562_c00001{bottom:311.902200px;}
.y2e2_c00001{bottom:312.209700px;}
.y274_c00001{bottom:312.495450px;}
.y291_c00001{bottom:313.233450px;}
.yd1_c00001{bottom:313.319250px;}
.y512_c00001{bottom:318.160500px;}
.y3df_c00001{bottom:318.180000px;}
.y57e_c00001{bottom:318.740850px;}
.yc2_c00001{bottom:319.163400px;}
.y82_c00001{bottom:319.472550px;}
.y14d_c00001{bottom:319.473450px;}
.y4f1_c00001{bottom:319.703700px;}
.y37e_c00001{bottom:320.158500px;}
.y52d_c00001{bottom:320.266500px;}
.y36f_c00001{bottom:320.465550px;}
.y29f_c00001{bottom:321.219450px;}
.y472_c00001{bottom:321.670200px;}
.y545_c00001{bottom:321.711600px;}
.y225_c00001{bottom:321.765450px;}
.y1c2_c00001{bottom:321.905400px;}
.y526_c00001{bottom:322.396650px;}
.y419_c00001{bottom:322.432050px;}
.y40b_c00001{bottom:323.193750px;}
.y2cc_c00001{bottom:324.717450px;}
.y308_c00001{bottom:324.719700px;}
.y45e_c00001{bottom:325.160400px;}
.y131_c00001{bottom:326.347350px;}
.y4f_c00001{bottom:327.333600px;}
.y161_c00001{bottom:328.213500px;}
.y37b_c00001{bottom:328.455750px;}
.y1dd_c00001{bottom:329.529600px;}
.y443_c00001{bottom:330.174150px;}
.y244_c00001{bottom:330.261450px;}
.ye8_c00001{bottom:330.279450px;}
.y3fb_c00001{bottom:330.935850px;}
.y56a_c00001{bottom:331.400250px;}
.y561_c00001{bottom:331.402200px;}
.y343_c00001{bottom:331.467450px;}
.y4c4_c00001{bottom:331.697700px;}
.yd0_c00001{bottom:331.919250px;}
.y353_c00001{bottom:333.717450px;}
.y205_c00001{bottom:333.753450px;}
.y481_c00001{bottom:334.426050px;}
.y2ae_c00001{bottom:334.993050px;}
.y3c3_c00001{bottom:335.187900px;}
.y10e_c00001{bottom:335.337450px;}
.y39a_c00001{bottom:335.949750px;}
.y2e1_c00001{bottom:336.959700px;}
.y273_c00001{bottom:337.245450px;}
.yc1_c00001{bottom:337.763400px;}
.y48b_c00001{bottom:337.916250px;}
.y3b1_c00001{bottom:339.439950px;}
.y257_c00001{bottom:340.125450px;}
.y3de_c00001{bottom:342.930000px;}
.y81_c00001{bottom:344.222550px;}
.y14c_c00001{bottom:344.223450px;}
.y290_c00001{bottom:344.355450px;}
.y4f0_c00001{bottom:344.453700px;}
.y184_c00001{bottom:344.908500px;}
.y32a_c00001{bottom:344.967450px;}
.y52c_c00001{bottom:345.016500px;}
.y36e_c00001{bottom:345.215550px;}
.y544_c00001{bottom:346.465500px;}
.y1a7_c00001{bottom:346.655400px;}
.y30_c00001{bottom:347.015100px;}
.y525_c00001{bottom:347.146650px;}
.y42f_c00001{bottom:347.182050px;}
.y40a_c00001{bottom:347.943750px;}
.y37a_c00001{bottom:347.955750px;}
.y39_c00001{bottom:349.082250px;}
.y2cb_c00001{bottom:349.467450px;}
.y307_c00001{bottom:349.469700px;}
.y57d_c00001{bottom:350.133450px;}
.ycf_c00001{bottom:350.519250px;}
.y471_c00001{bottom:350.672250px;}
.y569_c00001{bottom:350.900250px;}
.y560_c00001{bottom:350.902200px;}
.y130_c00001{bottom:351.097350px;}
.y511_c00001{bottom:351.406500px;}
.y418_c00001{bottom:351.433950px;}
.y4e_c00001{bottom:352.083600px;}
.y29e_c00001{bottom:352.223400px;}
.y224_c00001{bottom:352.887450px;}
.y160_c00001{bottom:352.963500px;}
.y1dc_c00001{bottom:354.279600px;}
.y47d_c00001{bottom:354.924150px;}
.y243_c00001{bottom:355.011450px;}
.y342_c00001{bottom:356.217450px;}
.yc0_c00001{bottom:356.363400px;}
.y4c3_c00001{bottom:356.447700px;}
.y45d_c00001{bottom:358.414350px;}
.y442_c00001{bottom:359.176050px;}
.y2ad_c00001{bottom:359.743050px;}
.y3c2_c00001{bottom:359.937900px;}
.y3fa_c00001{bottom:359.945850px;}
.y10d_c00001{bottom:360.087450px;}
.y399_c00001{bottom:360.699750px;}
.y2e0_c00001{bottom:361.709700px;}
.y4d9_c00001{bottom:363.428100px;}
.y204_c00001{bottom:364.875450px;}
.y4b1_c00001{bottom:366.918150px;}
.y480_c00001{bottom:367.680000px;}
.y38_c00001{bottom:367.682250px;}
.y2f_c00001{bottom:368.009850px;}
.y272_c00001{bottom:368.367450px;}
.y80_c00001{bottom:368.972550px;}
.y14b_c00001{bottom:368.973450px;}
.y28f_c00001{bottom:369.105450px;}
.yce_c00001{bottom:369.119250px;}
.y4ef_c00001{bottom:369.203700px;}
.y183_c00001{bottom:369.658500px;}
.y329_c00001{bottom:369.717450px;}
.y52b_c00001{bottom:369.766500px;}
.y36d_c00001{bottom:369.965550px;}
.ye7_c00001{bottom:370.023450px;}
.y568_c00001{bottom:370.400250px;}
.y55f_c00001{bottom:370.402200px;}
.y48a_c00001{bottom:371.170200px;}
.y1a6_c00001{bottom:371.405400px;}
.y524_c00001{bottom:371.896650px;}
.y3dd_c00001{bottom:371.932050px;}
.y3b0_c00001{bottom:372.693750px;}
.y379_c00001{bottom:373.461450px;}
.y2ca_c00001{bottom:374.217450px;}
.y306_c00001{bottom:374.219700px;}
.y29d_c00001{bottom:374.723400px;}
.y543_c00001{bottom:375.463500px;}
.y12f_c00001{bottom:375.847350px;}
.y510_c00001{bottom:376.156500px;}
.y352_c00001{bottom:376.467450px;}
.y4d_c00001{bottom:376.833600px;}
.y223_c00001{bottom:377.637450px;}
.y15f_c00001{bottom:377.713500px;}
.y1db_c00001{bottom:379.029600px;}
.y42e_c00001{bottom:380.435850px;}
.y341_c00001{bottom:380.967450px;}
.y4c2_c00001{bottom:381.197700px;}
.y47c_c00001{bottom:383.926050px;}
.y2ac_c00001{bottom:384.493050px;}
.y3c1_c00001{bottom:384.687900px;}
.y10c_c00001{bottom:384.837450px;}
.y398_c00001{bottom:385.449750px;}
.y242_c00001{bottom:386.133450px;}
.y37_c00001{bottom:386.282250px;}
.y2df_c00001{bottom:386.459700px;}
.y29c_c00001{bottom:387.334500px;}
.y45c_c00001{bottom:387.416250px;}
.y4fe_c00001{bottom:388.178100px;}
.y2e_c00001{bottom:389.004600px;}
.y441_c00001{bottom:392.430000px;}
.y3f9_c00001{bottom:393.191850px;}
.y7f_c00001{bottom:393.722550px;}
.y14a_c00001{bottom:393.723450px;}
.y4ee_c00001{bottom:393.953700px;}
.y182_c00001{bottom:394.408500px;}
.y328_c00001{bottom:394.467450px;}
.ye6_c00001{bottom:394.515450px;}
.y36c_c00001{bottom:394.715550px;}
.y489_c00001{bottom:395.920200px;}
.y203_c00001{bottom:395.997450px;}
.y1a5_c00001{bottom:396.155400px;}
.y523_c00001{bottom:396.646650px;}
.y4d8_c00001{bottom:396.682050px;}
.y3af_c00001{bottom:397.443750px;}
.y2c9_c00001{bottom:398.967450px;}
.y305_c00001{bottom:398.969700px;}
.y271_c00001{bottom:399.489450px;}
.y542_c00001{bottom:400.213500px;}
.y28e_c00001{bottom:400.227450px;}
.y12e_c00001{bottom:400.597350px;}
.y50f_c00001{bottom:400.906500px;}
.y351_c00001{bottom:401.217450px;}
.y4c_c00001{bottom:401.583600px;}
.y15e_c00001{bottom:402.463500px;}
.y55e_c00001{bottom:404.782200px;}
.y495_c00001{bottom:405.185850px;}
.y340_c00001{bottom:405.717450px;}
.y4c1_c00001{bottom:405.947700px;}
.y470_c00001{bottom:408.676050px;}
.y222_c00001{bottom:408.759450px;}
.y2ab_c00001{bottom:409.243050px;}
.y37d_c00001{bottom:409.402500px;}
.y417_c00001{bottom:409.437900px;}
.y42d_c00001{bottom:409.445850px;}
.y10b_c00001{bottom:409.587450px;}
.y2d_c00001{bottom:409.999350px;}
.y397_c00001{bottom:410.199750px;}
.y2de_c00001{bottom:411.209700px;}
.y4e3_c00001{bottom:412.928100px;}
.y3c0_c00001{bottom:413.689950px;}
.y9f_c00001{bottom:416.374350px;}
.y440_c00001{bottom:417.180000px;}
.y241_c00001{bottom:417.255450px;}
.y9e_c00001{bottom:417.649950px;}
.y3f8_c00001{bottom:417.941850px;}
.y7e_c00001{bottom:418.472550px;}
.y149_c00001{bottom:418.473450px;}
.y4ed_c00001{bottom:418.703700px;}
.y1da_c00001{bottom:418.779600px;}
.ye5_c00001{bottom:418.959450px;}
.y181_c00001{bottom:419.158500px;}
.y327_c00001{bottom:419.217450px;}
.y36b_c00001{bottom:419.465550px;}
.y45b_c00001{bottom:420.670200px;}
.y256_c00001{bottom:420.747450px;}
.y1a4_c00001{bottom:420.905400px;}
.y4d7_c00001{bottom:421.432050px;}
.y3ae_c00001{bottom:422.193750px;}
.y2c8_c00001{bottom:423.717450px;}
.y304_c00001{bottom:423.719700px;}
.y270_c00001{bottom:424.239450px;}
.y488_c00001{bottom:424.922250px;}
.y541_c00001{bottom:424.963500px;}
.y12d_c00001{bottom:425.347350px;}
.y522_c00001{bottom:425.648550px;}
.y50e_c00001{bottom:425.656500px;}
.y350_c00001{bottom:425.967450px;}
.y4b_c00001{bottom:426.333600px;}
.y409_c00001{bottom:426.453750px;}
.y202_c00001{bottom:427.119450px;}
.y15d_c00001{bottom:427.213500px;}
.y4b0_c00001{bottom:429.174150px;}
.y3dc_c00001{bottom:429.935850px;}
.y33f_c00001{bottom:430.467450px;}
.y4c0_c00001{bottom:430.697700px;}
.y2c_c00001{bottom:430.994100px;}
.yd5_c00001{bottom:431.311500px;}
.y28d_c00001{bottom:431.349450px;}
.y9d_c00001{bottom:432.648450px;}
.y49c_c00001{bottom:433.426050px;}
.y2aa_c00001{bottom:433.993050px;}
.y37c_c00001{bottom:434.152500px;}
.y10a_c00001{bottom:434.337450px;}
.y396_c00001{bottom:434.949750px;}
.y2dd_c00001{bottom:435.959700px;}
.y46f_c00001{bottom:437.678100px;}
.y416_c00001{bottom:438.439950px;}
.y221_c00001{bottom:439.881450px;}
.y42c_c00001{bottom:442.691850px;}
.y7d_c00001{bottom:443.222550px;}
.y148_c00001{bottom:443.223450px;}
.ye4_c00001{bottom:443.403450px;}
.y4ec_c00001{bottom:443.453700px;}
.y1d9_c00001{bottom:443.529600px;}
.y1e6_c00001{bottom:443.908500px;}
.y326_c00001{bottom:443.967450px;}
.y36a_c00001{bottom:444.215550px;}
.y45a_c00001{bottom:445.420200px;}
.y43f_c00001{bottom:446.182050px;}
.y3ad_c00001{bottom:446.943750px;}
.y240_c00001{bottom:448.377450px;}
.y2c7_c00001{bottom:448.467450px;}
.y303_c00001{bottom:448.469700px;}
.y540_c00001{bottom:449.713500px;}
.yd4_c00001{bottom:449.911500px;}
.y12c_c00001{bottom:450.097350px;}
.y521_c00001{bottom:450.398550px;}
.y50d_c00001{bottom:450.406500px;}
.y4d6_c00001{bottom:450.433950px;}
.y34f_c00001{bottom:450.717450px;}
.y255_c00001{bottom:451.869450px;}
.y2b_c00001{bottom:451.988850px;}
.y4af_c00001{bottom:453.924150px;}
.y3db_c00001{bottom:454.685850px;}
.y33e_c00001{bottom:455.217450px;}
.y26f_c00001{bottom:455.361450px;}
.y4bf_c00001{bottom:455.447700px;}
.y28c_c00001{bottom:456.099450px;}
.y487_c00001{bottom:458.176050px;}
.y201_c00001{bottom:458.241450px;}
.y2a9_c00001{bottom:458.743050px;}
.y180_c00001{bottom:458.902500px;}
.y494_c00001{bottom:458.937900px;}
.y507_c00001{bottom:458.945850px;}
.y109_c00001{bottom:459.087450px;}
.y1c1_c00001{bottom:460.650450px;}
.y1a3_c00001{bottom:460.655400px;}
.y2dc_c00001{bottom:460.709700px;}
.y395_c00001{bottom:463.959600px;}
.y220_c00001{bottom:464.631450px;}
.y4a_c00001{bottom:466.089600px;}
.y15c_c00001{bottom:466.968750px;}
.y42b_c00001{bottom:467.441850px;}
.ye3_c00001{bottom:467.847450px;}
.y7c_c00001{bottom:467.972550px;}
.y4eb_c00001{bottom:468.203700px;}
.y1d8_c00001{bottom:468.279600px;}
.yd3_c00001{bottom:468.511500px;}
.y1e5_c00001{bottom:468.658500px;}
.y325_c00001{bottom:468.717450px;}
.y369_c00001{bottom:468.965550px;}
.y46e_c00001{bottom:470.932050px;}
.y3ac_c00001{bottom:471.693750px;}
.y2a_c00001{bottom:472.983600px;}
.y2c6_c00001{bottom:473.217450px;}
.y302_c00001{bottom:473.219700px;}
.y459_c00001{bottom:474.445950px;}
.y53f_c00001{bottom:474.463500px;}
.y520_c00001{bottom:475.148550px;}
.y50c_c00001{bottom:475.156500px;}
.y4fd_c00001{bottom:475.183950px;}
.y34e_c00001{bottom:475.467450px;}
.y3bf_c00001{bottom:475.945800px;}
.y91_c00001{bottom:476.815350px;}
.y3da_c00001{bottom:479.435850px;}
.y23f_c00001{bottom:479.499450px;}
.y68_c00001{bottom:479.809950px;}
.y33d_c00001{bottom:479.967450px;}
.y3f7_c00001{bottom:480.197700px;}
.y486_c00001{bottom:482.926050px;}
.y147_c00001{bottom:482.967450px;}
.y254_c00001{bottom:482.991450px;}
.y2a8_c00001{bottom:483.493050px;}
.y17f_c00001{bottom:483.652500px;}
.y4d5_c00001{bottom:483.687900px;}
.y408_c00001{bottom:484.449750px;}
.y1a2_c00001{bottom:485.405400px;}
.y2db_c00001{bottom:485.459700px;}
.y26e_c00001{bottom:486.483450px;}
.yd2_c00001{bottom:487.111500px;}
.y49b_c00001{bottom:487.178100px;}
.y28b_c00001{bottom:487.221450px;}
.y15b_c00001{bottom:487.963500px;}
.y200_c00001{bottom:489.363450px;}
.y12b_c00001{bottom:489.841350px;}
.y49_c00001{bottom:490.839600px;}
.y42a_c00001{bottom:492.191850px;}
.ye2_c00001{bottom:492.291450px;}
.y7b_c00001{bottom:492.722550px;}
.y4ea_c00001{bottom:492.953700px;}
.y324_c00001{bottom:493.467450px;}
.y368_c00001{bottom:493.715550px;}
.y29_c00001{bottom:493.978350px;}
.y62_c00001{bottom:494.808450px;}
.y90_c00001{bottom:495.415350px;}
.y46d_c00001{bottom:495.682050px;}
.y21f_c00001{bottom:495.753450px;}
.y153_c00001{bottom:496.361850px;}
.y3ab_c00001{bottom:496.443750px;}
.y394_c00001{bottom:497.205600px;}
.y2c5_c00001{bottom:497.967450px;}
.y301_c00001{bottom:497.969700px;}
.y108_c00001{bottom:498.831450px;}
.y53e_c00001{bottom:499.227450px;}
.y51f_c00001{bottom:499.898550px;}
.y50b_c00001{bottom:499.906500px;}
.y43e_c00001{bottom:504.185850px;}
.y23e_c00001{bottom:504.249450px;}
.y33c_c00001{bottom:504.717450px;}
.y3f6_c00001{bottom:504.947700px;}
.y55b_c00001{bottom:505.504200px;}
.y146_c00001{bottom:507.717450px;}
.y1d7_c00001{bottom:508.029600px;}
.y2a7_c00001{bottom:508.243050px;}
.y17e_c00001{bottom:508.402500px;}
.y3d9_c00001{bottom:508.437900px;}
.yae_c00001{bottom:508.969650px;}
.y3be_c00001{bottom:509.199750px;}
.y61_c00001{bottom:509.806950px;}
.y537_c00001{bottom:509.968200px;}
.y1a1_c00001{bottom:510.155400px;}
.y2da_c00001{bottom:510.209700px;}
.y10_c00001{bottom:511.699800px;}
.y485_c00001{bottom:511.928100px;}
.y4d4_c00001{bottom:512.697750px;}
.y3e_c00001{bottom:513.300300px;}
.y8f_c00001{bottom:514.015350px;}
.y253_c00001{bottom:514.113450px;}
.y12a_c00001{bottom:514.591350px;}
.y152_c00001{bottom:514.961850px;}
.y28_c00001{bottom:514.973100px;}
.y1c0_c00001{bottom:515.406450px;}
.y48_c00001{bottom:515.589600px;}
.y4ae_c00001{bottom:516.180000px;}
.y493_c00001{bottom:516.941850px;}
.y7a_c00001{bottom:517.472550px;}
.y15a_c00001{bottom:517.479450px;}
.y26d_c00001{bottom:517.605450px;}
.y57c_c00001{bottom:517.690950px;}
.y4e9_c00001{bottom:517.703700px;}
.y323_c00001{bottom:518.217450px;}
.y28a_c00001{bottom:518.343450px;}
.y367_c00001{bottom:518.465550px;}
.y46c_c00001{bottom:520.432050px;}
.y1ff_c00001{bottom:520.485450px;}
.y55a_c00001{bottom:520.502700px;}
.y415_c00001{bottom:521.193750px;}
.y393_c00001{bottom:521.955600px;}
.y2c4_c00001{bottom:522.717450px;}
.y300_c00001{bottom:522.719700px;}
.y107_c00001{bottom:523.581450px;}
.yf_c00001{bottom:524.572200px;}
.y51e_c00001{bottom:524.648550px;}
.y3aa_c00001{bottom:525.445800px;}
.y14_c00001{bottom:526.215600px;}
.yc_c00001{bottom:526.698300px;}
.y21e_c00001{bottom:526.875450px;}
.y536_c00001{bottom:528.568200px;}
.y43d_c00001{bottom:528.935850px;}
.y33b_c00001{bottom:529.467450px;}
.y3f5_c00001{bottom:529.697700px;}
.ye1_c00001{bottom:531.747450px;}
.y3d_c00001{bottom:531.900300px;}
.y458_c00001{bottom:532.441950px;}
.y145_c00001{bottom:532.467450px;}
.y53d_c00001{bottom:532.473450px;}
.y1d6_c00001{bottom:532.779600px;}
.y2a6_c00001{bottom:532.993050px;}
.y17d_c00001{bottom:533.152500px;}
.y47b_c00001{bottom:533.187900px;}
.yad_c00001{bottom:533.719650px;}
.y407_c00001{bottom:533.949750px;}
.y1a0_c00001{bottom:534.905400px;}
.y2d9_c00001{bottom:534.959700px;}
.y23d_c00001{bottom:535.371450px;}
.y27_c00001{bottom:535.967850px;}
.y4fc_c00001{bottom:537.439950px;}
.y3bd_c00001{bottom:538.201650px;}
.y252_c00001{bottom:538.863450px;}
.y129_c00001{bottom:539.341350px;}
.ye_c00001{bottom:539.570700px;}
.y1bf_c00001{bottom:540.156450px;}
.y4ad_c00001{bottom:540.930000px;}
.y13_c00001{bottom:541.214100px;}
.y3d8_c00001{bottom:541.691850px;}
.yb_c00001{bottom:541.696800px;}
.y159_c00001{bottom:542.229450px;}
.y26c_c00001{bottom:542.355450px;}
.y4e8_c00001{bottom:542.453700px;}
.y34d_c00001{bottom:542.967450px;}
.y366_c00001{bottom:543.215550px;}
.y484_c00001{bottom:545.182050px;}
.y4d3_c00001{bottom:545.943750px;}
.y392_c00001{bottom:546.705600px;}
.y2c3_c00001{bottom:547.467450px;}
.y2ff_c00001{bottom:547.469700px;}
.y106_c00001{bottom:548.331450px;}
.y46b_c00001{bottom:549.433950px;}
.y289_c00001{bottom:549.465450px;}
.y414_c00001{bottom:550.195800px;}
.y3c_c00001{bottom:550.500300px;}
.y1fe_c00001{bottom:551.607450px;}
.y21d_c00001{bottom:551.625450px;}
.y174_c00001{bottom:551.972550px;}
.y33a_c00001{bottom:554.217450px;}
.y429_c00001{bottom:554.447700px;}
.y47_c00001{bottom:555.333600px;}
.ye0_c00001{bottom:556.191450px;}
.y26_c00001{bottom:556.962600px;}
.y79_c00001{bottom:557.216550px;}
.y144_c00001{bottom:557.217450px;}
.y53c_c00001{bottom:557.223450px;}
.y1d5_c00001{bottom:557.529600px;}
.y2a5_c00001{bottom:557.743050px;}
.y17c_c00001{bottom:557.902500px;}
.y43c_c00001{bottom:557.937900px;}
.y57b_c00001{bottom:558.381600px;}
.yac_c00001{bottom:558.469650px;}
.y3a9_c00001{bottom:558.699750px;}
.y2d8_c00001{bottom:559.709700px;}
.y322_c00001{bottom:560.967450px;}
.y457_c00001{bottom:561.439950px;}
.y128_c00001{bottom:564.091350px;}
.y1be_c00001{bottom:564.906450px;}
.y4ac_c00001{bottom:565.680000px;}
.y3d7_c00001{bottom:566.441850px;}
.y23c_c00001{bottom:566.493450px;}
.y158_c00001{bottom:566.979450px;}
.y4e7_c00001{bottom:567.203700px;}
.y34c_c00001{bottom:567.717450px;}
.y365_c00001{bottom:567.965550px;}
.y3b_c00001{bottom:569.100300px;}
.y251_c00001{bottom:569.985450px;}
.y492_c00001{bottom:570.693750px;}
.y391_c00001{bottom:571.455600px;}
.y2c2_c00001{bottom:572.217450px;}
.y2fe_c00001{bottom:572.219700px;}
.y105_c00001{bottom:573.081450px;}
.y26b_c00001{bottom:573.477450px;}
.y483_c00001{bottom:574.183950px;}
.y288_c00001{bottom:574.215450px;}
.y19f_c00001{bottom:574.655400px;}
.y173_c00001{bottom:576.722550px;}
.y339_c00001{bottom:578.967450px;}
.y428_c00001{bottom:579.197700px;}
.y46_c00001{bottom:580.083600px;}
.ydf_c00001{bottom:580.635450px;}
.y78_c00001{bottom:581.966550px;}
.y143_c00001{bottom:581.967450px;}
.y53b_c00001{bottom:581.973450px;}
.y1d4_c00001{bottom:582.279600px;}
.y51d_c00001{bottom:582.650700px;}
.y17b_c00001{bottom:582.652500px;}
.y46a_c00001{bottom:582.687900px;}
.y1fd_c00001{bottom:582.729450px;}
.y21c_c00001{bottom:582.747450px;}
.y57a_c00001{bottom:582.980250px;}
.y3a8_c00001{bottom:583.449750px;}
.y321_c00001{bottom:585.717450px;}
.y25_c00001{bottom:586.491450px;}
.y3a_c00001{bottom:587.700300px;}
.y1bd_c00001{bottom:589.656450px;}
.y3d6_c00001{bottom:591.191850px;}
.y157_c00001{bottom:591.729450px;}
.y3f4_c00001{bottom:591.953700px;}
.y34b_c00001{bottom:592.467450px;}
.y364_c00001{bottom:592.715550px;}
.y2d7_c00001{bottom:592.957650px;}
.y4ab_c00001{bottom:594.682050px;}
.y456_c00001{bottom:594.685950px;}
.y4d2_c00001{bottom:595.443750px;}
.y47a_c00001{bottom:595.451700px;}
.y390_c00001{bottom:596.205600px;}
.y2c1_c00001{bottom:596.967450px;}
.y2fd_c00001{bottom:596.969700px;}
.y23b_c00001{bottom:597.615450px;}
.y104_c00001{bottom:597.831450px;}
.yab_c00001{bottom:598.213650px;}
.y26a_c00001{bottom:598.227450px;}
.y19e_c00001{bottom:599.405400px;}
.y4fb_c00001{bottom:599.695800px;}
.y250_c00001{bottom:601.107450px;}
.y172_c00001{bottom:601.472550px;}
.y338_c00001{bottom:603.717450px;}
.y127_c00001{bottom:603.841350px;}
.y427_c00001{bottom:603.947700px;}
.y45_c00001{bottom:604.833600px;}
.yde_c00001{bottom:605.079450px;}
.y287_c00001{bottom:605.337450px;}
.y142_c00001{bottom:606.717450px;}
.y77_c00001{bottom:606.723450px;}
.y51c_c00001{bottom:607.400700px;}
.y17a_c00001{bottom:607.402500px;}
.y469_c00001{bottom:607.437900px;}
.y1fc_c00001{bottom:607.479450px;}
.y3a7_c00001{bottom:608.199750px;}
.y320_c00001{bottom:610.467450px;}
.y4e2_c00001{bottom:611.689950px;}
.y21b_c00001{bottom:613.869450px;}
.y3d5_c00001{bottom:615.941850px;}
.y156_c00001{bottom:616.479450px;}
.y3f3_c00001{bottom:616.703700px;}
.y2b9_c00001{bottom:616.713450px;}
.y34a_c00001{bottom:617.217450px;}
.y363_c00001{bottom:617.465550px;}
.y2d6_c00001{bottom:617.707650px;}
.y38f_c00001{bottom:620.955600px;}
.y2c0_c00001{bottom:621.717450px;}
.y2fc_c00001{bottom:621.719700px;}
.y1d3_c00001{bottom:622.024500px;}
.y23a_c00001{bottom:622.365450px;}
.y103_c00001{bottom:622.581450px;}
.yaa_c00001{bottom:622.963650px;}
.y455_c00001{bottom:623.683950px;}
.y19d_c00001{bottom:624.155400px;}
.y4d1_c00001{bottom:624.445800px;}
.y171_c00001{bottom:626.222550px;}
.y24_c00001{bottom:626.235450px;}
.y4aa_c00001{bottom:627.935850px;}
.y337_c00001{bottom:628.467450px;}
.y426_c00001{bottom:628.697700px;}
.y269_c00001{bottom:629.349450px;}
.y1bc_c00001{bottom:629.406450px;}
.ydd_c00001{bottom:629.523450px;}
.y44_c00001{bottom:629.583600px;}
.y286_c00001{bottom:630.087450px;}
.y141_c00001{bottom:631.467450px;}
.y76_c00001{bottom:631.473450px;}
.y51b_c00001{bottom:632.150700px;}
.y179_c00001{bottom:632.152500px;}
.y49a_c00001{bottom:632.187900px;}
.y24f_c00001{bottom:632.229450px;}
.y406_c00001{bottom:632.949750px;}
.y31f_c00001{bottom:635.217450px;}
.y468_c00001{bottom:636.439950px;}
.y3a6_c00001{bottom:637.201650px;}
.y1fb_c00001{bottom:638.601450px;}
.y2d5_c00001{bottom:640.213650px;}
.y43b_c00001{bottom:640.691850px;}
.y155_c00001{bottom:641.229450px;}
.y4e6_c00001{bottom:641.453700px;}
.y362_c00001{bottom:642.215550px;}
.y579_c00001{bottom:643.711185px;}
.y3d4_c00001{bottom:644.943750px;}
.y21a_c00001{bottom:644.991450px;}
.y38e_c00001{bottom:645.705600px;}
.y2bf_c00001{bottom:646.467450px;}
.y2fb_c00001{bottom:646.469700px;}
.y239_c00001{bottom:647.115450px;}
.y19c_c00001{bottom:648.905400px;}
.y23_c00001{bottom:650.985450px;}
.y4a9_c00001{bottom:652.685850px;}
.y336_c00001{bottom:653.217450px;}
.y479_c00001{bottom:653.447700px;}
.ydc_c00001{bottom:653.967450px;}
.y268_c00001{bottom:654.099450px;}
.y1bb_c00001{bottom:654.156450px;}
.y43_c00001{bottom:654.333600px;}
.y140_c00001{bottom:656.217450px;}
.y75_c00001{bottom:656.223450px;}
.y454_c00001{bottom:656.937900px;}
.y24e_c00001{bottom:656.979450px;}
.y413_c00001{bottom:657.699750px;}
.y31e_c00001{bottom:659.967450px;}
.y126_c00001{bottom:660.616500px;}
.y499_c00001{bottom:661.189950px;}
.y285_c00001{bottom:661.209450px;}
.y4ba_c00001{bottom:661.951650px;}
.y405_c00001{bottom:661.959600px;}
.y102_c00001{bottom:662.325450px;}
.ya9_c00001{bottom:662.729250px;}
.y1fa_c00001{bottom:663.351450px;}
.y170_c00001{bottom:665.966550px;}
.y154_c00001{bottom:665.979450px;}
.y4e5_c00001{bottom:666.203700px;}
.y361_c00001{bottom:666.965550px;}
.y578_c00001{bottom:667.624950px;}
.y43a_c00001{bottom:669.693750px;}
.y219_c00001{bottom:669.741450px;}
.y38d_c00001{bottom:670.455600px;}
.y2be_c00001{bottom:671.217450px;}
.y2fa_c00001{bottom:671.219700px;}
.y4e1_c00001{bottom:673.945800px;}
.y22_c00001{bottom:675.735450px;}
.y238_c00001{bottom:676.113450px;}
.y1d2_c00001{bottom:676.780500px;}
.y335_c00001{bottom:677.967450px;}
.y3d3_c00001{bottom:678.197850px;}
.y1ba_c00001{bottom:678.906450px;}
.y3f2_c00001{bottom:678.959550px;}
.y42_c00001{bottom:679.083600px;}
.y13f_c00001{bottom:680.967450px;}
.y74_c00001{bottom:680.973450px;}
.y4a8_c00001{bottom:681.687900px;}
.y4d0_c00001{bottom:682.449750px;}
.ya8_c00001{bottom:683.724000px;}
.y349_c00001{bottom:684.717450px;}
.y267_c00001{bottom:685.221450px;}
.y125_c00001{bottom:685.359750px;}
.y453_c00001{bottom:685.939800px;}
.y284_c00001{bottom:685.959450px;}
.y412_c00001{bottom:686.701650px;}
.y101_c00001{bottom:687.075450px;}
.ybf_c00001{bottom:688.063200px;}
.y1f9_c00001{bottom:688.101450px;}
.y574_c00001{bottom:688.502550px;}
.y19b_c00001{bottom:688.655550px;}
.yf7_c00001{bottom:690.218400px;}
.y16f_c00001{bottom:690.716550px;}
.y425_c00001{bottom:690.953700px;}
.y360_c00001{bottom:691.715550px;}
.y467_c00001{bottom:694.443750px;}
.y218_c00001{bottom:694.491450px;}
.y38c_c00001{bottom:695.205600px;}
.y2bd_c00001{bottom:695.967450px;}
.y2f9_c00001{bottom:695.969700px;}
.y482_c00001{bottom:698.703600px;}
.y21_c00001{bottom:700.485450px;}
.y29a_c00001{bottom:700.863450px;}
.y1d1_c00001{bottom:701.530500px;}
.y31d_c00001{bottom:702.717450px;}
.y3d2_c00001{bottom:702.947850px;}
.y3f1_c00001{bottom:703.709550px;}
.y41_c00001{bottom:703.833600px;}
.ya7_c00001{bottom:704.718750px;}
.y13e_c00001{bottom:705.717450px;}
.y73_c00001{bottom:705.723450px;}
.y124_c00001{bottom:706.354500px;}
.ybe_c00001{bottom:706.663200px;}
.yc6_c00001{bottom:707.134200px;}
.y577_c00001{bottom:707.195850px;}
.y4cf_c00001{bottom:707.199750px;}
.y4be_c00001{bottom:707.207700px;}
.y237_c00001{bottom:707.235450px;}
.yf6_c00001{bottom:708.818400px;}
.y348_c00001{bottom:709.467450px;}
.y4fa_c00001{bottom:711.451650px;}
.y100_c00001{bottom:711.825450px;}
.y19a_c00001{bottom:713.405550px;}
.y4a7_c00001{bottom:714.941850px;}
.y16e_c00001{bottom:715.466550px;}
.y424_c00001{bottom:715.703700px;}
.y266_c00001{bottom:716.343450px;}
.y35f_c00001{bottom:716.465550px;}
.y283_c00001{bottom:717.081450px;}
.y1b9_c00001{bottom:718.656450px;}
.y452_c00001{bottom:719.193750px;}
.y1f8_c00001{bottom:719.223450px;}
.y217_c00001{bottom:719.241450px;}
.y3a5_c00001{bottom:719.955600px;}
.y2bc_c00001{bottom:720.717450px;}
.y2f8_c00001{bottom:720.719700px;}
.y466_c00001{bottom:723.453600px;}
.y38b_c00001{bottom:724.207650px;}
.y20_c00001{bottom:725.235450px;}
.ybd_c00001{bottom:725.263200px;}
.ya6_c00001{bottom:725.713500px;}
.yc5_c00001{bottom:725.734200px;}
.y1d0_c00001{bottom:726.280500px;}
.y123_c00001{bottom:727.349250px;}
.yf5_c00001{bottom:727.418400px;}
.y31c_c00001{bottom:727.467450px;}
.y557_c00001{bottom:727.473600px;}
.y439_c00001{bottom:727.697850px;}
.y3f0_c00001{bottom:728.459550px;}
.y40_c00001{bottom:728.583600px;}
.y13d_c00001{bottom:730.467450px;}
.y72_c00001{bottom:730.473450px;}
.y3d1_c00001{bottom:731.949750px;}
.y236_c00001{bottom:731.985450px;}
.y347_c00001{bottom:734.217450px;}
.y4ce_c00001{bottom:736.201650px;}
.yff_c00001{bottom:736.575450px;}
.y199_c00001{bottom:738.155550px;}
.y576_c00001{bottom:738.445200px;}
.y16d_c00001{bottom:740.216550px;}
.y423_c00001{bottom:740.453700px;}
.y35e_c00001{bottom:741.215550px;}
.y1b8_c00001{bottom:743.406450px;}
.ybc_c00001{bottom:743.863200px;}
.y4a6_c00001{bottom:743.943750px;}
.y1f7_c00001{bottom:743.973450px;}
.yc4_c00001{bottom:744.334200px;}
.y3bc_c00001{bottom:744.705600px;}
.y2bb_c00001{bottom:745.467450px;}
.y2f7_c00001{bottom:745.469700px;}
.yf4_c00001{bottom:746.018400px;}
.y265_c00001{bottom:747.465450px;}
.y451_c00001{bottom:748.195800px;}
.y282_c00001{bottom:748.203450px;}
.y3a4_c00001{bottom:748.957650px;}
.y216_c00001{bottom:750.363450px;}
.y573_c00001{bottom:751.006500px;}
.y1cf_c00001{bottom:751.030500px;}
.y31b_c00001{bottom:752.217450px;}
.y3ef_c00001{bottom:753.209550px;}
.y3f_c00001{bottom:753.333600px;}
.ydb_c00001{bottom:754.479900px;}
.y13c_c00001{bottom:755.217450px;}
.y71_c00001{bottom:755.223450px;}
.y438_c00001{bottom:756.699600px;}
.y4dd_c00001{bottom:756.707700px;}
.y299_c00001{bottom:756.735450px;}
.y122_c00001{bottom:756.859050px;}
.y38a_c00001{bottom:757.461600px;}
.yfe_c00001{bottom:761.325450px;}
.y198_c00001{bottom:762.905550px;}
.y235_c00001{bottom:763.107450px;}
.yf3_c00001{bottom:764.618400px;}
.y16c_c00001{bottom:764.966550px;}
.y1f_c00001{bottom:764.979450px;}
.y3d0_c00001{bottom:765.203700px;}
.y35d_c00001{bottom:765.965550px;}
.y2b8_c00001{bottom:765.969450px;}
.y556_c00001{bottom:767.217600px;}
.y1b7_c00001{bottom:768.156450px;}
.y404_c00001{bottom:769.455600px;}
.y2ba_c00001{bottom:770.217450px;}
.y2f6_c00001{bottom:770.219700px;}
.yda_c00001{bottom:773.079900px;}
.y3bb_c00001{bottom:773.707650px;}
.y1f6_c00001{bottom:775.095450px;}
.y31a_c00001{bottom:776.967450px;}
.y4a5_c00001{bottom:777.197850px;}
.y3ee_c00001{bottom:777.959550px;}
.y264_c00001{bottom:778.587450px;}
.y281_c00001{bottom:779.325450px;}
.y70_c00001{bottom:779.973450px;}
.y450_c00001{bottom:781.449600px;}
.y215_c00001{bottom:781.485450px;}
.y121_c00001{bottom:781.609050px;}
.y389_c00001{bottom:782.211600px;}
.yf2_c00001{bottom:783.218400px;}
.y234_c00001{bottom:787.857450px;}
.y5a_c00001{bottom:788.109000px;}
.y572_c00001{bottom:789.510450px;}
.y16b_c00001{bottom:789.716550px;}
.y1e_c00001{bottom:789.729450px;}
.y422_c00001{bottom:789.953700px;}
.y35c_c00001{bottom:790.715550px;}
.y1ce_c00001{bottom:790.780500px;}
.yd9_c00001{bottom:791.679900px;}
.y1b6_c00001{bottom:792.906450px;}
.y3cf_c00001{bottom:794.205600px;}
.y13b_c00001{bottom:794.967450px;}
.y2f5_c00001{bottom:794.969700px;}
.y4cd_c00001{bottom:798.457650px;}
.yfd_c00001{bottom:801.069450px;}
.y319_c00001{bottom:801.717450px;}
.y197_c00001{bottom:802.655550px;}
.y6f_c00001{bottom:804.723450px;}
.y44f_c00001{bottom:806.199600px;}
.y1f5_c00001{bottom:806.217450px;}
.y59_c00001{bottom:806.709000px;}
.y388_c00001{bottom:806.961600px;}
.y263_c00001{bottom:809.709450px;}
.y280_c00001{bottom:810.447450px;}
.y4e0_c00001{bottom:810.451650px;}
.y214_c00001{bottom:812.607450px;}
.y16a_c00001{bottom:814.466550px;}
.y1d_c00001{bottom:814.479450px;}
.y575_c00001{bottom:814.527600px;}
.y437_c00001{bottom:814.703700px;}
.y50a_c00001{bottom:815.465550px;}
.y1cd_c00001{bottom:815.530500px;}
.y411_c00001{bottom:818.955600px;}
.y233_c00001{bottom:818.979450px;}
.y571_c00001{bottom:819.510450px;}
.y13a_c00001{bottom:819.717450px;}
.y2f4_c00001{bottom:819.719700px;}
.y120_c00001{bottom:821.353050px;}
.y403_c00001{bottom:823.207650px;}
.y58_c00001{bottom:825.309000px;}
.y318_c00001{bottom:826.467450px;}
.y196_c00001{bottom:827.405550px;}
.y3ce_c00001{bottom:827.459550px;}
.y6e_c00001{bottom:829.473450px;}
.y1f4_c00001{bottom:830.967450px;}
.y387_c00001{bottom:831.711600px;}
.y1b5_c00001{bottom:832.656450px;}
.y27f_c00001{bottom:835.197450px;}
.y44e_c00001{bottom:835.201650px;}
.y4f9_c00001{bottom:835.963500px;}
.y213_c00001{bottom:837.357450px;}
.y1c_c00001{bottom:839.229450px;}
.y436_c00001{bottom:839.453700px;}
.y3ed_c00001{bottom:840.215550px;}
.y1cc_c00001{bottom:840.280500px;}
.y262_c00001{bottom:840.831450px;}
.y94_c00001{bottom:843.550200px;}
.y47f_c00001{bottom:843.705600px;}
.y500_c00001{bottom:843.713550px;}
.y232_c00001{bottom:843.729450px;}
.y57_c00001{bottom:843.909000px;}
.y9c_c00001{bottom:844.467450px;}
.y2f3_c00001{bottom:844.469700px;}
.y11f_c00001{bottom:846.103050px;}
.y410_c00001{bottom:847.965600px;}
.y334_c00001{bottom:851.217450px;}
.y195_c00001{bottom:852.155550px;}
.y478_c00001{bottom:852.209550px;}
.y169_c00001{bottom:854.217450px;}
.y6d_c00001{bottom:854.223450px;}
.yfc_c00001{bottom:855.519450px;}
.y24d_c00001{bottom:855.717450px;}
.y386_c00001{bottom:856.461600px;}
.y555_c00001{bottom:856.465500px;}
.y1b4_c00001{bottom:857.406450px;}
.y1f3_c00001{bottom:862.089450px;}
.y212_c00001{bottom:862.107450px;}
.y93_c00001{bottom:862.150200px;}
.y1b_c00001{bottom:863.979450px;}
.y4a4_c00001{bottom:864.203700px;}
.y3ec_c00001{bottom:864.965550px;}
.y65_c00001{bottom:864.969450px;}
.y435_c00001{bottom:868.455600px;}
.y9b_c00001{bottom:869.217450px;}
.y2f2_c00001{bottom:869.219700px;}
.y11e_c00001{bottom:870.853050px;}
.y261_c00001{bottom:871.953450px;}
.y27e_c00001{bottom:872.709450px;}
.y231_c00001{bottom:874.851450px;}
.y333_c00001{bottom:875.967450px;}
.y421_c00001{bottom:876.959550px;}
.y168_c00001{bottom:878.967450px;}
.y6a_c00001{bottom:878.973450px;}
.yfb_c00001{bottom:879.963450px;}
.y1cb_c00001{bottom:880.030500px;}
.y92_c00001{bottom:880.750200px;}
.y385_c00001{bottom:881.211600px;}
.y1b3_c00001{bottom:882.156450px;}
.y3a3_c00001{bottom:885.463500px;}
.y1f2_c00001{bottom:886.839450px;}
.y1a_c00001{bottom:888.729450px;}
.y3cd_c00001{bottom:889.715400px;}
.y3eb_c00001{bottom:889.715550px;}
.y60_c00001{bottom:889.719450px;}
.y194_c00001{bottom:891.900450px;}
.y44d_c00001{bottom:893.205600px;}
.y211_c00001{bottom:893.229450px;}
.y9a_c00001{bottom:893.967450px;}
.y2f1_c00001{bottom:893.969700px;}
.y11d_c00001{bottom:895.603050px;}
.y4df_c00001{bottom:897.457650px;}
.y230_c00001{bottom:899.601450px;}
.y332_c00001{bottom:900.717450px;}
.y420_c00001{bottom:901.709550px;}
.y260_c00001{bottom:903.075450px;}
.y7_c00001{bottom:903.717450px;}
.y69_c00001{bottom:903.723450px;}
.yfa_c00001{bottom:904.407450px;}
.y1ca_c00001{bottom:904.780500px;}
.y384_c00001{bottom:905.961600px;}
.y1b2_c00001{bottom:906.906450px;}
.y554_c00001{bottom:910.213500px;}
.y3cc_c00001{bottom:914.465400px;}
.y3ea_c00001{bottom:914.465550px;}
.y5f_c00001{bottom:914.469450px;}
.y1f1_c00001{bottom:917.961450px;}
.y210_c00001{bottom:917.979450px;}
.y99_c00001{bottom:918.717450px;}
.y2f0_c00001{bottom:918.719700px;}
.y11c_c00001{bottom:920.353050px;}
.y44c_c00001{bottom:922.207650px;}
.y22f_c00001{bottom:924.351450px;}
.y41f_c00001{bottom:926.459550px;}
.y25f_c00001{bottom:927.825450px;}
.y6_c00001{bottom:928.467450px;}
.y19_c00001{bottom:928.473450px;}
.yf9_c00001{bottom:928.851450px;}
.y1c9_c00001{bottom:929.530500px;}
.y383_c00001{bottom:930.711600px;}
.y298_c00001{bottom:930.723450px;}
.y1b1_c00001{bottom:931.656450px;}
.y27d_c00001{bottom:932.847450px;}
.y553_c00001{bottom:934.963500px;}
.y4b9_c00001{bottom:934.971450px;}
.y3cb_c00001{bottom:939.215400px;}
.y3e9_c00001{bottom:939.215550px;}
.y5e_c00001{bottom:939.219450px;}
.y24c_c00001{bottom:942.711450px;}
.y98_c00001{bottom:943.467450px;}
.y2ef_c00001{bottom:943.469700px;}
.y193_c00001{bottom:946.656450px;}
.y1f0_c00001{bottom:949.083450px;}
.y20f_c00001{bottom:949.101450px;}
.y4a3_c00001{bottom:951.209550px;}
.y5_c00001{bottom:953.217450px;}
.y18_c00001{bottom:953.223450px;}
.yf8_c00001{bottom:953.295450px;}
.y382_c00001{bottom:955.461600px;}
.y22e_c00001{bottom:955.473450px;}
.y18e_c00001{bottom:955.486500px;}
.y1b0_c00001{bottom:956.406450px;}
.y27c_c00001{bottom:957.597450px;}
.y3ba_c00001{bottom:959.713500px;}
.y4de_c00001{bottom:959.721450px;}
.y11b_c00001{bottom:960.124050px;}
.y3ca_c00001{bottom:963.965400px;}
.y3e8_c00001{bottom:963.965550px;}
.y5d_c00001{bottom:963.969450px;}
.y25e_c00001{bottom:965.337450px;}
.y97_c00001{bottom:968.217450px;}
.y2ee_c00001{bottom:968.219700px;}
.y1c8_c00001{bottom:969.280500px;}
.y192_c00001{bottom:971.406450px;}
.y1ef_c00001{bottom:973.833450px;}
.y4_c00001{bottom:977.967450px;}
.y17_c00001{bottom:977.973450px;}
.y381_c00001{bottom:980.211600px;}
.y20e_c00001{bottom:980.223450px;}
.y11a_c00001{bottom:981.118800px;}
.y18d_c00001{bottom:984.484500px;}
.y22d_c00001{bottom:986.595450px;}
.y3c9_c00001{bottom:988.715400px;}
.y3e7_c00001{bottom:988.715550px;}
.y5c_c00001{bottom:988.719450px;}
.y96_c00001{bottom:992.967450px;}
.y2ed_c00001{bottom:992.969700px;}
.y1c7_c00001{bottom:994.030500px;}
.y191_c00001{bottom:996.156450px;}
.y119_c00001{bottom:1002.113550px;}
.y3_c00001{bottom:1002.717450px;}
.y16_c00001{bottom:1002.723450px;}
.y1ee_c00001{bottom:1004.955450px;}
.y44b_c00001{bottom:1009.213500px;}
.y380_c00001{bottom:1009.221450px;}
.y20d_c00001{bottom:1011.345450px;}
.y3c8_c00001{bottom:1013.465400px;}
.y3e6_c00001{bottom:1013.465550px;}
.y5b_c00001{bottom:1013.469450px;}
.y95_c00001{bottom:1017.717450px;}
.y2ec_c00001{bottom:1017.719700px;}
.y1c6_c00001{bottom:1018.780500px;}
.y190_c00001{bottom:1020.906450px;}
.y118_c00001{bottom:1023.108300px;}
.y1ed_c00001{bottom:1042.462650px;}
.y2_c00001{bottom:1042.467450px;}
.y2eb_c00001{bottom:1042.469700px;}
.y1c5_c00001{bottom:1043.530500px;}
.y52a_c00001{bottom:1043.557950px;}
.y117_c00001{bottom:1044.103050px;}
.y18f_c00001{bottom:1045.656450px;}
.y15_c00001{bottom:1093.600950px;}
.y1_c00001{bottom:1093.601100px;}
.y29b_c00001{bottom:1148.352600px;}
.h2_c00001{height:39.264000px;}
.hc_c00001{height:39.280200px;}
.h3_c00001{height:39.984000px;}
.h5_c00001{height:43.740000px;}
.h6_c00001{height:44.172000px;}
.h1f_c00001{height:48.192060px;}
.hb_c00001{height:48.600000px;}
.ha_c00001{height:49.080000px;}
.h9_c00001{height:50.832000px;}
.h10_c00001{height:51.120000px;}
.h8_c00001{height:51.534000px;}
.h21_c00001{height:52.372014px;}
.h12_c00001{height:53.988000px;}
.hf_c00001{height:58.320000px;}
.h1d_c00001{height:58.427286px;}
.h4_c00001{height:58.896000px;}
.h20_c00001{height:59.355006px;}
.h7_c00001{height:59.976000px;}
.h1c_c00001{height:64.456707px;}
.h15_c00001{height:68.712000px;}
.he_c00001{height:70.628906px;}
.h18_c00001{height:78.528000px;}
.h14_c00001{height:85.536000px;}
.h13_c00001{height:86.380800px;}
.h1b_c00001{height:86.939821px;}
.h1e_c00001{height:91.605168px;}
.h1a_c00001{height:96.426288px;}
.hd_c00001{height:98.631600px;}
.h19_c00001{height:107.116609px;}
.h11_c00001{height:116.640000px;}
.h17_c00001{height:1126.500000px;}
.h16_c00001{height:1126.770000px;}
.h1_c00001{height:1135.500000px;}
.h0_c00001{height:1135.506150px;}
.w2_c00001{width:892.920000px;}
.w3_c00001{width:893.250000px;}
.w0_c00001{width:893.950200px;}
.w1_c00001{width:894.000000px;}
.x48_c00001{left:-619.841850px;}
.x49_c00001{left:-587.729850px;}
.x4a_c00001{left:-553.889850px;}
.x4b_c00001{left:-540.761850px;}
.x4c_c00001{left:-504.437850px;}
.x4d_c00001{left:-496.421850px;}
.x4e_c00001{left:-488.573850px;}
.x4f_c00001{left:-474.137850px;}
.x47_c00001{left:-467.678700px;}
.x50_c00001{left:-450.245850px;}
.x2c_c00001{left:-23.026800px;}
.x0_c00001{left:0.000000px;}
.xc_c00001{left:76.540050px;}
.x9_c00001{left:77.603100px;}
.x16_c00001{left:94.611150px;}
.xa_c00001{left:98.862900px;}
.x36_c00001{left:120.118950px;}
.x4_c00001{left:128.626800px;}
.x1e_c00001{left:145.634700px;}
.x5_c00001{left:149.886600px;}
.x2a_c00001{left:171.082200px;}
.x2b_c00001{left:173.533650px;}
.x3a_c00001{left:175.750200px;}
.x34_c00001{left:176.785800px;}
.x38_c00001{left:178.006350px;}
.x39_c00001{left:180.457800px;}
.x2_c00001{left:188.061900px;}
.x3_c00001{left:190.513350px;}
.x23_c00001{left:252.784200px;}
.x3e_c00001{left:273.074700px;}
.x3f_c00001{left:305.186700px;}
.xe_c00001{left:308.525250px;}
.xb_c00001{left:309.588300px;}
.x14_c00001{left:310.651350px;}
.x1c_c00001{left:312.055500px;}
.x19_c00001{left:313.224900px;}
.x5d_c00001{left:324.552750px;}
.x5e_c00001{left:332.478000px;}
.x28_c00001{left:336.760650px;}
.x40_c00001{left:339.026700px;}
.x41_c00001{left:352.154700px;}
.x6_c00001{left:357.423000px;}
.x11_c00001{left:360.359100px;}
.x8_c00001{left:361.674900px;}
.x1b_c00001{left:363.228000px;}
.x12_c00001{left:364.863900px;}
.x5f_c00001{left:366.525150px;}
.x42_c00001{left:388.478700px;}
.x43_c00001{left:396.494700px;}
.x44_c00001{left:404.342700px;}
.x45_c00001{left:418.778700px;}
.x21_c00001{left:422.211000px;}
.x3d_c00001{left:425.234700px;}
.x1f_c00001{left:428.829900px;}
.x31_c00001{left:439.025100px;}
.x46_c00001{left:442.670700px;}
.x30_c00001{left:459.148050px;}
.x32_c00001{left:460.283100px;}
.x29_c00001{left:468.784200px;}
.x37_c00001{left:481.540200px;}
.x2f_c00001{left:490.048800px;}
.x2d_c00001{left:511.303950px;}
.x35_c00001{left:532.559850px;}
.xf_c00001{left:541.067700px;}
.xd_c00001{left:545.319600px;}
.x1a_c00001{left:546.595200px;}
.x25_c00001{left:548.754450px;}
.x2e_c00001{left:553.823550px;}
.x33_c00001{left:566.591100px;}
.x15_c00001{left:587.143800px;}
.x3b_c00001{left:591.060600px;}
.x7_c00001{left:592.091250px;}
.x18_c00001{left:593.962200px;}
.x13_c00001{left:596.343300px;}
.x22_c00001{left:597.505500px;}
.x26_c00001{left:600.661650px;}
.x20_c00001{left:601.743300px;}
.x27_c00001{left:659.059800px;}
.x24_c00001{left:666.500700px;}
.x3c_c00001{left:775.687500px;}
.x1_c00001{left:799.866000px;}
.x17_c00001{left:801.197550px;}
.x10_c00001{left:802.349550px;}
.x1d_c00001{left:804.281850px;}
.x55_c00001{left:948.151500px;}
.x53_c00001{left:1114.470000px;}
.x52_c00001{left:1163.534400px;}
.x51_c00001{left:1247.405250px;}
.x57_c00001{left:1266.558150px;}
.x54_c00001{left:1287.455550px;}
.x59_c00001{left:1319.086720px;}
.x58_c00001{left:1328.589600px;}
.x56_c00001{left:1349.607600px;}
.x5b_c00001{left:1388.898900px;}
.x5a_c00001{left:1407.328800px;}
.x5c_c00001{left:1439.911050px;}
@media print{
.v4_c00001{vertical-align:-21.312000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v2_c00001{vertical-align:18.461333pt;}
.v1_c00001{vertical-align:21.312000pt;}
.v3_c00001{vertical-align:48.792533pt;}
.ls4e_c00001{letter-spacing:-6.208000pt;}
.ls58_c00001{letter-spacing:-6.080000pt;}
.ls3b_c00001{letter-spacing:-5.600000pt;}
.ls7_c00001{letter-spacing:-4.704000pt;}
.ls53_c00001{letter-spacing:-4.672000pt;}
.ls4d_c00001{letter-spacing:-4.480000pt;}
.ls49_c00001{letter-spacing:-4.266667pt;}
.ls52_c00001{letter-spacing:-3.712000pt;}
.ls51_c00001{letter-spacing:-2.560000pt;}
.ls29_c00001{letter-spacing:-2.432000pt;}
.ls5d_c00001{letter-spacing:-2.346667pt;}
.ls50_c00001{letter-spacing:-2.304000pt;}
.ls1c_c00001{letter-spacing:-2.240000pt;}
.ls35_c00001{letter-spacing:-2.048000pt;}
.ls22_c00001{letter-spacing:-1.920000pt;}
.ls36_c00001{letter-spacing:-1.856000pt;}
.ls28_c00001{letter-spacing:-1.792000pt;}
.ls27_c00001{letter-spacing:-1.728000pt;}
.ls5b_c00001{letter-spacing:-1.664000pt;}
.ls1b_c00001{letter-spacing:-1.600000pt;}
.ls6_c00001{letter-spacing:-1.536000pt;}
.ls31_c00001{letter-spacing:-1.408000pt;}
.ls54_c00001{letter-spacing:-1.280000pt;}
.lsf_c00001{letter-spacing:-1.216000pt;}
.ls3c_c00001{letter-spacing:-1.152000pt;}
.ls2c_c00001{letter-spacing:-1.088000pt;}
.ls1d_c00001{letter-spacing:-1.082048pt;}
.ls21_c00001{letter-spacing:-1.024000pt;}
.ls2f_c00001{letter-spacing:-0.960000pt;}
.ls5c_c00001{letter-spacing:-0.938667pt;}
.ls11_c00001{letter-spacing:-0.896000pt;}
.ls60_c00001{letter-spacing:-0.853333pt;}
.ls2e_c00001{letter-spacing:-0.832000pt;}
.ls19_c00001{letter-spacing:-0.800000pt;}
.ls12_c00001{letter-spacing:-0.768000pt;}
.ls14_c00001{letter-spacing:-0.725333pt;}
.ls39_c00001{letter-spacing:-0.704000pt;}
.ls45_c00001{letter-spacing:-0.682667pt;}
.ls1a_c00001{letter-spacing:-0.671616pt;}
.ls15_c00001{letter-spacing:-0.640000pt;}
.ls10_c00001{letter-spacing:-0.597333pt;}
.ls18_c00001{letter-spacing:-0.586667pt;}
.lsc_c00001{letter-spacing:-0.576000pt;}
.ls1e_c00001{letter-spacing:-0.554667pt;}
.ls2d_c00001{letter-spacing:-0.533333pt;}
.lse_c00001{letter-spacing:-0.522368pt;}
.ls2b_c00001{letter-spacing:-0.512000pt;}
.ls20_c00001{letter-spacing:-0.448000pt;}
.lsa_c00001{letter-spacing:-0.426667pt;}
.ls4_c00001{letter-spacing:-0.384000pt;}
.ls37_c00001{letter-spacing:-0.373333pt;}
.ls4c_c00001{letter-spacing:-0.373120pt;}
.ls16_c00001{letter-spacing:-0.320000pt;}
.ls41_c00001{letter-spacing:-0.298667pt;}
.ls8_c00001{letter-spacing:-0.288000pt;}
.ls62_c00001{letter-spacing:-0.266667pt;}
.lsb_c00001{letter-spacing:-0.256000pt;}
.ls1f_c00001{letter-spacing:-0.213333pt;}
.ls33_c00001{letter-spacing:-0.192000pt;}
.ls5_c00001{letter-spacing:-0.170667pt;}
.ls30_c00001{letter-spacing:-0.163240pt;}
.ls3_c00001{letter-spacing:-0.149248pt;}
.ls13_c00001{letter-spacing:-0.144000pt;}
.ls32_c00001{letter-spacing:-0.128000pt;}
.ls2a_c00001{letter-spacing:-0.037312pt;}
.ls2_c00001{letter-spacing:0.000000pt;}
.ls4a_c00001{letter-spacing:0.111936pt;}
.ls26_c00001{letter-spacing:0.128000pt;}
.ls38_c00001{letter-spacing:0.170667pt;}
.ls43_c00001{letter-spacing:0.186560pt;}
.ls4f_c00001{letter-spacing:0.192000pt;}
.ls3f_c00001{letter-spacing:0.195888pt;}
.ls44_c00001{letter-spacing:0.213333pt;}
.ls25_c00001{letter-spacing:0.256000pt;}
.ls4b_c00001{letter-spacing:0.261184pt;}
.ls5e_c00001{letter-spacing:0.298667pt;}
.ls34_c00001{letter-spacing:0.320000pt;}
.ls17_c00001{letter-spacing:0.326480pt;}
.ls40_c00001{letter-spacing:0.384000pt;}
.ls0_c00001{letter-spacing:0.426667pt;}
.ls5a_c00001{letter-spacing:0.448000pt;}
.ls59_c00001{letter-spacing:0.533333pt;}
.ls65_c00001{letter-spacing:0.611963pt;}
.ls42_c00001{letter-spacing:0.634304pt;}
.ls3d_c00001{letter-spacing:0.640000pt;}
.ls66_c00001{letter-spacing:0.655675pt;}
.ls48_c00001{letter-spacing:0.704000pt;}
.ls3a_c00001{letter-spacing:0.746240pt;}
.ls46_c00001{letter-spacing:0.960000pt;}
.ls56_c00001{letter-spacing:1.024000pt;}
.ls47_c00001{letter-spacing:1.044736pt;}
.ls55_c00001{letter-spacing:1.280000pt;}
.ls1_c00001{letter-spacing:1.294400pt;}
.ls57_c00001{letter-spacing:1.472000pt;}
.ls64_c00001{letter-spacing:2.010539pt;}
.ls9_c00001{letter-spacing:2.273600pt;}
.ls3e_c00001{letter-spacing:3.001600pt;}
.ls23_c00001{letter-spacing:3.072000pt;}
.ls24_c00001{letter-spacing:5.056000pt;}
.lsd_c00001{letter-spacing:5.304533pt;}
.ls5f_c00001{letter-spacing:11.072000pt;}
.ls61_c00001{letter-spacing:61.062400pt;}
.ls63_c00001{letter-spacing:1451.729067pt;}
.ws14f_c00001{word-spacing:-26.752000pt;}
.ws1ee_c00001{word-spacing:-25.031206pt;}
.ws142_c00001{word-spacing:-15.808000pt;}
.ws141_c00001{word-spacing:-15.552000pt;}
.ws1c9_c00001{word-spacing:-15.488000pt;}
.ws108_c00001{word-spacing:-15.360000pt;}
.ws12b_c00001{word-spacing:-15.232000pt;}
.ws192_c00001{word-spacing:-15.168000pt;}
.wsdf_c00001{word-spacing:-15.040000pt;}
.ws19d_c00001{word-spacing:-14.976000pt;}
.ws128_c00001{word-spacing:-14.848000pt;}
.ws105_c00001{word-spacing:-14.656000pt;}
.ws10_c00001{word-spacing:-14.528000pt;}
.ws68_c00001{word-spacing:-14.400000pt;}
.wsd5_c00001{word-spacing:-14.336000pt;}
.ws12e_c00001{word-spacing:-14.272000pt;}
.ws2d_c00001{word-spacing:-14.208000pt;}
.ws135_c00001{word-spacing:-14.144000pt;}
.ws12d_c00001{word-spacing:-14.080000pt;}
.ws2c_c00001{word-spacing:-14.016000pt;}
.ws125_c00001{word-spacing:-13.952000pt;}
.ws22_c00001{word-spacing:-13.888000pt;}
.wsc7_c00001{word-spacing:-13.824000pt;}
.ws89_c00001{word-spacing:-13.760000pt;}
.wsd4_c00001{word-spacing:-13.696000pt;}
.ws120_c00001{word-spacing:-13.632000pt;}
.ws8a_c00001{word-spacing:-13.568000pt;}
.wsd3_c00001{word-spacing:-13.504000pt;}
.ws67_c00001{word-spacing:-13.440000pt;}
.ws1a_c00001{word-spacing:-13.312000pt;}
.wsaa_c00001{word-spacing:-13.248000pt;}
.ws86_c00001{word-spacing:-13.120000pt;}
.ws4b_c00001{word-spacing:-12.928000pt;}
.ws87_c00001{word-spacing:-12.864000pt;}
.ws69_c00001{word-spacing:-12.736000pt;}
.ws136_c00001{word-spacing:-12.672000pt;}
.wsbe_c00001{word-spacing:-12.608000pt;}
.ws13d_c00001{word-spacing:-12.480000pt;}
.ws4a_c00001{word-spacing:-12.416000pt;}
.ws12c_c00001{word-spacing:-12.224000pt;}
.ws2f_c00001{word-spacing:-12.213333pt;}
.ws8b_c00001{word-spacing:-12.106667pt;}
.wsc4_c00001{word-spacing:-11.840000pt;}
.ws4_c00001{word-spacing:-10.992000pt;}
.ws6a_c00001{word-spacing:-10.896000pt;}
.ws137_c00001{word-spacing:-10.816000pt;}
.ws23_c00001{word-spacing:-10.608000pt;}
.ws1db_c00001{word-spacing:-10.325333pt;}
.ws11_c00001{word-spacing:-10.320000pt;}
.ws1dd_c00001{word-spacing:-10.112000pt;}
.ws13e_c00001{word-spacing:-9.984000pt;}
.wsf2_c00001{word-spacing:-9.898667pt;}
.wsc6_c00001{word-spacing:-9.856000pt;}
.ws113_c00001{word-spacing:-9.813333pt;}
.ws0_c00001{word-spacing:-9.685333pt;}
.wsab_c00001{word-spacing:-9.557333pt;}
.ws2_c00001{word-spacing:-9.514667pt;}
.ws107_c00001{word-spacing:-9.514560pt;}
.wsa9_c00001{word-spacing:-9.472000pt;}
.wsde_c00001{word-spacing:-9.429333pt;}
.wse0_c00001{word-spacing:-9.386667pt;}
.ws18_c00001{word-spacing:-9.258667pt;}
.wsc8_c00001{word-spacing:-9.216064pt;}
.wsbd_c00001{word-spacing:-9.173333pt;}
.ws4c_c00001{word-spacing:-9.130667pt;}
.wsf1_c00001{word-spacing:-9.104128pt;}
.ws1b_c00001{word-spacing:-9.088000pt;}
.ws2b_c00001{word-spacing:-8.960000pt;}
.ws1d2_c00001{word-spacing:-8.917333pt;}
.ws1e9_c00001{word-spacing:-8.789333pt;}
.wsf_c00001{word-spacing:-8.469824pt;}
.ws11f_c00001{word-spacing:-8.448000pt;}
.ws88_c00001{word-spacing:-8.432512pt;}
.ws1_c00001{word-spacing:-8.320576pt;}
.ws3_c00001{word-spacing:-8.149333pt;}
.ws149_c00001{word-spacing:-8.064000pt;}
.ws19_c00001{word-spacing:-7.947456pt;}
.ws49_c00001{word-spacing:-7.798208pt;}
.ws2e_c00001{word-spacing:-7.737576pt;}
.ws106_c00001{word-spacing:-7.411096pt;}
.wsc9_c00001{word-spacing:-6.506667pt;}
.ws109_c00001{word-spacing:-5.418667pt;}
.ws114_c00001{word-spacing:-5.205333pt;}
.ws1c4_c00001{word-spacing:-4.928000pt;}
.wsfb_c00001{word-spacing:-3.840000pt;}
.ws1d0_c00001{word-spacing:-3.456000pt;}
.ws1d3_c00001{word-spacing:-3.392000pt;}
.wsd9_c00001{word-spacing:-3.264000pt;}
.ws144_c00001{word-spacing:-3.200000pt;}
.ws145_c00001{word-spacing:-3.136000pt;}
.ws170_c00001{word-spacing:-3.008000pt;}
.ws14a_c00001{word-spacing:-2.944000pt;}
.wse5_c00001{word-spacing:-2.880000pt;}
.wsca_c00001{word-spacing:-2.816000pt;}
.ws27_c00001{word-spacing:-2.752000pt;}
.ws26_c00001{word-spacing:-2.688000pt;}
.ws3b_c00001{word-spacing:-2.624000pt;}
.ws4e_c00001{word-spacing:-2.560000pt;}
.ws52_c00001{word-spacing:-2.496000pt;}
.ws11d_c00001{word-spacing:-2.432000pt;}
.wscc_c00001{word-spacing:-2.368000pt;}
.wsd8_c00001{word-spacing:-2.304000pt;}
.ws129_c00001{word-spacing:-2.240000pt;}
.wsa3_c00001{word-spacing:-2.176000pt;}
.ws1d_c00001{word-spacing:-2.112000pt;}
.wsb6_c00001{word-spacing:-2.090667pt;}
.wsda_c00001{word-spacing:-2.048000pt;}
.wsae_c00001{word-spacing:-1.984000pt;}
.ws56_c00001{word-spacing:-1.920000pt;}
.ws93_c00001{word-spacing:-1.856000pt;}
.wsb_c00001{word-spacing:-1.792000pt;}
.ws29_c00001{word-spacing:-1.728000pt;}
.wsa6_c00001{word-spacing:-1.664000pt;}
.wscf_c00001{word-spacing:-1.621333pt;}
.ws47_c00001{word-spacing:-1.600000pt;}
.ws1a8_c00001{word-spacing:-1.584000pt;}
.wsce_c00001{word-spacing:-1.578667pt;}
.wsc1_c00001{word-spacing:-1.536000pt;}
.wsad_c00001{word-spacing:-1.472000pt;}
.ws95_c00001{word-spacing:-1.408000pt;}
.wsa4_c00001{word-spacing:-1.344000pt;}
.wsc5_c00001{word-spacing:-1.333333pt;}
.wse2_c00001{word-spacing:-1.288000pt;}
.wsa_c00001{word-spacing:-1.280000pt;}
.ws91_c00001{word-spacing:-1.216000pt;}
.ws51_c00001{word-spacing:-1.152000pt;}
.ws9e_c00001{word-spacing:-1.109333pt;}
.ws11b_c00001{word-spacing:-1.088000pt;}
.wsb9_c00001{word-spacing:-1.056000pt;}
.wsc0_c00001{word-spacing:-1.024000pt;}
.ws3d_c00001{word-spacing:-1.008000pt;}
.ws111_c00001{word-spacing:-0.981333pt;}
.ws60_c00001{word-spacing:-0.960000pt;}
.ws9c_c00001{word-spacing:-0.896000pt;}
.wsb4_c00001{word-spacing:-0.832000pt;}
.ws10e_c00001{word-spacing:-0.768000pt;}
.wsac_c00001{word-spacing:-0.704000pt;}
.ws31_c00001{word-spacing:-0.640000pt;}
.wsd1_c00001{word-spacing:-0.597333pt;}
.wsa7_c00001{word-spacing:-0.576000pt;}
.ws28_c00001{word-spacing:-0.512000pt;}
.ws117_c00001{word-spacing:-0.448000pt;}
.ws9b_c00001{word-spacing:-0.426667pt;}
.ws34_c00001{word-spacing:-0.384000pt;}
.ws5c_c00001{word-spacing:-0.341333pt;}
.ws70_c00001{word-spacing:-0.320000pt;}
.ws116_c00001{word-spacing:-0.261184pt;}
.wsfc_c00001{word-spacing:-0.256000pt;}
.wse4_c00001{word-spacing:-0.195888pt;}
.ws8c_c00001{word-spacing:-0.192000pt;}
.wsf6_c00001{word-spacing:-0.186560pt;}
.ws97_c00001{word-spacing:-0.128000pt;}
.wse3_c00001{word-spacing:-0.112000pt;}
.ws115_c00001{word-spacing:-0.111936pt;}
.wsd0_c00001{word-spacing:-0.085333pt;}
.wsd7_c00001{word-spacing:-0.064000pt;}
.wsee_c00001{word-spacing:-0.042667pt;}
.ws5_c00001{word-spacing:0.000000pt;}
.wsaf_c00001{word-spacing:0.064000pt;}
.ws14_c00001{word-spacing:0.128000pt;}
.ws2a_c00001{word-spacing:0.144000pt;}
.wsb3_c00001{word-spacing:0.163240pt;}
.ws3c_c00001{word-spacing:0.168000pt;}
.ws11a_c00001{word-spacing:0.170667pt;}
.wsba_c00001{word-spacing:0.192000pt;}
.ws5f_c00001{word-spacing:0.213333pt;}
.ws54_c00001{word-spacing:0.256000pt;}
.wsd_c00001{word-spacing:0.288000pt;}
.ws119_c00001{word-spacing:0.298667pt;}
.ws79_c00001{word-spacing:0.320000pt;}
.ws40_c00001{word-spacing:0.336000pt;}
.ws118_c00001{word-spacing:0.373120pt;}
.wsc2_c00001{word-spacing:0.373333pt;}
.ws1e_c00001{word-spacing:0.384000pt;}
.wsb8_c00001{word-spacing:0.426667pt;}
.wsa8_c00001{word-spacing:0.448000pt;}
.ws41_c00001{word-spacing:0.504000pt;}
.ws76_c00001{word-spacing:0.512000pt;}
.wsa1_c00001{word-spacing:0.533333pt;}
.ws7d_c00001{word-spacing:0.576000pt;}
.ws101_c00001{word-spacing:0.597333pt;}
.ws1f_c00001{word-spacing:0.640000pt;}
.ws104_c00001{word-spacing:0.682667pt;}
.ws6b_c00001{word-spacing:0.704000pt;}
.ws4d_c00001{word-spacing:0.768000pt;}
.wse8_c00001{word-spacing:0.784000pt;}
.wsdb_c00001{word-spacing:0.832000pt;}
.ws1e2_c00001{word-spacing:0.853333pt;}
.ws20_c00001{word-spacing:0.896000pt;}
.wsbf_c00001{word-spacing:0.960000pt;}
.ws33_c00001{word-spacing:1.024000pt;}
.ws57_c00001{word-spacing:1.082048pt;}
.ws132_c00001{word-spacing:1.088000pt;}
.ws55_c00001{word-spacing:1.152000pt;}
.wse7_c00001{word-spacing:1.176000pt;}
.wsbc_c00001{word-spacing:1.216000pt;}
.ws100_c00001{word-spacing:1.280000pt;}
.wsb1_c00001{word-spacing:1.288000pt;}
.wsff_c00001{word-spacing:1.344000pt;}
.ws7_c00001{word-spacing:1.408000pt;}
.ws133_c00001{word-spacing:1.472000pt;}
.wscd_c00001{word-spacing:1.536000pt;}
.ws4f_c00001{word-spacing:1.600000pt;}
.wsef_c00001{word-spacing:1.621333pt;}
.ws158_c00001{word-spacing:1.664000pt;}
.ws9a_c00001{word-spacing:1.728000pt;}
.ws8_c00001{word-spacing:1.792000pt;}
.ws103_c00001{word-spacing:1.834667pt;}
.ws73_c00001{word-spacing:1.856000pt;}
.ws7c_c00001{word-spacing:1.920000pt;}
.wsb2_c00001{word-spacing:1.960000pt;}
.ws30_c00001{word-spacing:1.984000pt;}
.ws42_c00001{word-spacing:2.016000pt;}
.ws64_c00001{word-spacing:2.048000pt;}
.ws10c_c00001{word-spacing:2.112000pt;}
.ws11c_c00001{word-spacing:2.176000pt;}
.ws44_c00001{word-spacing:2.184000pt;}
.ws85_c00001{word-spacing:2.240000pt;}
.ws102_c00001{word-spacing:2.261333pt;}
.ws65_c00001{word-spacing:2.304000pt;}
.ws43_c00001{word-spacing:2.352000pt;}
.ws25_c00001{word-spacing:2.368000pt;}
.wsa0_c00001{word-spacing:2.389333pt;}
.ws7a_c00001{word-spacing:2.432000pt;}
.ws160_c00001{word-spacing:2.496000pt;}
.wse1_c00001{word-spacing:2.520000pt;}
.ws37_c00001{word-spacing:2.560000pt;}
.wsdc_c00001{word-spacing:2.576000pt;}
.ws110_c00001{word-spacing:2.624000pt;}
.ws3a_c00001{word-spacing:2.688000pt;}
.ws53_c00001{word-spacing:2.752000pt;}
.ws10d_c00001{word-spacing:2.800000pt;}
.ws1ac_c00001{word-spacing:2.816000pt;}
.wseb_c00001{word-spacing:2.880000pt;}
.wscb_c00001{word-spacing:2.944000pt;}
.ws16_c00001{word-spacing:3.008000pt;}
.ws80_c00001{word-spacing:3.072000pt;}
.wsb5_c00001{word-spacing:3.114667pt;}
.ws81_c00001{word-spacing:3.136000pt;}
.ws38_c00001{word-spacing:3.200000pt;}
.wsb0_c00001{word-spacing:3.248000pt;}
.ws17_c00001{word-spacing:3.264000pt;}
.ws16c_c00001{word-spacing:3.328000pt;}
.ws7f_c00001{word-spacing:3.392000pt;}
.ws7b_c00001{word-spacing:3.456000pt;}
.ws7e_c00001{word-spacing:3.520000pt;}
.ws61_c00001{word-spacing:3.584000pt;}
.wsb7_c00001{word-spacing:3.626667pt;}
.ws8f_c00001{word-spacing:3.648000pt;}
.wsfe_c00001{word-spacing:3.712000pt;}
.ws98_c00001{word-spacing:3.776000pt;}
.ws71_c00001{word-spacing:3.840000pt;}
.ws185_c00001{word-spacing:3.904000pt;}
.ws1b9_c00001{word-spacing:3.968000pt;}
.ws9_c00001{word-spacing:4.032000pt;}
.ws138_c00001{word-spacing:4.096000pt;}
.ws10a_c00001{word-spacing:4.160000pt;}
.ws13_c00001{word-spacing:4.224000pt;}
.ws5d_c00001{word-spacing:4.266667pt;}
.ws6e_c00001{word-spacing:4.288000pt;}
.ws5e_c00001{word-spacing:4.309333pt;}
.wsf7_c00001{word-spacing:4.352000pt;}
.ws94_c00001{word-spacing:4.416000pt;}
.ws99_c00001{word-spacing:4.480000pt;}
.ws15_c00001{word-spacing:4.544000pt;}
.ws6f_c00001{word-spacing:4.608000pt;}
.ws1a7_c00001{word-spacing:4.634667pt;}
.ws6c_c00001{word-spacing:4.672000pt;}
.wsc_c00001{word-spacing:4.704000pt;}
.ws6d_c00001{word-spacing:4.736000pt;}
.ws124_c00001{word-spacing:4.800000pt;}
.ws78_c00001{word-spacing:4.864000pt;}
.ws77_c00001{word-spacing:4.928000pt;}
.wsd6_c00001{word-spacing:4.992000pt;}
.ws82_c00001{word-spacing:5.056000pt;}
.ws14c_c00001{word-spacing:5.120000pt;}
.wsdd_c00001{word-spacing:5.152000pt;}
.ws9d_c00001{word-spacing:5.162667pt;}
.ws10b_c00001{word-spacing:5.184000pt;}
.ws84_c00001{word-spacing:5.248000pt;}
.ws96_c00001{word-spacing:5.312000pt;}
.wsf9_c00001{word-spacing:5.376000pt;}
.ws62_c00001{word-spacing:5.440000pt;}
.ws9f_c00001{word-spacing:5.461333pt;}
.ws10f_c00001{word-spacing:5.504000pt;}
.ws139_c00001{word-spacing:5.568000pt;}
.ws13a_c00001{word-spacing:5.632000pt;}
.ws58_c00001{word-spacing:5.696000pt;}
.ws5b_c00001{word-spacing:5.760000pt;}
.ws8d_c00001{word-spacing:5.824000pt;}
.ws13b_c00001{word-spacing:5.888000pt;}
.ws63_c00001{word-spacing:5.952000pt;}
.ws92_c00001{word-spacing:6.016000pt;}
.wsa5_c00001{word-spacing:6.080000pt;}
.ws8e_c00001{word-spacing:6.144000pt;}
.wsea_c00001{word-spacing:6.208000pt;}
.ws46_c00001{word-spacing:6.272000pt;}
.ws131_c00001{word-spacing:6.336000pt;}
.wsed_c00001{word-spacing:6.400000pt;}
.ws147_c00001{word-spacing:6.464000pt;}
.ws148_c00001{word-spacing:6.528000pt;}
.ws3f_c00001{word-spacing:6.552000pt;}
.ws59_c00001{word-spacing:6.592000pt;}
.ws18f_c00001{word-spacing:6.656000pt;}
.ws1b7_c00001{word-spacing:6.720000pt;}
.wsfd_c00001{word-spacing:6.784000pt;}
.ws183_c00001{word-spacing:6.848000pt;}
.ws50_c00001{word-spacing:6.912000pt;}
.ws72_c00001{word-spacing:6.976000pt;}
.ws123_c00001{word-spacing:7.040000pt;}
.ws122_c00001{word-spacing:7.104000pt;}
.ws3e_c00001{word-spacing:7.168000pt;}
.ws121_c00001{word-spacing:7.232000pt;}
.ws90_c00001{word-spacing:7.296000pt;}
.ws5a_c00001{word-spacing:7.360000pt;}
.ws14e_c00001{word-spacing:7.424000pt;}
.ws39_c00001{word-spacing:7.488000pt;}
.wse6_c00001{word-spacing:7.552000pt;}
.ws134_c00001{word-spacing:7.616000pt;}
.ws32_c00001{word-spacing:7.680000pt;}
.ws45_c00001{word-spacing:7.744000pt;}
.ws143_c00001{word-spacing:7.808000pt;}
.ws126_c00001{word-spacing:7.872000pt;}
.ws16b_c00001{word-spacing:7.936000pt;}
.wsf5_c00001{word-spacing:8.000000pt;}
.ws163_c00001{word-spacing:8.064000pt;}
.ws175_c00001{word-spacing:8.128000pt;}
.ws13f_c00001{word-spacing:8.192000pt;}
.ws140_c00001{word-spacing:8.256000pt;}
.ws35_c00001{word-spacing:8.384000pt;}
.wsec_c00001{word-spacing:8.448000pt;}
.ws17b_c00001{word-spacing:8.512000pt;}
.ws181_c00001{word-spacing:8.576000pt;}
.ws154_c00001{word-spacing:8.640000pt;}
.ws1aa_c00001{word-spacing:8.704000pt;}
.ws17e_c00001{word-spacing:8.768000pt;}
.ws186_c00001{word-spacing:8.832000pt;}
.ws153_c00001{word-spacing:8.960000pt;}
.ws179_c00001{word-spacing:9.024000pt;}
.ws16f_c00001{word-spacing:9.088000pt;}
.ws172_c00001{word-spacing:9.152000pt;}
.ws1b4_c00001{word-spacing:9.216000pt;}
.ws36_c00001{word-spacing:9.344000pt;}
.ws16d_c00001{word-spacing:9.408000pt;}
.ws15c_c00001{word-spacing:9.472000pt;}
.ws17d_c00001{word-spacing:9.600000pt;}
.ws1a9_c00001{word-spacing:9.664000pt;}
.ws17f_c00001{word-spacing:9.728000pt;}
.ws195_c00001{word-spacing:9.792000pt;}
.ws18d_c00001{word-spacing:9.856000pt;}
.ws168_c00001{word-spacing:9.984000pt;}
.ws75_c00001{word-spacing:10.048000pt;}
.ws190_c00001{word-spacing:10.112000pt;}
.ws18a_c00001{word-spacing:10.176000pt;}
.ws1be_c00001{word-spacing:10.240000pt;}
.ws1bd_c00001{word-spacing:10.304000pt;}
.ws197_c00001{word-spacing:10.368000pt;}
.ws166_c00001{word-spacing:10.432000pt;}
.ws1ad_c00001{word-spacing:10.496000pt;}
.ws194_c00001{word-spacing:10.560000pt;}
.wsfa_c00001{word-spacing:10.624000pt;}
.ws169_c00001{word-spacing:10.752000pt;}
.wsf8_c00001{word-spacing:10.816000pt;}
.ws1af_c00001{word-spacing:10.880000pt;}
.ws1bc_c00001{word-spacing:10.944000pt;}
.ws152_c00001{word-spacing:11.008000pt;}
.ws16e_c00001{word-spacing:11.072000pt;}
.ws1ae_c00001{word-spacing:11.136000pt;}
.ws1e6_c00001{word-spacing:11.200000pt;}
.ws1a3_c00001{word-spacing:11.264000pt;}
.ws12f_c00001{word-spacing:11.328000pt;}
.ws188_c00001{word-spacing:11.392000pt;}
.ws130_c00001{word-spacing:11.456000pt;}
.ws193_c00001{word-spacing:11.520000pt;}
.ws15a_c00001{word-spacing:11.712000pt;}
.ws1a2_c00001{word-spacing:11.776000pt;}
.ws171_c00001{word-spacing:11.840000pt;}
.ws1a5_c00001{word-spacing:11.968000pt;}
.ws15b_c00001{word-spacing:12.032000pt;}
.ws17a_c00001{word-spacing:12.096000pt;}
.ws1e4_c00001{word-spacing:12.160000pt;}
.ws15f_c00001{word-spacing:12.288000pt;}
.ws159_c00001{word-spacing:12.352000pt;}
.ws19c_c00001{word-spacing:12.416000pt;}
.ws18c_c00001{word-spacing:12.480000pt;}
.ws1d1_c00001{word-spacing:12.608000pt;}
.ws15e_c00001{word-spacing:12.672000pt;}
.ws177_c00001{word-spacing:12.736000pt;}
.ws1a1_c00001{word-spacing:12.800000pt;}
.ws196_c00001{word-spacing:12.928000pt;}
.ws16a_c00001{word-spacing:12.992000pt;}
.ws198_c00001{word-spacing:13.120000pt;}
.ws1b6_c00001{word-spacing:13.184000pt;}
.ws1d7_c00001{word-spacing:13.248000pt;}
.ws1c2_c00001{word-spacing:13.312000pt;}
.ws17c_c00001{word-spacing:13.504000pt;}
.ws19f_c00001{word-spacing:13.568000pt;}
.wsf3_c00001{word-spacing:13.632000pt;}
.ws18b_c00001{word-spacing:13.696000pt;}
.ws19a_c00001{word-spacing:13.824000pt;}
.ws1b3_c00001{word-spacing:13.888000pt;}
.ws162_c00001{word-spacing:13.952000pt;}
.ws164_c00001{word-spacing:14.080000pt;}
.ws15d_c00001{word-spacing:14.272000pt;}
.ws165_c00001{word-spacing:14.336000pt;}
.ws1a0_c00001{word-spacing:14.400000pt;}
.ws1b0_c00001{word-spacing:14.464000pt;}
.ws1c_c00001{word-spacing:14.528000pt;}
.ws189_c00001{word-spacing:14.592000pt;}
.ws1a4_c00001{word-spacing:14.720000pt;}
.ws167_c00001{word-spacing:14.784000pt;}
.ws155_c00001{word-spacing:15.232000pt;}
.ws6_c00001{word-spacing:15.360000pt;}
.ws1c5_c00001{word-spacing:15.680000pt;}
.ws157_c00001{word-spacing:15.872000pt;}
.ws18e_c00001{word-spacing:15.936000pt;}
.ws1b2_c00001{word-spacing:16.000000pt;}
.ws1ab_c00001{word-spacing:16.064000pt;}
.ws1b5_c00001{word-spacing:16.128000pt;}
.ws180_c00001{word-spacing:16.256000pt;}
.ws1ba_c00001{word-spacing:16.640000pt;}
.wsf4_c00001{word-spacing:16.832000pt;}
.ws1c1_c00001{word-spacing:16.960000pt;}
.ws14d_c00001{word-spacing:17.024000pt;}
.ws161_c00001{word-spacing:17.088000pt;}
.ws182_c00001{word-spacing:17.664000pt;}
.ws1e7_c00001{word-spacing:17.920000pt;}
.ws1c0_c00001{word-spacing:18.688000pt;}
.ws178_c00001{word-spacing:18.752000pt;}
.ws184_c00001{word-spacing:19.072000pt;}
.ws173_c00001{word-spacing:19.392000pt;}
.ws1ea_c00001{word-spacing:20.480000pt;}
.ws12_c00001{word-spacing:20.672000pt;}
.ws19b_c00001{word-spacing:20.992000pt;}
.ws1e8_c00001{word-spacing:21.248000pt;}
.ws1bf_c00001{word-spacing:22.080000pt;}
.ws1bb_c00001{word-spacing:22.336000pt;}
.ws1b8_c00001{word-spacing:23.168000pt;}
.ws1d9_c00001{word-spacing:23.616000pt;}
.ws1ca_c00001{word-spacing:23.744000pt;}
.ws1c7_c00001{word-spacing:23.936000pt;}
.ws1cb_c00001{word-spacing:24.128000pt;}
.ws1d5_c00001{word-spacing:24.512000pt;}
.ws174_c00001{word-spacing:24.576000pt;}
.ws1e5_c00001{word-spacing:24.704000pt;}
.ws24_c00001{word-spacing:24.896000pt;}
.ws1cc_c00001{word-spacing:25.600000pt;}
.ws187_c00001{word-spacing:25.792000pt;}
.ws199_c00001{word-spacing:25.984000pt;}
.ws19e_c00001{word-spacing:26.432000pt;}
.wse9_c00001{word-spacing:50.368000pt;}
.ws150_c00001{word-spacing:62.304000pt;}
.wse_c00001{word-spacing:1399.931733pt;}
.ws1ce_c00001{word-spacing:1400.486400pt;}
.ws156_c00001{word-spacing:1401.169067pt;}
.ws66_c00001{word-spacing:1401.254400pt;}
.ws1e1_c00001{word-spacing:1401.382400pt;}
.ws1d6_c00001{word-spacing:1401.809067pt;}
.ws1a6_c00001{word-spacing:1401.851733pt;}
.ws191_c00001{word-spacing:1401.894400pt;}
.ws1da_c00001{word-spacing:1402.363733pt;}
.ws1df_c00001{word-spacing:1402.406400pt;}
.ws74_c00001{word-spacing:1402.662400pt;}
.ws1e0_c00001{word-spacing:1402.747733pt;}
.ws48_c00001{word-spacing:1402.875733pt;}
.wsf0_c00001{word-spacing:1403.003733pt;}
.ws1b1_c00001{word-spacing:1403.131733pt;}
.ws1d8_c00001{word-spacing:1403.217067pt;}
.ws1d4_c00001{word-spacing:1403.302400pt;}
.ws1ec_c00001{word-spacing:1403.345067pt;}
.ws176_c00001{word-spacing:1403.857067pt;}
.ws1eb_c00001{word-spacing:1404.027733pt;}
.ws1ed_c00001{word-spacing:1404.113067pt;}
.ws11e_c00001{word-spacing:1404.198400pt;}
.ws127_c00001{word-spacing:1404.326400pt;}
.ws12a_c00001{word-spacing:1404.454400pt;}
.ws21_c00001{word-spacing:1405.350400pt;}
.ws146_c00001{word-spacing:1405.393067pt;}
.ws1dc_c00001{word-spacing:1405.563733pt;}
.ws14b_c00001{word-spacing:1405.777067pt;}
.ws1c8_c00001{word-spacing:1405.905067pt;}
.ws1c6_c00001{word-spacing:1405.947733pt;}
.ws83_c00001{word-spacing:1406.161067pt;}
.ws151_c00001{word-spacing:1406.502400pt;}
.ws1cf_c00001{word-spacing:1406.545067pt;}
.ws112_c00001{word-spacing:1406.587733pt;}
.wsbb_c00001{word-spacing:1406.758400pt;}
.ws1cd_c00001{word-spacing:1406.801067pt;}
.wsc3_c00001{word-spacing:1407.483733pt;}
.ws1e3_c00001{word-spacing:1408.038400pt;}
.ws1c3_c00001{word-spacing:1408.422400pt;}
.wsd2_c00001{word-spacing:1408.891733pt;}
.ws13c_c00001{word-spacing:1409.318400pt;}
.wsa2_c00001{word-spacing:1409.745067pt;}
.ws1de_c00001{word-spacing:1410.897067pt;}
._0_c00001{margin-left:-2448.836267pt;}
._24_c00001{margin-left:-2447.768533pt;}
._1a_c00001{margin-left:-53.917867pt;}
._1b_c00001{margin-left:-51.277867pt;}
._19_c00001{margin-left:-35.965867pt;}
._17_c00001{margin-left:-18.013333pt;}
._16_c00001{margin-left:-9.984000pt;}
._15_c00001{margin-left:-8.725333pt;}
._1c_c00001{margin-left:-7.402667pt;}
._8_c00001{margin-left:-6.400000pt;}
._d_c00001{margin-left:-5.504000pt;}
._5_c00001{margin-left:-4.608000pt;}
._6_c00001{margin-left:-3.349333pt;}
._1_c00001{margin-left:-2.346667pt;}
._2_c00001{margin-left:-1.450667pt;}
._3_c00001{width:0.896000pt;}
._4_c00001{width:2.410667pt;}
._b_c00001{width:3.306667pt;}
._e_c00001{width:4.202667pt;}
._7_c00001{width:5.146667pt;}
._9_c00001{width:6.413867pt;}
._a_c00001{width:7.309333pt;}
._21_c00001{width:9.664000pt;}
._14_c00001{width:10.581333pt;}
._1e_c00001{width:12.992000pt;}
._20_c00001{width:13.888000pt;}
._1f_c00001{width:15.296000pt;}
._f_c00001{width:16.704000pt;}
._22_c00001{width:17.920000pt;}
._26_c00001{width:19.968000pt;}
._13_c00001{width:20.992000pt;}
._11_c00001{width:22.336000pt;}
._10_c00001{width:23.942400pt;}
._12_c00001{width:25.728000pt;}
._23_c00001{width:26.944000pt;}
._25_c00001{width:27.840000pt;}
._27_c00001{width:51.904000pt;}
._28_c00001{width:55.680000pt;}
._18_c00001{width:62.245333pt;}
._1d_c00001{width:63.744000pt;}
._c_c00001{width:199.709867pt;}
.fs5_c00001{font-size:32.648000pt;}
.fs2_c00001{font-size:37.312000pt;}
.fs0_c00001{font-size:42.666667pt;}
.fs3_c00001{font-size:48.000000pt;}
.fs6_c00001{font-size:53.333333pt;}
.fs4_c00001{font-size:56.000000pt;}
.fs8_c00001{font-size:58.666667pt;}
.fs12_c00001{font-size:61.196267pt;}
.fs10_c00001{font-size:63.490667pt;}
.fs1_c00001{font-size:64.000000pt;}
.fs14_c00001{font-size:65.567467pt;}
.fsf_c00001{font-size:68.781333pt;}
.fs13_c00001{font-size:74.309867pt;}
.fsa_c00001{font-size:74.666667pt;}
.fsb_c00001{font-size:85.333333pt;}
.fs9_c00001{font-size:93.866667pt;}
.fse_c00001{font-size:94.474133pt;}
.fs11_c00001{font-size:100.526933pt;}
.fsd_c00001{font-size:105.817600pt;}
.fsc_c00001{font-size:116.399467pt;}
.fs7_c00001{font-size:128.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y178_c00001{bottom:46.105600pt;}
.y378_c00001{bottom:86.858267pt;}
.yd8_c00001{bottom:99.210667pt;}
.y139_c00001{bottom:99.210800pt;}
.y177_c00001{bottom:99.210933pt;}
.yf1_c00001{bottom:99.214400pt;}
.y8_c00001{bottom:99.214533pt;}
.yd_c00001{bottom:99.643600pt;}
.y2b7_c00001{bottom:99.771600pt;}
.y53a_c00001{bottom:100.393733pt;}
.y27b_c00001{bottom:101.117733pt;}
.y2ea_c00001{bottom:101.519733pt;}
.y346_c00001{bottom:102.637733pt;}
.y51a_c00001{bottom:103.015733pt;}
.y18c_c00001{bottom:103.929333pt;}
.y8e_c00001{bottom:104.357600pt;}
.y55d_c00001{bottom:104.455200pt;}
.y35b_c00001{bottom:104.637733pt;}
.y64_c00001{bottom:104.912400pt;}
.y67_c00001{bottom:105.341467pt;}
.y1af_c00001{bottom:105.471600pt;}
.y4b8_c00001{bottom:105.472400pt;}
.ya5_c00001{bottom:105.879200pt;}
.y434_c00001{bottom:106.149467pt;}
.y54d_c00001{bottom:106.186267pt;}
.ya3_c00001{bottom:106.488533pt;}
.ya1_c00001{bottom:106.677467pt;}
.y6c_c00001{bottom:106.802267pt;}
.y402_c00001{bottom:106.826667pt;}
.y501_c00001{bottom:108.181067pt;}
.y465_c00001{bottom:108.574667pt;}
.y535_c00001{bottom:108.681333pt;}
.y377_c00001{bottom:108.858267pt;}
.y559_c00001{bottom:109.028400pt;}
.y4a2_c00001{bottom:109.251867pt;}
.ycd_c00001{bottom:110.543200pt;}
.y3b9_c00001{bottom:110.606267pt;}
.ybb_c00001{bottom:111.215333pt;}
.y24b_c00001{bottom:111.245733pt;}
.y3a2_c00001{bottom:111.283333pt;}
.y506_c00001{bottom:111.960667pt;}
.y1e4_c00001{bottom:112.248533pt;}
.y56_c00001{bottom:112.544267pt;}
.yf0_c00001{bottom:112.547733pt;}
.y8b_c00001{bottom:112.547867pt;}
.y2d4_c00001{bottom:112.637733pt;}
.y310_c00001{bottom:112.639733pt;}
.y22c_c00001{bottom:113.133733pt;}
.y116_c00001{bottom:114.494400pt;}
.yd7_c00001{bottom:115.744000pt;}
.y44a_c00001{bottom:116.810933pt;}
.y539_c00001{bottom:116.927067pt;}
.y55c_c00001{bottom:117.787200pt;}
.y63_c00001{bottom:118.244400pt;}
.y66_c00001{bottom:118.673467pt;}
.y4cc_c00001{bottom:118.842533pt;}
.ya4_c00001{bottom:119.211200pt;}
.ya2_c00001{bottom:119.820533pt;}
.ya0_c00001{bottom:120.009467pt;}
.y20c_c00001{bottom:120.013733pt;}
.y138_c00001{bottom:120.106800pt;}
.y6b_c00001{bottom:120.134267pt;}
.y8d_c00001{bottom:120.890933pt;}
.y4bd_c00001{bottom:121.267600pt;}
.y2b6_c00001{bottom:121.771600pt;}
.y558_c00001{bottom:122.360400pt;}
.y27a_c00001{bottom:123.117733pt;}
.y2e9_c00001{bottom:123.519733pt;}
.y297_c00001{bottom:123.773733pt;}
.y345_c00001{bottom:124.637733pt;}
.y519_c00001{bottom:125.015733pt;}
.y25d_c00001{bottom:125.677733pt;}
.yb0_c00001{bottom:125.877600pt;}
.yef_c00001{bottom:125.881067pt;}
.y8a_c00001{bottom:125.881200pt;}
.y18b_c00001{bottom:125.929333pt;}
.y35a_c00001{bottom:126.637733pt;}
.y1ae_c00001{bottom:127.471600pt;}
.y4b7_c00001{bottom:127.472400pt;}
.y433_c00001{bottom:128.149467pt;}
.y54c_c00001{bottom:128.186267pt;}
.y401_c00001{bottom:128.826667pt;}
.y4f8_c00001{bottom:130.181067pt;}
.y464_c00001{bottom:130.574667pt;}
.y534_c00001{bottom:130.681333pt;}
.y376_c00001{bottom:130.858267pt;}
.y4a1_c00001{bottom:131.251867pt;}
.y498_c00001{bottom:131.929067pt;}
.yd6_c00001{bottom:132.277333pt;}
.ycc_c00001{bottom:132.543200pt;}
.y3b8_c00001{bottom:132.606267pt;}
.y115_c00001{bottom:133.156400pt;}
.yba_c00001{bottom:133.215333pt;}
.y24a_c00001{bottom:133.245733pt;}
.y12_c00001{bottom:133.258933pt;}
.y3a1_c00001{bottom:133.283333pt;}
.y176_c00001{bottom:133.436667pt;}
.y137_c00001{bottom:133.440133pt;}
.y55_c00001{bottom:133.440267pt;}
.y538_c00001{bottom:133.460400pt;}
.ya_c00001{bottom:133.688000pt;}
.y505_c00001{bottom:133.960667pt;}
.y1e3_c00001{bottom:134.248533pt;}
.y2d3_c00001{bottom:134.637733pt;}
.y30f_c00001{bottom:134.639733pt;}
.y22b_c00001{bottom:135.133733pt;}
.y1ec_c00001{bottom:135.465467pt;}
.y331_c00001{bottom:136.637733pt;}
.y8c_c00001{bottom:137.424267pt;}
.y509_c00001{bottom:138.810933pt;}
.yee_c00001{bottom:139.214400pt;}
.y89_c00001{bottom:139.214533pt;}
.y3e5_c00001{bottom:139.488133pt;}
.y317_c00001{bottom:140.637733pt;}
.y4cb_c00001{bottom:140.842533pt;}
.y491_c00001{bottom:141.913333pt;}
.y449_c00001{bottom:142.590400pt;}
.y3c7_c00001{bottom:143.267600pt;}
.y2b5_c00001{bottom:143.771600pt;}
.y2e8_c00001{bottom:145.519733pt;}
.y36_c00001{bottom:145.973867pt;}
.y11_c00001{bottom:146.590933pt;}
.y344_c00001{bottom:146.637733pt;}
.y54_c00001{bottom:146.770000pt;}
.y136_c00001{bottom:146.773467pt;}
.yaf_c00001{bottom:146.773600pt;}
.y518_c00001{bottom:147.015733pt;}
.y9_c00001{bottom:147.020000pt;}
.y4bc_c00001{bottom:147.047200pt;}
.y20b_c00001{bottom:147.677733pt;}
.y18a_c00001{bottom:147.929333pt;}
.y359_c00001{bottom:148.637733pt;}
.y1ad_c00001{bottom:149.471600pt;}
.y4b6_c00001{bottom:149.472400pt;}
.y47e_c00001{bottom:150.149467pt;}
.y54b_c00001{bottom:150.186267pt;}
.y279_c00001{bottom:150.781733pt;}
.y296_c00001{bottom:151.437733pt;}
.y114_c00001{bottom:151.818400pt;}
.y4f7_c00001{bottom:152.181067pt;}
.y88_c00001{bottom:152.547867pt;}
.y533_c00001{bottom:152.681333pt;}
.y375_c00001{bottom:152.858267pt;}
.y4a0_c00001{bottom:153.251867pt;}
.y25c_c00001{bottom:153.341733pt;}
.y432_c00001{bottom:153.929067pt;}
.y175_c00001{bottom:154.332667pt;}
.ycb_c00001{bottom:154.543200pt;}
.y3b7_c00001{bottom:154.606267pt;}
.yb9_c00001{bottom:155.215333pt;}
.y1e2_c00001{bottom:156.248533pt;}
.y463_c00001{bottom:156.354267pt;}
.y2d2_c00001{bottom:156.637733pt;}
.y30e_c00001{bottom:156.639733pt;}
.y4e4_c00001{bottom:157.031467pt;}
.y1eb_c00001{bottom:157.465467pt;}
.y552_c00001{bottom:158.035733pt;}
.y40f_c00001{bottom:158.385733pt;}
.y330_c00001{bottom:158.637733pt;}
.y3a0_c00001{bottom:159.062933pt;}
.y504_c00001{bottom:159.740133pt;}
.y167_c00001{bottom:159.745333pt;}
.y151_c00001{bottom:160.106800pt;}
.yb5_c00001{bottom:160.159067pt;}
.y249_c00001{bottom:160.909733pt;}
.y3e4_c00001{bottom:161.488133pt;}
.y316_c00001{bottom:162.637733pt;}
.y22a_c00001{bottom:162.797733pt;}
.y1c4_c00001{bottom:162.804933pt;}
.y4ca_c00001{bottom:162.842533pt;}
.y490_c00001{bottom:163.913333pt;}
.y477_c00001{bottom:164.590400pt;}
.y41e_c00001{bottom:165.267600pt;}
.y2b4_c00001{bottom:165.771600pt;}
.y87_c00001{bottom:165.881200pt;}
.y2e7_c00001{bottom:167.519733pt;}
.y53_c00001{bottom:167.666000pt;}
.y35_c00001{bottom:167.973867pt;}
.y517_c00001{bottom:169.015733pt;}
.y3c6_c00001{bottom:169.047200pt;}
.y2a4_c00001{bottom:170.404933pt;}
.y113_c00001{bottom:170.480400pt;}
.y358_c00001{bottom:170.637733pt;}
.y1ac_c00001{bottom:171.471600pt;}
.y448_c00001{bottom:172.149467pt;}
.y54a_c00001{bottom:172.186267pt;}
.y278_c00001{bottom:172.781733pt;}
.y295_c00001{bottom:173.437733pt;}
.y4f6_c00001{bottom:174.181067pt;}
.y551_c00001{bottom:174.569067pt;}
.y532_c00001{bottom:174.681333pt;}
.y374_c00001{bottom:174.858267pt;}
.y4b5_c00001{bottom:175.251867pt;}
.y20a_c00001{bottom:175.341733pt;}
.yb4_c00001{bottom:176.155067pt;}
.yca_c00001{bottom:176.543200pt;}
.y3b6_c00001{bottom:176.606267pt;}
.yb8_c00001{bottom:177.215333pt;}
.y2d1_c00001{bottom:178.637733pt;}
.y30d_c00001{bottom:178.639733pt;}
.y49f_c00001{bottom:179.038400pt;}
.y86_c00001{bottom:179.214533pt;}
.y1ea_c00001{bottom:179.465467pt;}
.y32f_c00001{bottom:180.637733pt;}
.y25b_c00001{bottom:181.005733pt;}
.y166_c00001{bottom:181.745333pt;}
.y189_c00001{bottom:183.257333pt;}
.y3e3_c00001{bottom:183.488133pt;}
.yed_c00001{bottom:183.581733pt;}
.y400_c00001{bottom:184.165333pt;}
.y315_c00001{bottom:184.637733pt;}
.y229_c00001{bottom:184.797733pt;}
.y1c3_c00001{bottom:184.804933pt;}
.y4c9_c00001{bottom:184.842533pt;}
.y462_c00001{bottom:185.913333pt;}
.y476_c00001{bottom:186.590400pt;}
.y41d_c00001{bottom:187.267600pt;}
.y2b3_c00001{bottom:187.771600pt;}
.y40e_c00001{bottom:187.944800pt;}
.y248_c00001{bottom:188.573733pt;}
.y39f_c00001{bottom:188.621867pt;}
.y135_c00001{bottom:188.758533pt;}
.y503_c00001{bottom:189.299200pt;}
.y2e6_c00001{bottom:189.519733pt;}
.y48f_c00001{bottom:189.692800pt;}
.y34_c00001{bottom:189.973867pt;}
.y4dc_c00001{bottom:190.370000pt;}
.y2a3_c00001{bottom:190.410267pt;}
.y570_c00001{bottom:190.578000pt;}
.y567_c00001{bottom:190.579733pt;}
.y516_c00001{bottom:191.015733pt;}
.y550_c00001{bottom:191.102400pt;}
.y1e1_c00001{bottom:191.581867pt;}
.yb3_c00001{bottom:192.151067pt;}
.y85_c00001{bottom:192.547867pt;}
.y447_c00001{bottom:194.149467pt;}
.y549_c00001{bottom:194.189867pt;}
.y294_c00001{bottom:195.437733pt;}
.y4f5_c00001{bottom:196.181067pt;}
.y531_c00001{bottom:196.681333pt;}
.y112_c00001{bottom:196.749733pt;}
.y373_c00001{bottom:196.858267pt;}
.y209_c00001{bottom:197.341733pt;}
.yc9_c00001{bottom:198.543200pt;}
.y3c5_c00001{bottom:198.606267pt;}
.y277_c00001{bottom:200.445733pt;}
.y2d0_c00001{bottom:200.637733pt;}
.y30c_c00001{bottom:200.639733pt;}
.y1e9_c00001{bottom:201.465467pt;}
.y3b5_c00001{bottom:202.385733pt;}
.y4bb_c00001{bottom:202.392800pt;}
.y32e_c00001{bottom:202.637733pt;}
.y25a_c00001{bottom:203.005733pt;}
.y165_c00001{bottom:203.745333pt;}
.y150_c00001{bottom:204.648400pt;}
.y4b4_c00001{bottom:204.810933pt;}
.y188_c00001{bottom:205.257333pt;}
.y3e2_c00001{bottom:205.488133pt;}
.yec_c00001{bottom:205.581733pt;}
.y3ff_c00001{bottom:206.165333pt;}
.y314_c00001{bottom:206.637733pt;}
.y1ab_c00001{bottom:206.804933pt;}
.y4c8_c00001{bottom:206.842533pt;}
.y54f_c00001{bottom:207.635733pt;}
.y56f_c00001{bottom:207.911333pt;}
.y566_c00001{bottom:207.913067pt;}
.y461_c00001{bottom:207.913333pt;}
.yb2_c00001{bottom:208.147067pt;}
.y475_c00001{bottom:208.590400pt;}
.y357_c00001{bottom:208.637733pt;}
.y431_c00001{bottom:209.267600pt;}
.y2b2_c00001{bottom:209.771600pt;}
.y40d_c00001{bottom:209.944800pt;}
.y247_c00001{bottom:210.573733pt;}
.y39e_c00001{bottom:210.621867pt;}
.y134_c00001{bottom:210.758533pt;}
.y2e5_c00001{bottom:211.519733pt;}
.y52_c00001{bottom:211.629867pt;}
.y4ff_c00001{bottom:212.370000pt;}
.y228_c00001{bottom:212.461733pt;}
.yb7_c00001{bottom:212.543333pt;}
.y515_c00001{bottom:213.015733pt;}
.y41c_c00001{bottom:213.047200pt;}
.y1e0_c00001{bottom:213.581867pt;}
.y502_c00001{bottom:215.078667pt;}
.y33_c00001{bottom:215.749867pt;}
.y508_c00001{bottom:216.149467pt;}
.y2a2_c00001{bottom:217.964000pt;}
.y4f4_c00001{bottom:218.181067pt;}
.y530_c00001{bottom:218.681333pt;}
.y111_c00001{bottom:218.749733pt;}
.y372_c00001{bottom:218.858267pt;}
.y48e_c00001{bottom:219.251867pt;}
.y446_c00001{bottom:219.929067pt;}
.y548_c00001{bottom:219.965867pt;}
.yc8_c00001{bottom:220.543200pt;}
.y529_c00001{bottom:220.574800pt;}
.y276_c00001{bottom:222.445733pt;}
.y2cf_c00001{bottom:222.637733pt;}
.y30b_c00001{bottom:222.639733pt;}
.y293_c00001{bottom:223.101733pt;}
.y1e8_c00001{bottom:223.465467pt;}
.yb1_c00001{bottom:224.143067pt;}
.y54e_c00001{bottom:224.169067pt;}
.y3c4_c00001{bottom:224.385733pt;}
.y32d_c00001{bottom:224.637733pt;}
.y208_c00001{bottom:225.005733pt;}
.y56e_c00001{bottom:225.244667pt;}
.y565_c00001{bottom:225.246400pt;}
.y164_c00001{bottom:225.745333pt;}
.y14f_c00001{bottom:226.648400pt;}
.y4b3_c00001{bottom:226.810933pt;}
.y187_c00001{bottom:227.257333pt;}
.y497_c00001{bottom:227.488133pt;}
.yeb_c00001{bottom:227.581733pt;}
.y3fe_c00001{bottom:228.165333pt;}
.y313_c00001{bottom:228.637733pt;}
.y1aa_c00001{bottom:228.804933pt;}
.y4c7_c00001{bottom:228.842533pt;}
.y49e_c00001{bottom:230.590400pt;}
.y356_c00001{bottom:230.637733pt;}
.y259_c00001{bottom:230.669733pt;}
.y3e1_c00001{bottom:231.274667pt;}
.y2b1_c00001{bottom:231.771600pt;}
.y3b4_c00001{bottom:231.944800pt;}
.y39d_c00001{bottom:232.621867pt;}
.y2e4_c00001{bottom:233.519733pt;}
.y51_c00001{bottom:233.629867pt;}
.y460_c00001{bottom:233.692800pt;}
.y474_c00001{bottom:234.370000pt;}
.y227_c00001{bottom:234.461733pt;}
.yb6_c00001{bottom:234.543333pt;}
.y514_c00001{bottom:235.015733pt;}
.y1df_c00001{bottom:235.581867pt;}
.y2a1_c00001{bottom:237.969333pt;}
.y246_c00001{bottom:238.237733pt;}
.y430_c00001{bottom:238.826667pt;}
.y84_c00001{bottom:239.975600pt;}
.y4f3_c00001{bottom:240.181067pt;}
.y52f_c00001{bottom:240.681333pt;}
.y110_c00001{bottom:240.749733pt;}
.y371_c00001{bottom:240.858267pt;}
.y4db_c00001{bottom:241.929067pt;}
.y547_c00001{bottom:241.965867pt;}
.yc7_c00001{bottom:242.543200pt;}
.y528_c00001{bottom:242.574800pt;}
.y56d_c00001{bottom:242.578000pt;}
.y564_c00001{bottom:242.579733pt;}
.y41b_c00001{bottom:242.606267pt;}
.y2ce_c00001{bottom:244.637733pt;}
.y30a_c00001{bottom:244.639733pt;}
.y48d_c00001{bottom:245.031467pt;}
.y1e7_c00001{bottom:245.465467pt;}
.y133_c00001{bottom:246.086533pt;}
.y32c_c00001{bottom:246.637733pt;}
.y207_c00001{bottom:247.005733pt;}
.y163_c00001{bottom:247.745333pt;}
.y4b2_c00001{bottom:248.810933pt;}
.y186_c00001{bottom:249.257333pt;}
.y445_c00001{bottom:249.488133pt;}
.yea_c00001{bottom:249.581733pt;}
.y275_c00001{bottom:250.109733pt;}
.y3fd_c00001{bottom:250.165333pt;}
.y312_c00001{bottom:250.637733pt;}
.y292_c00001{bottom:250.765733pt;}
.y1a9_c00001{bottom:250.804933pt;}
.y4c6_c00001{bottom:250.842533pt;}
.y32_c00001{bottom:251.077867pt;}
.y355_c00001{bottom:252.637733pt;}
.y258_c00001{bottom:252.669733pt;}
.y496_c00001{bottom:253.267600pt;}
.y2b0_c00001{bottom:253.771600pt;}
.y3b3_c00001{bottom:253.944800pt;}
.y39c_c00001{bottom:254.622000pt;}
.y57f_c00001{bottom:255.420667pt;}
.y2e3_c00001{bottom:255.519733pt;}
.y50_c00001{bottom:255.629867pt;}
.y49d_c00001{bottom:256.370000pt;}
.y1de_c00001{bottom:257.581867pt;}
.y40c_c00001{bottom:257.724400pt;}
.y56c_c00001{bottom:259.911333pt;}
.y563_c00001{bottom:259.913067pt;}
.y513_c00001{bottom:260.809333pt;}
.y3e0_c00001{bottom:260.826667pt;}
.y83_c00001{bottom:261.975600pt;}
.y14e_c00001{bottom:261.976400pt;}
.y4f2_c00001{bottom:262.181067pt;}
.y37f_c00001{bottom:262.585333pt;}
.y52e_c00001{bottom:262.681333pt;}
.y10f_c00001{bottom:262.749733pt;}
.y370_c00001{bottom:262.858267pt;}
.y45f_c00001{bottom:263.251867pt;}
.y473_c00001{bottom:263.929067pt;}
.y546_c00001{bottom:263.965867pt;}
.y226_c00001{bottom:264.013733pt;}
.y527_c00001{bottom:264.574800pt;}
.y41a_c00001{bottom:264.606267pt;}
.y2a0_c00001{bottom:265.523067pt;}
.y245_c00001{bottom:265.901733pt;}
.y2cd_c00001{bottom:266.637733pt;}
.y309_c00001{bottom:266.639733pt;}
.yc3_c00001{bottom:267.167467pt;}
.y4da_c00001{bottom:267.708667pt;}
.y132_c00001{bottom:268.086533pt;}
.y32b_c00001{bottom:268.637733pt;}
.y162_c00001{bottom:269.745333pt;}
.y185_c00001{bottom:271.257333pt;}
.y444_c00001{bottom:271.488133pt;}
.ye9_c00001{bottom:271.581733pt;}
.y3fc_c00001{bottom:272.165200pt;}
.y311_c00001{bottom:272.637733pt;}
.y1a8_c00001{bottom:272.804800pt;}
.y4c5_c00001{bottom:272.842400pt;}
.y31_c00001{bottom:273.077867pt;}
.y48c_c00001{bottom:274.590533pt;}
.y354_c00001{bottom:274.637733pt;}
.y206_c00001{bottom:274.669733pt;}
.y2af_c00001{bottom:275.771600pt;}
.y3b2_c00001{bottom:275.944800pt;}
.y39b_c00001{bottom:276.622000pt;}
.y56b_c00001{bottom:277.244667pt;}
.y562_c00001{bottom:277.246400pt;}
.y2e2_c00001{bottom:277.519733pt;}
.y274_c00001{bottom:277.773733pt;}
.y291_c00001{bottom:278.429733pt;}
.yd1_c00001{bottom:278.506000pt;}
.y512_c00001{bottom:282.809333pt;}
.y3df_c00001{bottom:282.826667pt;}
.y57e_c00001{bottom:283.325200pt;}
.yc2_c00001{bottom:283.700800pt;}
.y82_c00001{bottom:283.975600pt;}
.y14d_c00001{bottom:283.976400pt;}
.y4f1_c00001{bottom:284.181067pt;}
.y37e_c00001{bottom:284.585333pt;}
.y52d_c00001{bottom:284.681333pt;}
.y36f_c00001{bottom:284.858267pt;}
.y29f_c00001{bottom:285.528400pt;}
.y472_c00001{bottom:285.929067pt;}
.y545_c00001{bottom:285.965867pt;}
.y225_c00001{bottom:286.013733pt;}
.y1c2_c00001{bottom:286.138133pt;}
.y526_c00001{bottom:286.574800pt;}
.y419_c00001{bottom:286.606267pt;}
.y40b_c00001{bottom:287.283333pt;}
.y2cc_c00001{bottom:288.637733pt;}
.y308_c00001{bottom:288.639733pt;}
.y45e_c00001{bottom:289.031467pt;}
.y131_c00001{bottom:290.086533pt;}
.y4f_c00001{bottom:290.963200pt;}
.y161_c00001{bottom:291.745333pt;}
.y37b_c00001{bottom:291.960667pt;}
.y1dd_c00001{bottom:292.915200pt;}
.y443_c00001{bottom:293.488133pt;}
.y244_c00001{bottom:293.565733pt;}
.ye8_c00001{bottom:293.581733pt;}
.y3fb_c00001{bottom:294.165200pt;}
.y56a_c00001{bottom:294.578000pt;}
.y561_c00001{bottom:294.579733pt;}
.y343_c00001{bottom:294.637733pt;}
.y4c4_c00001{bottom:294.842400pt;}
.yd0_c00001{bottom:295.039333pt;}
.y353_c00001{bottom:296.637733pt;}
.y205_c00001{bottom:296.669733pt;}
.y481_c00001{bottom:297.267600pt;}
.y2ae_c00001{bottom:297.771600pt;}
.y3c3_c00001{bottom:297.944800pt;}
.y10e_c00001{bottom:298.077733pt;}
.y39a_c00001{bottom:298.622000pt;}
.y2e1_c00001{bottom:299.519733pt;}
.y273_c00001{bottom:299.773733pt;}
.yc1_c00001{bottom:300.234133pt;}
.y48b_c00001{bottom:300.370000pt;}
.y3b1_c00001{bottom:301.724400pt;}
.y257_c00001{bottom:302.333733pt;}
.y3de_c00001{bottom:304.826667pt;}
.y81_c00001{bottom:305.975600pt;}
.y14c_c00001{bottom:305.976400pt;}
.y290_c00001{bottom:306.093733pt;}
.y4f0_c00001{bottom:306.181067pt;}
.y184_c00001{bottom:306.585333pt;}
.y32a_c00001{bottom:306.637733pt;}
.y52c_c00001{bottom:306.681333pt;}
.y36e_c00001{bottom:306.858267pt;}
.y544_c00001{bottom:307.969333pt;}
.y1a7_c00001{bottom:308.138133pt;}
.y30_c00001{bottom:308.457867pt;}
.y525_c00001{bottom:308.574800pt;}
.y42f_c00001{bottom:308.606267pt;}
.y40a_c00001{bottom:309.283333pt;}
.y37a_c00001{bottom:309.294000pt;}
.y39_c00001{bottom:310.295333pt;}
.y2cb_c00001{bottom:310.637733pt;}
.y307_c00001{bottom:310.639733pt;}
.y57d_c00001{bottom:311.229733pt;}
.ycf_c00001{bottom:311.572667pt;}
.y471_c00001{bottom:311.708667pt;}
.y569_c00001{bottom:311.911333pt;}
.y560_c00001{bottom:311.913067pt;}
.y130_c00001{bottom:312.086533pt;}
.y511_c00001{bottom:312.361333pt;}
.y418_c00001{bottom:312.385733pt;}
.y4e_c00001{bottom:312.963200pt;}
.y29e_c00001{bottom:313.087467pt;}
.y224_c00001{bottom:313.677733pt;}
.y160_c00001{bottom:313.745333pt;}
.y1dc_c00001{bottom:314.915200pt;}
.y47d_c00001{bottom:315.488133pt;}
.y243_c00001{bottom:315.565733pt;}
.y342_c00001{bottom:316.637733pt;}
.yc0_c00001{bottom:316.767467pt;}
.y4c3_c00001{bottom:316.842400pt;}
.y45d_c00001{bottom:318.590533pt;}
.y442_c00001{bottom:319.267600pt;}
.y2ad_c00001{bottom:319.771600pt;}
.y3c2_c00001{bottom:319.944800pt;}
.y3fa_c00001{bottom:319.951867pt;}
.y10d_c00001{bottom:320.077733pt;}
.y399_c00001{bottom:320.622000pt;}
.y2e0_c00001{bottom:321.519733pt;}
.y4d9_c00001{bottom:323.047200pt;}
.y204_c00001{bottom:324.333733pt;}
.y4b1_c00001{bottom:326.149467pt;}
.y480_c00001{bottom:326.826667pt;}
.y38_c00001{bottom:326.828667pt;}
.y2f_c00001{bottom:327.119867pt;}
.y272_c00001{bottom:327.437733pt;}
.y80_c00001{bottom:327.975600pt;}
.y14b_c00001{bottom:327.976400pt;}
.y28f_c00001{bottom:328.093733pt;}
.yce_c00001{bottom:328.106000pt;}
.y4ef_c00001{bottom:328.181067pt;}
.y183_c00001{bottom:328.585333pt;}
.y329_c00001{bottom:328.637733pt;}
.y52b_c00001{bottom:328.681333pt;}
.y36d_c00001{bottom:328.858267pt;}
.ye7_c00001{bottom:328.909733pt;}
.y568_c00001{bottom:329.244667pt;}
.y55f_c00001{bottom:329.246400pt;}
.y48a_c00001{bottom:329.929067pt;}
.y1a6_c00001{bottom:330.138133pt;}
.y524_c00001{bottom:330.574800pt;}
.y3dd_c00001{bottom:330.606267pt;}
.y3b0_c00001{bottom:331.283333pt;}
.y379_c00001{bottom:331.965733pt;}
.y2ca_c00001{bottom:332.637733pt;}
.y306_c00001{bottom:332.639733pt;}
.y29d_c00001{bottom:333.087467pt;}
.y543_c00001{bottom:333.745333pt;}
.y12f_c00001{bottom:334.086533pt;}
.y510_c00001{bottom:334.361333pt;}
.y352_c00001{bottom:334.637733pt;}
.y4d_c00001{bottom:334.963200pt;}
.y223_c00001{bottom:335.677733pt;}
.y15f_c00001{bottom:335.745333pt;}
.y1db_c00001{bottom:336.915200pt;}
.y42e_c00001{bottom:338.165200pt;}
.y341_c00001{bottom:338.637733pt;}
.y4c2_c00001{bottom:338.842400pt;}
.y47c_c00001{bottom:341.267600pt;}
.y2ac_c00001{bottom:341.771600pt;}
.y3c1_c00001{bottom:341.944800pt;}
.y10c_c00001{bottom:342.077733pt;}
.y398_c00001{bottom:342.622000pt;}
.y242_c00001{bottom:343.229733pt;}
.y37_c00001{bottom:343.362000pt;}
.y2df_c00001{bottom:343.519733pt;}
.y29c_c00001{bottom:344.297333pt;}
.y45c_c00001{bottom:344.370000pt;}
.y4fe_c00001{bottom:345.047200pt;}
.y2e_c00001{bottom:345.781867pt;}
.y441_c00001{bottom:348.826667pt;}
.y3f9_c00001{bottom:349.503867pt;}
.y7f_c00001{bottom:349.975600pt;}
.y14a_c00001{bottom:349.976400pt;}
.y4ee_c00001{bottom:350.181067pt;}
.y182_c00001{bottom:350.585333pt;}
.y328_c00001{bottom:350.637733pt;}
.ye6_c00001{bottom:350.680400pt;}
.y36c_c00001{bottom:350.858267pt;}
.y489_c00001{bottom:351.929067pt;}
.y203_c00001{bottom:351.997733pt;}
.y1a5_c00001{bottom:352.138133pt;}
.y523_c00001{bottom:352.574800pt;}
.y4d8_c00001{bottom:352.606267pt;}
.y3af_c00001{bottom:353.283333pt;}
.y2c9_c00001{bottom:354.637733pt;}
.y305_c00001{bottom:354.639733pt;}
.y271_c00001{bottom:355.101733pt;}
.y542_c00001{bottom:355.745333pt;}
.y28e_c00001{bottom:355.757733pt;}
.y12e_c00001{bottom:356.086533pt;}
.y50f_c00001{bottom:356.361333pt;}
.y351_c00001{bottom:356.637733pt;}
.y4c_c00001{bottom:356.963200pt;}
.y15e_c00001{bottom:357.745333pt;}
.y55e_c00001{bottom:359.806400pt;}
.y495_c00001{bottom:360.165200pt;}
.y340_c00001{bottom:360.637733pt;}
.y4c1_c00001{bottom:360.842400pt;}
.y470_c00001{bottom:363.267600pt;}
.y222_c00001{bottom:363.341733pt;}
.y2ab_c00001{bottom:363.771600pt;}
.y37d_c00001{bottom:363.913333pt;}
.y417_c00001{bottom:363.944800pt;}
.y42d_c00001{bottom:363.951867pt;}
.y10b_c00001{bottom:364.077733pt;}
.y2d_c00001{bottom:364.443867pt;}
.y397_c00001{bottom:364.622000pt;}
.y2de_c00001{bottom:365.519733pt;}
.y4e3_c00001{bottom:367.047200pt;}
.y3c0_c00001{bottom:367.724400pt;}
.y9f_c00001{bottom:370.110533pt;}
.y440_c00001{bottom:370.826667pt;}
.y241_c00001{bottom:370.893733pt;}
.y9e_c00001{bottom:371.244400pt;}
.y3f8_c00001{bottom:371.503867pt;}
.y7e_c00001{bottom:371.975600pt;}
.y149_c00001{bottom:371.976400pt;}
.y4ed_c00001{bottom:372.181067pt;}
.y1da_c00001{bottom:372.248533pt;}
.ye5_c00001{bottom:372.408400pt;}
.y181_c00001{bottom:372.585333pt;}
.y327_c00001{bottom:372.637733pt;}
.y36b_c00001{bottom:372.858267pt;}
.y45b_c00001{bottom:373.929067pt;}
.y256_c00001{bottom:373.997733pt;}
.y1a4_c00001{bottom:374.138133pt;}
.y4d7_c00001{bottom:374.606267pt;}
.y3ae_c00001{bottom:375.283333pt;}
.y2c8_c00001{bottom:376.637733pt;}
.y304_c00001{bottom:376.639733pt;}
.y270_c00001{bottom:377.101733pt;}
.y488_c00001{bottom:377.708667pt;}
.y541_c00001{bottom:377.745333pt;}
.y12d_c00001{bottom:378.086533pt;}
.y522_c00001{bottom:378.354267pt;}
.y50e_c00001{bottom:378.361333pt;}
.y350_c00001{bottom:378.637733pt;}
.y4b_c00001{bottom:378.963200pt;}
.y409_c00001{bottom:379.070000pt;}
.y202_c00001{bottom:379.661733pt;}
.y15d_c00001{bottom:379.745333pt;}
.y4b0_c00001{bottom:381.488133pt;}
.y3dc_c00001{bottom:382.165200pt;}
.y33f_c00001{bottom:382.637733pt;}
.y4c0_c00001{bottom:382.842400pt;}
.y2c_c00001{bottom:383.105867pt;}
.yd5_c00001{bottom:383.388000pt;}
.y28d_c00001{bottom:383.421733pt;}
.y9d_c00001{bottom:384.576400pt;}
.y49c_c00001{bottom:385.267600pt;}
.y2aa_c00001{bottom:385.771600pt;}
.y37c_c00001{bottom:385.913333pt;}
.y10a_c00001{bottom:386.077733pt;}
.y396_c00001{bottom:386.622000pt;}
.y2dd_c00001{bottom:387.519733pt;}
.y46f_c00001{bottom:389.047200pt;}
.y416_c00001{bottom:389.724400pt;}
.y221_c00001{bottom:391.005733pt;}
.y42c_c00001{bottom:393.503867pt;}
.y7d_c00001{bottom:393.975600pt;}
.y148_c00001{bottom:393.976400pt;}
.ye4_c00001{bottom:394.136400pt;}
.y4ec_c00001{bottom:394.181067pt;}
.y1d9_c00001{bottom:394.248533pt;}
.y1e6_c00001{bottom:394.585333pt;}
.y326_c00001{bottom:394.637733pt;}
.y36a_c00001{bottom:394.858267pt;}
.y45a_c00001{bottom:395.929067pt;}
.y43f_c00001{bottom:396.606267pt;}
.y3ad_c00001{bottom:397.283333pt;}
.y240_c00001{bottom:398.557733pt;}
.y2c7_c00001{bottom:398.637733pt;}
.y303_c00001{bottom:398.639733pt;}
.y540_c00001{bottom:399.745333pt;}
.yd4_c00001{bottom:399.921333pt;}
.y12c_c00001{bottom:400.086533pt;}
.y521_c00001{bottom:400.354267pt;}
.y50d_c00001{bottom:400.361333pt;}
.y4d6_c00001{bottom:400.385733pt;}
.y34f_c00001{bottom:400.637733pt;}
.y255_c00001{bottom:401.661733pt;}
.y2b_c00001{bottom:401.767867pt;}
.y4af_c00001{bottom:403.488133pt;}
.y3db_c00001{bottom:404.165200pt;}
.y33e_c00001{bottom:404.637733pt;}
.y26f_c00001{bottom:404.765733pt;}
.y4bf_c00001{bottom:404.842400pt;}
.y28c_c00001{bottom:405.421733pt;}
.y487_c00001{bottom:407.267600pt;}
.y201_c00001{bottom:407.325733pt;}
.y2a9_c00001{bottom:407.771600pt;}
.y180_c00001{bottom:407.913333pt;}
.y494_c00001{bottom:407.944800pt;}
.y507_c00001{bottom:407.951867pt;}
.y109_c00001{bottom:408.077733pt;}
.y1c1_c00001{bottom:409.467067pt;}
.y1a3_c00001{bottom:409.471467pt;}
.y2dc_c00001{bottom:409.519733pt;}
.y395_c00001{bottom:412.408533pt;}
.y220_c00001{bottom:413.005733pt;}
.y4a_c00001{bottom:414.301867pt;}
.y15c_c00001{bottom:415.083333pt;}
.y42b_c00001{bottom:415.503867pt;}
.ye3_c00001{bottom:415.864400pt;}
.y7c_c00001{bottom:415.975600pt;}
.y4eb_c00001{bottom:416.181067pt;}
.y1d8_c00001{bottom:416.248533pt;}
.yd3_c00001{bottom:416.454667pt;}
.y1e5_c00001{bottom:416.585333pt;}
.y325_c00001{bottom:416.637733pt;}
.y369_c00001{bottom:416.858267pt;}
.y46e_c00001{bottom:418.606267pt;}
.y3ac_c00001{bottom:419.283333pt;}
.y2a_c00001{bottom:420.429867pt;}
.y2c6_c00001{bottom:420.637733pt;}
.y302_c00001{bottom:420.639733pt;}
.y459_c00001{bottom:421.729733pt;}
.y53f_c00001{bottom:421.745333pt;}
.y520_c00001{bottom:422.354267pt;}
.y50c_c00001{bottom:422.361333pt;}
.y4fd_c00001{bottom:422.385733pt;}
.y34e_c00001{bottom:422.637733pt;}
.y3bf_c00001{bottom:423.062933pt;}
.y91_c00001{bottom:423.835867pt;}
.y3da_c00001{bottom:426.165200pt;}
.y23f_c00001{bottom:426.221733pt;}
.y68_c00001{bottom:426.497733pt;}
.y33d_c00001{bottom:426.637733pt;}
.y3f7_c00001{bottom:426.842400pt;}
.y486_c00001{bottom:429.267600pt;}
.y147_c00001{bottom:429.304400pt;}
.y254_c00001{bottom:429.325733pt;}
.y2a8_c00001{bottom:429.771600pt;}
.y17f_c00001{bottom:429.913333pt;}
.y4d5_c00001{bottom:429.944800pt;}
.y408_c00001{bottom:430.622000pt;}
.y1a2_c00001{bottom:431.471467pt;}
.y2db_c00001{bottom:431.519733pt;}
.y26e_c00001{bottom:432.429733pt;}
.yd2_c00001{bottom:432.988000pt;}
.y49b_c00001{bottom:433.047200pt;}
.y28b_c00001{bottom:433.085733pt;}
.y15b_c00001{bottom:433.745333pt;}
.y200_c00001{bottom:434.989733pt;}
.y12b_c00001{bottom:435.414533pt;}
.y49_c00001{bottom:436.301867pt;}
.y42a_c00001{bottom:437.503867pt;}
.ye2_c00001{bottom:437.592400pt;}
.y7b_c00001{bottom:437.975600pt;}
.y4ea_c00001{bottom:438.181067pt;}
.y324_c00001{bottom:438.637733pt;}
.y368_c00001{bottom:438.858267pt;}
.y29_c00001{bottom:439.091867pt;}
.y62_c00001{bottom:439.829733pt;}
.y90_c00001{bottom:440.369200pt;}
.y46d_c00001{bottom:440.606267pt;}
.y21f_c00001{bottom:440.669733pt;}
.y153_c00001{bottom:441.210533pt;}
.y3ab_c00001{bottom:441.283333pt;}
.y394_c00001{bottom:441.960533pt;}
.y2c5_c00001{bottom:442.637733pt;}
.y301_c00001{bottom:442.639733pt;}
.y108_c00001{bottom:443.405733pt;}
.y53e_c00001{bottom:443.757733pt;}
.y51f_c00001{bottom:444.354267pt;}
.y50b_c00001{bottom:444.361333pt;}
.y43e_c00001{bottom:448.165200pt;}
.y23e_c00001{bottom:448.221733pt;}
.y33c_c00001{bottom:448.637733pt;}
.y3f6_c00001{bottom:448.842400pt;}
.y55b_c00001{bottom:449.337067pt;}
.y146_c00001{bottom:451.304400pt;}
.y1d7_c00001{bottom:451.581867pt;}
.y2a7_c00001{bottom:451.771600pt;}
.y17e_c00001{bottom:451.913333pt;}
.y3d9_c00001{bottom:451.944800pt;}
.yae_c00001{bottom:452.417467pt;}
.y3be_c00001{bottom:452.622000pt;}
.y61_c00001{bottom:453.161733pt;}
.y537_c00001{bottom:453.305067pt;}
.y1a1_c00001{bottom:453.471467pt;}
.y2da_c00001{bottom:453.519733pt;}
.y10_c00001{bottom:454.844267pt;}
.y485_c00001{bottom:455.047200pt;}
.y4d4_c00001{bottom:455.731333pt;}
.y3e_c00001{bottom:456.266933pt;}
.y8f_c00001{bottom:456.902533pt;}
.y253_c00001{bottom:456.989733pt;}
.y12a_c00001{bottom:457.414533pt;}
.y152_c00001{bottom:457.743867pt;}
.y28_c00001{bottom:457.753867pt;}
.y1c0_c00001{bottom:458.139067pt;}
.y48_c00001{bottom:458.301867pt;}
.y4ae_c00001{bottom:458.826667pt;}
.y493_c00001{bottom:459.503867pt;}
.y7a_c00001{bottom:459.975600pt;}
.y15a_c00001{bottom:459.981733pt;}
.y26d_c00001{bottom:460.093733pt;}
.y57c_c00001{bottom:460.169733pt;}
.y4e9_c00001{bottom:460.181067pt;}
.y323_c00001{bottom:460.637733pt;}
.y28a_c00001{bottom:460.749733pt;}
.y367_c00001{bottom:460.858267pt;}
.y46c_c00001{bottom:462.606267pt;}
.y1ff_c00001{bottom:462.653733pt;}
.y55a_c00001{bottom:462.669067pt;}
.y415_c00001{bottom:463.283333pt;}
.y393_c00001{bottom:463.960533pt;}
.y2c4_c00001{bottom:464.637733pt;}
.y300_c00001{bottom:464.639733pt;}
.y107_c00001{bottom:465.405733pt;}
.yf_c00001{bottom:466.286400pt;}
.y51e_c00001{bottom:466.354267pt;}
.y3aa_c00001{bottom:467.062933pt;}
.y14_c00001{bottom:467.747200pt;}
.yc_c00001{bottom:468.176267pt;}
.y21e_c00001{bottom:468.333733pt;}
.y536_c00001{bottom:469.838400pt;}
.y43d_c00001{bottom:470.165200pt;}
.y33b_c00001{bottom:470.637733pt;}
.y3f5_c00001{bottom:470.842400pt;}
.ye1_c00001{bottom:472.664400pt;}
.y3d_c00001{bottom:472.800267pt;}
.y458_c00001{bottom:473.281733pt;}
.y145_c00001{bottom:473.304400pt;}
.y53d_c00001{bottom:473.309733pt;}
.y1d6_c00001{bottom:473.581867pt;}
.y2a6_c00001{bottom:473.771600pt;}
.y17d_c00001{bottom:473.913333pt;}
.y47b_c00001{bottom:473.944800pt;}
.yad_c00001{bottom:474.417467pt;}
.y407_c00001{bottom:474.622000pt;}
.y1a0_c00001{bottom:475.471467pt;}
.y2d9_c00001{bottom:475.519733pt;}
.y23d_c00001{bottom:475.885733pt;}
.y27_c00001{bottom:476.415867pt;}
.y4fc_c00001{bottom:477.724400pt;}
.y3bd_c00001{bottom:478.401467pt;}
.y252_c00001{bottom:478.989733pt;}
.y129_c00001{bottom:479.414533pt;}
.ye_c00001{bottom:479.618400pt;}
.y1bf_c00001{bottom:480.139067pt;}
.y4ad_c00001{bottom:480.826667pt;}
.y13_c00001{bottom:481.079200pt;}
.y3d8_c00001{bottom:481.503867pt;}
.yb_c00001{bottom:481.508267pt;}
.y159_c00001{bottom:481.981733pt;}
.y26c_c00001{bottom:482.093733pt;}
.y4e8_c00001{bottom:482.181067pt;}
.y34d_c00001{bottom:482.637733pt;}
.y366_c00001{bottom:482.858267pt;}
.y484_c00001{bottom:484.606267pt;}
.y4d3_c00001{bottom:485.283333pt;}
.y392_c00001{bottom:485.960533pt;}
.y2c3_c00001{bottom:486.637733pt;}
.y2ff_c00001{bottom:486.639733pt;}
.y106_c00001{bottom:487.405733pt;}
.y46b_c00001{bottom:488.385733pt;}
.y289_c00001{bottom:488.413733pt;}
.y414_c00001{bottom:489.062933pt;}
.y3c_c00001{bottom:489.333600pt;}
.y1fe_c00001{bottom:490.317733pt;}
.y21d_c00001{bottom:490.333733pt;}
.y174_c00001{bottom:490.642267pt;}
.y33a_c00001{bottom:492.637733pt;}
.y429_c00001{bottom:492.842400pt;}
.y47_c00001{bottom:493.629867pt;}
.ye0_c00001{bottom:494.392400pt;}
.y26_c00001{bottom:495.077867pt;}
.y79_c00001{bottom:495.303600pt;}
.y144_c00001{bottom:495.304400pt;}
.y53c_c00001{bottom:495.309733pt;}
.y1d5_c00001{bottom:495.581867pt;}
.y2a5_c00001{bottom:495.771600pt;}
.y17c_c00001{bottom:495.913333pt;}
.y43c_c00001{bottom:495.944800pt;}
.y57b_c00001{bottom:496.339200pt;}
.yac_c00001{bottom:496.417467pt;}
.y3a9_c00001{bottom:496.622000pt;}
.y2d8_c00001{bottom:497.519733pt;}
.y322_c00001{bottom:498.637733pt;}
.y457_c00001{bottom:499.057733pt;}
.y128_c00001{bottom:501.414533pt;}
.y1be_c00001{bottom:502.139067pt;}
.y4ac_c00001{bottom:502.826667pt;}
.y3d7_c00001{bottom:503.503867pt;}
.y23c_c00001{bottom:503.549733pt;}
.y158_c00001{bottom:503.981733pt;}
.y4e7_c00001{bottom:504.181067pt;}
.y34c_c00001{bottom:504.637733pt;}
.y365_c00001{bottom:504.858267pt;}
.y3b_c00001{bottom:505.866933pt;}
.y251_c00001{bottom:506.653733pt;}
.y492_c00001{bottom:507.283333pt;}
.y391_c00001{bottom:507.960533pt;}
.y2c2_c00001{bottom:508.637733pt;}
.y2fe_c00001{bottom:508.639733pt;}
.y105_c00001{bottom:509.405733pt;}
.y26b_c00001{bottom:509.757733pt;}
.y483_c00001{bottom:510.385733pt;}
.y288_c00001{bottom:510.413733pt;}
.y19f_c00001{bottom:510.804800pt;}
.y173_c00001{bottom:512.642267pt;}
.y339_c00001{bottom:514.637733pt;}
.y428_c00001{bottom:514.842400pt;}
.y46_c00001{bottom:515.629867pt;}
.ydf_c00001{bottom:516.120400pt;}
.y78_c00001{bottom:517.303600pt;}
.y143_c00001{bottom:517.304400pt;}
.y53b_c00001{bottom:517.309733pt;}
.y1d4_c00001{bottom:517.581867pt;}
.y51d_c00001{bottom:517.911733pt;}
.y17b_c00001{bottom:517.913333pt;}
.y46a_c00001{bottom:517.944800pt;}
.y1fd_c00001{bottom:517.981733pt;}
.y21c_c00001{bottom:517.997733pt;}
.y57a_c00001{bottom:518.204667pt;}
.y3a8_c00001{bottom:518.622000pt;}
.y321_c00001{bottom:520.637733pt;}
.y25_c00001{bottom:521.325733pt;}
.y3a_c00001{bottom:522.400267pt;}
.y1bd_c00001{bottom:524.139067pt;}
.y3d6_c00001{bottom:525.503867pt;}
.y157_c00001{bottom:525.981733pt;}
.y3f4_c00001{bottom:526.181067pt;}
.y34b_c00001{bottom:526.637733pt;}
.y364_c00001{bottom:526.858267pt;}
.y2d7_c00001{bottom:527.073467pt;}
.y4ab_c00001{bottom:528.606267pt;}
.y456_c00001{bottom:528.609733pt;}
.y4d2_c00001{bottom:529.283333pt;}
.y47a_c00001{bottom:529.290400pt;}
.y390_c00001{bottom:529.960533pt;}
.y2c1_c00001{bottom:530.637733pt;}
.y2fd_c00001{bottom:530.639733pt;}
.y23b_c00001{bottom:531.213733pt;}
.y104_c00001{bottom:531.405733pt;}
.yab_c00001{bottom:531.745467pt;}
.y26a_c00001{bottom:531.757733pt;}
.y19e_c00001{bottom:532.804800pt;}
.y4fb_c00001{bottom:533.062933pt;}
.y250_c00001{bottom:534.317733pt;}
.y172_c00001{bottom:534.642267pt;}
.y338_c00001{bottom:536.637733pt;}
.y127_c00001{bottom:536.747867pt;}
.y427_c00001{bottom:536.842400pt;}
.y45_c00001{bottom:537.629867pt;}
.yde_c00001{bottom:537.848400pt;}
.y287_c00001{bottom:538.077733pt;}
.y142_c00001{bottom:539.304400pt;}
.y77_c00001{bottom:539.309733pt;}
.y51c_c00001{bottom:539.911733pt;}
.y17a_c00001{bottom:539.913333pt;}
.y469_c00001{bottom:539.944800pt;}
.y1fc_c00001{bottom:539.981733pt;}
.y3a7_c00001{bottom:540.622000pt;}
.y320_c00001{bottom:542.637733pt;}
.y4e2_c00001{bottom:543.724400pt;}
.y21b_c00001{bottom:545.661733pt;}
.y3d5_c00001{bottom:547.503867pt;}
.y156_c00001{bottom:547.981733pt;}
.y3f3_c00001{bottom:548.181067pt;}
.y2b9_c00001{bottom:548.189733pt;}
.y34a_c00001{bottom:548.637733pt;}
.y363_c00001{bottom:548.858267pt;}
.y2d6_c00001{bottom:549.073467pt;}
.y38f_c00001{bottom:551.960533pt;}
.y2c0_c00001{bottom:552.637733pt;}
.y2fc_c00001{bottom:552.639733pt;}
.y1d3_c00001{bottom:552.910667pt;}
.y23a_c00001{bottom:553.213733pt;}
.y103_c00001{bottom:553.405733pt;}
.yaa_c00001{bottom:553.745467pt;}
.y455_c00001{bottom:554.385733pt;}
.y19d_c00001{bottom:554.804800pt;}
.y4d1_c00001{bottom:555.062933pt;}
.y171_c00001{bottom:556.642267pt;}
.y24_c00001{bottom:556.653733pt;}
.y4aa_c00001{bottom:558.165200pt;}
.y337_c00001{bottom:558.637733pt;}
.y426_c00001{bottom:558.842400pt;}
.y269_c00001{bottom:559.421733pt;}
.y1bc_c00001{bottom:559.472400pt;}
.ydd_c00001{bottom:559.576400pt;}
.y44_c00001{bottom:559.629867pt;}
.y286_c00001{bottom:560.077733pt;}
.y141_c00001{bottom:561.304400pt;}
.y76_c00001{bottom:561.309733pt;}
.y51b_c00001{bottom:561.911733pt;}
.y179_c00001{bottom:561.913333pt;}
.y49a_c00001{bottom:561.944800pt;}
.y24f_c00001{bottom:561.981733pt;}
.y406_c00001{bottom:562.622000pt;}
.y31f_c00001{bottom:564.637733pt;}
.y468_c00001{bottom:565.724400pt;}
.y3a6_c00001{bottom:566.401467pt;}
.y1fb_c00001{bottom:567.645733pt;}
.y2d5_c00001{bottom:569.078800pt;}
.y43b_c00001{bottom:569.503867pt;}
.y155_c00001{bottom:569.981733pt;}
.y4e6_c00001{bottom:570.181067pt;}
.y362_c00001{bottom:570.858267pt;}
.y579_c00001{bottom:572.187720pt;}
.y3d4_c00001{bottom:573.283333pt;}
.y21a_c00001{bottom:573.325733pt;}
.y38e_c00001{bottom:573.960533pt;}
.y2bf_c00001{bottom:574.637733pt;}
.y2fb_c00001{bottom:574.639733pt;}
.y239_c00001{bottom:575.213733pt;}
.y19c_c00001{bottom:576.804800pt;}
.y23_c00001{bottom:578.653733pt;}
.y4a9_c00001{bottom:580.165200pt;}
.y336_c00001{bottom:580.637733pt;}
.y479_c00001{bottom:580.842400pt;}
.ydc_c00001{bottom:581.304400pt;}
.y268_c00001{bottom:581.421733pt;}
.y1bb_c00001{bottom:581.472400pt;}
.y43_c00001{bottom:581.629867pt;}
.y140_c00001{bottom:583.304400pt;}
.y75_c00001{bottom:583.309733pt;}
.y454_c00001{bottom:583.944800pt;}
.y24e_c00001{bottom:583.981733pt;}
.y413_c00001{bottom:584.622000pt;}
.y31e_c00001{bottom:586.637733pt;}
.y126_c00001{bottom:587.214667pt;}
.y499_c00001{bottom:587.724400pt;}
.y285_c00001{bottom:587.741733pt;}
.y4ba_c00001{bottom:588.401467pt;}
.y405_c00001{bottom:588.408533pt;}
.y102_c00001{bottom:588.733733pt;}
.ya9_c00001{bottom:589.092667pt;}
.y1fa_c00001{bottom:589.645733pt;}
.y170_c00001{bottom:591.970267pt;}
.y154_c00001{bottom:591.981733pt;}
.y4e5_c00001{bottom:592.181067pt;}
.y361_c00001{bottom:592.858267pt;}
.y578_c00001{bottom:593.444400pt;}
.y43a_c00001{bottom:595.283333pt;}
.y219_c00001{bottom:595.325733pt;}
.y38d_c00001{bottom:595.960533pt;}
.y2be_c00001{bottom:596.637733pt;}
.y2fa_c00001{bottom:596.639733pt;}
.y4e1_c00001{bottom:599.062933pt;}
.y22_c00001{bottom:600.653733pt;}
.y238_c00001{bottom:600.989733pt;}
.y1d2_c00001{bottom:601.582667pt;}
.y335_c00001{bottom:602.637733pt;}
.y3d3_c00001{bottom:602.842533pt;}
.y1ba_c00001{bottom:603.472400pt;}
.y3f2_c00001{bottom:603.519600pt;}
.y42_c00001{bottom:603.629867pt;}
.y13f_c00001{bottom:605.304400pt;}
.y74_c00001{bottom:605.309733pt;}
.y4a8_c00001{bottom:605.944800pt;}
.y4d0_c00001{bottom:606.622000pt;}
.ya8_c00001{bottom:607.754667pt;}
.y349_c00001{bottom:608.637733pt;}
.y267_c00001{bottom:609.085733pt;}
.y125_c00001{bottom:609.208667pt;}
.y453_c00001{bottom:609.724267pt;}
.y284_c00001{bottom:609.741733pt;}
.y412_c00001{bottom:610.401467pt;}
.y101_c00001{bottom:610.733733pt;}
.ybf_c00001{bottom:611.611733pt;}
.y1f9_c00001{bottom:611.645733pt;}
.y574_c00001{bottom:612.002267pt;}
.y19b_c00001{bottom:612.138267pt;}
.yf7_c00001{bottom:613.527467pt;}
.y16f_c00001{bottom:613.970267pt;}
.y425_c00001{bottom:614.181067pt;}
.y360_c00001{bottom:614.858267pt;}
.y467_c00001{bottom:617.283333pt;}
.y218_c00001{bottom:617.325733pt;}
.y38c_c00001{bottom:617.960533pt;}
.y2bd_c00001{bottom:618.637733pt;}
.y2f9_c00001{bottom:618.639733pt;}
.y482_c00001{bottom:621.069867pt;}
.y21_c00001{bottom:622.653733pt;}
.y29a_c00001{bottom:622.989733pt;}
.y1d1_c00001{bottom:623.582667pt;}
.y31d_c00001{bottom:624.637733pt;}
.y3d2_c00001{bottom:624.842533pt;}
.y3f1_c00001{bottom:625.519600pt;}
.y41_c00001{bottom:625.629867pt;}
.ya7_c00001{bottom:626.416667pt;}
.y13e_c00001{bottom:627.304400pt;}
.y73_c00001{bottom:627.309733pt;}
.y124_c00001{bottom:627.870667pt;}
.ybe_c00001{bottom:628.145067pt;}
.yc6_c00001{bottom:628.563733pt;}
.y577_c00001{bottom:628.618533pt;}
.y4cf_c00001{bottom:628.622000pt;}
.y4be_c00001{bottom:628.629067pt;}
.y237_c00001{bottom:628.653733pt;}
.yf6_c00001{bottom:630.060800pt;}
.y348_c00001{bottom:630.637733pt;}
.y4fa_c00001{bottom:632.401467pt;}
.y100_c00001{bottom:632.733733pt;}
.y19a_c00001{bottom:634.138267pt;}
.y4a7_c00001{bottom:635.503867pt;}
.y16e_c00001{bottom:635.970267pt;}
.y424_c00001{bottom:636.181067pt;}
.y266_c00001{bottom:636.749733pt;}
.y35f_c00001{bottom:636.858267pt;}
.y283_c00001{bottom:637.405733pt;}
.y1b9_c00001{bottom:638.805733pt;}
.y452_c00001{bottom:639.283333pt;}
.y1f8_c00001{bottom:639.309733pt;}
.y217_c00001{bottom:639.325733pt;}
.y3a5_c00001{bottom:639.960533pt;}
.y2bc_c00001{bottom:640.637733pt;}
.y2f8_c00001{bottom:640.639733pt;}
.y466_c00001{bottom:643.069867pt;}
.y38b_c00001{bottom:643.740133pt;}
.y20_c00001{bottom:644.653733pt;}
.ybd_c00001{bottom:644.678400pt;}
.ya6_c00001{bottom:645.078667pt;}
.yc5_c00001{bottom:645.097067pt;}
.y1d0_c00001{bottom:645.582667pt;}
.y123_c00001{bottom:646.532667pt;}
.yf5_c00001{bottom:646.594133pt;}
.y31c_c00001{bottom:646.637733pt;}
.y557_c00001{bottom:646.643200pt;}
.y439_c00001{bottom:646.842533pt;}
.y3f0_c00001{bottom:647.519600pt;}
.y40_c00001{bottom:647.629867pt;}
.y13d_c00001{bottom:649.304400pt;}
.y72_c00001{bottom:649.309733pt;}
.y3d1_c00001{bottom:650.622000pt;}
.y236_c00001{bottom:650.653733pt;}
.y347_c00001{bottom:652.637733pt;}
.y4ce_c00001{bottom:654.401467pt;}
.yff_c00001{bottom:654.733733pt;}
.y199_c00001{bottom:656.138267pt;}
.y576_c00001{bottom:656.395733pt;}
.y16d_c00001{bottom:657.970267pt;}
.y423_c00001{bottom:658.181067pt;}
.y35e_c00001{bottom:658.858267pt;}
.y1b8_c00001{bottom:660.805733pt;}
.ybc_c00001{bottom:661.211733pt;}
.y4a6_c00001{bottom:661.283333pt;}
.y1f7_c00001{bottom:661.309733pt;}
.yc4_c00001{bottom:661.630400pt;}
.y3bc_c00001{bottom:661.960533pt;}
.y2bb_c00001{bottom:662.637733pt;}
.y2f7_c00001{bottom:662.639733pt;}
.yf4_c00001{bottom:663.127467pt;}
.y265_c00001{bottom:664.413733pt;}
.y451_c00001{bottom:665.062933pt;}
.y282_c00001{bottom:665.069733pt;}
.y3a4_c00001{bottom:665.740133pt;}
.y216_c00001{bottom:666.989733pt;}
.y573_c00001{bottom:667.561333pt;}
.y1cf_c00001{bottom:667.582667pt;}
.y31b_c00001{bottom:668.637733pt;}
.y3ef_c00001{bottom:669.519600pt;}
.y3f_c00001{bottom:669.629867pt;}
.ydb_c00001{bottom:670.648800pt;}
.y13c_c00001{bottom:671.304400pt;}
.y71_c00001{bottom:671.309733pt;}
.y438_c00001{bottom:672.621867pt;}
.y4dd_c00001{bottom:672.629067pt;}
.y299_c00001{bottom:672.653733pt;}
.y122_c00001{bottom:672.763600pt;}
.y38a_c00001{bottom:673.299200pt;}
.yfe_c00001{bottom:676.733733pt;}
.y198_c00001{bottom:678.138267pt;}
.y235_c00001{bottom:678.317733pt;}
.yf3_c00001{bottom:679.660800pt;}
.y16c_c00001{bottom:679.970267pt;}
.y1f_c00001{bottom:679.981733pt;}
.y3d0_c00001{bottom:680.181067pt;}
.y35d_c00001{bottom:680.858267pt;}
.y2b8_c00001{bottom:680.861733pt;}
.y556_c00001{bottom:681.971200pt;}
.y1b7_c00001{bottom:682.805733pt;}
.y404_c00001{bottom:683.960533pt;}
.y2ba_c00001{bottom:684.637733pt;}
.y2f6_c00001{bottom:684.639733pt;}
.yda_c00001{bottom:687.182133pt;}
.y3bb_c00001{bottom:687.740133pt;}
.y1f6_c00001{bottom:688.973733pt;}
.y31a_c00001{bottom:690.637733pt;}
.y4a5_c00001{bottom:690.842533pt;}
.y3ee_c00001{bottom:691.519600pt;}
.y264_c00001{bottom:692.077733pt;}
.y281_c00001{bottom:692.733733pt;}
.y70_c00001{bottom:693.309733pt;}
.y450_c00001{bottom:694.621867pt;}
.y215_c00001{bottom:694.653733pt;}
.y121_c00001{bottom:694.763600pt;}
.y389_c00001{bottom:695.299200pt;}
.yf2_c00001{bottom:696.194133pt;}
.y234_c00001{bottom:700.317733pt;}
.y5a_c00001{bottom:700.541333pt;}
.y572_c00001{bottom:701.787067pt;}
.y16b_c00001{bottom:701.970267pt;}
.y1e_c00001{bottom:701.981733pt;}
.y422_c00001{bottom:702.181067pt;}
.y35c_c00001{bottom:702.858267pt;}
.y1ce_c00001{bottom:702.916000pt;}
.yd9_c00001{bottom:703.715467pt;}
.y1b6_c00001{bottom:704.805733pt;}
.y3cf_c00001{bottom:705.960533pt;}
.y13b_c00001{bottom:706.637733pt;}
.y2f5_c00001{bottom:706.639733pt;}
.y4cd_c00001{bottom:709.740133pt;}
.yfd_c00001{bottom:712.061733pt;}
.y319_c00001{bottom:712.637733pt;}
.y197_c00001{bottom:713.471600pt;}
.y6f_c00001{bottom:715.309733pt;}
.y44f_c00001{bottom:716.621867pt;}
.y1f5_c00001{bottom:716.637733pt;}
.y59_c00001{bottom:717.074667pt;}
.y388_c00001{bottom:717.299200pt;}
.y263_c00001{bottom:719.741733pt;}
.y280_c00001{bottom:720.397733pt;}
.y4e0_c00001{bottom:720.401467pt;}
.y214_c00001{bottom:722.317733pt;}
.y16a_c00001{bottom:723.970267pt;}
.y1d_c00001{bottom:723.981733pt;}
.y575_c00001{bottom:724.024533pt;}
.y437_c00001{bottom:724.181067pt;}
.y50a_c00001{bottom:724.858267pt;}
.y1cd_c00001{bottom:724.916000pt;}
.y411_c00001{bottom:727.960533pt;}
.y233_c00001{bottom:727.981733pt;}
.y571_c00001{bottom:728.453733pt;}
.y13a_c00001{bottom:728.637733pt;}
.y2f4_c00001{bottom:728.639733pt;}
.y120_c00001{bottom:730.091600pt;}
.y403_c00001{bottom:731.740133pt;}
.y58_c00001{bottom:733.608000pt;}
.y318_c00001{bottom:734.637733pt;}
.y196_c00001{bottom:735.471600pt;}
.y3ce_c00001{bottom:735.519600pt;}
.y6e_c00001{bottom:737.309733pt;}
.y1f4_c00001{bottom:738.637733pt;}
.y387_c00001{bottom:739.299200pt;}
.y1b5_c00001{bottom:740.139067pt;}
.y27f_c00001{bottom:742.397733pt;}
.y44e_c00001{bottom:742.401467pt;}
.y4f9_c00001{bottom:743.078667pt;}
.y213_c00001{bottom:744.317733pt;}
.y1c_c00001{bottom:745.981733pt;}
.y436_c00001{bottom:746.181067pt;}
.y3ed_c00001{bottom:746.858267pt;}
.y1cc_c00001{bottom:746.916000pt;}
.y262_c00001{bottom:747.405733pt;}
.y94_c00001{bottom:749.822400pt;}
.y47f_c00001{bottom:749.960533pt;}
.y500_c00001{bottom:749.967600pt;}
.y232_c00001{bottom:749.981733pt;}
.y57_c00001{bottom:750.141333pt;}
.y9c_c00001{bottom:750.637733pt;}
.y2f3_c00001{bottom:750.639733pt;}
.y11f_c00001{bottom:752.091600pt;}
.y410_c00001{bottom:753.747200pt;}
.y334_c00001{bottom:756.637733pt;}
.y195_c00001{bottom:757.471600pt;}
.y478_c00001{bottom:757.519600pt;}
.y169_c00001{bottom:759.304400pt;}
.y6d_c00001{bottom:759.309733pt;}
.yfc_c00001{bottom:760.461733pt;}
.y24d_c00001{bottom:760.637733pt;}
.y386_c00001{bottom:761.299200pt;}
.y555_c00001{bottom:761.302667pt;}
.y1b4_c00001{bottom:762.139067pt;}
.y1f3_c00001{bottom:766.301733pt;}
.y212_c00001{bottom:766.317733pt;}
.y93_c00001{bottom:766.355733pt;}
.y1b_c00001{bottom:767.981733pt;}
.y4a4_c00001{bottom:768.181067pt;}
.y3ec_c00001{bottom:768.858267pt;}
.y65_c00001{bottom:768.861733pt;}
.y435_c00001{bottom:771.960533pt;}
.y9b_c00001{bottom:772.637733pt;}
.y2f2_c00001{bottom:772.639733pt;}
.y11e_c00001{bottom:774.091600pt;}
.y261_c00001{bottom:775.069733pt;}
.y27e_c00001{bottom:775.741733pt;}
.y231_c00001{bottom:777.645733pt;}
.y333_c00001{bottom:778.637733pt;}
.y421_c00001{bottom:779.519600pt;}
.y168_c00001{bottom:781.304400pt;}
.y6a_c00001{bottom:781.309733pt;}
.yfb_c00001{bottom:782.189733pt;}
.y1cb_c00001{bottom:782.249333pt;}
.y92_c00001{bottom:782.889067pt;}
.y385_c00001{bottom:783.299200pt;}
.y1b3_c00001{bottom:784.139067pt;}
.y3a3_c00001{bottom:787.078667pt;}
.y1f2_c00001{bottom:788.301733pt;}
.y1a_c00001{bottom:789.981733pt;}
.y3cd_c00001{bottom:790.858133pt;}
.y3eb_c00001{bottom:790.858267pt;}
.y60_c00001{bottom:790.861733pt;}
.y194_c00001{bottom:792.800400pt;}
.y44d_c00001{bottom:793.960533pt;}
.y211_c00001{bottom:793.981733pt;}
.y9a_c00001{bottom:794.637733pt;}
.y2f1_c00001{bottom:794.639733pt;}
.y11d_c00001{bottom:796.091600pt;}
.y4df_c00001{bottom:797.740133pt;}
.y230_c00001{bottom:799.645733pt;}
.y332_c00001{bottom:800.637733pt;}
.y420_c00001{bottom:801.519600pt;}
.y260_c00001{bottom:802.733733pt;}
.y7_c00001{bottom:803.304400pt;}
.y69_c00001{bottom:803.309733pt;}
.yfa_c00001{bottom:803.917733pt;}
.y1ca_c00001{bottom:804.249333pt;}
.y384_c00001{bottom:805.299200pt;}
.y1b2_c00001{bottom:806.139067pt;}
.y554_c00001{bottom:809.078667pt;}
.y3cc_c00001{bottom:812.858133pt;}
.y3ea_c00001{bottom:812.858267pt;}
.y5f_c00001{bottom:812.861733pt;}
.y1f1_c00001{bottom:815.965733pt;}
.y210_c00001{bottom:815.981733pt;}
.y99_c00001{bottom:816.637733pt;}
.y2f0_c00001{bottom:816.639733pt;}
.y11c_c00001{bottom:818.091600pt;}
.y44c_c00001{bottom:819.740133pt;}
.y22f_c00001{bottom:821.645733pt;}
.y41f_c00001{bottom:823.519600pt;}
.y25f_c00001{bottom:824.733733pt;}
.y6_c00001{bottom:825.304400pt;}
.y19_c00001{bottom:825.309733pt;}
.yf9_c00001{bottom:825.645733pt;}
.y1c9_c00001{bottom:826.249333pt;}
.y383_c00001{bottom:827.299200pt;}
.y298_c00001{bottom:827.309733pt;}
.y1b1_c00001{bottom:828.139067pt;}
.y27d_c00001{bottom:829.197733pt;}
.y553_c00001{bottom:831.078667pt;}
.y4b9_c00001{bottom:831.085733pt;}
.y3cb_c00001{bottom:834.858133pt;}
.y3e9_c00001{bottom:834.858267pt;}
.y5e_c00001{bottom:834.861733pt;}
.y24c_c00001{bottom:837.965733pt;}
.y98_c00001{bottom:838.637733pt;}
.y2ef_c00001{bottom:838.639733pt;}
.y193_c00001{bottom:841.472400pt;}
.y1f0_c00001{bottom:843.629733pt;}
.y20f_c00001{bottom:843.645733pt;}
.y4a3_c00001{bottom:845.519600pt;}
.y5_c00001{bottom:847.304400pt;}
.y18_c00001{bottom:847.309733pt;}
.yf8_c00001{bottom:847.373733pt;}
.y382_c00001{bottom:849.299200pt;}
.y22e_c00001{bottom:849.309733pt;}
.y18e_c00001{bottom:849.321333pt;}
.y1b0_c00001{bottom:850.139067pt;}
.y27c_c00001{bottom:851.197733pt;}
.y3ba_c00001{bottom:853.078667pt;}
.y4de_c00001{bottom:853.085733pt;}
.y11b_c00001{bottom:853.443600pt;}
.y3ca_c00001{bottom:856.858133pt;}
.y3e8_c00001{bottom:856.858267pt;}
.y5d_c00001{bottom:856.861733pt;}
.y25e_c00001{bottom:858.077733pt;}
.y97_c00001{bottom:860.637733pt;}
.y2ee_c00001{bottom:860.639733pt;}
.y1c8_c00001{bottom:861.582667pt;}
.y192_c00001{bottom:863.472400pt;}
.y1ef_c00001{bottom:865.629733pt;}
.y4_c00001{bottom:869.304400pt;}
.y17_c00001{bottom:869.309733pt;}
.y381_c00001{bottom:871.299200pt;}
.y20e_c00001{bottom:871.309733pt;}
.y11a_c00001{bottom:872.105600pt;}
.y18d_c00001{bottom:875.097333pt;}
.y22d_c00001{bottom:876.973733pt;}
.y3c9_c00001{bottom:878.858133pt;}
.y3e7_c00001{bottom:878.858267pt;}
.y5c_c00001{bottom:878.861733pt;}
.y96_c00001{bottom:882.637733pt;}
.y2ed_c00001{bottom:882.639733pt;}
.y1c7_c00001{bottom:883.582667pt;}
.y191_c00001{bottom:885.472400pt;}
.y119_c00001{bottom:890.767600pt;}
.y3_c00001{bottom:891.304400pt;}
.y16_c00001{bottom:891.309733pt;}
.y1ee_c00001{bottom:893.293733pt;}
.y44b_c00001{bottom:897.078667pt;}
.y380_c00001{bottom:897.085733pt;}
.y20d_c00001{bottom:898.973733pt;}
.y3c8_c00001{bottom:900.858133pt;}
.y3e6_c00001{bottom:900.858267pt;}
.y5b_c00001{bottom:900.861733pt;}
.y95_c00001{bottom:904.637733pt;}
.y2ec_c00001{bottom:904.639733pt;}
.y1c6_c00001{bottom:905.582667pt;}
.y190_c00001{bottom:907.472400pt;}
.y118_c00001{bottom:909.429600pt;}
.y1ed_c00001{bottom:926.633467pt;}
.y2_c00001{bottom:926.637733pt;}
.y2eb_c00001{bottom:926.639733pt;}
.y1c5_c00001{bottom:927.582667pt;}
.y52a_c00001{bottom:927.607067pt;}
.y117_c00001{bottom:928.091600pt;}
.y18f_c00001{bottom:929.472400pt;}
.y15_c00001{bottom:972.089733pt;}
.y1_c00001{bottom:972.089867pt;}
.y29b_c00001{bottom:1020.757867pt;}
.h2_c00001{height:34.901333pt;}
.hc_c00001{height:34.915733pt;}
.h3_c00001{height:35.541333pt;}
.h5_c00001{height:38.880000pt;}
.h6_c00001{height:39.264000pt;}
.h1f_c00001{height:42.837387pt;}
.hb_c00001{height:43.200000pt;}
.ha_c00001{height:43.626667pt;}
.h9_c00001{height:45.184000pt;}
.h10_c00001{height:45.440000pt;}
.h8_c00001{height:45.808000pt;}
.h21_c00001{height:46.552901pt;}
.h12_c00001{height:47.989333pt;}
.hf_c00001{height:51.840000pt;}
.h1d_c00001{height:51.935365pt;}
.h4_c00001{height:52.352000pt;}
.h20_c00001{height:52.760005pt;}
.h7_c00001{height:53.312000pt;}
.h1c_c00001{height:57.294851pt;}
.h15_c00001{height:61.077333pt;}
.he_c00001{height:62.781250pt;}
.h18_c00001{height:69.802667pt;}
.h14_c00001{height:76.032000pt;}
.h13_c00001{height:76.782933pt;}
.h1b_c00001{height:77.279841pt;}
.h1e_c00001{height:81.426816pt;}
.h1a_c00001{height:85.712256pt;}
.hd_c00001{height:87.672533pt;}
.h19_c00001{height:95.214764pt;}
.h11_c00001{height:103.680000pt;}
.h17_c00001{height:1001.333333pt;}
.h16_c00001{height:1001.573333pt;}
.h1_c00001{height:1009.333333pt;}
.h0_c00001{height:1009.338800pt;}
.w2_c00001{width:793.706667pt;}
.w3_c00001{width:794.000000pt;}
.w0_c00001{width:794.622400pt;}
.w1_c00001{width:794.666667pt;}
.x48_c00001{left:-550.970533pt;}
.x49_c00001{left:-522.426533pt;}
.x4a_c00001{left:-492.346533pt;}
.x4b_c00001{left:-480.677200pt;}
.x4c_c00001{left:-448.389200pt;}
.x4d_c00001{left:-441.263867pt;}
.x4e_c00001{left:-434.287867pt;}
.x4f_c00001{left:-421.455867pt;}
.x47_c00001{left:-415.714400pt;}
.x50_c00001{left:-400.218533pt;}
.x2c_c00001{left:-20.468267pt;}
.x0_c00001{left:0.000000pt;}
.xc_c00001{left:68.035600pt;}
.x9_c00001{left:68.980533pt;}
.x16_c00001{left:84.098800pt;}
.xa_c00001{left:87.878133pt;}
.x36_c00001{left:106.772400pt;}
.x4_c00001{left:114.334933pt;}
.x1e_c00001{left:129.453067pt;}
.x5_c00001{left:133.232533pt;}
.x2a_c00001{left:152.073067pt;}
.x2b_c00001{left:154.252133pt;}
.x3a_c00001{left:156.222400pt;}
.x34_c00001{left:157.142933pt;}
.x38_c00001{left:158.227867pt;}
.x39_c00001{left:160.406933pt;}
.x2_c00001{left:167.166133pt;}
.x3_c00001{left:169.345200pt;}
.x23_c00001{left:224.697067pt;}
.x3e_c00001{left:242.733067pt;}
.x3f_c00001{left:271.277067pt;}
.xe_c00001{left:274.244667pt;}
.xb_c00001{left:275.189600pt;}
.x14_c00001{left:276.134533pt;}
.x1c_c00001{left:277.382667pt;}
.x19_c00001{left:278.422133pt;}
.x5d_c00001{left:288.491333pt;}
.x5e_c00001{left:295.536000pt;}
.x28_c00001{left:299.342800pt;}
.x40_c00001{left:301.357067pt;}
.x41_c00001{left:313.026400pt;}
.x6_c00001{left:317.709333pt;}
.x11_c00001{left:320.319200pt;}
.x8_c00001{left:321.488800pt;}
.x1b_c00001{left:322.869333pt;}
.x12_c00001{left:324.323467pt;}
.x5f_c00001{left:325.800133pt;}
.x42_c00001{left:345.314400pt;}
.x43_c00001{left:352.439733pt;}
.x44_c00001{left:359.415733pt;}
.x45_c00001{left:372.247733pt;}
.x21_c00001{left:375.298667pt;}
.x3d_c00001{left:377.986400pt;}
.x1f_c00001{left:381.182133pt;}
.x31_c00001{left:390.244533pt;}
.x46_c00001{left:393.485067pt;}
.x30_c00001{left:408.131600pt;}
.x32_c00001{left:409.140533pt;}
.x29_c00001{left:416.697067pt;}
.x37_c00001{left:428.035733pt;}
.x2f_c00001{left:435.598933pt;}
.x2d_c00001{left:454.492400pt;}
.x35_c00001{left:473.386533pt;}
.xf_c00001{left:480.949067pt;}
.xd_c00001{left:484.728533pt;}
.x1a_c00001{left:485.862400pt;}
.x25_c00001{left:487.781733pt;}
.x2e_c00001{left:492.287600pt;}
.x33_c00001{left:503.636533pt;}
.x15_c00001{left:521.905600pt;}
.x3b_c00001{left:525.387200pt;}
.x7_c00001{left:526.303333pt;}
.x18_c00001{left:527.966400pt;}
.x13_c00001{left:530.082933pt;}
.x22_c00001{left:531.116000pt;}
.x26_c00001{left:533.921467pt;}
.x20_c00001{left:534.882933pt;}
.x27_c00001{left:585.830933pt;}
.x24_c00001{left:592.445067pt;}
.x3c_c00001{left:689.500000pt;}
.x1_c00001{left:710.992000pt;}
.x17_c00001{left:712.175600pt;}
.x10_c00001{left:713.199600pt;}
.x1d_c00001{left:714.917200pt;}
.x55_c00001{left:842.801333pt;}
.x53_c00001{left:990.640000pt;}
.x52_c00001{left:1034.252800pt;}
.x51_c00001{left:1108.804667pt;}
.x57_c00001{left:1125.829467pt;}
.x54_c00001{left:1144.404933pt;}
.x59_c00001{left:1172.521529pt;}
.x58_c00001{left:1180.968533pt;}
.x56_c00001{left:1199.651200pt;}
.x5b_c00001{left:1234.576800pt;}
.x5a_c00001{left:1250.958933pt;}
.x5c_c00001{left:1279.920933pt;}
}




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